-- MySQL dump 10.13  Distrib 8.0.37, for Linux (x86_64)
--
-- Host: localhost    Database: divya_wp690
-- ------------------------------------------------------
-- Server version	8.0.37-cll-lve

/*!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 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Current Database: `divya_wp690`
--


--
-- Table structure for table `wpjv_commentmeta`
--

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

--
-- Dumping data for table `wpjv_commentmeta`
--

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

--
-- Table structure for table `wpjv_comments`
--

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

--
-- Dumping data for table `wpjv_comments`
--

LOCK TABLES `wpjv_comments` WRITE;
/*!40000 ALTER TABLE `wpjv_comments` DISABLE KEYS */;
INSERT INTO `wpjv_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2023-04-29 04:53:32','2023-04-29 04:53:32','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://en.gravatar.com/\">Gravatar</a>.',0,'1','','comment',0,0);
/*!40000 ALTER TABLE `wpjv_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjv_e_events`
--

DROP TABLE IF EXISTS `wpjv_e_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjv_e_events` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `event_data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `created_at_index` (`created_at`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjv_e_events`
--

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

--
-- Table structure for table `wpjv_links`
--

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

--
-- Dumping data for table `wpjv_links`
--

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

--
-- Table structure for table `wpjv_options`
--

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

--
-- Dumping data for table `wpjv_options`
--

LOCK TABLES `wpjv_options` WRITE;
/*!40000 ALTER TABLE `wpjv_options` DISABLE KEYS */;
INSERT INTO `wpjv_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','https://divyayogamonteregie.org/ca/','yes'),(2,'home','https://divyayogamonteregie.org/ca/','yes'),(3,'blogname','Divya Yoga Monteregie','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','admin@divyayogamonteregie.org','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','/%postname%/','yes'),(29,'rewrite_rules','a:109:{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:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:40:\"index.php?&page_id=652&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:6:{i:0;s:21:\"backuply/backuply.php\";i:1;s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";i:2;s:39:\"click-to-chat-pro/click-to-chat-pro.php\";i:3;s:30:\"conveythis-translate/index.php\";i:4;s:23:\"elementor/elementor.php\";i:5;s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.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','58975','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:2;a:1:{s:5:\"title\";s:10:\"Categories\";}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:5:{s:21:\"backuply/backuply.php\";s:21:\"backuply_deactivation\";s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";a:2:{i:0;s:15:\"HT_CTC_Register\";i:1;s:9:\"uninstall\";}s:39:\"click-to-chat-pro/click-to-chat-pro.php\";a:2:{i:0;s:19:\"HT_CTC_PRO_Register\";i:1;s:9:\"uninstall\";}s:30:\"conveythis-translate/index.php\";a:2:{i:0;s:10:\"ConveyThis\";i:1;s:16:\"plugin_uninstall\";}}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','652','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','47','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','1728356566','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:{}','off'),(99,'initial_db_version','53496','yes'),(100,'wpjv_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','off'),(102,'user_count','3','no'),(103,'widget_block','a:7:{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;i:8;a:1:{s:7:\"content\";s:90:\"<!-- wp:image -->\n<figure class=\"wp-block-image\"><img alt=\"\"/></figure>\n<!-- /wp:image -->\";}}','yes'),(104,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:13:{i:0;s:10:\"calendar-2\";i:1;s:10:\"archives-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:14:\"recent-posts-3\";i:6;s:17:\"recent-comments-2\";i:7;s:7:\"block-8\";i:8;s:7:\"block-2\";i:9;s:7:\"block-3\";i:10;s:7:\"block-4\";i:11;s:7:\"block-5\";i:12;s:7:\"block-6\";}s:9:\"sidebar-1\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:8:{i:1732316013;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:1732323580;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:1732337612;a:4:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1732337648;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1732337649;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1732424012;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1732857299;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','on'),(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_calendar','a:2:{s:12:\"_multiwidget\";i:1;i:2;a:1:{s:5:\"title\";s:8:\"Calendar\";}}','yes'),(108,'widget_archives','a:2:{s:12:\"_multiwidget\";i:1;i:2;a:1:{s:5:\"title\";s:8:\"Archives\";}}','yes'),(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_search','a:2:{s:12:\"_multiwidget\";i:1;i:2;a:1:{s:5:\"title\";s:6:\"Search\";}}','yes'),(115,'widget_recent-posts','a:3:{s:12:\"_multiwidget\";i:1;i:2;a:1:{s:5:\"title\";s:12:\"Recent Posts\";}i:3;a:1:{s:5:\"title\";s:12:\"Recent Posts\";}}','yes'),(116,'widget_recent-comments','a:2:{s:12:\"_multiwidget\";i:1;i:2;a:1:{s:5:\"title\";s:15:\"Recent Comments\";}}','yes'),(117,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'recovery_keys','a:0:{}','off'),(121,'theme_mods_twentytwentythree','a:4:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1684896123;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:13:{i:0;s:10:\"calendar-2\";i:1;s:10:\"archives-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:14:\"recent-posts-3\";i:6;s:17:\"recent-comments-2\";i:7;s:7:\"block-8\";i:8;s:7:\"block-2\";i:9;s:7:\"block-3\";i:10;s:7:\"block-4\";i:11;s:7:\"block-5\";i:12;s:7:\"block-6\";}s:9:\"sidebar-1\";a:0:{}}}s:19:\"wp_classic_sidebars\";a:1:{s:9:\"sidebar-1\";a:11:{s:4:\"name\";s:14:\"Pie de página\";s:2:\"id\";s:9:\"sidebar-1\";s:11:\"description\";s:61:\"Agregá widgets acá para que aparezcan en el pie de página.\";s:5:\"class\";s:0:\"\";s:13:\"before_widget\";s:39:\"<section id=\"%1$s\" class=\"widget %2$s\">\";s:12:\"after_widget\";s:10:\"</section>\";s:12:\"before_title\";s:25:\"<h2 class=\"widget-title\">\";s:11:\"after_title\";s:5:\"</h2>\";s:14:\"before_sidebar\";s:0:\"\";s:13:\"after_sidebar\";s:0:\"\";s:12:\"show_in_rest\";b:0;}}s:18:\"nav_menu_locations\";a:0:{}}','no'),(122,'backuply_version','1.2.2','yes'),(123,'backuply_hide_holiday','1728097366','yes'),(124,'backuply_promo_time','-1686273663','yes'),(126,'https_detection_errors','a:0:{}','off'),(188,'astra-blocks-1','a:100:{s:8:\"id-53972\";a:10:{s:5:\"title\";s:10:\"Features 1\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/feature-1-ele.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/feature-1-ele.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/features-1e/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53974\";a:10:{s:5:\"title\";s:10:\"Features 2\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/feature-2-ele.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/feature-2-ele.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/features-2e/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53975\";a:10:{s:5:\"title\";s:10:\"Features 3\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/feature-3-ele.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/feature-3-ele.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/features-3e/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53976\";a:10:{s:5:\"title\";s:10:\"Features 4\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/05/feature-4el.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/05/feature-4el.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/features-4e/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53977\";a:10:{s:5:\"title\";s:10:\"Features 5\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/feature-5-ele.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/feature-5-ele.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/features-5e/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53978\";a:10:{s:5:\"title\";s:10:\"Features 6\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/feature-6-ele.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/feature-6-ele.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/features-6e/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53979\";a:10:{s:5:\"title\";s:10:\"Features 7\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/feature-7-ele.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/feature-7-ele.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/features-7e/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53973\";a:10:{s:5:\"title\";s:12:\"Statistics 4\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/statistics-1e.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/statistics-1e.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/statistics-4e/\";s:3:\"tag\";a:1:{i:924;s:10:\"statistics\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53971\";a:10:{s:5:\"title\";s:12:\"Statistics 3\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/statistics-3e.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/statistics-3e.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/statistics-3e/\";s:3:\"tag\";a:1:{i:924;s:10:\"statistics\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53970\";a:10:{s:5:\"title\";s:12:\"Statistics 2\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/statistics-2e.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/statistics-2e.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/statistics-2e/\";s:3:\"tag\";a:1:{i:924;s:10:\"statistics\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53969\";a:10:{s:5:\"title\";s:12:\"Statistics 1\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/statistics-4e.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/statistics-4e.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/statistics-1e/\";s:3:\"tag\";a:1:{i:924;s:10:\"statistics\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:0:\"\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53931\";a:10:{s:5:\"title\";s:6:\"Team 1\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/team-1el.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/team-1el.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-1e/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53932\";a:10:{s:5:\"title\";s:6:\"Team 2\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/team-2-ele.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/team-2-ele.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-2e/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53933\";a:10:{s:5:\"title\";s:6:\"Team 3\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/team-3el.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/team-3el.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-3e/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53934\";a:10:{s:5:\"title\";s:6:\"Team 4\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/team-4el.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/team-4el.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-4e/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53926\";a:10:{s:5:\"title\";s:9:\"Clients 1\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/clients-1e.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/clients-1e.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/clients-1e/\";s:3:\"tag\";a:1:{i:1090;s:7:\"clients\";}s:8:\"category\";i:1091;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:0:\"\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53927\";a:10:{s:5:\"title\";s:9:\"Clients 2\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/clients-2e.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/clients-2e.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/clients-2e/\";s:3:\"tag\";a:1:{i:1090;s:7:\"clients\";}s:8:\"category\";i:1091;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:0:\"\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53928\";a:10:{s:5:\"title\";s:9:\"Clients 3\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/clients-3e.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/clients-3e.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/clients-3e/\";s:3:\"tag\";a:1:{i:1090;s:7:\"clients\";}s:8:\"category\";i:1091;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:0:\"\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53929\";a:10:{s:5:\"title\";s:9:\"Clients 4\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/clients-4e.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/clients-4e.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/clients-4e/\";s:3:\"tag\";a:1:{i:1090;s:7:\"clients\";}s:8:\"category\";i:1091;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:0:\"\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53846\";a:10:{s:5:\"title\";s:13:\"Testimonial 1\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/teatimonial-1el.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/teatimonial-1el.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-1e/\";s:3:\"tag\";a:1:{i:844;s:11:\"testimonial\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53847\";a:10:{s:5:\"title\";s:13:\"Testimonial 2\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/teatimonial-2-ele.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/teatimonial-2-ele.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-2e/\";s:3:\"tag\";a:1:{i:844;s:11:\"testimonial\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53848\";a:10:{s:5:\"title\";s:13:\"Testimonial 3\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/teatimonial-3el.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/teatimonial-3el.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-3e/\";s:3:\"tag\";a:1:{i:844;s:11:\"testimonial\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53849\";a:10:{s:5:\"title\";s:13:\"Testimonial 4\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/teatimonial-4-ele.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/teatimonial-4-ele.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-4e/\";s:3:\"tag\";a:1:{i:844;s:11:\"testimonial\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52865\";a:10:{s:5:\"title\";s:14:\"Contact Form 1\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/contact-form-1e.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/contact-form-1e.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/contact-form-1e/\";s:3:\"tag\";a:2:{i:823;s:7:\"contact\";i:1955;s:12:\"contact-form\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-52866\";a:10:{s:5:\"title\";s:14:\"Contact Form 2\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/contact-form-2e.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/contact-form-2e.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/contact-form-2e/\";s:3:\"tag\";a:2:{i:823;s:7:\"contact\";i:1955;s:12:\"contact-form\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-52867\";a:10:{s:5:\"title\";s:14:\"Contact Form 3\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/contact-form-3e.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/contact-form-3e.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/contact-form-3e/\";s:3:\"tag\";a:2:{i:823;s:7:\"contact\";i:1955;s:12:\"contact-form\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-52868\";a:10:{s:5:\"title\";s:14:\"Contact Form 4\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/contact-form-4e.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/contact-form-4e.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/contact-form-4e/\";s:3:\"tag\";a:2:{i:823;s:7:\"contact\";i:1955;s:12:\"contact-form\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-52857\";a:10:{s:5:\"title\";s:16:\"Subscribe Form 6\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/subscribe-form-6el.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/subscribe-form-6el.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/subscribe-form-6e/\";s:3:\"tag\";a:1:{i:1956;s:14:\"subscribe-form\";}s:8:\"category\";i:1953;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-52808\";a:10:{s:5:\"title\";s:16:\"Subscribe Form 2\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/subscribe-form-2el.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/subscribe-form-2el.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/subscribe-form-2e/\";s:3:\"tag\";a:1:{i:1956;s:14:\"subscribe-form\";}s:8:\"category\";i:1953;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-52809\";a:10:{s:5:\"title\";s:16:\"Subscribe Form 3\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/subscribe-form-3el.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/subscribe-form-3el.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/subscribe-form-3e/\";s:3:\"tag\";a:1:{i:1956;s:14:\"subscribe-form\";}s:8:\"category\";i:1953;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-52810\";a:10:{s:5:\"title\";s:16:\"Subscribe Form 4\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/subscribe-form-4e.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/subscribe-form-4e.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/subscribe-form-4e/\";s:3:\"tag\";a:1:{i:1956;s:14:\"subscribe-form\";}s:8:\"category\";i:1953;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-52811\";a:10:{s:5:\"title\";s:16:\"Subscribe Form 5\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/subscribe-form-5e.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/subscribe-form-5e.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/subscribe-form-5e/\";s:3:\"tag\";a:1:{i:1956;s:14:\"subscribe-form\";}s:8:\"category\";i:1953;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-52797\";a:10:{s:5:\"title\";s:16:\"Subscribe Form 1\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/subscribe-form-1e.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/subscribe-form-1e.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/subscribe-form-1e/\";s:3:\"tag\";a:1:{i:1956;s:14:\"subscribe-form\";}s:8:\"category\";i:1953;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-52796\";a:10:{s:5:\"title\";s:16:\"Call to Action 5\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/call-to-action-5e.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/call-to-action-5e.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/call-to-action-5e/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52795\";a:10:{s:5:\"title\";s:16:\"Call to Action 4\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/05/cta-4-ele.jpg\";s:19:\"thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/05/cta-4-ele.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/call-to-action-4e/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52794\";a:10:{s:5:\"title\";s:16:\"Call to Action 3\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/05/cta-3-ele.jpg\";s:19:\"thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/05/cta-3-ele.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/call-to-action-3e/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52793\";a:10:{s:5:\"title\";s:16:\"Call to Action 2\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/call-to-action-2e.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/call-to-action-2e.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/call-to-action-2e/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52792\";a:10:{s:5:\"title\";s:16:\"Call to Action 1\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/call-to-action-1e.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/call-to-action-1e.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/call-to-action-1e/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52712\";a:10:{s:5:\"title\";s:5:\"FAQ 1\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/faq-1e.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/faq-1e.jpg\";s:3:\"url\";s:45:\"https://websitedemos.net/astra-blocks/faq-1e/\";s:3:\"tag\";a:2:{i:822;s:3:\"faq\";i:821;s:26:\"frequently-asked-questions\";}s:8:\"category\";i:1001;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52713\";a:10:{s:5:\"title\";s:5:\"FAQ 2\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/faq-2e.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/faq-2e.jpg\";s:3:\"url\";s:45:\"https://websitedemos.net/astra-blocks/faq-2e/\";s:3:\"tag\";a:2:{i:822;s:3:\"faq\";i:821;s:26:\"frequently-asked-questions\";}s:8:\"category\";i:1001;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52714\";a:10:{s:5:\"title\";s:5:\"FAQ 3\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/faq-3e.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/faq-3e.jpg\";s:3:\"url\";s:45:\"https://websitedemos.net/astra-blocks/faq-3e/\";s:3:\"tag\";a:2:{i:822;s:3:\"faq\";i:821;s:26:\"frequently-asked-questions\";}s:8:\"category\";i:1001;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52715\";a:10:{s:5:\"title\";s:5:\"FAQ 4\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/faq-4e.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/faq-4e.jpg\";s:3:\"url\";s:45:\"https://websitedemos.net/astra-blocks/faq-4e/\";s:3:\"tag\";a:2:{i:822;s:3:\"faq\";i:821;s:26:\"frequently-asked-questions\";}s:8:\"category\";i:1001;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52716\";a:10:{s:5:\"title\";s:5:\"FAQ 5\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/05/faq-5-ele.jpg\";s:19:\"thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/05/faq-5-ele.jpg\";s:3:\"url\";s:45:\"https://websitedemos.net/astra-blocks/faq-5e/\";s:3:\"tag\";a:2:{i:822;s:3:\"faq\";i:821;s:26:\"frequently-asked-questions\";}s:8:\"category\";i:1001;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52678\";a:10:{s:5:\"title\";s:13:\"Main Banner 9\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-9el.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-9el.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/main-banner-9e/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52677\";a:10:{s:5:\"title\";s:13:\"Main Banner 8\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-8el.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-8el.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/main-banner-8e/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52676\";a:10:{s:5:\"title\";s:13:\"Main Banner 7\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-7el.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-7el.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/main-banner-7e/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52675\";a:10:{s:5:\"title\";s:13:\"Main Banner 6\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-6-ele.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-6-ele.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/main-banner-6e/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52674\";a:10:{s:5:\"title\";s:13:\"Main Banner 5\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-5ele.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-5ele.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/main-banner-5e/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52673\";a:10:{s:5:\"title\";s:13:\"Main Banner 4\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-4ele.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-4ele.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/main-banner-4e/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52672\";a:10:{s:5:\"title\";s:13:\"Main Banner 3\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-3el.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-3el.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/main-banner-3e/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52671\";a:10:{s:5:\"title\";s:13:\"Main Banner 2\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-2-ele.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-2-ele.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/main-banner-2e/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52670\";a:10:{s:5:\"title\";s:13:\"Main Banner 1\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-1-ele.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-1-ele.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/main-banner-1e/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52656\";a:10:{s:5:\"title\";s:20:\"Location And Hours 6\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/location-and-hours-6e.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/location-and-hours-6e.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/location-and-hours-6e/\";s:3:\"tag\";a:2:{i:823;s:7:\"contact\";i:1957;s:18:\"location-and-hours\";}s:8:\"category\";i:1950;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:0:\"\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52655\";a:10:{s:5:\"title\";s:20:\"Location And Hours 5\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/location-and-hours-5e.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/location-and-hours-5e.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/location-and-hours-5e/\";s:3:\"tag\";a:2:{i:823;s:7:\"contact\";i:1957;s:18:\"location-and-hours\";}s:8:\"category\";i:1950;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:0:\"\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52654\";a:10:{s:5:\"title\";s:20:\"Location And Hours 4\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/location-and-hours-4e.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/location-and-hours-4e.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/location-and-hours-4e/\";s:3:\"tag\";a:2:{i:823;s:7:\"contact\";i:1957;s:18:\"location-and-hours\";}s:8:\"category\";i:1950;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:0:\"\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52653\";a:10:{s:5:\"title\";s:20:\"Location And Hours 3\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/location-and-hours-3e.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/location-and-hours-3e.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/location-and-hours-3e/\";s:3:\"tag\";a:2:{i:823;s:7:\"contact\";i:1957;s:18:\"location-and-hours\";}s:8:\"category\";i:1950;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:0:\"\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52652\";a:10:{s:5:\"title\";s:20:\"Location And Hours 2\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/location-and-hours-2e.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/location-and-hours-2e.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/location-and-hours-2e/\";s:3:\"tag\";a:2:{i:823;s:7:\"contact\";i:1957;s:18:\"location-and-hours\";}s:8:\"category\";i:1950;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:0:\"\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52651\";a:10:{s:5:\"title\";s:20:\"Location And Hours 1\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/location-and-hours-1e.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/location-and-hours-1e.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/location-and-hours-1e/\";s:3:\"tag\";a:2:{i:823;s:7:\"contact\";i:1957;s:18:\"location-and-hours\";}s:8:\"category\";i:1950;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:0:\"\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52586\";a:10:{s:5:\"title\";s:10:\"Services 4\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/services-4-ele.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/services-4-ele.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/services-4e/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52589\";a:10:{s:5:\"title\";s:10:\"Services 5\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/services-5-ele.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/services-5-ele.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/services-5e/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52595\";a:10:{s:5:\"title\";s:7:\"About 8\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/about-8e.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/about-8e.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-8e/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52585\";a:10:{s:5:\"title\";s:10:\"Services 3\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/services-3-ele.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/services-3-ele.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/services-3e/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52594\";a:10:{s:5:\"title\";s:7:\"About 7\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/about-7e.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/about-7e.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-7e/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52584\";a:10:{s:5:\"title\";s:10:\"Services 2\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/05/services-2e.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/05/services-2e.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/services-2e/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52593\";a:10:{s:5:\"title\";s:7:\"About 6\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/about-6e.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/about-6e.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-6e/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52592\";a:10:{s:5:\"title\";s:7:\"About 5\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/about-5e.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/about-5e.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-5e/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52591\";a:10:{s:5:\"title\";s:7:\"About 4\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/about-4e.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/about-4e.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-4e/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52583\";a:10:{s:5:\"title\";s:10:\"Services 1\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/05/services-1e.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/05/services-1e.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/services-1e/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52590\";a:10:{s:5:\"title\";s:7:\"About 3\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/05/about-3-ele.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/05/about-3-ele.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-3e/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52588\";a:10:{s:5:\"title\";s:7:\"About 2\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/05/about-2-ele.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/05/about-2-ele.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-2e/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52587\";a:10:{s:5:\"title\";s:7:\"About 1\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/05/about-1-ele.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/05/about-1-ele.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-1e/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52528\";a:10:{s:5:\"title\";s:17:\"Image and Text 10\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-10ele.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-10ele.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/image-and-text-10e/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52529\";a:10:{s:5:\"title\";s:16:\"Image and Text 9\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-9ele.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-9ele.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/image-and-text-9e/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52526\";a:10:{s:5:\"title\";s:16:\"Image and Text 8\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-8el.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-8el.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/image-and-text-8e/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52524\";a:10:{s:5:\"title\";s:16:\"Image and Text 7\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-7el.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-7el.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/image-and-text-7e/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52527\";a:10:{s:5:\"title\";s:16:\"Image and Text 6\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-6el.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-6el.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/image-and-text-6e/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52525\";a:10:{s:5:\"title\";s:16:\"Image and Text 5\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-5ele.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-5ele.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/image-and-text-5e/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52523\";a:10:{s:5:\"title\";s:16:\"Image and Text 4\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-4-ele.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-4-ele.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/image-and-text-4e/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52530\";a:10:{s:5:\"title\";s:16:\"Image and Text 3\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-3el.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-3el.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/image-and-text-3e/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52521\";a:10:{s:5:\"title\";s:16:\"Image and Text 2\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-2-ele.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-2-ele.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/image-and-text-2e/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52519\";a:10:{s:5:\"title\";s:16:\"Image and Text 1\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-1el.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-1el.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/image-and-text-1e/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52457\";a:10:{s:5:\"title\";s:6:\"Text 9\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/text-9.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/text-9.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/text-9e/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52456\";a:10:{s:5:\"title\";s:6:\"Text 8\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/text-8.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/text-8.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/text-8e/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52455\";a:10:{s:5:\"title\";s:6:\"Text 7\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/text-7.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/text-7.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/text-7e/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52454\";a:10:{s:5:\"title\";s:6:\"Text 6\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/text-6.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/text-6.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/text-6e/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52453\";a:10:{s:5:\"title\";s:6:\"Text 5\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/text-5.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/text-5.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/text-5e/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52452\";a:10:{s:5:\"title\";s:6:\"Text 4\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/text-4.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/text-4.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/text-4e/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52451\";a:10:{s:5:\"title\";s:6:\"Text 3\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/text-3.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/text-3.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/text-3e/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52450\";a:10:{s:5:\"title\";s:6:\"Text 2\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/text-2.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/text-2.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/text-2e/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52449\";a:10:{s:5:\"title\";s:6:\"Text 1\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/text-1.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/text-1.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/text-1e/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-45025\";a:10:{s:5:\"title\";s:15:\"Single Quote 3B\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-3b.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-3b.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-3b/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-45020\";a:10:{s:5:\"title\";s:15:\"Single Quote 3W\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-3w.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-3w.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-3w/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44974\";a:10:{s:5:\"title\";s:12:\"Portfolio 6B\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-6b.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-6b.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/portfolio-6b/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44634\";a:10:{s:5:\"title\";s:12:\"Portfolio 6W\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-6w.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-6w.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/portfolio-6w/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-41764\";a:10:{s:5:\"title\";s:7:\"Hero 9B\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-9b.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-9b.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/hero-9b/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-38906\";a:10:{s:5:\"title\";s:7:\"Hero 9W\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-9w.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-9w.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/hero-9w/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-42229\";a:10:{s:5:\"title\";s:11:\"Services 8B\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/services-8b.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/services-8b.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/services-8b/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-41045\";a:10:{s:5:\"title\";s:11:\"Services 8W\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/services-8w.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/services-8w.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/services-8w/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-43000\";a:10:{s:5:\"title\";s:12:\"Services 11B\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/01/services-11b.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/01/services-11b.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/services-11b/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-42974\";a:10:{s:5:\"title\";s:12:\"Services 11W\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/01/services-11w.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/01/services-11w.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/services-11w/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}}','no'),(260,'current_theme','Hello Elementor','yes'),(261,'theme_mods_astra','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1682821777;s:4:\"data\";a:1:{s:19:\"wp_inactive_widgets\";a:13:{i:0;s:10:\"calendar-2\";i:1;s:10:\"archives-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:14:\"recent-posts-3\";i:6;s:17:\"recent-comments-2\";i:7;s:7:\"block-8\";i:8;s:7:\"block-2\";i:9;s:7:\"block-3\";i:10;s:7:\"block-4\";i:11;s:7:\"block-5\";i:12;s:7:\"block-6\";}}}}','no'),(262,'theme_switched','','yes'),(297,'eael_save_settings','a:57:{s:9:\"post-grid\";i:1;s:13:\"post-timeline\";i:1;s:10:\"fancy-text\";i:1;s:12:\"creative-btn\";i:1;s:10:\"count-down\";i:1;s:12:\"team-members\";i:1;s:12:\"testimonials\";i:1;s:8:\"info-box\";i:1;s:8:\"flip-box\";i:1;s:14:\"call-to-action\";i:1;s:11:\"dual-header\";i:1;s:11:\"price-table\";i:1;s:12:\"twitter-feed\";i:1;s:13:\"facebook-feed\";i:1;s:19:\"advanced-data-table\";s:0:\"\";s:10:\"data-table\";i:1;s:14:\"filter-gallery\";i:1;s:15:\"image-accordion\";i:1;s:14:\"content-ticker\";i:1;s:7:\"tooltip\";i:1;s:13:\"adv-accordion\";i:1;s:8:\"adv-tabs\";i:1;s:12:\"progress-bar\";i:1;s:12:\"feature-list\";i:1;s:12:\"product-grid\";s:0:\"\";s:14:\"contact-form-7\";s:0:\"\";s:7:\"weforms\";s:0:\"\";s:10:\"ninja-form\";s:0:\"\";s:9:\"formstack\";s:0:\"\";s:12:\"gravity-form\";s:0:\"\";s:12:\"caldera-form\";s:0:\"\";s:7:\"wpforms\";s:0:\"\";s:10:\"fluentform\";s:0:\"\";s:8:\"typeform\";s:0:\"\";s:24:\"betterdocs-category-grid\";s:0:\"\";s:23:\"betterdocs-category-box\";s:0:\"\";s:22:\"betterdocs-search-form\";s:0:\"\";s:12:\"sticky-video\";i:1;s:14:\"event-calendar\";i:1;s:10:\"embedpress\";i:1;s:24:\"crowdfundly-organization\";i:1;s:24:\"crowdfundly-all-campaign\";i:1;s:27:\"crowdfundly-single-campaign\";i:1;s:12:\"woo-checkout\";s:0:\"\";s:8:\"woo-cart\";s:0:\"\";s:14:\"login-register\";s:0:\"\";s:18:\"woocommerce-review\";i:1;s:11:\"career-page\";i:1;s:19:\"woo-product-compare\";s:0:\"\";s:20:\"woo-product-carousel\";s:0:\"\";s:11:\"simple-menu\";i:1;s:19:\"woo-product-gallery\";s:0:\"\";s:18:\"interactive-circle\";s:0:\"\";s:14:\"better-payment\";i:1;s:11:\"nft-gallery\";i:1;s:16:\"business-reviews\";i:1;s:8:\"svg-draw\";s:0:\"\";}','yes'),(187,'astra_sites_recent_import_log_file','/home/center/divyayogamonteregie.org/ca/wp-content/uploads/astra-sites/import-29-Apr-2023-09-40-59-ef4bcd897cca8cfce53484d1b349ad60.log','no'),(153,'finished_updating_comment_type','1','yes'),(980,'edd_sl_d0a92c9978fd4698f29b2f113a05f846','a:2:{s:7:\"timeout\";i:1687043331;s:5:\"value\";s:6329:\"{\"new_version\":\"2.3\",\"stable_version\":\"2.3\",\"name\":\"Click to Chat PRO\",\"slug\":\"click-to-chat-pro\",\"url\":\"https:\\/\\/holithemes.com\\/shop\\/downloads\\/click-to-chat-pro\\/?changelog=1\",\"last_updated\":\"2023-05-05 06:22:43\",\"homepage\":\"https:\\/\\/holithemes.com\\/shop\\/downloads\\/click-to-chat-pro\\/\",\"package\":\"https:\\/\\/holithemes.com\\/shop\\/edd-sl\\/package_download\\/MTY5MTAxMjMzMTpiM2Y1YjM0MjhkMDhjZTkzNDM4YzI1NzliMjY4YmRjODo1NTAyOmMyYzM4ZWQ5ZTAwMTY2Y2IzMjNiYmNiZTVkZmZkYzhlOmh0dHBzQC8vZGl2eWF5b2dhbW9udGVyZWdpZS5vcmcvY2E6MA==\",\"download_link\":\"https:\\/\\/holithemes.com\\/shop\\/edd-sl\\/package_download\\/MTY5MTAxMjMzMTpiM2Y1YjM0MjhkMDhjZTkzNDM4YzI1NzliMjY4YmRjODo1NTAyOmMyYzM4ZWQ5ZTAwMTY2Y2IzMjNiYmNiZTVkZmZkYzhlOmh0dHBzQC8vZGl2eWF5b2dhbW9udGVyZWdpZS5vcmcvY2E6MA==\",\"sections\":{\"description\":\"\",\"changelog\":\"<p>= 2.3 =<\\/p>\\n<ul>\\n<li>Fix: Greetings form, Multi-agent border radius blur.<\\/li>\\n<li>Greeting Form: settings to avoid duplicate emails and webhook notifications when the user clicks to chat multiple times without modification.<\\/li>\\n<\\/ul>\\n<p>= 2.2 =<\\/p>\\n<ul>\\n<li>\\u00a0New: Custom URL<br \\/>\\n(Custom URL at the page level are planned for release in the future version)<\\/li>\\n<li>Enhancement: Webhooks<\\/li>\\n<li>Fix: Multi-Agent background color<\\/li>\\n<li>Fix: Greeting Form background color<\\/li>\\n<\\/ul>\\n<p>= 2.1.3 =<\\/p>\\n<ul>\\n<li>Enchantment: Webhooks<\\/li>\\n<\\/ul>\\n<p>= 2.1 =<\\/p>\\n<ul>\\n<li>Enchantment: Multi-Agent feature<\\/li>\\n<\\/ul>\\n<p>= 2.0 =<\\/p>\\n<ul>\\n<li>multi agent<\\/li>\\n<\\/ul>\\n<p>= 1.11 =<\\/p>\\n<ul>\\n<li>multi-agent (beta)<\\/li>\\n<li>Enchantment: random number<\\/li>\\n<\\/ul>\\n<p>= 1.10 =<\\/p>\\n<ul>\\n<li>Overwrite settings for WooCommerce page: added greetings template<\\/li>\\n<li>Enchantment: greeting form<\\/li>\\n<\\/ul>\\n<p>= 1.9 =<\\/p>\\n<ul>\\n<li>Greeting form - Reply-To is now user filled email id. Easy to reply to customer<\\/li>\\n<li>Page level settings: Greetings call to action<\\/li>\\n<\\/ul>\\n<p>= 1.8 =<\\/p>\\n<ul>\\n<li>Greetings settings for WooCommerce Single product pages<\\/li>\\n<li>option form filed for Greetings Form<\\/li>\\n<li>page-level settings - greetings added background color widget to a text editor<\\/li>\\n<\\/ul>\\n<p>= 1.7 =<\\/p>\\n<ul>\\n<li>Greetings page level settings<\\/li>\\n<li>settings - If closes greetings, disable reopen greetings based on time, scroll actions<\\/li>\\n<li>added sortable greetings form<\\/li>\\n<li>Enchantment: greeting form fields at the prefilled message.<\\/li>\\n<\\/ul>\\n<p>= 1.6 =<\\/p>\\n<ul>\\n<li>Greetings Form - Checkbox filed name - can add markdown style of links<\\/li>\\n<li>Greeting Form fields - localization<\\/li>\\n<li>Open Greetings dialog When an element is in viewport(25% margin) which contains Class name: \'ctc_greetings_now\'<\\/li>\\n<li>greetings form - email notification with more values. Source page URL, time<\\/li>\\n<\\/ul>\\n<p>&nbsp;<\\/p>\\n<p>= 1.5=<\\/p>\\n<ul>\\n<li>Greetings Form filling<\\/li>\\n<\\/ul>\\n<p>= 1.4=<\\/p>\\n<ul>\\n<li>Enchantment: Google Ads Conversion<\\/li>\\n<\\/ul>\\n<p>= 1.3 =<\\/p>\\n<ul>\\n<li>Display based on Website Visitor logged in status<\\/li>\\n<\\/ul>\\n<p>= 1.2.1 =<\\/p>\\n<ul>\\n<li>Page-Level Setting\\n<ul>\\n<li>Time Dealy<\\/li>\\n<li>Scroll Dealy<\\/li>\\n<\\/ul>\\n<\\/li>\\n<\\/ul>\\n<p>= 1.2 =<\\/p>\\n<ul>\\n<li>Add WhatsApp icon\\/button at WooCommerce Single product pages<\\/li>\\n<\\/ul>\\n<p>= 1.1 =<\\/p>\\n<ul>\\n<li>Google Ads Conversion<\\/li>\\n<li>Display only to LoggedIn Users<\\/li>\\n<\\/ul>\\n<p>= 1.0 =<\\/p>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"icons\":[],\"description\":[\"\"],\"changelog\":[\"<p>= 2.3 =<\\/p>\\n<ul>\\n<li>Fix: Greetings form, Multi-agent border radius blur.<\\/li>\\n<li>Greeting Form: settings to avoid duplicate emails and webhook notifications when the user clicks to chat multiple times without modification.<\\/li>\\n<\\/ul>\\n<p>= 2.2 =<\\/p>\\n<ul>\\n<li>\\u00a0New: Custom URL<br \\/>\\n(Custom URL at the page level are planned for release in the future version)<\\/li>\\n<li>Enhancement: Webhooks<\\/li>\\n<li>Fix: Multi-Agent background color<\\/li>\\n<li>Fix: Greeting Form background color<\\/li>\\n<\\/ul>\\n<p>= 2.1.3 =<\\/p>\\n<ul>\\n<li>Enchantment: Webhooks<\\/li>\\n<\\/ul>\\n<p>= 2.1 =<\\/p>\\n<ul>\\n<li>Enchantment: Multi-Agent feature<\\/li>\\n<\\/ul>\\n<p>= 2.0 =<\\/p>\\n<ul>\\n<li>multi agent<\\/li>\\n<\\/ul>\\n<p>= 1.11 =<\\/p>\\n<ul>\\n<li>multi-agent (beta)<\\/li>\\n<li>Enchantment: random number<\\/li>\\n<\\/ul>\\n<p>= 1.10 =<\\/p>\\n<ul>\\n<li>Overwrite settings for WooCommerce page: added greetings template<\\/li>\\n<li>Enchantment: greeting form<\\/li>\\n<\\/ul>\\n<p>= 1.9 =<\\/p>\\n<ul>\\n<li>Greeting form - Reply-To is now user filled email id. Easy to reply to customer<\\/li>\\n<li>Page level settings: Greetings call to action<\\/li>\\n<\\/ul>\\n<p>= 1.8 =<\\/p>\\n<ul>\\n<li>Greetings settings for WooCommerce Single product pages<\\/li>\\n<li>option form filed for Greetings Form<\\/li>\\n<li>page-level settings - greetings added background color widget to a text editor<\\/li>\\n<\\/ul>\\n<p>= 1.7 =<\\/p>\\n<ul>\\n<li>Greetings page level settings<\\/li>\\n<li>settings - If closes greetings, disable reopen greetings based on time, scroll actions<\\/li>\\n<li>added sortable greetings form<\\/li>\\n<li>Enchantment: greeting form fields at the prefilled message.<\\/li>\\n<\\/ul>\\n<p>= 1.6 =<\\/p>\\n<ul>\\n<li>Greetings Form - Checkbox filed name - can add markdown style of links<\\/li>\\n<li>Greeting Form fields - localization<\\/li>\\n<li>Open Greetings dialog When an element is in viewport(25% margin) which contains Class name: \'ctc_greetings_now\'<\\/li>\\n<li>greetings form - email notification with more values. Source page URL, time<\\/li>\\n<\\/ul>\\n<p>&nbsp;<\\/p>\\n<p>= 1.5=<\\/p>\\n<ul>\\n<li>Greetings Form filling<\\/li>\\n<\\/ul>\\n<p>= 1.4=<\\/p>\\n<ul>\\n<li>Enchantment: Google Ads Conversion<\\/li>\\n<\\/ul>\\n<p>= 1.3 =<\\/p>\\n<ul>\\n<li>Display based on Website Visitor logged in status<\\/li>\\n<\\/ul>\\n<p>= 1.2.1 =<\\/p>\\n<ul>\\n<li>Page-Level Setting\\n<ul>\\n<li>Time Dealy<\\/li>\\n<li>Scroll Dealy<\\/li>\\n<\\/ul>\\n<\\/li>\\n<\\/ul>\\n<p>= 1.2 =<\\/p>\\n<ul>\\n<li>Add WhatsApp icon\\/button at WooCommerce Single product pages<\\/li>\\n<\\/ul>\\n<p>= 1.1 =<\\/p>\\n<ul>\\n<li>Google Ads Conversion<\\/li>\\n<li>Display only to LoggedIn Users<\\/li>\\n<\\/ul>\\n<p>= 1.0 =<\\/p>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\n\"],\"plugin\":\"click-to-chat-pro\\/click-to-chat-pro.php\",\"id\":\"click-to-chat-pro\\/click-to-chat-pro.php\"}\";}','no'),(1114,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:29:\"admin@divyayogamonteregie.org\";s:7:\"version\";s:5:\"6.7.1\";s:9:\"timestamp\";i:1732208080;}','off'),(172,'recently_activated','a:0:{}','off'),(176,'backuply_last_backup','1691541448','yes'),(178,'backuply_backup_stopped','1','yes'),(179,'_transient_health-check-site-status-result','{\"good\":18,\"recommended\":4,\"critical\":1}','yes'),(180,'_transient_dirsize_cache','a:356:{s:51:\"/home/center/divyayogamonteregie.org/ca/wp-admin/css/colors/blue\";i:78570;s:53:\"/home/center/divyayogamonteregie.org/ca/wp-admin/css/colors/coffee\";i:76792;s:56:\"/home/center/divyayogamonteregie.org/ca/wp-admin/css/colors/ectoplasm\";i:78534;s:52:\"/home/center/divyayogamonteregie.org/ca/wp-admin/css/colors/light\";i:79254;s:55:\"/home/center/divyayogamonteregie.org/ca/wp-admin/css/colors/midnight\";i:79386;s:53:\"/home/center/divyayogamonteregie.org/ca/wp-admin/css/colors/modern\";i:78247;s:52:\"/home/center/divyayogamonteregie.org/ca/wp-admin/css/colors/ocean\";i:76021;s:54:\"/home/center/divyayogamonteregie.org/ca/wp-admin/css/colors/sunrise\";i:79307;s:46:\"/home/center/divyayogamonteregie.org/ca/wp-admin/css/colors\";i:649988;s:39:\"/home/center/divyayogamonteregie.org/ca/wp-admin/css\";i:2506753;s:42:\"/home/center/divyayogamonteregie.org/ca/wp-admin/images\";i:396786;s:44:\"/home/center/divyayogamonteregie.org/ca/wp-admin/includes\";i:2966113;s:46:\"/home/center/divyayogamonteregie.org/ca/wp-admin/js/widgets\";i:139376;s:38:\"/home/center/divyayogamonteregie.org/ca/wp-admin/js\";i:1908892;s:41:\"/home/center/divyayogamonteregie.org/ca/wp-admin/maint\";i:7597;s:43:\"/home/center/divyayogamonteregie.org/ca/wp-admin/network\";i:125036;s:40:\"/home/center/divyayogamonteregie.org/ca/wp-admin/user\";i:3418;s:35:\"/home/center/divyayogamonteregie.org/ca/wp-admin\";i:8818720;s:45:\"/home/center/divyayogamonteregie.org/ca/wp-content/upgrade\";i:0;s:66:\"/home/center/divyayogamonteregie.org/ca/wp-content/backuply/backups_info-YjCszn\";i:549;s:65:\"/home/center/divyayogamonteregie.org/ca/wp-content/backuply/backups-YjCszn/tmp\";i:0;s:61:\"/home/center/divyayogamonteregie.org/ca/wp-content/backuply/backups-YjCszn\";i:23624198;s:46:\"/home/center/divyayogamonteregie.org/ca/wp-content/backuply\";i:23670318;s:37:\"/home/center/divyayogamonteregie.org/ca/wp-content\";i:23670346;s:45:\"/home/center/divyayogamonteregie.org/ca/wp-includes/assets\";i:22976;s:53:\"/home/center/divyayogamonteregie.org/ca/wp-includes/block-patterns\";i:8843;s:53:\"/home/center/divyayogamonteregie.org/ca/wp-includes/block-supports\";i:96918;s:54:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/archives\";i:1585;s:51:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/audio\";i:3456;s:52:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/avatar\";i:1874;s:51:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/block\";i:5014;s:52:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/button\";i:16094;s:53:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/buttons\";i:11089;s:54:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/calendar\";i:3750;s:56:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/categories\";i:2105;s:50:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/code\";i:2426;s:52:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/column\";i:1443;s:53:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/columns\";i:8535;s:65:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/comment-author-name\";i:1138;s:61:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/comment-content\";i:1369;s:58:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/comment-date\";i:1058;s:63:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/comment-edit-link\";i:1159;s:64:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/comment-reply-link\";i:1001;s:62:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/comment-template\";i:2856;s:54:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/comments\";i:28862;s:65:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/comments-pagination\";i:8453;s:70:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/comments-pagination-next\";i:957;s:73:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/comments-pagination-numbers\";i:1779;s:74:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/comments-pagination-previous\";i:969;s:60:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/comments-title\";i:1646;s:51:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/cover\";i:77248;s:51:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/embed\";i:10994;s:50:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/file\";i:9351;s:54:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/freeform\";i:38063;s:53:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/gallery\";i:75476;s:51:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/group\";i:12943;s:53:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/heading\";i:2049;s:55:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/home-link\";i:1076;s:50:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/html\";i:3584;s:51:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/image\";i:25224;s:61:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/latest-comments\";i:4765;s:58:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/latest-posts\";i:11200;s:59:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/legacy-widget\";i:501;s:50:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/list\";i:1944;s:55:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/list-item\";i:876;s:54:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/loginout\";i:510;s:56:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/media-text\";i:13669;s:53:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/missing\";i:564;s:50:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/more\";i:3698;s:56:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/navigation\";i:138260;s:61:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/navigation-link\";i:11573;s:64:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/navigation-submenu\";i:5812;s:54:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/nextpage\";i:2985;s:55:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/page-list\";i:7792;s:60:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/page-list-item\";i:1055;s:55:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/paragraph\";i:5127;s:53:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/pattern\";i:324;s:57:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/post-author\";i:2893;s:67:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/post-author-biography\";i:922;s:62:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/post-author-name\";i:1069;s:64:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/post-comments-form\";i:9484;s:58:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/post-content\";i:845;s:55:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/post-date\";i:1293;s:58:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/post-excerpt\";i:2809;s:65:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/post-featured-image\";i:25915;s:66:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/post-navigation-link\";i:3059;s:59:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/post-template\";i:5221;s:56:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/post-terms\";i:1661;s:56:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/post-title\";i:1829;s:58:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/preformatted\";i:1468;s:55:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/pullquote\";i:7653;s:51:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/query\";i:6813;s:62:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/query-no-results\";i:845;s:62:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/query-pagination\";i:9144;s:67:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/query-pagination-next\";i:939;s:70:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/query-pagination-numbers\";i:1779;s:71:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/query-pagination-previous\";i:951;s:57:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/query-title\";i:1393;s:51:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/quote\";i:6200;s:55:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/read-more\";i:2280;s:49:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/rss\";i:5023;s:52:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/search\";i:8701;s:55:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/separator\";i:5308;s:55:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/shortcode\";i:4781;s:55:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/site-logo\";i:9535;s:58:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/site-tagline\";i:1430;s:56:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/site-title\";i:2167;s:57:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/social-link\";i:2250;s:58:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/social-links\";i:51064;s:52:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/spacer\";i:4179;s:51:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/table\";i:28378;s:55:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/tag-cloud\";i:3446;s:59:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/template-part\";i:8383;s:62:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/term-description\";i:1017;s:58:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/text-columns\";i:2980;s:51:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/verse\";i:1653;s:51:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/video\";i:11417;s:58:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks/widget-group\";i:319;s:45:\"/home/center/divyayogamonteregie.org/ca/wp-includes/blocks\";i:1254381;s:51:\"/home/center/divyayogamonteregie.org/ca/wp-includes/certificates\";i:233231;s:63:\"/home/center/divyayogamonteregie.org/ca/wp-includes/css/dist/block-directory\";i:14924;s:60:\"/home/center/divyayogamonteregie.org/ca/wp-includes/css/dist/block-editor\";i:569571;s:61:\"/home/center/divyayogamonteregie.org/ca/wp-includes/css/dist/block-library\";i:734082;s:58:\"/home/center/divyayogamonteregie.org/ca/wp-includes/css/dist/components\";i:348353;s:65:\"/home/center/divyayogamonteregie.org/ca/wp-includes/css/dist/customize-widgets\";i:24658;s:57:\"/home/center/divyayogamonteregie.org/ca/wp-includes/css/dist/edit-post\";i:204758;s:57:\"/home/center/divyayogamonteregie.org/ca/wp-includes/css/dist/edit-site\";i:257772;s:60:\"/home/center/divyayogamonteregie.org/ca/wp-includes/css/dist/edit-widgets\";i:106298;s:54:\"/home/center/divyayogamonteregie.org/ca/wp-includes/css/dist/editor\";i:75828;s:62:\"/home/center/divyayogamonteregie.org/ca/wp-includes/css/dist/format-library\";i:8166;s:68:\"/home/center/divyayogamonteregie.org/ca/wp-includes/css/dist/list-reusable-blocks\";i:18974;s:51:\"/home/center/divyayogamonteregie.org/ca/wp-includes/css/dist/nux\";i:11618;s:63:\"/home/center/divyayogamonteregie.org/ca/wp-includes/css/dist/reusable-blocks\";i:2216;s:55:\"/home/center/divyayogamonteregie.org/ca/wp-includes/css/dist/widgets\";i:23682;s:47:\"/home/center/divyayogamonteregie.org/ca/wp-includes/css/dist\";i:2400900;s:42:\"/home/center/divyayogamonteregie.org/ca/wp-includes/css\";i:3048347;s:48:\"/home/center/divyayogamonteregie.org/ca/wp-includes/customize\";i:174759;s:44:\"/home/center/divyayogamonteregie.org/ca/wp-includes/fonts\";i:289826;s:47:\"/home/center/divyayogamonteregie.org/ca/wp-includes/html-api\";i:76934;s:42:\"/home/center/divyayogamonteregie.org/ca/wp-includes/ID3\";i:1155209;s:53:\"/home/center/divyayogamonteregie.org/ca/wp-includes/images/crystal\";i:15541;s:51:\"/home/center/divyayogamonteregie.org/ca/wp-includes/images/media\";i:2419;s:53:\"/home/center/divyayogamonteregie.org/ca/wp-includes/images/smilies\";i:10082;s:49:\"/home/center/divyayogamonteregie.org/ca/wp-includes/images/wlw\";i:4413;s:45:\"/home/center/divyayogamonteregie.org/ca/wp-includes/images\";i:103747;s:42:\"/home/center/divyayogamonteregie.org/ca/wp-includes/IXR\";i:33915;s:52:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/codemirror\";i:1287141;s:46:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/crop\";i:20004;s:58:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/dist/development\";i:178306;s:53:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/dist/vendor\";i:2546686;s:46:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/dist\";i:17657876;s:55:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/imgareaselect\";i:49549;s:47:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/jcrop\";i:24976;s:51:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/jquery/ui\";i:808535;s:48:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/jquery\";i:1334335;s:64:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/mediaelement/renderers\";i:18880;s:54:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/mediaelement\";i:721307;s:50:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/plupload\";i:489844;s:51:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/swfupload\";i:8715;s:50:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/thickbox\";i:31233;s:55:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/langs\";i:15529;s:65:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/plugins/charmap\";i:31811;s:69:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/plugins/colorpicker\";i:4910;s:70:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/plugins/compat3x/css\";i:8179;s:66:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/plugins/compat3x\";i:21758;s:72:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/plugins/directionality\";i:2749;s:68:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/plugins/fullscreen\";i:7779;s:60:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/plugins/hr\";i:1347;s:63:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/plugins/image\";i:55874;s:62:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/plugins/link\";i:32949;s:63:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/plugins/lists\";i:97383;s:63:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/plugins/media\";i:57914;s:63:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/plugins/paste\";i:113193;s:66:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/plugins/tabfocus\";i:5336;s:67:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/plugins/textcolor\";i:16237;s:67:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/plugins/wordpress\";i:50628;s:70:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/plugins/wpautoresize\";i:8332;s:67:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/plugins/wpdialogs\";i:3761;s:69:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/plugins/wpeditimage\";i:37711;s:65:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/plugins/wpemoji\";i:5099;s:67:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/plugins/wpgallery\";i:4806;s:64:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/plugins/wplink\";i:26476;s:71:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/plugins/wptextpattern\";i:11923;s:64:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/plugins/wpview\";i:8985;s:57:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/plugins\";i:606961;s:71:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/skins/lightgray/fonts\";i:155760;s:69:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/skins/lightgray/img\";i:2856;s:65:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/skins/lightgray\";i:210254;s:72:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/skins/wordpress/images\";i:14207;s:65:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/skins/wordpress\";i:22831;s:55:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/skins\";i:233085;s:63:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/themes/inlite\";i:452642;s:63:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/themes/modern\";i:446221;s:56:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/themes\";i:898863;s:55:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce/utils\";i:18822;s:49:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js/tinymce\";i:2853651;s:41:\"/home/center/divyayogamonteregie.org/ca/wp-includes/js\";i:26886974;s:49:\"/home/center/divyayogamonteregie.org/ca/wp-includes/php-compat\";i:1251;s:48:\"/home/center/divyayogamonteregie.org/ca/wp-includes/PHPMailer\";i:228372;s:43:\"/home/center/divyayogamonteregie.org/ca/wp-includes/pomo\";i:54177;s:52:\"/home/center/divyayogamonteregie.org/ca/wp-includes/random_compat\";i:43330;s:55:\"/home/center/divyayogamonteregie.org/ca/wp-includes/Requests/library\";i:261;s:56:\"/home/center/divyayogamonteregie.org/ca/wp-includes/Requests/src/Auth\";i:2541;s:58:\"/home/center/divyayogamonteregie.org/ca/wp-includes/Requests/src/Cookie\";i:4174;s:66:\"/home/center/divyayogamonteregie.org/ca/wp-includes/Requests/src/Exception/Http\";i:16715;s:71:\"/home/center/divyayogamonteregie.org/ca/wp-includes/Requests/src/Exception/Transport\";i:1397;s:61:\"/home/center/divyayogamonteregie.org/ca/wp-includes/Requests/src/Exception\";i:22464;s:57:\"/home/center/divyayogamonteregie.org/ca/wp-includes/Requests/src/Proxy\";i:4217;s:60:\"/home/center/divyayogamonteregie.org/ca/wp-includes/Requests/src/Response\";i:3003;s:61:\"/home/center/divyayogamonteregie.org/ca/wp-includes/Requests/src/Transport\";i:34845;s:59:\"/home/center/divyayogamonteregie.org/ca/wp-includes/Requests/src/Utility\";i:6651;s:51:\"/home/center/divyayogamonteregie.org/ca/wp-includes/Requests/src\";i:211548;s:47:\"/home/center/divyayogamonteregie.org/ca/wp-includes/Requests\";i:211809;s:57:\"/home/center/divyayogamonteregie.org/ca/wp-includes/rest-api/endpoints\";i:737447;s:54:\"/home/center/divyayogamonteregie.org/ca/wp-includes/rest-api/fields\";i:22340;s:54:\"/home/center/divyayogamonteregie.org/ca/wp-includes/rest-api/search\";i:15909;s:47:\"/home/center/divyayogamonteregie.org/ca/wp-includes/rest-api\";i:862848;s:54:\"/home/center/divyayogamonteregie.org/ca/wp-includes/SimplePie/Cache\";i:39607;s:61:\"/home/center/divyayogamonteregie.org/ca/wp-includes/SimplePie/Content/Type\";i:8015;s:56:\"/home/center/divyayogamonteregie.org/ca/wp-includes/SimplePie/Content\";i:8015;s:60:\"/home/center/divyayogamonteregie.org/ca/wp-includes/SimplePie/Decode/HTML\";i:17241;s:55:\"/home/center/divyayogamonteregie.org/ca/wp-includes/SimplePie/Decode\";i:17241;s:53:\"/home/center/divyayogamonteregie.org/ca/wp-includes/SimplePie/HTTP\";i:11487;s:52:\"/home/center/divyayogamonteregie.org/ca/wp-includes/SimplePie/Net\";i:7493;s:54:\"/home/center/divyayogamonteregie.org/ca/wp-includes/SimplePie/Parse\";i:20551;s:64:\"/home/center/divyayogamonteregie.org/ca/wp-includes/SimplePie/XML/Declaration\";i:7098;s:52:\"/home/center/divyayogamonteregie.org/ca/wp-includes/SimplePie/XML\";i:7098;s:48:\"/home/center/divyayogamonteregie.org/ca/wp-includes/SimplePie\";i:458625;s:57:\"/home/center/divyayogamonteregie.org/ca/wp-includes/sitemaps/providers\";i:16711;s:47:\"/home/center/divyayogamonteregie.org/ca/wp-includes/sitemaps\";i:46858;s:56:\"/home/center/divyayogamonteregie.org/ca/wp-includes/sodium_compat/lib\";i:87301;s:77:\"/home/center/divyayogamonteregie.org/ca/wp-includes/sodium_compat/namespaced/Core/ChaCha20\";i:224;s:82:\"/home/center/divyayogamonteregie.org/ca/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge\";i:602;s:79:\"/home/center/divyayogamonteregie.org/ca/wp-includes/sodium_compat/namespaced/Core/Curve25519\";i:820;s:77:\"/home/center/divyayogamonteregie.org/ca/wp-includes/sodium_compat/namespaced/Core/Poly1305\";i:112;s:68:\"/home/center/divyayogamonteregie.org/ca/wp-includes/sodium_compat/namespaced/Core\";i:2444;s:63:\"/home/center/divyayogamonteregie.org/ca/wp-includes/sodium_compat/namespaced\";i:2698;s:68:\"/home/center/divyayogamonteregie.org/ca/wp-includes/sodium_compat/src/Core/Base64\";i:22135;s:70:\"/home/center/divyayogamonteregie.org/ca/wp-includes/sodium_compat/src/Core/ChaCha20\";i:5264;s:75:\"/home/center/divyayogamonteregie.org/ca/wp-includes/sodium_compat/src/Core/Curve25519/Ge\";i:7881;s:72:\"/home/center/divyayogamonteregie.org/ca/wp-includes/sodium_compat/src/Core/Curve25519\";i:121645;s:70:\"/home/center/divyayogamonteregie.org/ca/wp-includes/sodium_compat/src/Core/Poly1305\";i:12912;s:74:\"/home/center/divyayogamonteregie.org/ca/wp-includes/sodium_compat/src/Core/SecretStream\";i:3624;s:61:\"/home/center/divyayogamonteregie.org/ca/wp-includes/sodium_compat/src/Core\";i:452743;s:72:\"/home/center/divyayogamonteregie.org/ca/wp-includes/sodium_compat/src/Core32/ChaCha20\";i:6407;s:77:\"/home/center/divyayogamonteregie.org/ca/wp-includes/sodium_compat/src/Core32/Curve25519/Ge\";i:8177;s:74:\"/home/center/divyayogamonteregie.org/ca/wp-includes/sodium_compat/src/Core32/Curve25519\";i:122690;s:72:\"/home/center/divyayogamonteregie.org/ca/wp-includes/sodium_compat/src/Core32/Poly1305\";i:15965;s:76:\"/home/center/divyayogamonteregie.org/ca/wp-includes/sodium_compat/src/Core32/SecretStream\";i:3656;s:63:\"/home/center/divyayogamonteregie.org/ca/wp-includes/sodium_compat/src/Core32\";i:437041;s:62:\"/home/center/divyayogamonteregie.org/ca/wp-includes/sodium_compat/src/PHP52\";i:4116;s:56:\"/home/center/divyayogamonteregie.org/ca/wp-includes/sodium_compat/src\";i:1207254;s:52:\"/home/center/divyayogamonteregie.org/ca/wp-includes/sodium_compat\";i:1303466;s:51:\"/home/center/divyayogamonteregie.org/ca/wp-includes/style-engine\";i:38240;s:55:\"/home/center/divyayogamonteregie.org/ca/wp-includes/Text/Diff/Engine\";i:31662;s:57:\"/home/center/divyayogamonteregie.org/ca/wp-includes/Text/Diff/Renderer\";i:5535;s:48:\"/home/center/divyayogamonteregie.org/ca/wp-includes/Text/Diff\";i:44010;s:43:\"/home/center/divyayogamonteregie.org/ca/wp-includes/Text\";i:56929;s:51:\"/home/center/divyayogamonteregie.org/ca/wp-includes/theme-compat\";i:15443;s:46:\"/home/center/divyayogamonteregie.org/ca/wp-includes/widgets\";i:157493;s:38:\"/home/center/divyayogamonteregie.org/ca/wp-includes\";i:43684224;s:26:\"/home/center/divyayogamonteregie.org/ca\";i:76354825;s:71:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/css\";i:383744;s:74:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/images\";i:2128437;s:70:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/js\";i:19796;s:84:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/01-settings\";i:11555;s:81:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/02-tools\";i:6930;s:83:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/03-generic\";i:15944;s:84:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/04-elements\";i:12312;s:88:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/audio\";i:113;s:89:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/button\";i:5491;s:87:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/code\";i:537;s:90:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/columns\";i:3506;s:88:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/cover\";i:4484;s:87:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/file\";i:673;s:90:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/gallery\";i:801;s:88:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/group\";i:2657;s:90:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/heading\";i:2977;s:87:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/html\";i:223;s:88:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/image\";i:1914;s:98:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-comments\";i:815;s:95:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-posts\";i:8536;s:89:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/legacy\";i:1192;s:87:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/list\";i:1063;s:93:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/media-text\";i:1389;s:93:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/navigation\";i:2614;s:92:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/paragraph\";i:497;s:95:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/preformatted\";i:189;s:92:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/pullquote\";i:4215;s:93:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/query-loop\";i:358;s:88:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/quote\";i:5710;s:86:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/rss\";i:5502;s:89:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/search\";i:5410;s:92:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/separator\";i:2204;s:95:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/social-icons\";i:615;s:88:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/table\";i:2937;s:93:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/tag-clould\";i:201;s:92:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/utilities\";i:7604;s:88:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/verse\";i:127;s:88:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks/video\";i:324;s:82:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/05-blocks\";i:77376;s:86:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/06-components\";i:36750;s:85:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass/07-utilities\";i:13466;s:72:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets/sass\";i:182559;s:67:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/assets\";i:2714536;s:68:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/classes\";i:76921;s:64:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/inc\";i:64240;s:83:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/template-parts/content\";i:6459;s:83:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/template-parts/excerpt\";i:4682;s:82:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/template-parts/footer\";i:305;s:82:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/template-parts/header\";i:4220;s:80:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/template-parts/post\";i:1168;s:75:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone/template-parts\";i:16834;s:60:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentyone\";i:3782684;s:83:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentythree/assets/fonts/dm-sans\";i:79121;s:89:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono\";i:148118;s:81:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentythree/assets/fonts/inter\";i:807760;s:92:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro\";i:1409152;s:75:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentythree/assets/fonts\";i:2444151;s:69:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentythree/assets\";i:2444151;s:68:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentythree/parts\";i:727;s:71:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentythree/patterns\";i:9098;s:69:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentythree/styles\";i:52766;s:72:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentythree/templates\";i:10639;s:62:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentythree\";i:2630043;s:81:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentytwo/assets/fonts/dm-sans\";i:301601;s:82:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentytwo/assets/fonts/ibm-plex\";i:423403;s:79:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentytwo/assets/fonts/inter\";i:809786;s:90:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentytwo/assets/fonts/source-serif-pro\";i:1409152;s:73:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentytwo/assets/fonts\";i:4348514;s:74:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentytwo/assets/images\";i:1453963;s:74:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentytwo/assets/videos\";i:468755;s:67:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentytwo/assets\";i:6271232;s:73:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentytwo/inc/patterns\";i:157137;s:64:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentytwo/inc\";i:161080;s:66:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentytwo/parts\";i:2724;s:67:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentytwo/styles\";i:11351;s:70:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentytwo/templates\";i:13966;s:60:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes/twentytwentytwo\";i:6644416;s:44:\"/home/center/divyayogamonteregie.org/ca/wp-content/themes\";i:13057171;s:59:\"/home/center/divyayogamonteregie.org/ca/wp-content/plugins/akismet/views\";i:34224;s:62:\"/home/center/divyayogamonteregie.org/ca/wp-content/plugins/akismet/_inc/img\";i:5956;s:58:\"/home/center/divyayogamonteregie.org/ca/wp-content/plugins/akismet/_inc\";i:43655;s:53:\"/home/center/divyayogamonteregie.org/ca/wp-content/plugins/akismet\";i:272441;s:65:\"/home/center/divyayogamonteregie.org/ca/wp-content/plugins/backuply/assets/css\";i:148196;s:68:\"/home/center/divyayogamonteregie.org/ca/wp-content/plugins/backuply/assets/images\";i:435713;s:64:\"/home/center/divyayogamonteregie.org/ca/wp-content/plugins/backuply/assets/js\";i:170510;s:61:\"/home/center/divyayogamonteregie.org/ca/wp-content/plugins/backuply/assets\";i:754419;s:63:\"/home/center/divyayogamonteregie.org/ca/wp-content/plugins/backuply/lib/Curl\";i:106062;s:58:\"/home/center/divyayogamonteregie.org/ca/wp-content/plugins/backuply/lib\";i:176510;s:59:\"/home/center/divyayogamonteregie.org/ca/wp-content/plugins/backuply/main\";i:120004;s:54:\"/home/center/divyayogamonteregie.org/ca/wp-content/plugins/backuply\";i:1353607;s:45:\"/home/center/divyayogamonteregie.org/ca/wp-content/plugins\";i:1628669;s:53:\"/home/center/divyayogamonteregie.org/ca/wp-content/uploads/2023/04\";i:0;s:50:\"/home/center/divyayogamonteregie.org/ca/wp-content/uploads/2023\";i:0;s:45:\"/home/center/divyayogamonteregie.org/ca/wp-content/uploads\";i:0;}','yes'),(461,'eael_eb_optin_hide','1','yes'),(511,'ht_ctc_share','a:17:{s:10:\"share_text\";s:34:\"Checkout this Awesome page {{url}}\";s:14:\"call_to_action\";s:14:\"WhatsApp Share\";s:13:\"style_desktop\";s:1:\"1\";s:12:\"style_mobile\";s:1:\"2\";s:6:\"side_1\";s:3:\"top\";s:12:\"side_1_value\";s:4:\"10px\";s:6:\"side_2\";s:5:\"right\";s:12:\"side_2_value\";s:4:\"10px\";s:12:\"show_or_hide\";s:4:\"hide\";s:17:\"list_hideon_pages\";s:0:\"\";s:15:\"list_hideon_cat\";s:0:\"\";s:17:\"list_showon_pages\";s:0:\"\";s:15:\"list_showon_cat\";s:0:\"\";s:13:\"mobile_side_1\";s:3:\"top\";s:19:\"mobile_side_1_value\";s:4:\"10px\";s:13:\"mobile_side_2\";s:5:\"right\";s:19:\"mobile_side_2_value\";s:4:\"10px\";}','yes'),(510,'ht_ctc_group','a:17:{s:8:\"group_id\";s:0:\"\";s:14:\"call_to_action\";s:14:\"WhatsApp Group\";s:13:\"style_desktop\";s:1:\"4\";s:12:\"style_mobile\";s:1:\"2\";s:6:\"side_1\";s:6:\"bottom\";s:12:\"side_1_value\";s:4:\"10px\";s:6:\"side_2\";s:4:\"left\";s:12:\"side_2_value\";s:4:\"10px\";s:12:\"show_or_hide\";s:4:\"hide\";s:17:\"list_hideon_pages\";s:0:\"\";s:15:\"list_hideon_cat\";s:0:\"\";s:17:\"list_showon_pages\";s:0:\"\";s:15:\"list_showon_cat\";s:0:\"\";s:13:\"mobile_side_1\";s:6:\"bottom\";s:19:\"mobile_side_1_value\";s:4:\"10px\";s:13:\"mobile_side_2\";s:4:\"left\";s:19:\"mobile_side_2_value\";s:4:\"10px\";}','yes'),(406,'widget_conveythis','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(416,'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\";s:0:\"\";}','yes'),(417,'hello_theme_version','2.7.1','yes'),(425,'eael_global_settings','a:1:{s:22:\"eael_ext_scroll_to_top\";a:0:{}}','yes'),(308,'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'),(296,'eael_setup_wizard','complete','yes'),(189,'astra-blocks-4','a:20:{s:8:\"id-41028\";a:10:{s:5:\"title\";s:14:\"Testimonial 9B\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/testimonial-9b.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/testimonial-9b.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-9b/\";s:3:\"tag\";a:2:{i:1095;s:7:\"reviews\";i:844;s:11:\"testimonial\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-41026\";a:10:{s:5:\"title\";s:14:\"Testimonial 8B\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/testimonial-8b.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/testimonial-8b.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-8b/\";s:3:\"tag\";a:2:{i:1095;s:7:\"reviews\";i:844;s:11:\"testimonial\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-41023\";a:10:{s:5:\"title\";s:14:\"Testimonial 7B\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/testimonial-7b.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/testimonial-7b.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-7b/\";s:3:\"tag\";a:2:{i:1095;s:7:\"reviews\";i:844;s:11:\"testimonial\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-40740\";a:10:{s:5:\"title\";s:14:\"Testimonial 9W\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/testimonial-9w.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/testimonial-9w.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-9w/\";s:3:\"tag\";a:2:{i:1095;s:7:\"reviews\";i:844;s:11:\"testimonial\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-40739\";a:10:{s:5:\"title\";s:14:\"Testimonial 8W\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/testimonial-8w.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/testimonial-8w.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-8w/\";s:3:\"tag\";a:2:{i:1095;s:7:\"reviews\";i:844;s:11:\"testimonial\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-40348\";a:10:{s:5:\"title\";s:14:\"Testimonial 7W\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/testimonial-7w.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/testimonial-7w.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-7w/\";s:3:\"tag\";a:2:{i:1095;s:7:\"reviews\";i:844;s:11:\"testimonial\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37190\";a:10:{s:5:\"title\";s:7:\"Team 2B\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-2b.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-2b.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-2b/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37187\";a:10:{s:5:\"title\";s:7:\"Team 2W\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/Team-2W.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/Team-2W.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-2w/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37197\";a:10:{s:5:\"title\";s:7:\"Team 3B\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-3b.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-3b.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-3b/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37194\";a:10:{s:5:\"title\";s:7:\"Team 3W\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-3w.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-3w.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-3w/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37203\";a:10:{s:5:\"title\";s:7:\"Team 4B\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-4b.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-4b.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-4b/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37200\";a:10:{s:5:\"title\";s:7:\"Team 4W\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-4w.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-4w.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-4w/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-38316\";a:10:{s:5:\"title\";s:7:\"Team 5B\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-5b.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-5b.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-5b/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-38244\";a:10:{s:5:\"title\";s:7:\"Team 5W\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-5w.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-5w.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-5w/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-38825\";a:10:{s:5:\"title\";s:7:\"Team 6B\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-6b.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-6b.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-6b/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-38732\";a:10:{s:5:\"title\";s:7:\"Team 6W\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-6w.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-6w.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-6w/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-41034\";a:10:{s:5:\"title\";s:7:\"Team 8B\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-8b.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-8b.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-8b/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-40030\";a:10:{s:5:\"title\";s:7:\"Team 8W\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-8w.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-8w.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-8w/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-43022\";a:10:{s:5:\"title\";s:8:\"Team 10B\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/01/team-10b.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/01/team-10b.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/team-10b/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:0:\"\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-43018\";a:10:{s:5:\"title\";s:8:\"Team 10W\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/01/team-10w.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/01/team-10w.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/team-10w/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}}','no'),(190,'astra-sites-page-builders','a:4:{i:0;a:3:{s:2:\"id\";i:34;s:4:\"name\";s:14:\"Beaver Builder\";s:4:\"slug\";s:14:\"beaver-builder\";}i:1;a:3:{s:2:\"id\";i:41;s:4:\"name\";s:5:\"Brizy\";s:4:\"slug\";s:5:\"brizy\";}i:2;a:3:{s:2:\"id\";i:33;s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";}i:3;a:3:{s:2:\"id\";i:42;s:4:\"name\";s:9:\"Gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";}}','no'),(191,'astra-blocks-3','a:100:{s:8:\"id-41763\";a:10:{s:5:\"title\";s:7:\"Hero 7B\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-7b-1.jpg\";s:19:\"thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-7b-1.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/hero-7b/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-38880\";a:10:{s:5:\"title\";s:7:\"Hero 7W\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-7w-1.jpg\";s:19:\"thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-7w-1.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/hero-7w/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37688\";a:10:{s:5:\"title\";s:11:\"Features 1B\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/feature-1b-2020.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/feature-1b-2020.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/features-1b/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37686\";a:10:{s:5:\"title\";s:11:\"Features 1W\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/feature-1w-2020.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/feature-1w-2020.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/features-1w/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37697\";a:10:{s:5:\"title\";s:11:\"Features 2B\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/features-2b-2020.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/features-2b-2020.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/features-2b/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37695\";a:10:{s:5:\"title\";s:11:\"Features 2W\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/features-2w-2020.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/features-2w-2020.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/features-2w/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37705\";a:10:{s:5:\"title\";s:11:\"Features 3B\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/features-3b-2020.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/features-3b-2020.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/features-3b/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37704\";a:10:{s:5:\"title\";s:11:\"Features 3W\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/features-3w-2020.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/features-3w-2020.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/features-3w/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-41937\";a:10:{s:5:\"title\";s:11:\"Features 5B\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/features-5b.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/features-5b.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/features-5b/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-38863\";a:10:{s:5:\"title\";s:11:\"Features 5W\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/features-5w.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/features-5w.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/features-5w/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-41938\";a:10:{s:5:\"title\";s:11:\"Features 6B\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/features-6b.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/features-6b.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/features-6b/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-38876\";a:10:{s:5:\"title\";s:11:\"Features 6W\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/features-6w.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/features-6w.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/features-6w/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44869\";a:10:{s:5:\"title\";s:12:\"Features 10B\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/features-10b.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/features-10b.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/features-10b/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44862\";a:10:{s:5:\"title\";s:12:\"Features 10W\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/features-10w.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/features-10w.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/features-10w/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37099\";a:10:{s:5:\"title\";s:6:\"FAQ 2B\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2020/01/faq-2b.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2020/01/faq-2b.jpg\";s:3:\"url\";s:45:\"https://websitedemos.net/astra-blocks/faq-2b/\";s:3:\"tag\";a:2:{i:822;s:3:\"faq\";i:821;s:26:\"frequently-asked-questions\";}s:8:\"category\";i:1001;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37096\";a:10:{s:5:\"title\";s:6:\"FAQ 2W\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2020/01/faq-2w.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2020/01/faq-2w.jpg\";s:3:\"url\";s:45:\"https://websitedemos.net/astra-blocks/faq-2w/\";s:3:\"tag\";a:2:{i:822;s:3:\"faq\";i:821;s:26:\"frequently-asked-questions\";}s:8:\"category\";i:1001;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37111\";a:10:{s:5:\"title\";s:6:\"FAQ 4B\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2020/01/faq-4b.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2020/01/faq-4b.jpg\";s:3:\"url\";s:45:\"https://websitedemos.net/astra-blocks/faq-4b/\";s:3:\"tag\";a:2:{i:822;s:3:\"faq\";i:821;s:26:\"frequently-asked-questions\";}s:8:\"category\";i:1001;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37108\";a:10:{s:5:\"title\";s:6:\"FAQ 4W\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2020/01/faq-4w.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2020/01/faq-4w.jpg\";s:3:\"url\";s:45:\"https://websitedemos.net/astra-blocks/faq-4w/\";s:3:\"tag\";a:2:{i:822;s:3:\"faq\";i:821;s:26:\"frequently-asked-questions\";}s:8:\"category\";i:1001;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-39838\";a:10:{s:5:\"title\";s:6:\"FAQ 5B\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2020/01/faq-5b.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2020/01/faq-5b.jpg\";s:3:\"url\";s:45:\"https://websitedemos.net/astra-blocks/faq-5b/\";s:3:\"tag\";a:2:{i:822;s:3:\"faq\";i:821;s:26:\"frequently-asked-questions\";}s:8:\"category\";i:1001;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-38917\";a:10:{s:5:\"title\";s:6:\"FAQ 5W\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2020/01/faq-5w.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2020/01/faq-5w.jpg\";s:3:\"url\";s:45:\"https://websitedemos.net/astra-blocks/faq-5w/\";s:3:\"tag\";a:2:{i:822;s:3:\"faq\";i:821;s:26:\"frequently-asked-questions\";}s:8:\"category\";i:1001;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-39839\";a:10:{s:5:\"title\";s:6:\"FAQ 6B\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2020/01/faq-6b.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2020/01/faq-6b.jpg\";s:3:\"url\";s:45:\"https://websitedemos.net/astra-blocks/faq-6b/\";s:3:\"tag\";a:2:{i:822;s:3:\"faq\";i:821;s:26:\"frequently-asked-questions\";}s:8:\"category\";i:1001;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-38926\";a:10:{s:5:\"title\";s:6:\"FAQ 6W\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2020/01/faq-6w.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2020/01/faq-6w.jpg\";s:3:\"url\";s:45:\"https://websitedemos.net/astra-blocks/faq-6w/\";s:3:\"tag\";a:2:{i:822;s:3:\"faq\";i:821;s:26:\"frequently-asked-questions\";}s:8:\"category\";i:1001;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44840\";a:10:{s:5:\"title\";s:6:\"FAQ 9B\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2020/02/faq-9b.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2020/02/faq-9b.jpg\";s:3:\"url\";s:45:\"https://websitedemos.net/astra-blocks/faq-9b/\";s:3:\"tag\";a:2:{i:822;s:3:\"faq\";i:821;s:26:\"frequently-asked-questions\";}s:8:\"category\";i:1001;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44831\";a:10:{s:5:\"title\";s:6:\"FAQ 9W\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2020/02/faq-9w.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2020/02/faq-9w.jpg\";s:3:\"url\";s:45:\"https://websitedemos.net/astra-blocks/faq-9w/\";s:3:\"tag\";a:2:{i:822;s:3:\"faq\";i:821;s:26:\"frequently-asked-questions\";}s:8:\"category\";i:1001;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37549\";a:10:{s:5:\"title\";s:10:\"Clients 5B\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/clients-5b-el.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/clients-5b-el.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/clients-5b/\";s:3:\"tag\";a:1:{i:1090;s:7:\"clients\";}s:8:\"category\";i:1091;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37550\";a:10:{s:5:\"title\";s:10:\"Clients 5W\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/clients-5w-el.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/clients-5w-el.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/clients-5w/\";s:3:\"tag\";a:1:{i:1090;s:7:\"clients\";}s:8:\"category\";i:1091;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37558\";a:10:{s:5:\"title\";s:10:\"Clients 6B\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/clients-6b-el.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/clients-6b-el.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/clients-6b/\";s:3:\"tag\";a:1:{i:1090;s:7:\"clients\";}s:8:\"category\";i:1091;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37557\";a:10:{s:5:\"title\";s:10:\"Clients 6W\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/clients-6w-el.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/clients-6w-el.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/clients-6w/\";s:3:\"tag\";a:1:{i:1090;s:7:\"clients\";}s:8:\"category\";i:1091;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-39812\";a:10:{s:5:\"title\";s:10:\"Clients 7B\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/clients-7b-el.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/clients-7b-el.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/clients-7b/\";s:3:\"tag\";a:1:{i:1090;s:7:\"clients\";}s:8:\"category\";i:1091;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-39787\";a:10:{s:5:\"title\";s:10:\"Clients 7W\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/clients-7w-el.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/clients-7w-el.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/clients-7w/\";s:3:\"tag\";a:1:{i:1090;s:7:\"clients\";}s:8:\"category\";i:1091;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37122\";a:10:{s:5:\"title\";s:17:\"Call To Action 2B\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/call-to-action-2b.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/call-to-action-2b.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/call-to-action-2b/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37120\";a:10:{s:5:\"title\";s:17:\"Call To Action 2W\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/call-to-action-2w.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/call-to-action-2w.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/call-to-action-2w/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37136\";a:10:{s:5:\"title\";s:17:\"Call To Action 4B\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/call-to-action-4b.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/call-to-action-4b.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/call-to-action-4b/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37132\";a:10:{s:5:\"title\";s:17:\"Call To Action 4W\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/call-to-action-4w.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/call-to-action-4w.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/call-to-action-4w/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37150\";a:10:{s:5:\"title\";s:17:\"Call To Action 6B\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/call-to-action-6b.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/call-to-action-6b.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/call-to-action-6b/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37147\";a:10:{s:5:\"title\";s:17:\"Call To Action 6W\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/call-to-action-6w.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/call-to-action-6w.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/call-to-action-6w/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-39763\";a:10:{s:5:\"title\";s:17:\"Call To Action 7B\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/call-to-action-10b.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/call-to-action-10b.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/call-to-action-7b/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-39761\";a:10:{s:5:\"title\";s:17:\"Call To Action 7W\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/call-to-action-10w.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/call-to-action-10w.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/call-to-action-7w/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-42960\";a:10:{s:5:\"title\";s:17:\"Call To Action 8B\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/call-to-action-11b.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/call-to-action-11b.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/call-to-action-8b/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-28634\";a:10:{s:5:\"title\";s:17:\"Call To Action 8W\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/call-to-action-11w.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/call-to-action-11w.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/call-to-action-8w/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-39771\";a:10:{s:5:\"title\";s:17:\"Call To Action 9B\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/call-to-action-9b.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/call-to-action-9b.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/call-to-action-9b/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-39755\";a:10:{s:5:\"title\";s:17:\"Call To Action 9W\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/call-to-action-9w.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/call-to-action-9w.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/call-to-action-9w/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-43883\";a:10:{s:5:\"title\";s:10:\"Contact 1B\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-1b.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-1b.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/contact-1b/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-43873\";a:10:{s:5:\"title\";s:10:\"Contact 1W\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-1w.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-1w.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/contact-1w/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-43930\";a:10:{s:5:\"title\";s:10:\"Contact 3B\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-3b.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-3b.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/contact-3b/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-43906\";a:10:{s:5:\"title\";s:10:\"Contact 3W\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-3w.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-3w.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/contact-3w/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-43964\";a:10:{s:5:\"title\";s:10:\"Contact 5B\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-5b.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-5b.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/contact-5b/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-43951\";a:10:{s:5:\"title\";s:10:\"Contact 5W\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-5w.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-5w.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/contact-5w/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-44803\";a:10:{s:5:\"title\";s:10:\"Contact 7B\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-7b.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-7b.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/contact-7b/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-43990\";a:10:{s:5:\"title\";s:10:\"Contact 7W\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-7w.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-7w.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/contact-7w/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44286\";a:10:{s:5:\"title\";s:10:\"Contact 8B\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-8b.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-8b.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/contact-8b/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44123\";a:10:{s:5:\"title\";s:10:\"Contact 8W\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-8w.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-8w.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/contact-8w/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44304\";a:10:{s:5:\"title\";s:10:\"Contact 9B\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-9b.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-9b.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/contact-9b/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44189\";a:10:{s:5:\"title\";s:10:\"Contact 9W\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-9w.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-9w.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/contact-9w/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44821\";a:10:{s:5:\"title\";s:11:\"Contact 10B\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-10b.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-10b.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/contact-10b/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44819\";a:10:{s:5:\"title\";s:11:\"Contact 10W\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-10w.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-10w.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/contact-10w/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-36983\";a:10:{s:5:\"title\";s:8:\"About 1B\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/About-1B-1.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/About-1B-1.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-1b/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-36980\";a:10:{s:5:\"title\";s:8:\"About 1W\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/About-1W-1.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/About-1W-1.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-1w/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37019\";a:10:{s:5:\"title\";s:8:\"About 2B\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/About-2B-1.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/About-2B-1.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-2b/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37015\";a:10:{s:5:\"title\";s:8:\"About 2W\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/About-2W-1.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/About-2W-1.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-2w/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37043\";a:10:{s:5:\"title\";s:8:\"About 4B\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/about-4b-2.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/about-4b-2.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-4b/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37040\";a:10:{s:5:\"title\";s:8:\"About 4W\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/about-4w-2.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/about-4w-2.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-4w/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-38180\";a:10:{s:5:\"title\";s:8:\"About 6B\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/01/about-6b.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/01/about-6b.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-6b/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-38147\";a:10:{s:5:\"title\";s:8:\"About 6W\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/01/about-6w.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/01/about-6w.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-6w/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-42723\";a:10:{s:5:\"title\";s:8:\"About 8B\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/about-8b-1.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/about-8b-1.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-8b/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-42709\";a:10:{s:5:\"title\";s:8:\"About 8W\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/about-8w-1.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/about-8w-1.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-8w/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-42950\";a:10:{s:5:\"title\";s:8:\"About 9B\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/01/about-9b.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/01/about-9b.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-9b/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-28474\";a:10:{s:5:\"title\";s:8:\"About 9W\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/01/about-9w.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/01/about-9w.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-9w/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-42169\";a:10:{s:5:\"title\";s:13:\"Statistics 2B\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/statistics-2b.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/statistics-2b.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/statistics-2b/\";s:3:\"tag\";a:2:{i:924;s:10:\"statistics\";i:921;s:5:\"stats\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-42166\";a:10:{s:5:\"title\";s:13:\"Statistics 2W\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/statistics-2w-1.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/statistics-2w-1.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/statistics-2w/\";s:3:\"tag\";a:2:{i:924;s:10:\"statistics\";i:921;s:5:\"stats\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-42236\";a:10:{s:5:\"title\";s:13:\"Statistics 4B\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/statistics-4b.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/statistics-4b.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/statistics-4b/\";s:3:\"tag\";a:2:{i:924;s:10:\"statistics\";i:921;s:5:\"stats\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-42219\";a:10:{s:5:\"title\";s:13:\"Statistics 4W\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/statistics-4w.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/statistics-4w.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/statistics-4w/\";s:3:\"tag\";a:2:{i:924;s:10:\"statistics\";i:921;s:5:\"stats\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-42259\";a:10:{s:5:\"title\";s:13:\"Statistics 5B\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/statistics-5d.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/statistics-5d.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/statistics-5b/\";s:3:\"tag\";a:2:{i:924;s:10:\"statistics\";i:921;s:5:\"stats\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-42251\";a:10:{s:5:\"title\";s:13:\"Statistics 5W\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/statistics-5w-1.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/statistics-5w-1.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/statistics-5w/\";s:3:\"tag\";a:2:{i:924;s:10:\"statistics\";i:921;s:5:\"stats\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-42295\";a:10:{s:5:\"title\";s:13:\"Statistics 7B\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/statistics-7b.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/statistics-7b.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/statistics-7b/\";s:3:\"tag\";a:2:{i:924;s:10:\"statistics\";i:921;s:5:\"stats\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-42292\";a:10:{s:5:\"title\";s:13:\"Statistics 7W\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/statistics-7w.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/statistics-7w.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/statistics-7w/\";s:3:\"tag\";a:2:{i:924;s:10:\"statistics\";i:921;s:5:\"stats\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-42304\";a:10:{s:5:\"title\";s:13:\"Statistics 8B\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/statistics-8b.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/statistics-8b.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/statistics-8b/\";s:3:\"tag\";a:2:{i:924;s:10:\"statistics\";i:921;s:5:\"stats\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-42298\";a:10:{s:5:\"title\";s:13:\"Statistics 8W\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/statistics-8w.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/statistics-8w.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/statistics-8w/\";s:3:\"tag\";a:2:{i:924;s:10:\"statistics\";i:921;s:5:\"stats\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44883\";a:10:{s:5:\"title\";s:14:\"Statistics 10B\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/02/statistics-10b.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/02/statistics-10b.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/statistics-10b/\";s:3:\"tag\";a:2:{i:924;s:10:\"statistics\";i:921;s:5:\"stats\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44878\";a:10:{s:5:\"title\";s:14:\"Statistics 10W\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/02/statistics-10w.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/02/statistics-10w.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/statistics-10w/\";s:3:\"tag\";a:2:{i:924;s:10:\"statistics\";i:921;s:5:\"stats\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37726\";a:10:{s:5:\"title\";s:11:\"Services 1W\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/services-1w-2020.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/services-1w-2020.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/services-1w/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37739\";a:10:{s:5:\"title\";s:11:\"Services 1B\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/services-1b-2020.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/services-1b-2020.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/services-1b/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37747\";a:10:{s:5:\"title\";s:11:\"Services 2B\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/services-2b-2020.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/services-2b-2020.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/services-2b/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37748\";a:10:{s:5:\"title\";s:11:\"Services 2W\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/services-2w-2020.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/services-2w-2020.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/services-2w/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37754\";a:10:{s:5:\"title\";s:11:\"Services 3B\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/services-3b-2020.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/services-3b-2020.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/services-3b/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37755\";a:10:{s:5:\"title\";s:11:\"Services 3W\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/services-3w.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/services-3w.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/services-3w/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-42227\";a:10:{s:5:\"title\";s:11:\"Services 6B\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/services-6b.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/services-6b.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/services-6b/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-38930\";a:10:{s:5:\"title\";s:11:\"Services 6W\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/services-6w.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/services-6w.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/services-6w/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-42231\";a:10:{s:5:\"title\";s:11:\"Services 9B\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/services-9b.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/services-9b.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/services-9b/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-41054\";a:10:{s:5:\"title\";s:11:\"Services 9W\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/services-9w.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/services-9w.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/services-9w/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-43013\";a:10:{s:5:\"title\";s:12:\"Services 12B\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/01/services-12b.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/01/services-12b.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/services-12b/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-43009\";a:10:{s:5:\"title\";s:12:\"Services 12W\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/01/services-12w.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/01/services-12w.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/services-12w/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37890\";a:10:{s:5:\"title\";s:14:\"Testimonial 1B\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/Testimonial-1B.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/Testimonial-1B.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-1b/\";s:3:\"tag\";a:2:{i:1095;s:7:\"reviews\";i:844;s:11:\"testimonial\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37889\";a:10:{s:5:\"title\";s:14:\"Testimonial 1W\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/Testimonial-1W.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/Testimonial-1W.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-1w/\";s:3:\"tag\";a:2:{i:1095;s:7:\"reviews\";i:844;s:11:\"testimonial\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37898\";a:10:{s:5:\"title\";s:14:\"Testimonial 2B\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/Testimonial-2B.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/Testimonial-2B.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-2b/\";s:3:\"tag\";a:2:{i:1095;s:7:\"reviews\";i:844;s:11:\"testimonial\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37899\";a:10:{s:5:\"title\";s:14:\"Testimonial 2W\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/Testimonial-2w.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/Testimonial-2w.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-2w/\";s:3:\"tag\";a:2:{i:1095;s:7:\"reviews\";i:844;s:11:\"testimonial\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37905\";a:10:{s:5:\"title\";s:14:\"Testimonial 3B\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/Testimonial-3B.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/Testimonial-3B.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-3b/\";s:3:\"tag\";a:2:{i:1095;s:7:\"reviews\";i:844;s:11:\"testimonial\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37904\";a:10:{s:5:\"title\";s:14:\"Testimonial 3W\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/Testimonial-3w.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/Testimonial-3w.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-3w/\";s:3:\"tag\";a:2:{i:1095;s:7:\"reviews\";i:844;s:11:\"testimonial\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-38536\";a:10:{s:5:\"title\";s:14:\"Testimonial 5B\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/testimonial-5b.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/testimonial-5b.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-5b/\";s:3:\"tag\";a:2:{i:1095;s:7:\"reviews\";i:844;s:11:\"testimonial\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-38471\";a:10:{s:5:\"title\";s:14:\"Testimonial 5W\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/testimonial-5w.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/testimonial-5w.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-5w/\";s:3:\"tag\";a:2:{i:1095;s:7:\"reviews\";i:844;s:11:\"testimonial\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}}','no'),(192,'astra-blocks-2','a:100:{s:8:\"id-44962\";a:10:{s:5:\"title\";s:12:\"Portfolio 2B\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-2b.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-2b.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/portfolio-2b/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44359\";a:10:{s:5:\"title\";s:12:\"Portfolio 2W\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-2w.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-2w.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/portfolio-2w/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44768\";a:10:{s:5:\"title\";s:18:\"Call To Action 10B\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/02/call-to-action-10b.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/02/call-to-action-10b.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/call-to-action-10b/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44762\";a:10:{s:5:\"title\";s:18:\"Call To Action 10W\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/02/call-to-action-10w.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/02/call-to-action-10w.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/call-to-action-10w/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-43103\";a:10:{s:5:\"title\";s:7:\"Hero 8B\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-8b.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-8b.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/hero-8b/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-43099\";a:10:{s:5:\"title\";s:7:\"Hero 8W\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-8w.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-8w.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/hero-8w/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37057\";a:10:{s:5:\"title\";s:8:\"About 5B\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/about-5b-1.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/about-5b-1.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-5b/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37051\";a:10:{s:5:\"title\";s:8:\"About 5W\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/about-5w-1.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/about-5w-1.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-5w/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44858\";a:10:{s:5:\"title\";s:11:\"Features 9B\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/02/features-9b.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/02/features-9b.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/features-9b/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44853\";a:10:{s:5:\"title\";s:11:\"Features 9W\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/02/features-9w.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/02/features-9w.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/features-9w/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-38225\";a:10:{s:5:\"title\";s:8:\"About 7B\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/01/about-7b.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/01/about-7b.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-7b/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-38155\";a:10:{s:5:\"title\";s:8:\"About 7W\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/01/about-7w.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/01/about-7w.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-7w/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44734\";a:10:{s:5:\"title\";s:9:\"About 10B\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2020/02/about-10b.jpg\";s:19:\"thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2020/02/about-10b.jpg\";s:3:\"url\";s:48:\"https://websitedemos.net/astra-blocks/about-10b/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44699\";a:10:{s:5:\"title\";s:9:\"About 10W\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2020/02/about-10w.jpg\";s:19:\"thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2020/02/about-10w.jpg\";s:3:\"url\";s:48:\"https://websitedemos.net/astra-blocks/about-10w/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-38937\";a:10:{s:5:\"title\";s:11:\"Services 7W\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/services-7w.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/services-7w.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/services-7w/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-42228\";a:10:{s:5:\"title\";s:11:\"Services 7B\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/services-7b.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/01/services-7b.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/services-7b/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44957\";a:10:{s:5:\"title\";s:12:\"Portfolio 1B\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-1b.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-1b.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/portfolio-1b/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44337\";a:10:{s:5:\"title\";s:12:\"Portfolio 1W\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-1w.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-1w.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/portfolio-1w/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-42232\";a:10:{s:5:\"title\";s:12:\"Services 10B\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/01/services-10b.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/01/services-10b.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/services-10b/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-41061\";a:10:{s:5:\"title\";s:12:\"Services 10W\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/01/services-10w.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/01/services-10w.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/services-10w/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-45012\";a:10:{s:5:\"title\";s:15:\"Single Quote 1B\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-1b.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-1b.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-1b/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44309\";a:10:{s:5:\"title\";s:15:\"Single Quote 1W\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-1w.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-1w.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-1w/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-45013\";a:10:{s:5:\"title\";s:15:\"Single Quote 2B\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-2b.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-2b.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-2b/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44334\";a:10:{s:5:\"title\";s:15:\"Single Quote 2W\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-2w.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-2w.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-2w/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-45035\";a:10:{s:5:\"title\";s:15:\"Single Quote 4B\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-4b.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-4b.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-4b/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-45030\";a:10:{s:5:\"title\";s:15:\"Single Quote 4W\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-4w.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-4w.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-4w/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-45074\";a:10:{s:5:\"title\";s:15:\"Single Quote 8B\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-8b.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-8b.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-8b/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-45070\";a:10:{s:5:\"title\";s:15:\"Single Quote 8W\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-8w.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-8w.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-8w/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37184\";a:10:{s:5:\"title\";s:7:\"Team 1B\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/01/team-1b-2020.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/01/team-1b-2020.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-1b/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37153\";a:10:{s:5:\"title\";s:7:\"Team 1W\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/team-1w-2020-new.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/team-1w-2020-new.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-1w/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-38843\";a:10:{s:5:\"title\";s:7:\"Team 7B\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-7b.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-7b.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-7b/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-38833\";a:10:{s:5:\"title\";s:7:\"Team 7W\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-7w.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-7w.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-7w/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-41033\";a:10:{s:5:\"title\";s:7:\"Team 9B\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-9b.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-9b.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-9b/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-40097\";a:10:{s:5:\"title\";s:7:\"Team 9W\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-9w.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/team-9w.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-9w/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37911\";a:10:{s:5:\"title\";s:14:\"Testimonial 4B\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/Testimonial-4B.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/Testimonial-4B.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-4b/\";s:3:\"tag\";a:2:{i:1095;s:7:\"reviews\";i:844;s:11:\"testimonial\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37910\";a:10:{s:5:\"title\";s:14:\"Testimonial 4W\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/Testimonial-4W.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/Testimonial-4W.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-4w/\";s:3:\"tag\";a:2:{i:1095;s:7:\"reviews\";i:844;s:11:\"testimonial\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-38585\";a:10:{s:5:\"title\";s:14:\"Testimonial 6B\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/testimonial-6b.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/testimonial-6b.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-6b/\";s:3:\"tag\";a:2:{i:1095;s:7:\"reviews\";i:844;s:11:\"testimonial\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-38551\";a:10:{s:5:\"title\";s:14:\"Testimonial 6W\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/testimonial-6w.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/testimonial-6w.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-6w/\";s:3:\"tag\";a:2:{i:1095;s:7:\"reviews\";i:844;s:11:\"testimonial\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-43056\";a:10:{s:5:\"title\";s:15:\"Testimonial 10B\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/testimonial-10b.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/testimonial-10b.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/testimonial-10b/\";s:3:\"tag\";a:2:{i:1095;s:7:\"reviews\";i:844;s:11:\"testimonial\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-35365\";a:10:{s:5:\"title\";s:15:\"Testimonial 10W\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/testimonial-10w.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/testimonial-10w.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/testimonial-10w/\";s:3:\"tag\";a:2:{i:1095;s:7:\"reviews\";i:844;s:11:\"testimonial\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-43983\";a:10:{s:5:\"title\";s:10:\"Contact 6W\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-6w.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-6w.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/contact-6w/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-43901\";a:10:{s:5:\"title\";s:10:\"Contact 2B\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-2b.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-2b.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/contact-2b/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-43887\";a:10:{s:5:\"title\";s:10:\"Contact 2W\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-2w.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-2w.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/contact-2w/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-43947\";a:10:{s:5:\"title\";s:10:\"Contact 4B\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-4b.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-4b.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/contact-4b/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-43934\";a:10:{s:5:\"title\";s:10:\"Contact 4W\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-4w.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/02/contact-4w.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/contact-4w/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37642\";a:10:{s:5:\"title\";s:10:\"Heading 1B\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-1b-2020.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-1b-2020.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/heading-1b/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37640\";a:10:{s:5:\"title\";s:10:\"Heading 1W\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-1w-2020.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-1w-2020.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/heading-1w/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37647\";a:10:{s:5:\"title\";s:10:\"Heading 2B\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-2b-2020.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-2b-2020.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/heading-2b/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37646\";a:10:{s:5:\"title\";s:10:\"Heading 2W\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-2w-2020.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-2w-2020.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/heading-2w/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37656\";a:10:{s:5:\"title\";s:10:\"Heading 3B\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-3b-2020.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-3b-2020.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/heading-3b/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37655\";a:10:{s:5:\"title\";s:10:\"Heading 3W\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-3w-2020.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-3w-2020.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/heading-3w/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37662\";a:10:{s:5:\"title\";s:10:\"Heading 4B\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-4b-2020-1.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-4b-2020-1.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/heading-4b/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37661\";a:10:{s:5:\"title\";s:10:\"Heading 4W\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-4w.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-4w.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/heading-4w/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37670\";a:10:{s:5:\"title\";s:10:\"Heading 5B\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-5b-2020.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-5b-2020.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/heading-5b/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37669\";a:10:{s:5:\"title\";s:10:\"Heading 5W\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-5w-2020.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-5w-2020.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/heading-5w/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37679\";a:10:{s:5:\"title\";s:10:\"Heading 6B\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-6b-2020.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-6b-2020.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/heading-6b/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-37678\";a:10:{s:5:\"title\";s:10:\"Heading 6W\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-6w-2020.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-6w-2020.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/heading-6w/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-42869\";a:10:{s:5:\"title\";s:10:\"Heading 7B\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-7b.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-7b.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/heading-7b/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-42862\";a:10:{s:5:\"title\";s:10:\"Heading 7W\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-7w.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-7w.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/heading-7w/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-42885\";a:10:{s:5:\"title\";s:10:\"Heading 8B\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-8b.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-8b.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/heading-8b/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-42884\";a:10:{s:5:\"title\";s:10:\"Heading 8W\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-8w.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/heading-8w.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/heading-8w/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-45123\";a:10:{s:5:\"title\";s:10:\"Heading 9B\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/03/heading-9b.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/03/heading-9b.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/heading-9b/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-45107\";a:10:{s:5:\"title\";s:10:\"Heading 9W\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/03/heading-9w.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/03/heading-9w.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/heading-9w/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-45145\";a:10:{s:5:\"title\";s:11:\"Heading 10B\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/03/heading-10b.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/03/heading-10b.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/heading-10b/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-45115\";a:10:{s:5:\"title\";s:11:\"Heading 10W\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/03/heading-10w.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/03/heading-10w.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/heading-10w/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-45047\";a:10:{s:5:\"title\";s:15:\"Single Quote 5B\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-5b.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-5b.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-5b/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-45041\";a:10:{s:5:\"title\";s:15:\"Single Quote 5W\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-5w.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-5w.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-5w/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-45056\";a:10:{s:5:\"title\";s:15:\"Single Quote 6B\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-6b.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-6b.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-6b/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-45053\";a:10:{s:5:\"title\";s:15:\"Single Quote 6W\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-6w.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-6w.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-6w/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-45064\";a:10:{s:5:\"title\";s:15:\"Single Quote 7B\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-7b.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-7b.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-7b/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-45059\";a:10:{s:5:\"title\";s:15:\"Single Quote 7W\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-7w.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-7w.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-7w/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-45090\";a:10:{s:5:\"title\";s:15:\"Single Quote 9B\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-9b.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-9b.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-9b/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-45079\";a:10:{s:5:\"title\";s:15:\"Single Quote 9W\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-9w.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-9w.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-9w/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-45100\";a:10:{s:5:\"title\";s:16:\"Single Quote 10B\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-10b.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-10b.jpg\";s:3:\"url\";s:55:\"https://websitedemos.net/astra-blocks/single-quote-10b/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-45094\";a:10:{s:5:\"title\";s:16:\"Single Quote 10W\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-10w.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/03/single-quote-10w.jpg\";s:3:\"url\";s:55:\"https://websitedemos.net/astra-blocks/single-quote-10w/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44465\";a:10:{s:5:\"title\";s:12:\"Portfolio 3B\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-3b.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-3b.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/portfolio-3b/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44385\";a:10:{s:5:\"title\";s:12:\"Portfolio 3W\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-3w.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-3w.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/portfolio-3w/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44483\";a:10:{s:5:\"title\";s:12:\"Portfolio 4B\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-4b.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-4b.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/portfolio-4b/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44433\";a:10:{s:5:\"title\";s:12:\"Portfolio 4W\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-4w.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-4w.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/portfolio-4w/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44964\";a:10:{s:5:\"title\";s:12:\"Portfolio 5B\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-5b.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-5b.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/portfolio-5b/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44524\";a:10:{s:5:\"title\";s:12:\"Portfolio 5W\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-5w.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-5w.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/portfolio-5w/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44709\";a:10:{s:5:\"title\";s:12:\"Portfolio 7W\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-7w.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-7w.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/portfolio-7w/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44980\";a:10:{s:5:\"title\";s:12:\"Portfolio 8B\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-8b.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-8b.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/portfolio-8b/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44925\";a:10:{s:5:\"title\";s:12:\"Portfolio 8W\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-8w.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-8w.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/portfolio-8w/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44984\";a:10:{s:5:\"title\";s:12:\"Portfolio 9B\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-9b.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-9b.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/portfolio-9b/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44929\";a:10:{s:5:\"title\";s:12:\"Portfolio 9W\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-9w.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-9w.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/portfolio-9w/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44999\";a:10:{s:5:\"title\";s:13:\"Portfolio 10B\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-10b.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-10b.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/portfolio-10b/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44955\";a:10:{s:5:\"title\";s:13:\"Portfolio 10W\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-10w.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/02/portfolio-10w.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/portfolio-10w/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-36936\";a:10:{s:5:\"title\";s:7:\"Hero 1B\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-1b-1.jpg\";s:19:\"thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-1b-1.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/hero-1b/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-29230\";a:10:{s:5:\"title\";s:7:\"Hero 1W\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2019/08/hero-1w.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2019/08/hero-1w.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/hero-1w/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-36953\";a:10:{s:5:\"title\";s:7:\"Hero 2B\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-2b.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-2b.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/hero-2b/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-36939\";a:10:{s:5:\"title\";s:7:\"Hero 2W\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-2w.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-2w.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/hero-2w/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-36958\";a:10:{s:5:\"title\";s:7:\"Hero 3B\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-3b.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-3b.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/hero-3b/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-36942\";a:10:{s:5:\"title\";s:7:\"Hero 3W\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-3w.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-3w.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/hero-3w/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-36964\";a:10:{s:5:\"title\";s:7:\"Hero 4B\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-4b.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-4b.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/hero-4b/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-36961\";a:10:{s:5:\"title\";s:7:\"Hero 4W\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-4w.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-4w.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/hero-4w/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44908\";a:10:{s:5:\"title\";s:7:\"Hero 5B\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/02/hero-5b.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/02/hero-5b.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/hero-5b/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-44687\";a:10:{s:5:\"title\";s:7:\"Hero 5W\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/02/hero-5w.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/02/hero-5w.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/hero-5w/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-43090\";a:10:{s:5:\"title\";s:7:\"Hero 6B\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-6b.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-6b.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/hero-6b/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-38118\";a:10:{s:5:\"title\";s:7:\"Hero 6W\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-6w-1.jpg\";s:19:\"thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2020/01/hero-6w-1.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/hero-6w/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"elementor\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}}','no'),(193,'astra-blocks-categories','a:18:{i:832;a:3:{s:2:\"id\";i:832;s:4:\"name\";s:14:\"Call To Action\";s:4:\"slug\";s:14:\"call-to-action\";}i:825;a:3:{s:2:\"id\";i:825;s:4:\"name\";s:5:\"About\";s:4:\"slug\";s:5:\"about\";}i:1091;a:3:{s:2:\"id\";i:1091;s:4:\"name\";s:7:\"Clients\";s:4:\"slug\";s:7:\"clients\";}i:1416;a:3:{s:2:\"id\";i:1416;s:4:\"name\";s:7:\"Contact\";s:4:\"slug\";s:7:\"contact\";}i:1001;a:3:{s:2:\"id\";i:1001;s:4:\"name\";s:3:\"FAQ\";s:4:\"slug\";s:3:\"faq\";}i:919;a:3:{s:2:\"id\";i:919;s:4:\"name\";s:8:\"Features\";s:4:\"slug\";s:8:\"features\";}i:1094;a:3:{s:2:\"id\";i:1094;s:4:\"name\";s:7:\"Heading\";s:4:\"slug\";s:7:\"heading\";}i:831;a:3:{s:2:\"id\";i:831;s:4:\"name\";s:4:\"Hero\";s:4:\"slug\";s:4:\"hero\";}i:1948;a:3:{s:2:\"id\";i:1948;s:4:\"name\";s:14:\"Image and Text\";s:4:\"slug\";s:14:\"image-and-text\";}i:1950;a:3:{s:2:\"id\";i:1950;s:4:\"name\";s:18:\"Location And Hours\";s:4:\"slug\";s:18:\"location-and-hours\";}i:1425;a:3:{s:2:\"id\";i:1425;s:4:\"name\";s:9:\"Portfolio\";s:4:\"slug\";s:9:\"portfolio\";}i:952;a:3:{s:2:\"id\";i:952;s:4:\"name\";s:8:\"Services\";s:4:\"slug\";s:8:\"services\";}i:1424;a:3:{s:2:\"id\";i:1424;s:4:\"name\";s:12:\"Single Quote\";s:4:\"slug\";s:12:\"single-quote\";}i:1096;a:3:{s:2:\"id\";i:1096;s:4:\"name\";s:10:\"Statistics\";s:4:\"slug\";s:10:\"statistics\";}i:1953;a:3:{s:2:\"id\";i:1953;s:4:\"name\";s:14:\"Subscribe Form\";s:4:\"slug\";s:14:\"subscribe-form\";}i:829;a:3:{s:2:\"id\";i:829;s:4:\"name\";s:4:\"Team\";s:4:\"slug\";s:4:\"team\";}i:830;a:3:{s:2:\"id\";i:830;s:4:\"name\";s:11:\"Testimonial\";s:4:\"slug\";s:11:\"testimonial\";}i:1946;a:3:{s:2:\"id\";i:1946;s:4:\"name\";s:4:\"Text\";s:4:\"slug\";s:4:\"text\";}}','no'),(194,'astra-sites-requests','40','no'),(195,'astra-sites-and-pages-page-1','a:15:{s:8:\"id-73697\";a:22:{s:5:\"title\";s:7:\"Be Bold\";s:2:\"id\";i:73697;s:12:\"publish-date\";i:1683566320;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/05/be-bold-beauty-store-07.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/05/be-bold-beauty-store-07-600x2434.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/05/be-bold-beauty-store-07-400x1622.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/be-bold-beauty-store-07\";s:20:\"astra-site-parent-id\";i:3196;s:15:\"astra-sites-tag\";a:11:{i:1023;s:6:\"beauty\";i:1465;s:15:\"beauty-products\";i:2384;s:21:\"beauty-products-store\";i:1466;s:17:\"cosmetic-products\";i:1464;s:14:\"cosmetic-store\";i:1463;s:9:\"cosmetics\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:383;s:12:\"online-store\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:7:\"premium\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2790;s:14:\"beauty-fashion\";i:2769;s:9:\"ecommerce\";i:2890;s:15:\"makeup-cosmetic\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:2:{i:2479;s:6:\"beauty\";i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:9:\"cartflows\";s:4:\"init\";s:23:\"cartflows/cartflows.php\";s:4:\"name\";s:9:\"CartFlows\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-73698\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/05/be-bold-beauty-store-07-about-us.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2023/05/be-bold-beauty-store-07-about-us-600x1517.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/be-bold-beauty-store-07/wp-json/wp/v2/pages/871\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/be-bold-beauty-store-07/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-73699\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2023/05/be-bold-beauty-store-07-contact.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2023/05/be-bold-beauty-store-07-contact-600x1071.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/be-bold-beauty-store-07/wp-json/wp/v2/pages/872\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/be-bold-beauty-store-07/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-73700\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/05/be-bold-beauty-store-07.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/05/be-bold-beauty-store-07-600x2434.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/be-bold-beauty-store-07/wp-json/wp/v2/pages/886\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/be-bold-beauty-store-07/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-73686\";a:22:{s:5:\"title\";s:20:\"Blingg Jewelry Store\";s:2:\"id\";i:73686;s:12:\"publish-date\";i:1683565586;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/05/blingg-jewelry-store-07.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/05/blingg-jewelry-store-07-600x2000.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/05/blingg-jewelry-store-07-400x1333.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/blingg-jewelry-store-07\";s:20:\"astra-site-parent-id\";i:3195;s:15:\"astra-sites-tag\";a:12:{i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2912;s:9:\"jewellery\";i:2382;s:15:\"jewellery-store\";i:731;s:7:\"jewelry\";i:2529;s:13:\"jewelry-store\";i:2383;s:22:\"online-jewellery-store\";i:383;s:12:\"online-store\";i:967;s:13:\"product-store\";i:2913;s:4:\"ring\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:7:\"premium\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2769;s:9:\"ecommerce\";i:2838;s:9:\"jewellery\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-73687\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/05/blingg-jewelry-store-07-about.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2023/05/blingg-jewelry-store-07-about-600x1473.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/blingg-jewelry-store-07/wp-json/wp/v2/pages/469\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/blingg-jewelry-store-07/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-73688\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2023/05/blingg-jewelry-store-07-contact.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2023/05/blingg-jewelry-store-07-contact-600x902.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/blingg-jewelry-store-07/wp-json/wp/v2/pages/470\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/blingg-jewelry-store-07/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-73689\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/05/blingg-jewelry-store-07.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/05/blingg-jewelry-store-07-600x2000.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/blingg-jewelry-store-07/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/blingg-jewelry-store-07/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-73669\";a:22:{s:5:\"title\";s:12:\"The Pizzeria\";s:2:\"id\";i:73669;s:12:\"publish-date\";i:1683564886;s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07-600x3273.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07-400x2182.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/pizzeria-07\";s:20:\"astra-site-parent-id\";i:3194;s:15:\"astra-sites-tag\";a:10:{i:2011;s:15:\"fast-food-chain\";i:2013;s:20:\"fast-food-restaurant\";i:2018;s:17:\"fast-food-service\";i:350;s:5:\"hotel\";i:563;s:18:\"italian-restaurant\";i:1975;s:5:\"pasta\";i:1971;s:5:\"pizza\";i:2012;s:11:\"pizza-house\";i:1977;s:8:\"pizzeria\";i:335;s:10:\"restaurant\";}s:16:\"astra-sites-type\";s:7:\"premium\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2785;s:4:\"food\";i:2876;s:13:\"food-ordering\";i:2776;s:10:\"restaurant\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-73670\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07-about.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07-about-600x1915.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/pizzeria-07/wp-json/wp/v2/pages/1297\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/pizzeria-07/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-73671\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07-contact.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07-contact-600x1580.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/pizzeria-07/wp-json/wp/v2/pages/1299\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/pizzeria-07/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-73672\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07-600x3273.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/pizzeria-07/wp-json/wp/v2/pages/1294\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/pizzeria-07/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-73673\";a:12:{s:5:\"title\";s:6:\"Offers\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07-offers.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07-offers-600x1934.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/pizzeria-07/wp-json/wp/v2/pages/1298\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/pizzeria-07/offers/\";s:15:\"astra-sites-tag\";a:1:{i:1969;s:6:\"offers\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-73674\";a:12:{s:5:\"title\";s:8:\"Our Menu\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07-our-menu.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07-our-menu-600x2784.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/pizzeria-07/wp-json/wp/v2/pages/1296\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/pizzeria-07/our-menu/\";s:15:\"astra-sites-tag\";a:1:{i:1578;s:8:\"our-menu\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-73652\";a:22:{s:5:\"title\";s:12:\"Media Agency\";s:2:\"id\";i:73652;s:12:\"publish-date\";i:1683561623;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07-600x2450.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07-400x1633.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/media-agency-07\";s:20:\"astra-site-parent-id\";i:3193;s:15:\"astra-sites-tag\";a:13:{i:1587;s:18:\"advertising-agency\";i:2232;s:19:\"advertising-company\";i:2229;s:16:\"advertising-firm\";i:663;s:6:\"agency\";i:979;s:7:\"company\";i:1588;s:16:\"marketing-agency\";i:2233;s:17:\"marketing-company\";i:2228;s:14:\"marketing-firm\";i:2237;s:12:\"media-agency\";i:2230;s:12:\"press-agency\";i:2227;s:14:\"promotion-firm\";i:2231;s:14:\"publicity-firm\";i:2234;s:18:\"publicity-services\";}s:16:\"astra-sites-type\";s:7:\"premium\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2812;s:14:\"digital-agency\";i:2796;s:17:\"digital-marketing\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-73655\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07-600x2450.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/media-agency-07/wp-json/wp/v2/pages/469\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/media-agency-07/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-73656\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07-portfolio.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07-portfolio-600x1194.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/media-agency-07/wp-json/wp/v2/pages/472\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/media-agency-07/portfolio/\";s:15:\"astra-sites-tag\";a:1:{i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-73657\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07-services.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07-services-600x1962.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/media-agency-07/wp-json/wp/v2/pages/471\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/media-agency-07/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-73653\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07-about.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07-about-600x1750.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/media-agency-07/wp-json/wp/v2/pages/470\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/media-agency-07/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-73654\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07-contact.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07-contact-600x1213.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/media-agency-07/wp-json/wp/v2/pages/473\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/media-agency-07/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-73637\";a:22:{s:5:\"title\";s:15:\"Game Dev Studio\";s:2:\"id\";i:73637;s:12:\"publish-date\";i:1683560696;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/05/game-dev-studio-07.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/05/game-dev-studio-07-600x2839.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/05/game-dev-studio-07-400x1892.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/game-dev-studio-07\";s:20:\"astra-site-parent-id\";i:3192;s:15:\"astra-sites-tag\";a:8:{i:652;s:4:\"game\";i:3073;s:16:\"game-development\";i:3077;s:10:\"gamedesign\";i:3074;s:7:\"gamedev\";i:3075;s:13:\"gamedeveloper\";i:3072;s:6:\"gaming\";i:1510;s:6:\"studio\";i:3076;s:10:\"videogames\";}s:16:\"astra-sites-type\";s:7:\"premium\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2791;s:8:\"creative\";i:2768;s:9:\"portfolio\";i:2779;s:16:\"software-company\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2499;s:10:\"technology\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-73641\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/05/game-dev-studio-07-projects.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2023/05/game-dev-studio-07-projects-600x1421.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/game-dev-studio-07/wp-json/wp/v2/pages/647\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/game-dev-studio-07/projects/\";s:15:\"astra-sites-tag\";a:1:{i:1613;s:8:\"projects\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-73638\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/05/game-dev-studio-07-about.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/05/game-dev-studio-07-about-600x2598.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/game-dev-studio-07/wp-json/wp/v2/pages/645\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/game-dev-studio-07/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-73639\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2023/05/game-dev-studio-07-contact.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/05/game-dev-studio-07-contact-600x905.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/game-dev-studio-07/wp-json/wp/v2/pages/649\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/game-dev-studio-07/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-73640\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/05/game-dev-studio-07.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/05/game-dev-studio-07-600x2839.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/game-dev-studio-07/wp-json/wp/v2/pages/642\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/game-dev-studio-07/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-58716\";a:22:{s:5:\"title\";s:11:\"Love Nature\";s:2:\"id\";i:58716;s:12:\"publish-date\";i:1637954772;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/11/ove-nature-02.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/11/ove-nature-02.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/11/ove-nature-02.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/love-nature-02\";s:20:\"astra-site-parent-id\";i:2470;s:15:\"astra-sites-tag\";a:8:{i:538;s:6:\"forest\";i:2456;s:7:\"generic\";i:2493;s:12:\"multipurpose\";i:537;s:13:\"national-park\";i:535;s:6:\"nature\";i:534;s:11:\"nature-park\";i:539;s:9:\"sanctuary\";i:536;s:10:\"wilderness\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:5:{i:2777;s:8:\"business\";i:2860;s:12:\"multipurpose\";i:2830;s:6:\"nature\";i:2831;s:7:\"service\";i:2797;s:14:\"simple-minimal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2500;s:12:\"multipurpose\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1214:\"<!-- wp:paragraph -->\n<p>Looking for a flexible multipurpose website template? Look no further. This serene and tranquil design features elegant graphics and a professional layout. It\'s perfect for those looking to create a website that offers an escape from the hustle and bustle of everyday life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template features a natural color palette with pops of green and blue, which will be sure to make your website feel like a tranquil escape. The template has been carefully crafted to exhibit your services in the most elegant way possible.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Love Nature template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Well-designed multipurpose template</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Elegant and serene design</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Natural color palette with customization options</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Professional and flexible layout</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Compatible with popular page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:67:\"Elegant and serene multipurpose design to build any type of website\";s:5:\"pages\";a:4:{s:8:\"id-58732\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/11/ove-nature-02.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/11/ove-nature-02.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/love-nature-02/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/love-nature-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-69724\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/11/love-nature-02-about-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/11/love-nature-02-about-1.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/love-nature-02/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/love-nature-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-69725\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/11/love-nature-02-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/11/love-nature-02-contact-2.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/love-nature-02/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/love-nature-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69726\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/11/love-nature-02-services-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/11/love-nature-02-services-1.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/love-nature-02/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/love-nature-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-19808\";a:22:{s:5:\"title\";s:17:\"Outdoor Adventure\";s:2:\"id\";i:19808;s:12:\"publish-date\";i:1543500721;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/outdoor-adventure-02-home.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/outdoor-adventure-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/outdoor-adventure-02-home.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/outdoor-adventure-02\";s:20:\"astra-site-parent-id\";i:186;s:15:\"astra-sites-tag\";a:6:{i:544;s:9:\"adventure\";i:545;s:7:\"camping\";i:543;s:14:\"extreme-sports\";i:541;s:9:\"mountains\";i:542;s:4:\"park\";i:546;s:6:\"sports\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2860;s:12:\"multipurpose\";i:2797;s:14:\"simple-minimal\";i:2826;s:6:\"sports\";i:2775;s:14:\"travel-tourism\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2500;s:12:\"multipurpose\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1202:\"<!-- wp:paragraph -->\n<p>If you\'re looking for a multipurpose website template that will be the perfect match for your business, this is it. This outdoor adventure website template is perfect for those who&nbsp; want to share their passion with the world.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A clean and professional design delivers the foundations of an amazing website. A variety of pages and features will help you create an informative, interactive, and visually stunning site that is sure to capture your audience\'s attention.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Outdoor Adventure template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Professionally designed multipurpose template</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Attractive design that’s visually appealing</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fully customizable and flexible layout</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Includes all the correct elements to build an engaging site</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Page builder ready</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:75:\"Multipurpose template perfect for anyone looking to build a stylish website\";s:5:\"pages\";a:5:{s:8:\"id-23830\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/outdoor-adventure-02-home.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/outdoor-adventure-02-home.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/outdoor-adventure-02/wp-json/wp/v2/pages/4\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/outdoor-adventure-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23827\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/outdoor-adventure-02-about.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/outdoor-adventure-02-about.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/outdoor-adventure-02/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/outdoor-adventure-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23832\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/outdoor-adventure-02-services.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/outdoor-adventure-02-services.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/outdoor-adventure-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/outdoor-adventure-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23831\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/outdoor-adventure-02-our-projects.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/outdoor-adventure-02-our-projects.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/outdoor-adventure-02/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/outdoor-adventure-02/projects/\";s:15:\"astra-sites-tag\";a:1:{i:424;s:7:\"project\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23829\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/outdoor-adventure-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23829-outdoor-adventure-contact-resize.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/outdoor-adventure-02/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/outdoor-adventure-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:19884;s:26:\"related-elementor-template\";i:19808;s:26:\"related-gutenberg-template\";i:48078;}s:8:\"id-17988\";a:22:{s:5:\"title\";s:10:\"Brandstore\";s:2:\"id\";i:17988;s:12:\"publish-date\";i:1513833542;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2017/12/brandstore-02-1.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2017/12/brandstore-02-1-600x1856.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2017/12/brandstore-02-1-400x1237.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/brandstore-02\";s:20:\"astra-site-parent-id\";i:317;s:15:\"astra-sites-tag\";a:20:{i:639;s:11:\"accessories\";i:638;s:11:\"brand-store\";i:880;s:9:\"cartflows\";i:640;s:11:\"cloth-store\";i:637;s:8:\"clothing\";i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:967;s:13:\"product-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:5:{i:2790;s:14:\"beauty-fashion\";i:2777;s:8:\"business\";i:2769;s:9:\"ecommerce\";i:2858;s:16:\"fashion-clothing\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:7:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:9:\"cartflows\";s:4:\"init\";s:23:\"cartflows/cartflows.php\";s:4:\"name\";s:9:\"CartFlows\";}i:3;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:4;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:5;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:6;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1341:\"<!-- wp:paragraph -->\n<p>Let your brand shine with our Brandstore website template. The Brandstore template is a simple, clean, mobile-friendly design, helping customers shop from anywhere. The template is built to integrate with WooCommerce seamlessly, so you can start showcasing your products in minutes and accept online payments.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We also have a range of custom page templates for you to use as the foundation for your site and a range of beautiful preset designs we’ve created. It’s a modern design with a lot to recommend it, ideal for online stores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Brandstore template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>High converting and lightweight online store template</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Seamless integration with WooCommerce</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Impressive hero image to display your best products and offers</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Host of customization options from colors and typography to layout and more</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fully responsive and works perfectly well on mobile devices</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"Build the perfect online store using our high-converting Brandstore website template\";s:5:\"pages\";a:3:{s:8:\"id-34092\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2017/12/brandstore-02-1.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2017/12/brandstore-02-1-600x1856.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/brandstore-02/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/brandstore-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-26320\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2017/12/brandstore-02-about.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2017/12/brandstore-02-about-600x1494.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/brandstore-02/wp-json/wp/v2/pages/43\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/brandstore-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-26323\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2017/12/brandstore-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2017/12/brandstore-02-contact-600x944.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/brandstore-02/wp-json/wp/v2/pages/414\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/brandstore-02/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:18035;s:26:\"related-elementor-template\";i:17988;s:26:\"related-gutenberg-template\";i:48050;}s:8:\"id-60434\";a:22:{s:5:\"title\";s:16:\"Electronic Store\";s:2:\"id\";i:60434;s:12:\"publish-date\";i:1679479918;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2023/03/electronic-store-04.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/03/electronic-store-04-600x4953.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/03/electronic-store-04-400x3302.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/electronic-store-04\";s:20:\"astra-site-parent-id\";i:2732;s:15:\"astra-sites-tag\";a:13:{i:2740;s:20:\"best-buy-electronics\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2739;s:18:\"electronic-devices\";i:2733;s:16:\"electronic-store\";i:2693;s:11:\"electronics\";i:2737;s:10:\"equipments\";i:2689;s:7:\"gadgets\";i:2734;s:15:\"home-appliances\";i:2736;s:20:\"household-appliances\";i:2735;s:7:\"laptops\";i:2738;s:11:\"smartphones\";i:2741;s:16:\"technology-store\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:2:{i:2777;s:8:\"business\";i:2769;s:9:\"ecommerce\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1246:\"<!-- wp:paragraph -->\n<p>The Electronic Store template is a modern eCommerce template designed to appeal to the widest audience. The main page opens with an attractive header with search, a cart and navigation while a large hero image sets the scene nicely.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The rest of the template includes a familiar eCommerce layout with plenty of whitespace and areas to showcase your products. There are also options to add testimonials, calls to action, featured products and anything else you might need for your store.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Electronic Store template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Modern eCommerce template with universal appeal</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Engaging colors, typography and header section</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Plenty of whitespace and areas to highlights products</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Flexible content areas throughout the design</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:78:\"The Electronic Store template is attractive, engaging and makes selling simple\";s:5:\"pages\";a:5:{s:8:\"id-60435\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2023/03/electronic-store-04-about.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/03/electronic-store-04-about-600x1487.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/electronic-store-04/wp-json/wp/v2/pages/812\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/electronic-store-04/about/\";s:15:\"astra-sites-tag\";a:11:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2739;s:18:\"electronic-devices\";i:2733;s:16:\"electronic-store\";i:2693;s:11:\"electronics\";i:2737;s:10:\"equipments\";i:2689;s:7:\"gadgets\";i:2734;s:15:\"home-appliances\";i:1024;s:11:\"woocommerce\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-60436\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/03/electronic-store-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2023/03/electronic-store-04-contact-600x783.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/electronic-store-04/wp-json/wp/v2/pages/870\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/electronic-store-04/contact/\";s:15:\"astra-sites-tag\";a:11:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2739;s:18:\"electronic-devices\";i:2733;s:16:\"electronic-store\";i:2693;s:11:\"electronics\";i:2737;s:10:\"equipments\";i:2689;s:7:\"gadgets\";i:2734;s:15:\"home-appliances\";i:1024;s:11:\"woocommerce\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-60438\";a:12:{s:5:\"title\";s:12:\"New arrivals\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2023/03/electronic-store-04-new-arrival.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2023/03/electronic-store-04-new-arrival-600x1999.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/electronic-store-04/wp-json/wp/v2/pages/723\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/electronic-store-04/new-arrivals/\";s:15:\"astra-sites-tag\";a:12:{i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2739;s:18:\"electronic-devices\";i:2733;s:16:\"electronic-store\";i:2693;s:11:\"electronics\";i:2737;s:10:\"equipments\";i:2689;s:7:\"gadgets\";i:2734;s:15:\"home-appliances\";i:2703;s:12:\"new-arrivals\";i:2743;s:4:\"sale\";i:2744;s:11:\"todays-deal\";i:1024;s:11:\"woocommerce\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}s:8:\"id-60439\";a:12:{s:5:\"title\";s:4:\"Sale\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/03/electronic-store-04-sale.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/03/electronic-store-04-sale-600x1885.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/electronic-store-04/wp-json/wp/v2/pages/795\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/electronic-store-04/sale/\";s:15:\"astra-sites-tag\";a:12:{i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2739;s:18:\"electronic-devices\";i:2733;s:16:\"electronic-store\";i:2693;s:11:\"electronics\";i:2737;s:10:\"equipments\";i:2689;s:7:\"gadgets\";i:2734;s:15:\"home-appliances\";i:2743;s:4:\"sale\";i:1114;s:10:\"sales-page\";i:2745;s:12:\"todays-deals\";i:1024;s:11:\"woocommerce\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}s:8:\"id-60437\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2023/03/electronic-store-04.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/03/electronic-store-04-600x4953.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/electronic-store-04/wp-json/wp/v2/pages/30\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/electronic-store-04/\";s:15:\"astra-sites-tag\";a:15:{i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2739;s:18:\"electronic-devices\";i:2733;s:16:\"electronic-store\";i:2693;s:11:\"electronics\";i:2737;s:10:\"equipments\";i:2689;s:7:\"gadgets\";i:423;s:4:\"home\";i:2734;s:15:\"home-appliances\";i:814;s:8:\"homepage\";i:2736;s:20:\"household-appliances\";i:2735;s:7:\"laptops\";i:2738;s:11:\"smartphones\";i:2741;s:16:\"technology-store\";i:1024;s:11:\"woocommerce\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-73532\";a:22:{s:5:\"title\";s:36:\"Alexandrina Kennedy &#8211; Designer\";s:2:\"id\";i:73532;s:12:\"publish-date\";i:1681831890;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/04/alexandrina-designer.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/04/alexandrina-designer-600x900.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/04/alexandrina-designer-400x600.jpg\";s:14:\"astra-site-url\";s:46:\"//websitedemos.net/alexandrina-designer-bio-02\";s:20:\"astra-site-parent-id\";i:3184;s:15:\"astra-sites-tag\";a:13:{i:2150;s:2:\"cv\";i:670;s:8:\"designer\";i:2297;s:18:\"designer-portfolio\";i:3173;s:11:\"link-in-bio\";i:3185;s:6:\"linkin\";i:3187;s:5:\"links\";i:3186;s:8:\"linktree\";i:3124;s:18:\"personal-portfolio\";i:444;s:9:\"portfolio\";i:2153;s:6:\"resume\";i:2212;s:12:\"social-media\";i:2163;s:23:\"social-media-influencer\";i:3012;s:11:\"socialmedia\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:1:{i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:3171;s:11:\"link-in-bio\";i:2770;s:8:\"personal\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:3:{i:3191;s:11:\"link-in-bio\";i:2927;s:8:\"one-page\";i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1214:\"<!-- wp:paragraph -->\n<p>The Designer Link in Bio template has all the benefits of linktrees with better looks, more features, more customization options, and fully responsive designs. They are the ideal way to promote yourself online.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Designer Link in Bio template has a feminine feel with a small slider to show off your work and links front and center to encourage engagement. All wrapped up in an appealing design that looks amazing on any screen. It’s the perfect Linktree alternative!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Designer Link in Bio Template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Well-designed Designer Link in Bio Template</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fully responsive and works on any screen size</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Customizable using basic tools</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Smart slider block to help showcase your creations</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:82:\"Designer Link in Bio template that has all the features you need in a landing page\";s:5:\"pages\";a:1:{s:8:\"id-73533\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/04/alexandrina-designer-bio-02.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2023/04/alexandrina-designer-bio-02-600x367.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/alexandrina-designer-bio-02/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/alexandrina-designer-bio-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-72529\";a:22:{s:5:\"title\";s:23:\"Web Developer Portfolio\";s:2:\"id\";i:72529;s:12:\"publish-date\";i:1679309020;s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2023/02/web-developer-portfolio-04.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2023/02/web-developer-portfolio-04-600x2508.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2023/02/web-developer-portfolio-04-400x1672.jpg\";s:14:\"astra-site-url\";s:45:\"//websitedemos.net/web-developer-portfolio-04\";s:20:\"astra-site-parent-id\";i:3121;s:15:\"astra-sites-tag\";a:10:{i:3112;s:9:\"developer\";i:1020;s:8:\"personal\";i:3124;s:18:\"personal-portfolio\";i:1903;s:16:\"personal-website\";i:444;s:9:\"portfolio\";i:3123;s:3:\"web\";i:3122;s:13:\"web-developer\";i:3111;s:11:\"webdesigner\";i:3106;s:12:\"webdeveloper\";i:3107;s:14:\"webdevelopment\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:2:{i:2770;s:8:\"personal\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1287:\"<!-- wp:paragraph -->\n<p>The Web Developer Portfolio template is a stylish dark design designed to communicate your skills immediately with stylized animation, code-like typography, and simple colors. There’s instant recognition with this template that would work amazingly well to showcase your work.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes essential portfolio elements such as support for images, video, and audio. It also comes with readymade pages for your portfolio, services, resume, and biography so you can be up and running in no time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Web Developer Portfolio template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Stylized website theme ideal for the niche</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Smart animations to draw attention and engage</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Immediately reminiscent of code and development without being over the top</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Includes essential pages ideal for portfolios</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:78:\"The Web Developer Portfolio template is perfect for anyone who works with code\";s:5:\"pages\";a:6:{s:8:\"id-72532\";a:12:{s:5:\"title\";s:5:\"_home\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2023/02/web-developer-portfolio-04.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2023/02/web-developer-portfolio-04-600x2508.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/web-developer-portfolio-04/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/web-developer-portfolio-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-72533\";a:12:{s:5:\"title\";s:10:\"_portfolio\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2023/02/web-developer-portfolio-04-portfolio.jpg\";s:19:\"thumbnail-image-url\";s:101:\"https://websitedemos.net/wp-content/uploads/2023/02/web-developer-portfolio-04-portfolio-600x2195.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/web-developer-portfolio-04/wp-json/wp/v2/pages/19\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:56:\"//websitedemos.net/web-developer-portfolio-04/portfolio/\";s:15:\"astra-sites-tag\";a:1:{i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-72534\";a:12:{s:5:\"title\";s:7:\"_resume\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/02/web-developer-portfolio-04-resume.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2023/02/web-developer-portfolio-04-resume-600x1506.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/web-developer-portfolio-04/wp-json/wp/v2/pages/21\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/web-developer-portfolio-04/resume/\";s:15:\"astra-sites-tag\";a:1:{i:2153;s:6:\"resume\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-72535\";a:12:{s:5:\"title\";s:9:\"_services\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2023/02/web-developer-portfolio-04-services.jpg\";s:19:\"thumbnail-image-url\";s:99:\"https://websitedemos.net/wp-content/uploads/2023/02/web-developer-portfolio-04-services-600x788.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/web-developer-portfolio-04/wp-json/wp/v2/pages/23\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/web-developer-portfolio-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-72530\";a:12:{s:5:\"title\";s:6:\"_about\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/02/web-developer-portfolio-04-about.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2023/02/web-developer-portfolio-04-about-600x1452.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/web-developer-portfolio-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/web-developer-portfolio-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-72531\";a:12:{s:5:\"title\";s:8:\"_contact\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/02/web-developer-portfolio-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2023/02/web-developer-portfolio-04-contact-600x793.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/web-developer-portfolio-04/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/web-developer-portfolio-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-69715\";a:22:{s:5:\"title\";s:12:\"Planet Earth\";s:2:\"id\";i:69715;s:12:\"publish-date\";i:1665171038;s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2022/10/earth-02.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/10/earth-02-600x1189.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/10/earth-02-400x792.jpg\";s:14:\"astra-site-url\";s:27:\"//websitedemos.net/earth-02\";s:20:\"astra-site-parent-id\";i:2956;s:15:\"astra-sites-tag\";a:0:{}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2812;s:14:\"digital-agency\";i:2860;s:12:\"multipurpose\";i:2830;s:6:\"nature\";i:2797;s:14:\"simple-minimal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2500;s:12:\"multipurpose\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1209:\"<!-- wp:paragraph -->\n<p>The Planet Earth template is a multipurpose design that uses graphics to tell the story rather than images. It’s a well thought-out design that opens with a full screen illustration with engaging colors and a simple call to action.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The page opens into a business-style layout with alternating white and colored backgrounds, service boxes and calls to action within the page. There are also attractive supplementary pages and the opportunity to customize it and make it your own.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Planet Earth template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Simple and effective multipurpose website template</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Uses graphics and illustrations to great effect</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Calm and engaging colors</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Well-designed with excellent page balance</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:85:\"The Planet Earth multipurpose template is a captivating design with minimalist appeal\";s:5:\"pages\";a:4:{s:8:\"id-69716\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2022/10/earth-02-about.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/10/earth-02-about-600x771.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/earth-02/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/earth-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-69717\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/10/earth-02-contact-2022.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/10/earth-02-contact-2022-600x700.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/earth-02/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/earth-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69718\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2022/10/earth-02.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/10/earth-02-600x1189.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/earth-02/wp-json/wp/v2/pages/1448\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:28:\"//websitedemos.net/earth-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-69719\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/10/earth-02-services.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/10/earth-02-services-600x1307.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/earth-02/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/earth-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-72618\";a:22:{s:5:\"title\";s:29:\"Fashion Photography Portfolio\";s:2:\"id\";i:72618;s:12:\"publish-date\";i:1679483314;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2023/03/fashion-photography-04.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2023/03/fashion-photography-04-600x2547.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2023/03/fashion-photography-04-400x1698.jpg\";s:14:\"astra-site-url\";s:41:\"//websitedemos.net/fashion-photography-04\";s:20:\"astra-site-parent-id\";i:3134;s:15:\"astra-sites-tag\";a:10:{i:513;s:6:\"camera\";i:3011;s:8:\"creative\";i:3135;s:20:\"fashion-photographer\";i:510;s:9:\"modelling\";i:3114;s:5:\"photo\";i:511;s:12:\"photographer\";i:509;s:11:\"photography\";i:444;s:9:\"portfolio\";i:1022;s:12:\"professional\";i:425;s:8:\"services\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2791;s:8:\"creative\";i:2770;s:8:\"personal\";i:2773;s:11:\"photography\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2485;s:11:\"photography\";i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1230:\"<!-- wp:paragraph -->\n<p>The Fashion Photography Portfolio template is an elegant dark design that sets the scene immediately. It’s a grownup theme that delivers style through contrasting black and white design while offering pops of color through the images.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes lots of space to showcase images and share your story to help engage. The portfolio area and dedicated page use customizable grid layouts to share and filter images and showcase your work so it looks its best.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Fashion Photography Portfolio template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Dark elegant template with a grownup appeal</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Plenty of opportunities to showcase images</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Attractive portfolio section and page</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Flexible content areas to communicate with your audience</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:79:\"The Fashion Photography Portfolio is the perfect way to showcase your creations\";s:5:\"pages\";a:5:{s:8:\"id-72619\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/03/fashion-photography-04-about.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2023/03/fashion-photography-04-about-600x1946.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/fashion-photography-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/fashion-photography-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-72620\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/03/fashion-photography-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2023/03/fashion-photography-04-contact-600x753.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/fashion-photography-04/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/fashion-photography-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-72621\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2023/03/fashion-photography-04.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2023/03/fashion-photography-04-600x2547.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/fashion-photography-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/fashion-photography-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-72623\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2023/03/fashion-photography-04-services.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2023/03/fashion-photography-04-services-600x2306.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/fashion-photography-04/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/fashion-photography-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-72622\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/03/fashion-photography-04-portfolio.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2023/03/fashion-photography-04-portfolio-600x1483.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/fashion-photography-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/fashion-photography-04/portfolio/\";s:15:\"astra-sites-tag\";a:1:{i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-73460\";a:22:{s:5:\"title\";s:10:\"Politician\";s:2:\"id\";i:73460;s:12:\"publish-date\";i:1681505968;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2023/04/politician-04.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2023/04/politician-04-600x2550.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2023/04/politician-04-400x1700.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/politician-04\";s:20:\"astra-site-parent-id\";i:3147;s:15:\"astra-sites-tag\";a:6:{i:3152;s:12:\"helping-hand\";i:3150;s:8:\"minister\";i:3149;s:15:\"political-party\";i:3148;s:10:\"politician\";i:3151;s:8:\"politics\";i:2127;s:10:\"social-ngo\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:2:{i:2786;s:17:\"charity-nonprofit\";i:2864;s:9:\"community\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2500;s:12:\"multipurpose\";i:2492;s:10:\"non-profit\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1180:\"<!-- wp:paragraph -->\n<p>The Politician template is ideal for politicians, councilors, and other public figures who want to get out there, make themselves and their causes known and interact with their constituents.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design is sober and sensible to create a feeling of trust. There’s a large hero image, ideal for making your presence known along with plenty of content blocks to tell your story and communicate with your audience. It’s a fantastic template for engagement!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Politician template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Sensible design inspires confidence</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Ideal for getting yourself out there</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lots of options for storytelling and sharing your vision</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fully responsive and customizable</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:80:\"The Politician template is ideal for public figures to reach out to constituents\";s:5:\"pages\";a:5:{s:8:\"id-73461\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2023/04/politician-04-about.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/04/politician-04-about-600x2072.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/politician-04/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/politician-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-73462\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2023/04/politician-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/04/politician-04-contact-600x978.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/politician-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/politician-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-73463\";a:12:{s:5:\"title\";s:12:\"Endorsements\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2023/04/politician-04-endorsement.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/04/politician-04-endorsement-600x1565.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/politician-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/politician-04/endorsements/\";s:15:\"astra-sites-tag\";a:1:{i:3153;s:12:\"endorsements\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-73464\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2023/04/politician-04.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2023/04/politician-04-600x2550.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/politician-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/politician-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-73465\";a:12:{s:5:\"title\";s:6:\"Issues\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/04/politician-04-issues.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/04/politician-04-issues-600x2396.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/politician-04/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/politician-04/issues/\";s:15:\"astra-sites-tag\";a:1:{i:3154;s:6:\"issues\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71669\";a:22:{s:5:\"title\";s:18:\"Planet Earth Store\";s:2:\"id\";i:71669;s:12:\"publish-date\";i:1676657292;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2023/02/earth-store-02.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/02/earth-store-02-600x1210.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2023/02/earth-store-02-400x806.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/earth-store-02\";s:20:\"astra-site-parent-id\";i:3118;s:15:\"astra-sites-tag\";a:5:{i:3119;s:5:\"earth\";i:496;s:9:\"ecommerce\";i:535;s:6:\"nature\";i:383;s:12:\"online-store\";i:3120;s:6:\"simple\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:6:{i:2777;s:8:\"business\";i:2812;s:14:\"digital-agency\";i:2769;s:9:\"ecommerce\";i:2860;s:12:\"multipurpose\";i:2830;s:6:\"nature\";i:2797;s:14:\"simple-minimal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2495;s:9:\"ecommerce\";i:2500;s:12:\"multipurpose\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1194:\"<!-- wp:paragraph -->\n<p>The Planet Earth Store template is an eCommerce store design that uses graphics and calm colors to create a buying mood. It’s light, well-balanced and provides lots of opportunities to let your products stand out.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The main page opens with a graphical banner you can use to set the scene before opening up into your product selection. Everything is customizable, everything is designed for speed and ease of use and could be used for any type of store.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Planet Earth Store</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Light and welcoming eCommerce store template</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Uses graphics and calm colors to draw you in</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lots of options to build a profitable store</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Works flawlessly with SureCart and WooCommerce</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"The Planet Earth Store template is a light store design that’s very easy to use\";s:5:\"pages\";a:0:{}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(196,'astra-sites-and-pages-page-2','a:15:{s:8:\"id-72580\";a:22:{s:5:\"title\";s:16:\"SaaS App Company\";s:2:\"id\";i:72580;s:12:\"publish-date\";i:1679478944;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-app-company-04.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-app-company-04-600x3276.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-app-company-04-400x2184.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/saas-app-company-04\";s:20:\"astra-site-parent-id\";i:3127;s:15:\"astra-sites-tag\";a:7:{i:2712;s:9:\"analytics\";i:2709;s:16:\"app-tech-company\";i:2711;s:11:\"forecasting\";i:2708;s:4:\"saas\";i:2713;s:12:\"sales-growth\";i:2714;s:16:\"sales-management\";i:2710;s:16:\"sales-strategies\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:2:{i:2777;s:8:\"business\";i:2817;s:10:\"technology\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2499;s:10:\"technology\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1291:\"<!-- wp:paragraph -->\n<p>The SaaS App Company template is a vibrant, colorful design ideal for agencies and businesses of all types. It’s light, welcoming and uses graphics throughout to help engage and tell your story. Ideal for new businesses, upstarts, and startups.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes calm colors on well-balanced pages that let you showcase your products and services, and share your successes and your story. There are also additional pages to help build your website with minimal time and effort while looking professional and engaging.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the SaaS App Company template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Light, welcoming colors with modern typography</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Well-designed pages with lots of customizable content areas</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Uses graphics to help tell your story</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Could easily be customized to suit any type of business</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:85:\"SaaS App Company uses vibrant design to help engage your audience and tell your story\";s:5:\"pages\";a:5:{s:8:\"id-72581\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-app-company-04-about.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-app-company-04-about-600x2687.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/saas-app-company-04/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/saas-app-company-04/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-72582\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-app-company-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-app-company-04-contact-600x946.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/saas-app-company-04/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/saas-app-company-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-72583\";a:12:{s:5:\"title\";s:8:\"Features\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-app-company-04-features.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-app-company-04-features-600x3216.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/saas-app-company-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/saas-app-company-04/features/\";s:15:\"astra-sites-tag\";a:1:{i:453;s:8:\"features\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-72584\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-app-company-04.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-app-company-04-600x3276.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/saas-app-company-04/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/saas-app-company-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-72585\";a:12:{s:5:\"title\";s:8:\"Products\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-app-company-04-products.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-app-company-04-products-600x1824.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/saas-app-company-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/saas-app-company-04/products/\";s:15:\"astra-sites-tag\";a:1:{i:540;s:8:\"products\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-73425\";a:22:{s:5:\"title\";s:21:\"Eggcellent Restaurant\";s:2:\"id\";i:73425;s:12:\"publish-date\";i:1681499952;s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/04/eggcellent-restaurant-04.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/04/eggcellent-restaurant-04-600x2228.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/04/eggcellent-restaurant-04-400x1485.jpg\";s:14:\"astra-site-url\";s:43:\"//websitedemos.net/eggcellent-restaurant-04\";s:20:\"astra-site-parent-id\";i:3141;s:15:\"astra-sites-tag\";a:9:{i:3142;s:3:\"egg\";i:3143;s:14:\"egg-restaurant\";i:2013;s:20:\"fast-food-restaurant\";i:336;s:4:\"food\";i:2068;s:15:\"food-and-drinks\";i:2067;s:19:\"food-and-restaurant\";i:1579;s:9:\"food-menu\";i:2069;s:25:\"non-vegetarian-restaurant\";i:335;s:10:\"restaurant\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2785;s:4:\"food\";i:2776;s:10:\"restaurant\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1231:\"<!-- wp:paragraph -->\n<p>The Eggs Restaurant template is a fun, snappy design ideal for cafes, restaurants, bars, bistros, and other service businesses to share key information and attract customers. It’s fully responsive, fully customizable, and could be the only website you ever need.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design has a chic feel with borderless sections and a free flow down the page. There are all the essentials, content areas, menu sections, location maps, opening times, and everything customers need if they want to visit your establishment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Eggs Restaurant template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Fun design with modern appeal</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Smart menu section, map, contact page, and more</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fully customizable to fit your brand</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Built-in booking button for reservations</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:76:\"The Eggs Restaurant template is a complete eatery website all ready to serve\";s:5:\"pages\";a:4:{s:8:\"id-73426\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/04/eggcellent-restaurant-04-about.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2023/04/eggcellent-restaurant-04-about-600x1692.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/eggcellent-restaurant-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/eggcellent-restaurant-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-73427\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/04/eggcellent-restaurant-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2023/04/eggcellent-restaurant-04-contact-600x1069.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/eggcellent-restaurant-04/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/eggcellent-restaurant-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-73428\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/04/eggcellent-restaurant-04.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/04/eggcellent-restaurant-04-600x2228.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/eggcellent-restaurant-04/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/eggcellent-restaurant-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-73429\";a:12:{s:5:\"title\";s:4:\"Menu\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/04/eggcellent-restaurant-04-menu.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2023/04/eggcellent-restaurant-04-menu-600x1240.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/eggcellent-restaurant-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/eggcellent-restaurant-04/menu/\";s:15:\"astra-sites-tag\";a:1:{i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-31992\";a:22:{s:5:\"title\";s:13:\"Organic Store\";s:2:\"id\";i:31992;s:12:\"publish-date\";i:1568718364;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/10/organic-shop-02-home-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/10/organic-shop-02-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/10/organic-shop-02-home-1.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/organic-shop-02\";s:20:\"astra-site-parent-id\";i:910;s:15:\"astra-sites-tag\";a:20:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2419;s:9:\"eshopping\";i:2424;s:11:\"health-food\";i:2425;s:9:\"lite-food\";i:369;s:7:\"natural\";i:2215;s:16:\"online-marketing\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:368;s:7:\"organic\";i:2423;s:12:\"organic-food\";i:967;s:13:\"product-store\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:2426;s:15:\"vegetarian-food\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2769;s:9:\"ecommerce\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:9:\"cartflows\";s:4:\"init\";s:23:\"cartflows/cartflows.php\";s:4:\"name\";s:9:\"CartFlows\";}i:3;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:4;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1365:\"<!-- wp:paragraph -->\n<p>Want to start an online organic store but not sure how to design a professional-looking website? We’ve got you covered with the perfect organic store template. Our website template is professionally designed with built-in WooCommerce integration, that’ll help you launch your store quickly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template is fully customizable and includes many features such as mobile responsiveness, product gallery, social media integration, and much more. The homepage also includes a dedicated section for customers to leave feedback on products they\'ve purchased.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Organic Store template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Clean and simple design that has all the ingredients of a perfect online store</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Global color palettes to customize your entire store</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Deep integrations with WooCommerce</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lightweight and high-converting templates to boost sales and conversions</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Compatible with leading drag and drop page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:86:\"The perfect lightweight organic store website templates to boost sales and conversions\";s:5:\"pages\";a:3:{s:8:\"id-33788\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/10/organic-shop-02-home-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/10/organic-shop-02-home-1.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/organic-shop-02/wp-json/wp/v2/pages/95\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/organic-shop-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-31993\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/10/organic-shop-02-about.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/10/organic-shop-02-about.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/organic-shop-02/wp-json/wp/v2/pages/96\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/organic-shop-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-31994\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/10/organic-shop-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/10/organic-shop-02-contact.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/organic-shop-02/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/organic-shop-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";i:22401;s:26:\"related-elementor-template\";i:31992;s:26:\"related-gutenberg-template\";i:48121;}s:8:\"id-73267\";a:22:{s:5:\"title\";s:10:\"Food Truck\";s:2:\"id\";i:73267;s:12:\"publish-date\";i:1680026505;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2023/03/food-truck-03.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2023/03/food-truck-03-600x3090.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2023/03/food-truck-03-400x2060.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/food-truck-03\";s:20:\"astra-site-parent-id\";i:3136;s:15:\"astra-sites-tag\";a:6:{i:3138;s:9:\"businesss\";i:336;s:4:\"food\";i:1808;s:10:\"food-truck\";i:3137;s:9:\"foodtruck\";i:1810;s:17:\"ice-cream-truck-2\";i:1809;s:15:\"ice-cream-truck\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2785;s:4:\"food\";i:2876;s:13:\"food-ordering\";i:2776;s:10:\"restaurant\";}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-73268\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2023/03/food-truck-03.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2023/03/food-truck-03-600x3090.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/food-truck-03/wp-json/wp/v2/pages/396\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/food-truck-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71474\";a:22:{s:5:\"title\";s:17:\"Day Care Services\";s:2:\"id\";i:71474;s:12:\"publish-date\";i:1676368033;s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08-600x4246.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08-400x2830.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/daycare-08\";s:20:\"astra-site-parent-id\";i:3086;s:15:\"astra-sites-tag\";a:7:{i:2156;s:7:\"daycare\";i:459;s:9:\"education\";i:1490;s:4:\"kids\";i:617;s:12:\"kindergarten\";i:460;s:8:\"learning\";i:456;s:6:\"school\";i:425;s:8:\"services\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2772;s:9:\"education\";i:2782;s:6:\"school\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2491;s:22:\"educational-institutes\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-71475\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08-about.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08-about-600x2222.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/daycare-08/wp-json/wp/v2/pages/1393\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/daycare-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71476\";a:12:{s:5:\"title\";s:9:\"Admission\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08-admission.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08-admission-600x1137.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/daycare-08/wp-json/wp/v2/pages/1397\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/daycare-08/admission/\";s:15:\"astra-sites-tag\";a:1:{i:2680;s:9:\"admission\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71477\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08-contact-600x1091.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/daycare-08/wp-json/wp/v2/pages/1399\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/daycare-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71478\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08-600x4246.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/daycare-08/wp-json/wp/v2/pages/1390\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/daycare-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71479\";a:12:{s:5:\"title\";s:7:\"Program\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08-program.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08-program-600x3047.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/daycare-08/wp-json/wp/v2/pages/1395\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/daycare-08/program/\";s:15:\"astra-sites-tag\";a:1:{i:2684;s:7:\"program\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71491\";a:22:{s:5:\"title\";s:11:\"Electrician\";s:2:\"id\";i:71491;s:12:\"publish-date\";i:1676039584;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08-600x2117.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08-400x1411.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/electrician-08\";s:20:\"astra-site-parent-id\";i:3087;s:15:\"astra-sites-tag\";a:4:{i:341;s:11:\"electrician\";i:1021;s:14:\"local-business\";i:439;s:14:\"local-services\";i:671;s:16:\"service-provider\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2815;s:11:\"electrician\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-71492\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08-about.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08-about-600x1430.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/electrician-08/wp-json/wp/v2/pages/1399\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/electrician-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71493\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08-contact-600x1159.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/electrician-08/wp-json/wp/v2/pages/1402\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/electrician-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71494\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08-faq.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08-faq-600x1139.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/electrician-08/wp-json/wp/v2/pages/1401\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/electrician-08/faq/\";s:15:\"astra-sites-tag\";a:1:{i:426;s:3:\"faq\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71495\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08-600x2117.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/electrician-08/wp-json/wp/v2/pages/1373\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/electrician-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71496\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08-services.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08-services-600x1935.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/electrician-08/wp-json/wp/v2/pages/1400\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/electrician-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71341\";a:22:{s:5:\"title\";s:15:\"Language Tutors\";s:2:\"id\";i:71341;s:12:\"publish-date\";i:1676036408;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08-600x2736.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08-400x1824.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/language-tutors-08\";s:20:\"astra-site-parent-id\";i:3081;s:15:\"astra-sites-tag\";a:7:{i:2747;s:8:\"language\";i:2749;s:14:\"language-tutor\";i:719;s:15:\"online-coaching\";i:466;s:14:\"online-courses\";i:975;s:15:\"online-learning\";i:2748;s:5:\"tutor\";i:720;s:9:\"tutorials\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2772;s:9:\"education\";i:2835;s:9:\"elearning\";i:2873;s:5:\"tutor\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-71342\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08-about.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08-about-600x1809.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/language-tutors-08/wp-json/wp/v2/pages/327\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/language-tutors-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71343\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08-contact-600x1246.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/language-tutors-08/wp-json/wp/v2/pages/329\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/language-tutors-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71344\";a:12:{s:5:\"title\";s:7:\"Courses\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08-courses.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08-courses-600x1477.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/language-tutors-08/wp-json/wp/v2/pages/323\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/language-tutors-08/courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71345\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08-600x2736.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/language-tutors-08/wp-json/wp/v2/pages/320\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/language-tutors-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71346\";a:12:{s:5:\"title\";s:12:\"Our Teachers\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08-teachers.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08-teachers-600x1857.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/language-tutors-08/wp-json/wp/v2/pages/325\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/language-tutors-08/our-teachers/\";s:15:\"astra-sites-tag\";a:1:{i:2751;s:12:\"our-teachers\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71334\";a:22:{s:5:\"title\";s:22:\"Real Estate Consultant\";s:2:\"id\";i:71334;s:12:\"publish-date\";i:1675775296;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08-600x2702.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08-400x1801.jpg\";s:14:\"astra-site-url\";s:44:\"//websitedemos.net/real-estate-consultant-08\";s:20:\"astra-site-parent-id\";i:3080;s:15:\"astra-sites-tag\";a:8:{i:2311;s:19:\"construction-agency\";i:2088;s:20:\"construction-company\";i:2313;s:16:\"property-rentals\";i:485;s:11:\"real-estate\";i:2310;s:18:\"real-estate-agency\";i:2535;s:22:\"real-estate-consultant\";i:2314;s:22:\"real-estate-developers\";i:2312;s:14:\"sales-property\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2794;s:10:\"consulting\";i:2778;s:11:\"real-estate\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:2:{i:2483;s:15:\"expert-services\";i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-71335\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08-about-me.jpg\";s:19:\"thumbnail-image-url\";s:99:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08-about-me-600x1324.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/real-estate-consultant-08/wp-json/wp/v2/pages/705\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/real-estate-consultant-08/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:1007;s:8:\"about-me\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71336\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08-contact-600x1112.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/real-estate-consultant-08/wp-json/wp/v2/pages/709\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/real-estate-consultant-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71337\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08-600x2702.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/real-estate-consultant-08/wp-json/wp/v2/pages/701\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/real-estate-consultant-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71338\";a:12:{s:5:\"title\";s:7:\"Reviews\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08-reviews.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08-reviews-600x1107.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/real-estate-consultant-08/wp-json/wp/v2/pages/707\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/real-estate-consultant-08/reviews/\";s:15:\"astra-sites-tag\";a:1:{i:1615;s:7:\"reviews\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71339\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08-service.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08-service-600x1228.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/real-estate-consultant-08/wp-json/wp/v2/pages/703\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/real-estate-consultant-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71404\";a:22:{s:5:\"title\";s:22:\"Pharmaceutical Company\";s:2:\"id\";i:71404;s:12:\"publish-date\";i:1675771021;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08-600x2532.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08-400x1688.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/pharmaceutical-08\";s:20:\"astra-site-parent-id\";i:3084;s:15:\"astra-sites-tag\";a:4:{i:1888;s:6:\"pharma\";i:1890;s:14:\"pharma-company\";i:1891;s:22:\"pharmaceutical-company\";i:1889;s:15:\"pharmaceuticals\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2834;s:10:\"healthcare\";i:2841;s:14:\"medical-clinic\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2474;s:13:\"manufacturing\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-71405\";a:12:{s:5:\"title\";s:7:\"Company\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08-company.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08-company-600x2194.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/pharmaceutical-08/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/pharmaceutical-08/company/\";s:15:\"astra-sites-tag\";a:1:{i:979;s:7:\"company\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71406\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08-contact-600x1494.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/pharmaceutical-08/wp-json/wp/v2/pages/25\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/pharmaceutical-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71407\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08-600x2532.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/pharmaceutical-08/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/pharmaceutical-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71408\";a:12:{s:5:\"title\";s:8:\"Products\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08-products.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08-products-600x2210.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/pharmaceutical-08/wp-json/wp/v2/pages/23\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/pharmaceutical-08/products/\";s:15:\"astra-sites-tag\";a:1:{i:540;s:8:\"products\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71409\";a:12:{s:5:\"title\";s:10:\"R &#038; D\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08-rd.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08-rd-600x1892.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/pharmaceutical-08/wp-json/wp/v2/pages/24\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/pharmaceutical-08/r-d/\";s:15:\"astra-sites-tag\";a:1:{i:3085;s:3:\"r-d\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71384\";a:22:{s:5:\"title\";s:18:\"Learn Oil Painting\";s:2:\"id\";i:71384;s:12:\"publish-date\";i:1675765696;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2023/02/learn-oil-painting-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/02/learn-oil-painting-08-600x2033.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/02/learn-oil-painting-08-400x1355.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/learn-oil-painting-08\";s:20:\"astra-site-parent-id\";i:3083;s:15:\"astra-sites-tag\";a:4:{i:462;s:7:\"courses\";i:467;s:9:\"learndash\";i:975;s:15:\"online-learning\";i:720;s:9:\"tutorials\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:7:{i:2802;s:6:\"artist\";i:2825;s:8:\"coaching\";i:2835;s:9:\"elearning\";i:2880;s:10:\"membership\";i:2827;s:13:\"online-course\";i:2770;s:8:\"personal\";i:2873;s:5:\"tutor\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-71385\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/02/learn-oil-painting-08-about.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2023/02/learn-oil-painting-08-about-600x940.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/learn-oil-painting-08/wp-json/wp/v2/pages/739\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/learn-oil-painting-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71386\";a:12:{s:5:\"title\";s:7:\"Classes\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/02/learn-oil-painting-08-classes.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2023/02/learn-oil-painting-08-classes-600x1344.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/learn-oil-painting-08/wp-json/wp/v2/pages/738\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/learn-oil-painting-08/classes/\";s:15:\"astra-sites-tag\";a:1:{i:557;s:7:\"classes\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71387\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/02/learn-oil-painting-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2023/02/learn-oil-painting-08-contact-600x920.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/learn-oil-painting-08/wp-json/wp/v2/pages/740\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/learn-oil-painting-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71388\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2023/02/learn-oil-painting-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/02/learn-oil-painting-08-600x2033.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/learn-oil-painting-08/wp-json/wp/v2/pages/736\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/learn-oil-painting-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71367\";a:22:{s:5:\"title\";s:11:\"Piano Tutor\";s:2:\"id\";i:71367;s:12:\"publish-date\";i:1675763538;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08-600x3262.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08-400x2175.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/piano-tutor-08\";s:20:\"astra-site-parent-id\";i:3082;s:15:\"astra-sites-tag\";a:7:{i:1786;s:5:\"forte\";i:407;s:5:\"music\";i:1782;s:5:\"piano\";i:1784;s:15:\"piano-institute\";i:1783;s:13:\"piano-lessons\";i:1785;s:14:\"piano-programs\";i:1781;s:8:\"tutorial\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2772;s:9:\"education\";i:2781;s:5:\"music\";i:2873;s:5:\"tutor\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2486;s:9:\"art-music\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-71368\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08-about-us-600x1815.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/piano-tutor-08/wp-json/wp/v2/pages/357\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/piano-tutor-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71369\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08-contact-600x1249.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/piano-tutor-08/wp-json/wp/v2/pages/364\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/piano-tutor-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71370\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08-600x3262.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/piano-tutor-08/wp-json/wp/v2/pages/354\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/piano-tutor-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71371\";a:12:{s:5:\"title\";s:8:\"Programs\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08-programs.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08-programs-600x2509.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/piano-tutor-08/wp-json/wp/v2/pages/359\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/piano-tutor-08/programs/\";s:15:\"astra-sites-tag\";a:1:{i:989;s:8:\"programs\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71372\";a:12:{s:5:\"title\";s:11:\"Testimonial\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08-testimonials-600x1712.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/piano-tutor-08/wp-json/wp/v2/pages/362\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/piano-tutor-08/testimonial/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71300\";a:22:{s:5:\"title\";s:13:\"Dental Clinic\";s:2:\"id\";i:71300;s:12:\"publish-date\";i:1674824635;s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2023/01/dental-08.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/01/dental-08-600x3410.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/01/dental-08-400x2273.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/dental-08\";s:20:\"astra-site-parent-id\";i:3079;s:15:\"astra-sites-tag\";a:8:{i:623;s:7:\"dentist\";i:601;s:6:\"doctor\";i:604;s:10:\"healthcare\";i:605;s:8:\"hospital\";i:399;s:8:\"one-page\";i:1022;s:12:\"professional\";i:463;s:11:\"single-page\";i:607;s:9:\"treatment\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2799;s:7:\"dentist\";i:2867;s:6:\"doctor\";i:2834;s:10:\"healthcare\";i:2780;s:8:\"hospital\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2490;s:10:\"healthcare\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-71301\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2023/01/dental-08.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/01/dental-08-600x3410.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/dental-08/wp-json/wp/v2/pages/27\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/dental-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71183\";a:22:{s:5:\"title\";s:27:\"Freelance Voice-over Artist\";s:2:\"id\";i:71183;s:12:\"publish-date\";i:1672827177;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08-600x2428.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08-400x1618.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/voiceover-artist-08\";s:20:\"astra-site-parent-id\";i:3062;s:15:\"astra-sites-tag\";a:6:{i:1908;s:14:\"dubbing-artist\";i:669;s:10:\"freelancer\";i:969;s:8:\"musician\";i:1834;s:16:\"recording-artist\";i:1571;s:6:\"singer\";i:1510;s:6:\"studio\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2802;s:6:\"artist\";i:2777;s:8:\"business\";i:2810;s:9:\"freelance\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-71184\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08-about.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08-about-600x1430.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/voiceover-artist-08/wp-json/wp/v2/pages/559\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/voiceover-artist-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71185\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08-contact-600x1184.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/voiceover-artist-08/wp-json/wp/v2/pages/565\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/voiceover-artist-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71186\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08-600x2428.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/voiceover-artist-08/wp-json/wp/v2/pages/556\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/voiceover-artist-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71187\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08-services.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08-services-600x1940.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/voiceover-artist-08/wp-json/wp/v2/pages/561\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/voiceover-artist-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71188\";a:12:{s:5:\"title\";s:6:\"Studio\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08-studio.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08-studio-600x1550.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/voiceover-artist-08/wp-json/wp/v2/pages/563\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/voiceover-artist-08/studio/\";s:15:\"astra-sites-tag\";a:1:{i:1510;s:6:\"studio\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71180\";a:22:{s:5:\"title\";s:18:\"Wedding Invitation\";s:2:\"id\";i:71180;s:12:\"publish-date\";i:1672826233;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2023/01/wedding-invitation-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/01/wedding-invitation-08-600x3364.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/01/wedding-invitation-08-400x2242.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/wedding-invitation-08\";s:20:\"astra-site-parent-id\";i:3061;s:15:\"astra-sites-tag\";a:4:{i:699;s:10:\"invitation\";i:2560;s:20:\"reception-invitation\";i:697;s:7:\"wedding\";i:1457;s:18:\"wedding-invitation\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2771;s:8:\"one-page\";i:2792;s:7:\"wedding\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:2:{i:2489;s:16:\"event-invitation\";i:2927;s:8:\"one-page\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-59134\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2023/01/wedding-invitation-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/01/wedding-invitation-08-600x3364.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/wedding-invitation-08/wp-json/wp/v2/pages/203\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/wedding-invitation-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71149\";a:22:{s:5:\"title\";s:16:\"Freelance Artist\";s:2:\"id\";i:71149;s:12:\"publish-date\";i:1672396583;s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2022/12/artist-08.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/12/artist-08-600x1234.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/12/artist-08-400x823.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/artist-08\";s:20:\"astra-site-parent-id\";i:3060;s:15:\"astra-sites-tag\";a:9:{i:597;s:3:\"art\";i:339;s:6:\"artist\";i:496;s:9:\"ecommerce\";i:595;s:10:\"exhibition\";i:614;s:7:\"painter\";i:1020;s:8:\"personal\";i:967;s:13:\"product-store\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2802;s:6:\"artist\";i:2769;s:9:\"ecommerce\";i:2810;s:9:\"freelance\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-71150\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/12/artist-08-about-me.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/12/artist-08-about-me-600x1013.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/artist-08/wp-json/wp/v2/pages/607\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/artist-08/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:1007;s:8:\"about-me\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71151\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/12/artist-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/12/artist-08-contact-600x864.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/artist-08/wp-json/wp/v2/pages/608\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/artist-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}s:8:\"id-71152\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2022/12/artist-08.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/12/artist-08-600x1234.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/artist-08/wp-json/wp/v2/pages/606\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/artist-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(197,'astra-sites-and-pages-page-3','a:15:{s:8:\"id-71122\";a:22:{s:5:\"title\";s:16:\"Marketing Agency\";s:2:\"id\";i:71122;s:12:\"publish-date\";i:1672395349;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08-600x2638.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08-400x1758.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/marketing-agency-08\";s:20:\"astra-site-parent-id\";i:3059;s:15:\"astra-sites-tag\";a:12:{i:1587;s:18:\"advertising-agency\";i:2232;s:19:\"advertising-company\";i:2229;s:16:\"advertising-firm\";i:663;s:6:\"agency\";i:979;s:7:\"company\";i:1588;s:16:\"marketing-agency\";i:2233;s:17:\"marketing-company\";i:2228;s:14:\"marketing-firm\";i:2230;s:12:\"press-agency\";i:2227;s:14:\"promotion-firm\";i:2231;s:14:\"publicity-firm\";i:2234;s:18:\"publicity-services\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2812;s:14:\"digital-agency\";i:2796;s:17:\"digital-marketing\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:10:{s:8:\"id-71129\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/marketing-agency-08/wp-json/wp/v2/pages/60\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/marketing-agency-08/about-us/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71130\";a:12:{s:5:\"title\";s:12:\"Case Studies\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/marketing-agency-08/wp-json/wp/v2/pages/59\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/marketing-agency-08/case-studies/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71131\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/marketing-agency-08/wp-json/wp/v2/pages/61\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/marketing-agency-08/contact/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71132\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/marketing-agency-08/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/marketing-agency-08/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71133\";a:12:{s:5:\"title\";s:10:\"What We Do\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/marketing-agency-08/wp-json/wp/v2/pages/58\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/marketing-agency-08/what-we-do/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71123\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08-about-us-600x1450.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/marketing-agency-08/wp-json/wp/v2/pages/60\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/marketing-agency-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71124\";a:12:{s:5:\"title\";s:12:\"Case Studies\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08-case-studies.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08-case-studies-600x1280.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/marketing-agency-08/wp-json/wp/v2/pages/59\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/marketing-agency-08/case-studies/\";s:15:\"astra-sites-tag\";a:1:{i:780;s:12:\"case-studies\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71125\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08-contact-us-600x889.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/marketing-agency-08/wp-json/wp/v2/pages/61\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/marketing-agency-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71126\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08-600x2638.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/marketing-agency-08/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/marketing-agency-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71127\";a:12:{s:5:\"title\";s:10:\"What We Do\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08-what-we-do.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08-what-we-do-600x1954.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/marketing-agency-08/wp-json/wp/v2/pages/58\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/marketing-agency-08/what-we-do/\";s:15:\"astra-sites-tag\";a:1:{i:628;s:10:\"what-we-do\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71116\";a:22:{s:5:\"title\";s:7:\"Vlogger\";s:2:\"id\";i:71116;s:12:\"publish-date\";i:1672393023;s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2022/12/vlogger-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/12/vlogger-08-600x2621.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/12/vlogger-08-400x1747.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/vlogger-08\";s:20:\"astra-site-parent-id\";i:3058;s:15:\"astra-sites-tag\";a:8:{i:1840;s:9:\"cameraman\";i:1841;s:15:\"cinematographer\";i:1842;s:10:\"film-maker\";i:399;s:8:\"one-page\";i:1718;s:7:\"onepage\";i:1839;s:13:\"video-creator\";i:1837;s:7:\"vlogger\";i:1838;s:8:\"youtuber\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2810;s:9:\"freelance\";i:2771;s:8:\"one-page\";i:2770;s:8:\"personal\";i:2801;s:5:\"video\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:4:{i:2497;s:4:\"blog\";i:2927;s:8:\"one-page\";i:2488;s:9:\"portfolio\";i:2926;s:5:\"video\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-71117\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2022/12/vlogger-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/12/vlogger-08-600x2621.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/vlogger-08/wp-json/wp/v2/pages/28\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/vlogger-08/\";s:15:\"astra-sites-tag\";a:1:{i:1837;s:7:\"vlogger\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71099\";a:22:{s:5:\"title\";s:10:\"Car Repair\";s:2:\"id\";i:71099;s:12:\"publish-date\";i:1672390818;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08-600x2051.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08-400x1367.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/car-repair-08\";s:20:\"astra-site-parent-id\";i:3056;s:15:\"astra-sites-tag\";a:5:{i:588;s:8:\"car-care\";i:587;s:13:\"car-detailing\";i:666;s:10:\"car-repair\";i:1021;s:14:\"local-business\";i:667;s:11:\"repair-shop\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2800;s:14:\"car-automotive\";i:2777;s:8:\"business\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2475;s:10:\"automotive\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-71100\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08-about.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08-about-600x1286.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/car-repair-08/wp-json/wp/v2/pages/1811\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/car-repair-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71101\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08-contact-600x1024.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/car-repair-08/wp-json/wp/v2/pages/1814\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/car-repair-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71102\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08-600x2051.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/car-repair-08/wp-json/wp/v2/pages/1847\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/car-repair-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71103\";a:12:{s:5:\"title\";s:9:\"Our Staff\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08-our-staff.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08-our-staff-600x1409.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/car-repair-08/wp-json/wp/v2/pages/1813\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/car-repair-08/our-staff/\";s:15:\"astra-sites-tag\";a:1:{i:3057;s:9:\"our-staff\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71104\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08-services.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08-services-600x1878.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/car-repair-08/wp-json/wp/v2/pages/1812\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/car-repair-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71085\";a:22:{s:5:\"title\";s:13:\"AC Technician\";s:2:\"id\";i:71085;s:12:\"publish-date\";i:1672389636;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/12/ac-technician-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/12/ac-technician-08-600x1531.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/12/ac-technician-08-400x1020.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/ac-technician-08\";s:20:\"astra-site-parent-id\";i:3055;s:15:\"astra-sites-tag\";a:5:{i:599;s:9:\"ac-repair\";i:1021;s:14:\"local-business\";i:439;s:14:\"local-services\";i:600;s:15:\"repair-services\";i:441;s:10:\"technician\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2831;s:7:\"service\";i:2817;s:10:\"technology\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-71087\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/12/ac-technician-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2022/12/ac-technician-08-contact-600x1015.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/ac-technician-08/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/ac-technician-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71088\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/12/ac-technician-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/12/ac-technician-08-600x1531.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/ac-technician-08/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/ac-technician-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71089\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/12/ac-technician-08-services.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/12/ac-technician-08-services-600x1210.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/ac-technician-08/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/ac-technician-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71086\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/12/ac-technician-08-about.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/12/ac-technician-08-about-600x1418.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/ac-technician-08/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/ac-technician-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71072\";a:22:{s:5:\"title\";s:19:\"Skin Cleanser Store\";s:2:\"id\";i:71072;s:12:\"publish-date\";i:1672331775;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/12/skin-cleanser-store-08.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/12/skin-cleanser-store-08-600x3296.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/12/skin-cleanser-store-08-400x2197.jpg\";s:14:\"astra-site-url\";s:41:\"//websitedemos.net/skin-cleanser-store-08\";s:20:\"astra-site-parent-id\";i:3054;s:15:\"astra-sites-tag\";a:19:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2419;s:9:\"eshopping\";i:2392;s:19:\"online-beauty-store\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:2391;s:11:\"skin-beauty\";i:1127;s:9:\"skin-care\";i:2380;s:19:\"skin-cleanser-store\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2790;s:14:\"beauty-fashion\";i:2777;s:8:\"business\";i:2769;s:9:\"ecommerce\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-71073\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/12/skin-cleanser-store-08-about.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/12/skin-cleanser-store-08-about-600x1723.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/skin-cleanser-store-08/wp-json/wp/v2/pages/1116\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/skin-cleanser-store-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71074\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/12/skin-cleanser-store-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2022/12/skin-cleanser-store-08-contact-600x1291.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/skin-cleanser-store-08/wp-json/wp/v2/pages/1118\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/skin-cleanser-store-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71075\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/12/skin-cleanser-store-08.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/12/skin-cleanser-store-08-600x3296.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/skin-cleanser-store-08/wp-json/wp/v2/pages/1113\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/skin-cleanser-store-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71064\";a:22:{s:5:\"title\";s:15:\"Child Care Blog\";s:2:\"id\";i:71064;s:12:\"publish-date\";i:1672330833;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/12/childcare-blog-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/childcare-blog-08-600x2522.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/childcare-blog-08-400x1681.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/childcare-blog-08\";s:20:\"astra-site-parent-id\";i:3053;s:15:\"astra-sites-tag\";a:5:{i:480;s:4:\"blog\";i:1652;s:7:\"blogger\";i:1897;s:15:\"child-care-blog\";i:1896;s:17:\"child-care-expert\";i:1547;s:10:\"influencer\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:37;s:4:\"blog\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2828;s:4:\"blog\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:2:{s:8:\"id-71065\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/12/childcare-blog-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/12/childcare-blog-08-contact-600x1176.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/childcare-blog-08/wp-json/wp/v2/pages/662\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/childcare-blog-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71066\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/12/childcare-blog-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/childcare-blog-08-600x2522.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/childcare-blog-08/wp-json/wp/v2/pages/653\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/childcare-blog-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71038\";a:22:{s:5:\"title\";s:14:\"Roofing Agency\";s:2:\"id\";i:71038;s:12:\"publish-date\";i:1672328084;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08-600x3001.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08-400x2001.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/roofing-agency-08\";s:20:\"astra-site-parent-id\";i:3052;s:15:\"astra-sites-tag\";a:7:{i:1630;s:18:\"commercial-roofing\";i:1629;s:19:\"residential-roofing\";i:1634;s:17:\"roof-installation\";i:1633;s:11:\"roof-repair\";i:1631;s:16:\"roof-replacement\";i:2570;s:14:\"roofing-agency\";i:1632;s:16:\"roofing-services\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2818;s:7:\"roofing\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-71039\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08-about.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08-about-600x1749.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/roofing-agency-08/wp-json/wp/v2/pages/908\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/roofing-agency-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71040\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08-contact-1-600x1169.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/roofing-agency-08/wp-json/wp/v2/pages/914\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/roofing-agency-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71041\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08-600x3001.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/roofing-agency-08/wp-json/wp/v2/pages/906\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/roofing-agency-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71042\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08-projects.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08-projects-600x1100.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/roofing-agency-08/wp-json/wp/v2/pages/910\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/roofing-agency-08/projects/\";s:15:\"astra-sites-tag\";a:1:{i:1613;s:8:\"projects\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71043\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08-services.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08-services-600x1168.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/roofing-agency-08/wp-json/wp/v2/pages/912\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/roofing-agency-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71002\";a:22:{s:5:\"title\";s:14:\"Theatre Artist\";s:2:\"id\";i:71002;s:12:\"publish-date\";i:1671647801;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/12/theatre-artist-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/theatre-artist-08-600x2960.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/theatre-artist-08-400x1973.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/theatre-artist-08\";s:20:\"astra-site-parent-id\";i:3050;s:15:\"astra-sites-tag\";a:5:{i:1906;s:5:\"actor\";i:339;s:6:\"artist\";i:1572;s:9:\"performer\";i:444;s:9:\"portfolio\";i:1905;s:14:\"theatre-artist\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2802;s:6:\"artist\";i:2784;s:5:\"event\";i:2770;s:8:\"personal\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-71003\";a:12:{s:5:\"title\";s:9:\"Biography\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/12/theatre-artist-08-biography.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/12/theatre-artist-08-biography-600x1977.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/theatre-artist-08/wp-json/wp/v2/pages/694\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/theatre-artist-08/biography/\";s:15:\"astra-sites-tag\";a:1:{i:1566;s:9:\"biography\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71004\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/12/theatre-artist-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2022/12/theatre-artist-08-contact-600x882.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/theatre-artist-08/wp-json/wp/v2/pages/698\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/theatre-artist-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71005\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/12/theatre-artist-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/theatre-artist-08-600x2960.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/theatre-artist-08/wp-json/wp/v2/pages/691\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/theatre-artist-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71006\";a:12:{s:5:\"title\";s:10:\"Repertoire\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/12/theatre-artist-08-repertoire.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/12/theatre-artist-08-repertoire-600x2207.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/theatre-artist-08/wp-json/wp/v2/pages/696\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/theatre-artist-08/repertoire/\";s:15:\"astra-sites-tag\";a:1:{i:1907;s:10:\"repertoire\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-70993\";a:22:{s:5:\"title\";s:17:\"Fashion Lifestyle\";s:2:\"id\";i:70993;s:12:\"publish-date\";i:1671645110;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/12/fashion-lifestyle-08.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/12/fashion-lifestyle-08-600x2411.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/12/fashion-lifestyle-08-400x1607.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/fashion-lifestyle-08\";s:20:\"astra-site-parent-id\";i:3049;s:15:\"astra-sites-tag\";a:6:{i:480;s:4:\"blog\";i:482;s:7:\"fashion\";i:479;s:9:\"lifestyle\";i:1020;s:8:\"personal\";i:483;s:16:\"styling-shopping\";i:481;s:5:\"trend\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:37;s:4:\"blog\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2790;s:14:\"beauty-fashion\";i:2828;s:4:\"blog\";i:2794;s:10:\"consulting\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:2:{s:8:\"id-70994\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/12/fashion-lifestyle-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/12/fashion-lifestyle-08-contact-600x761.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/fashion-lifestyle-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/fashion-lifestyle-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-70995\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/12/fashion-lifestyle-08.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/12/fashion-lifestyle-08-600x2411.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/fashion-lifestyle-08/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/fashion-lifestyle-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-70987\";a:22:{s:5:\"title\";s:7:\"Webinar\";s:2:\"id\";i:70987;s:12:\"publish-date\";i:1671644202;s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2022/12/webinar-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/12/webinar-08-600x2107.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/12/webinar-08-400x1405.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/webinar-08\";s:20:\"astra-site-parent-id\";i:3043;s:15:\"astra-sites-tag\";a:3:{i:850;s:12:\"landing-page\";i:1892;s:7:\"webinar\";i:1894;s:25:\"webinar-registration-page\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:7:{i:2777;s:8:\"business\";i:2811;s:10:\"conference\";i:2784;s:5:\"event\";i:2863;s:12:\"landing-page\";i:2771;s:8:\"one-page\";i:2801;s:5:\"video\";i:2870;s:4:\"vlog\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:2:{i:2489;s:16:\"event-invitation\";i:2927;s:8:\"one-page\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-70988\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2022/12/webinar-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/12/webinar-08-600x2107.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/webinar-08/wp-json/wp/v2/pages/592\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/webinar-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-70969\";a:22:{s:5:\"title\";s:9:\"Locksmith\";s:2:\"id\";i:70969;s:12:\"publish-date\";i:1671619748;s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2022/12/locksmith-08.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/12/locksmith-08-600x3725.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/12/locksmith-08-400x2483.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/locksmith-08\";s:20:\"astra-site-parent-id\";i:3033;s:15:\"astra-sites-tag\";a:10:{i:3042;s:10:\"keycutting\";i:3035;s:4:\"keys\";i:3040;s:4:\"lock\";i:3034;s:5:\"locks\";i:2430;s:9:\"locksmith\";i:3039;s:12:\"locksmithing\";i:3036;s:16:\"locksmithservice\";i:3038;s:17:\"locksmithservices\";i:3041;s:7:\"lostkey\";i:3037;s:8:\"security\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2777;s:8:\"business\";i:2863;s:12:\"landing-page\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:3:{i:2483;s:15:\"expert-services\";i:2471;s:16:\"local-technician\";i:2927;s:8:\"one-page\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:2:{s:8:\"id-70970\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2022/12/locksmith-08.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/12/locksmith-08-600x3725.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/locksmith-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/locksmith-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-70972\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/locksmith-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/locksmith-08/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-69906\";a:22:{s:5:\"title\";s:13:\"Creative Blog\";s:2:\"id\";i:69906;s:12:\"publish-date\";i:1669231742;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/11/creative-blog-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/11/creative-blog-08-600x1491.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/11/creative-blog-08-400x994.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/creative-blog-08\";s:20:\"astra-site-parent-id\";i:2997;s:15:\"astra-sites-tag\";a:10:{i:2209;s:11:\"advertising\";i:1652;s:7:\"blogger\";i:729;s:8:\"blogging\";i:2408;s:13:\"creative-blog\";i:2410;s:11:\"design-blog\";i:2646;s:12:\"digital-blog\";i:2412;s:9:\"film-blog\";i:509;s:11:\"photography\";i:2270;s:8:\"podcasts\";i:2165;s:16:\"style-influencer\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:37;s:4:\"blog\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2828;s:4:\"blog\";i:2791;s:8:\"creative\";i:2774;s:8:\"magazine\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-69908\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/11/creative-blog-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/11/creative-blog-08-contact-600x856.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/creative-blog-08/wp-json/wp/v2/pages/1582\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/creative-blog-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69909\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/11/creative-blog-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/11/creative-blog-08-600x1491.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/creative-blog-08/wp-json/wp/v2/pages/776\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/creative-blog-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69910\";a:12:{s:5:\"title\";s:8:\"Podcasts\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/11/creative-blog-08-podcast.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/11/creative-blog-08-podcast-600x896.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/creative-blog-08/wp-json/wp/v2/pages/1584\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/creative-blog-08/podcasts/\";s:15:\"astra-sites-tag\";a:1:{i:2270;s:8:\"podcasts\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69907\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/11/creative-blog-08-about.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/11/creative-blog-08-about-600x1282.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/creative-blog-08/wp-json/wp/v2/pages/1578\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/creative-blog-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-69916\";a:22:{s:5:\"title\";s:12:\"Planet Earth\";s:2:\"id\";i:69916;s:12:\"publish-date\";i:1669231717;s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2022/11/earth-08-1.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/11/earth-08-1-600x1250.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/11/earth-08-1-400x833.jpg\";s:14:\"astra-site-url\";s:27:\"//websitedemos.net/earth-08\";s:20:\"astra-site-parent-id\";i:2998;s:15:\"astra-sites-tag\";a:0:{}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2812;s:14:\"digital-agency\";i:2860;s:12:\"multipurpose\";i:2830;s:6:\"nature\";i:2797;s:14:\"simple-minimal\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2500;s:12:\"multipurpose\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-69917\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/11/earth-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/11/earth-08-about-1-600x828.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/earth-08/wp-json/wp/v2/pages/107\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/earth-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69918\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/11/earth-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/11/earth-08-contact-1-600x706.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/earth-08/wp-json/wp/v2/pages/100\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/earth-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69919\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2022/11/earth-08-1.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/11/earth-08-1-600x1250.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/earth-08/wp-json/wp/v2/pages/78\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:28:\"//websitedemos.net/earth-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69920\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/11/earth-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/11/earth-08-services-1-600x1348.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/earth-08/wp-json/wp/v2/pages/77\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/earth-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-69941\";a:22:{s:5:\"title\";s:11:\"Real Estate\";s:2:\"id\";i:69941;s:12:\"publish-date\";i:1669231573;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-600x2718.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-400x1812.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/real-estate-08\";s:20:\"astra-site-parent-id\";i:2999;s:15:\"astra-sites-tag\";a:7:{i:979;s:7:\"company\";i:550;s:14:\"estate-broking\";i:547;s:7:\"listing\";i:812;s:6:\"office\";i:549;s:8:\"property\";i:485;s:11:\"real-estate\";i:548;s:16:\"renting-property\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2832;s:8:\"property\";i:2778;s:11:\"real-estate\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-69944\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-contact-600x872.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/real-estate-08/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/real-estate-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69945\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-faq.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-faq-600x1091.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/real-estate-08/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/real-estate-08/faq/\";s:15:\"astra-sites-tag\";a:1:{i:426;s:3:\"faq\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69946\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-600x2718.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/real-estate-08/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/real-estate-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69942\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-about.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-about-600x1278.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/real-estate-08/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/real-estate-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69943\";a:12:{s:5:\"title\";s:6:\"Agents\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-agents.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-agents-600x1596.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/real-estate-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/real-estate-08/agents/\";s:15:\"astra-sites-tag\";a:1:{i:552;s:6:\"agents\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69947\";a:12:{s:5:\"title\";s:10:\"Properties\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-properties.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-properties-600x2630.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/real-estate-08/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/real-estate-08/properties/\";s:15:\"astra-sites-tag\";a:1:{i:553;s:10:\"properties\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-69655\";a:22:{s:5:\"title\";s:21:\"Home and Garden Decor\";s:2:\"id\";i:69655;s:12:\"publish-date\";i:1665073396;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/10/home-garden-decor-08.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/10/home-garden-decor-08-600x3656.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/10/home-garden-decor-08-400x2437.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/home-garden-decor-08\";s:20:\"astra-site-parent-id\";i:2929;s:15:\"astra-sites-tag\";a:7:{i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:416;s:11:\"garden-care\";i:421;s:18:\"garden-maintenance\";i:420;s:9:\"gardening\";i:423;s:4:\"home\";i:862;s:10:\"home-decor\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:2:{i:2495;s:9:\"ecommerce\";i:2476;s:9:\"gardening\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-69656\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/10/home-garden-decor-08-about.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/10/home-garden-decor-08-about-600x1736.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/home-garden-decor-08/wp-json/wp/v2/pages/328\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/home-garden-decor-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69657\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/10/home-garden-decor-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/10/home-garden-decor-08-contact-600x1065.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/home-garden-decor-08/wp-json/wp/v2/pages/330\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/home-garden-decor-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69658\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/10/home-garden-decor-08.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/10/home-garden-decor-08-600x3656.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/home-garden-decor-08/wp-json/wp/v2/pages/325\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/home-garden-decor-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(198,'astra-sites-and-pages-page-4','a:15:{s:8:\"id-69646\";a:22:{s:5:\"title\";s:25:\"Heating And AC Technician\";s:2:\"id\";i:69646;s:12:\"publish-date\";i:1665071731;s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/10/heating-and-ac-technician-08.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/10/heating-and-ac-technician-08-600x2986.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/10/heating-and-ac-technician-08-400x1990.jpg\";s:14:\"astra-site-url\";s:47:\"//websitedemos.net/heating-and-ac-technician-08\";s:20:\"astra-site-parent-id\";i:2928;s:15:\"astra-sites-tag\";a:7:{i:599;s:9:\"ac-repair\";i:2573;s:24:\"air-conditioning-service\";i:439;s:14:\"local-services\";i:2572;s:12:\"manufacturer\";i:2094;s:8:\"mechanic\";i:600;s:15:\"repair-services\";i:441;s:10:\"technician\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-59181\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/10/heating-and-ac-technician-08-about.jpg\";s:19:\"thumbnail-image-url\";s:99:\"https://websitedemos.net/wp-content/uploads/2022/10/heating-and-ac-technician-08-about-600x1288.jpg\";s:18:\"astra-page-api-url\";s:77:\"https://websitedemos.net/heating-and-ac-technician-08/wp-json/wp/v2/pages/887\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/heating-and-ac-technician-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59182\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/10/heating-and-ac-technician-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:101:\"https://websitedemos.net/wp-content/uploads/2022/10/heating-and-ac-technician-08-contact-600x1066.jpg\";s:18:\"astra-page-api-url\";s:77:\"https://websitedemos.net/heating-and-ac-technician-08/wp-json/wp/v2/pages/891\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:56:\"//websitedemos.net/heating-and-ac-technician-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59183\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/10/heating-and-ac-technician-08.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/10/heating-and-ac-technician-08-600x2986.jpg\";s:18:\"astra-page-api-url\";s:77:\"https://websitedemos.net/heating-and-ac-technician-08/wp-json/wp/v2/pages/885\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/heating-and-ac-technician-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59184\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/10/heating-and-ac-technician-08-services.jpg\";s:19:\"thumbnail-image-url\";s:102:\"https://websitedemos.net/wp-content/uploads/2022/10/heating-and-ac-technician-08-services-600x1659.jpg\";s:18:\"astra-page-api-url\";s:77:\"https://websitedemos.net/heating-and-ac-technician-08/wp-json/wp/v2/pages/889\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:57:\"//websitedemos.net/heating-and-ac-technician-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-69486\";a:22:{s:5:\"title\";s:12:\"Learn Baking\";s:2:\"id\";i:69486;s:12:\"publish-date\";i:1664211488;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08-600x2667.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08-400x1778.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/learn-baking-08\";s:20:\"astra-site-parent-id\";i:2925;s:15:\"astra-sites-tag\";a:4:{i:1857;s:6:\"baking\";i:462;s:7:\"courses\";i:467;s:9:\"learndash\";i:975;s:15:\"online-learning\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:7:{i:2828;s:4:\"blog\";i:2835;s:9:\"elearning\";i:2785;s:4:\"food\";i:2880;s:10:\"membership\";i:2827;s:13:\"online-course\";i:2770;s:8:\"personal\";i:2873;s:5:\"tutor\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:13:\"presto-player\";s:4:\"init\";s:31:\"presto-player/presto-player.php\";s:4:\"name\";s:13:\"Presto Player\";}i:3;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-58588\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08-about.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08-about-600x1916.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/learn-baking-08/wp-json/wp/v2/pages/1077\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/learn-baking-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-58589\";a:12:{s:5:\"title\";s:11:\"All Courses\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08-all-courses.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08-all-courses-600x1819.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/learn-baking-08/wp-json/wp/v2/pages/1075\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/learn-baking-08/all-courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-58590\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08-blog.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08-blog-600x1123.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/learn-baking-08/wp-json/wp/v2/pages/1079\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/learn-baking-08/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-58591\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08-contact-600x1547.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/learn-baking-08/wp-json/wp/v2/pages/1081\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/learn-baking-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-58592\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08-600x2667.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/learn-baking-08/wp-json/wp/v2/pages/1073\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/learn-baking-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-69465\";a:22:{s:5:\"title\";s:12:\"eBook Author\";s:2:\"id\";i:69465;s:12:\"publish-date\";i:1664208739;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/09/kathryn-ebook-author-08.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/09/kathryn-ebook-author-08-600x2110.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/09/kathryn-ebook-author-08-400x1406.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/kathryn-ebook-author-08\";s:20:\"astra-site-parent-id\";i:2923;s:15:\"astra-sites-tag\";a:4:{i:724;s:6:\"author\";i:727;s:4:\"book\";i:748;s:5:\"ebook\";i:725;s:6:\"writer\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-69466\";a:12:{s:5:\"title\";s:3:\"Bio\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/09/kathryn-ebook-author-08-bio.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/09/kathryn-ebook-author-08-bio-600x2227.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/kathryn-ebook-author-08/wp-json/wp/v2/pages/548\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/kathryn-ebook-author-08/bio/\";s:15:\"astra-sites-tag\";a:1:{i:2924;s:3:\"bio\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69468\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/09/kathryn-ebook-author-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2022/09/kathryn-ebook-author-08-contact-600x1047.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/kathryn-ebook-author-08/wp-json/wp/v2/pages/550\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/kathryn-ebook-author-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69469\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/09/kathryn-ebook-author-08.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/09/kathryn-ebook-author-08-600x2110.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/kathryn-ebook-author-08/wp-json/wp/v2/pages/544\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/kathryn-ebook-author-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69467\";a:12:{s:5:\"title\";s:5:\"Books\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/09/kathryn-ebook-author-08-books.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2022/09/kathryn-ebook-author-08-books-600x2104.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/kathryn-ebook-author-08/wp-json/wp/v2/pages/546\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/kathryn-ebook-author-08/books/\";s:15:\"astra-sites-tag\";a:1:{i:1740;s:5:\"books\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-69112\";a:22:{s:5:\"title\";s:15:\"Deli Restaurant\";s:2:\"id\";i:69112;s:12:\"publish-date\";i:1663068937;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-600x2199.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-400x1466.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/deli-restaurant-08\";s:20:\"astra-site-parent-id\";i:2903;s:15:\"astra-sites-tag\";a:14:{i:1527;s:9:\"cafeteria\";i:783;s:4:\"cake\";i:972;s:4:\"club\";i:560;s:7:\"cuisine\";i:2394;s:15:\"deli-restaurant\";i:1974;s:7:\"dessert\";i:561;s:6:\"eatery\";i:336;s:4:\"food\";i:1579;s:9:\"food-menu\";i:2513;s:11:\"fruits-dish\";i:350;s:5:\"hotel\";i:559;s:6:\"outlet\";i:335;s:10:\"restaurant\";i:2041;s:9:\"snack-bar\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-69113\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-about-us-600x1532.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/deli-restaurant-08/wp-json/wp/v2/pages/368\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/deli-restaurant-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69114\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-contact-600x1089.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/deli-restaurant-08/wp-json/wp/v2/pages/376\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/deli-restaurant-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69115\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-600x2199.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/deli-restaurant-08/wp-json/wp/v2/pages/366\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/deli-restaurant-08/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69116\";a:12:{s:5:\"title\";s:4:\"Menu\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-menu.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-menu-600x2056.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/deli-restaurant-08/wp-json/wp/v2/pages/370\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/deli-restaurant-08/menu/\";s:15:\"astra-sites-tag\";a:1:{i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69117\";a:12:{s:5:\"title\";s:9:\"Menu Dark\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-menu-dark.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-menu-dark-600x2109.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/deli-restaurant-08/wp-json/wp/v2/pages/372\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/deli-restaurant-08/menu-dark/\";s:15:\"astra-sites-tag\";a:1:{i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69118\";a:12:{s:5:\"title\";s:11:\"Testimonial\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-testimonials-600x1413.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/deli-restaurant-08/wp-json/wp/v2/pages/374\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/deli-restaurant-08/testimonial/\";s:15:\"astra-sites-tag\";a:1:{i:2302;s:11:\"testimonial\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-68423\";a:22:{s:5:\"title\";s:10:\"Cycle Shop\";s:2:\"id\";i:68423;s:12:\"publish-date\";i:1661430112;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2022/08/cycle-shop-08.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/08/cycle-shop-08-600x3500.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/08/cycle-shop-08-400x2333.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/cycle-shop-08\";s:20:\"astra-site-parent-id\";i:2902;s:15:\"astra-sites-tag\";a:17:{i:880;s:9:\"cartflows\";i:2418;s:8:\"commerce\";i:2548;s:10:\"cycle-shop\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:967;s:13:\"product-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:2549;s:12:\"sport-cycyle\";i:749;s:5:\"store\";i:966;s:12:\"woo-commerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-59170\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/08/cycle-shop-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/08/cycle-shop-08-about-us-600x2348.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/cycle-shop-08/wp-json/wp/v2/pages/1195\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/cycle-shop-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59171\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/08/cycle-shop-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/08/cycle-shop-08-contact-600x1060.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/cycle-shop-08/wp-json/wp/v2/pages/1197\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/cycle-shop-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59172\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2022/08/cycle-shop-08.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/08/cycle-shop-08-600x3500.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/cycle-shop-08/wp-json/wp/v2/pages/1193\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/cycle-shop-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-68320\";a:22:{s:5:\"title\";s:13:\"Party Planner\";s:2:\"id\";i:68320;s:12:\"publish-date\";i:1661347018;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/08/party-planner-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/08/party-planner-08-600x3106.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/08/party-planner-08-400x2071.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/party-planner-08\";s:20:\"astra-site-parent-id\";i:2901;s:15:\"astra-sites-tag\";a:6:{i:2633;s:19:\"celebration-planner\";i:2630;s:17:\"event-coordinator\";i:2632;s:17:\"event-facilitator\";i:2631;s:13:\"event-manager\";i:2635;s:5:\"party\";i:2634;s:15:\"party-organizer\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:2:{i:2486;s:9:\"art-music\";i:2489;s:16:\"event-invitation\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-68321\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/08/party-planner-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/08/party-planner-08-600x3106.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/party-planner-08/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/party-planner-08/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-68254\";a:22:{s:5:\"title\";s:20:\"Construction Company\";s:2:\"id\";i:68254;s:12:\"publish-date\";i:1661280044;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08-600x3578.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08-400x2385.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/construction-company-08\";s:20:\"astra-site-parent-id\";i:2900;s:15:\"astra-sites-tag\";a:6:{i:435;s:12:\"architecture\";i:3078;s:7:\"builder\";i:692;s:8:\"business\";i:484;s:12:\"construction\";i:795;s:10:\"contractor\";i:485;s:11:\"real-estate\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2795;s:12:\"architecture\";i:2836;s:12:\"construction\";i:2778;s:11:\"real-estate\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1320:\"<!-- wp:paragraph -->\n<p>The Construction template is very clean and crisp, ideal for forward-looking businesses. While set up for construction, you could easily use it for architecture, real estate, and other business types.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design uses bright colors and whitespace along with great imagery to create a positive first impression. Something continued effortlessly throughout the template. Thanks to full compatibility with page builders, you can transform this template without touching a line of code!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Construction template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Clean, crisp business template ideal for business</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fantastic use of colors, images, and whitespace</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Equally attractive extra pages to continue the feel</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Standout engagement buttons</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Flexible content areas on every page</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with drag-and-drop page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"Inspire confidence in new clients with this clean and crisp construction template\";s:5:\"pages\";a:5:{s:8:\"id-68255\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08-about.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08-about-600x1664.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/construction-company-08/wp-json/wp/v2/pages/499\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/construction-company-08/about/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68256\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08-contact-600x1495.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/construction-company-08/wp-json/wp/v2/pages/501\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/construction-company-08/contact/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-68257\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08-600x3578.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/construction-company-08/wp-json/wp/v2/pages/493\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/construction-company-08/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68258\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08-projects.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08-projects-600x1191.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/construction-company-08/wp-json/wp/v2/pages/495\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/construction-company-08/projects/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68259\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08-services.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08-services-600x1119.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/construction-company-08/wp-json/wp/v2/pages/497\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/construction-company-08/services/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-68223\";a:22:{s:5:\"title\";s:16:\"Generic Template\";s:2:\"id\";i:68223;s:12:\"publish-date\";i:1661271693;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/08/generic-template-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/08/generic-template-08-600x2196.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/08/generic-template-08-400x1464.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/generic-template-08\";s:20:\"astra-site-parent-id\";i:2898;s:15:\"astra-sites-tag\";a:6:{i:2456;s:7:\"generic\";i:2667;s:16:\"generic-template\";i:862;s:10:\"home-decor\";i:522;s:15:\"home-remodeling\";i:2184;s:5:\"house\";i:2666;s:10:\"realestate\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:39;s:4:\"free\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-68229\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/08/generic-template-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/08/generic-template-08-about-us-600x1567.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/generic-template-08/wp-json/wp/v2/pages/72\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/generic-template-08/about-us/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68230\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/08/generic-template-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/08/generic-template-08-contact-600x1212.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/generic-template-08/wp-json/wp/v2/pages/76\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/generic-template-08/contact/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-68231\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/08/generic-template-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/08/generic-template-08-600x2196.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/generic-template-08/wp-json/wp/v2/pages/69\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/generic-template-08/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68232\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/08/generic-template-08-services.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/08/generic-template-08-services-600x1109.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/generic-template-08/wp-json/wp/v2/pages/74\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/generic-template-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-68171\";a:22:{s:5:\"title\";s:13:\"Family Lawyer\";s:2:\"id\";i:68171;s:12:\"publish-date\";i:1661266994;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/08/family-lawyer-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/08/family-lawyer-08-600x2896.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/08/family-lawyer-08-400x1930.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/family-lawyer-08\";s:20:\"astra-site-parent-id\";i:2893;s:15:\"astra-sites-tag\";a:0:{}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-57306\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/08/family-lawyer-08-about.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/08/family-lawyer-08-about-600x1481.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/family-lawyer-08/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/family-lawyer-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-57307\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/08/family-lawyer-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2022/08/family-lawyer-08-contact-600x1008.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/family-lawyer-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/family-lawyer-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-57308\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/08/family-lawyer-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/08/family-lawyer-08-600x2896.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/family-lawyer-08/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/family-lawyer-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-57309\";a:12:{s:5:\"title\";s:14:\"Practice Areas\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/08/family-lawyer-08-practice-areas.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2022/08/family-lawyer-08-practice-areas-600x1842.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/family-lawyer-08/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/family-lawyer-08/practice-areas/\";s:15:\"astra-sites-tag\";a:1:{i:707;s:13:\"practice-area\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-68194\";a:22:{s:5:\"title\";s:7:\"Charity\";s:2:\"id\";i:68194;s:12:\"publish-date\";i:1661256899;s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-600x2271.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-400x1514.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/charity-08\";s:20:\"astra-site-parent-id\";i:2896;s:15:\"astra-sites-tag\";a:5:{i:625;s:7:\"charity\";i:624;s:10:\"foundation\";i:626;s:6:\"giving\";i:977;s:10:\"non-profit\";i:745;s:12:\"organization\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:39;s:4:\"free\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:3:{i:2786;s:17:\"charity-nonprofit\";i:2872;s:19:\"donation-fundraiser\";i:2871;s:3:\"ngo\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:4:\"give\";s:4:\"init\";s:13:\"give/give.php\";s:4:\"name\";s:22:\"Give - Donation Plugin\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-68195\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-contact-us-600x984.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/charity-08/wp-json/wp/v2/pages/2123\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/charity-08/contact-us/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-68196\";a:12:{s:5:\"title\";s:6:\"Donate\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-donate.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-donate-600x500.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/charity-08/wp-json/wp/v2/pages/2125\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/charity-08/donate/\";s:15:\"astra-sites-tag\";a:2:{i:625;s:7:\"charity\";i:735;s:6:\"donate\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:4:\"give\";s:4:\"init\";s:13:\"give/give.php\";s:4:\"name\";s:22:\"Give - Donation Plugin\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68197\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-600x2271.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/charity-08/wp-json/wp/v2/pages/2114\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/charity-08/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68199\";a:12:{s:5:\"title\";s:10:\"What We Do\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-what-we-do.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-what-we-do-600x1747.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/charity-08/wp-json/wp/v2/pages/2117\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/charity-08/who-we-are/\";s:15:\"astra-sites-tag\";a:2:{i:625;s:7:\"charity\";i:628;s:10:\"what-we-do\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68200\";a:12:{s:5:\"title\";s:10:\"Who we are\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-who-we-are.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-who-we-are-600x1643.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/charity-08/wp-json/wp/v2/pages/2119\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/charity-08/what-we-do/\";s:15:\"astra-sites-tag\";a:2:{i:625;s:7:\"charity\";i:685;s:10:\"who-we-are\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68198\";a:12:{s:5:\"title\";s:12:\"Our Partners\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-our-partners.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-our-partners-600x1318.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/charity-08/wp-json/wp/v2/pages/2121\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/charity-08/our-partners/\";s:15:\"astra-sites-tag\";a:3:{i:625;s:7:\"charity\";i:2897;s:12:\"our-partners\";i:734;s:8:\"partners\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-68177\";a:22:{s:5:\"title\";s:18:\"Calligraphy Artist\";s:2:\"id\";i:68177;s:12:\"publish-date\";i:1661254653;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08-600x2499.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08-400x1666.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/calligraphy-artist-08\";s:20:\"astra-site-parent-id\";i:2894;s:15:\"astra-sites-tag\";a:8:{i:1820;s:11:\"calligraphy\";i:1826;s:10:\"characters\";i:1824;s:11:\"chirography\";i:1821;s:11:\"handwriting\";i:1825;s:8:\"pencraft\";i:1823;s:6:\"script\";i:1827;s:5:\"style\";i:1822;s:7:\"writing\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-68178\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08-about.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08-about-600x1910.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/calligraphy-artist-08/wp-json/wp/v2/pages/452\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/calligraphy-artist-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68179\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08-contact-600x898.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/calligraphy-artist-08/wp-json/wp/v2/pages/455\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/calligraphy-artist-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-68180\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08-600x2499.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/calligraphy-artist-08/wp-json/wp/v2/pages/451\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/calligraphy-artist-08/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68181\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08-services.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08-services-600x1688.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/calligraphy-artist-08/wp-json/wp/v2/pages/454\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/calligraphy-artist-08/services/\";s:15:\"astra-sites-tag\";a:2:{i:1408;s:7:\"service\";i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-68182\";a:12:{s:5:\"title\";s:5:\"Works\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08-works.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08-works-600x2867.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/calligraphy-artist-08/wp-json/wp/v2/pages/453\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/calligraphy-artist-08/works/\";s:15:\"astra-sites-tag\";a:2:{i:451;s:4:\"work\";i:2895;s:5:\"works\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-68139\";a:22:{s:5:\"title\";s:9:\"Lotus Spa\";s:2:\"id\";i:68139;s:12:\"publish-date\";i:1661190425;s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2022/08/lotus-spa-08.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/08/lotus-spa-08-600x3001.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/08/lotus-spa-08-400x2000.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/lotus-spa-08\";s:20:\"astra-site-parent-id\";i:2892;s:15:\"astra-sites-tag\";a:0:{}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-68140\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/08/lotus-spa-08-about.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/08/lotus-spa-08-about-600x2208.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/lotus-spa-08/wp-json/wp/v2/pages/760\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/lotus-spa-08/about/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68141\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/08/lotus-spa-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/08/lotus-spa-08-contact-600x952.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/lotus-spa-08/wp-json/wp/v2/pages/764\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/lotus-spa-08/contact/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-68142\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2022/08/lotus-spa-08.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/08/lotus-spa-08-600x3001.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/lotus-spa-08/wp-json/wp/v2/pages/757\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/lotus-spa-08/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68143\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/08/lotus-spa-08-services.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/08/lotus-spa-08-services-600x2570.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/lotus-spa-08/wp-json/wp/v2/pages/762\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/lotus-spa-08/services/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-68088\";a:22:{s:5:\"title\";s:12:\"Flute Artist\";s:2:\"id\";i:68088;s:12:\"publish-date\";i:1660910628;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2022/08/flute-artist-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/08/flute-artist-08-600x2761.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/08/flute-artist-08-400x1840.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/flute-artist-08\";s:20:\"astra-site-parent-id\";i:2891;s:15:\"astra-sites-tag\";a:6:{i:339;s:6:\"artist\";i:2438;s:12:\"flute-artist\";i:2439;s:12:\"flute-player\";i:2503;s:7:\"grooved\";i:407;s:5:\"music\";i:2504;s:25:\"musical-instrument-player\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:1:{i:2802;s:6:\"artist\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:2:{i:2486;s:9:\"art-music\";i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1249:\"<!-- wp:paragraph -->\n<p>The Flute Artist template has been designed to reflect the elegance and classic nature of the instrument and the industry. It’s a very calm layout with sober colors and an instant appeal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The homepage begins dark and quickly opens out to include lots of white space, modern, elegant fonts and lots of imagery to set the scene. There are also options to include video and audio clips, a biography page, portfolio page and contact form.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Flute Artist template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Flexible portfolio website for musicians</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Elegant design ideal for the niche</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Includes the option to add audio and video</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Dedicated portfolio and contact page</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Flexible layout that can be fully customized</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Page builder compatible for ease of use</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:395:\"The Flute Artist template has been designed to reflect the elegance and classic nature of the instrument and the industry. It’s a very calm layout with sober colors and an instant appeal. The homepage begins dark and quickly opens out to include lots of white space, modern, elegant fonts and lots of imagery to set &hellip;<p class=\"read-more\"> <a class=\"\" href=\"\">  Read More &raquo;</a></p>\";s:5:\"pages\";a:4:{s:8:\"id-59104\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/08/flute-artist-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/08/flute-artist-08-contact-600x890.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/flute-artist-08/wp-json/wp/v2/pages/656\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/flute-artist-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59105\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/08/flute-artist-08-gallery.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/08/flute-artist-08-gallery-600x2369.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/flute-artist-08/wp-json/wp/v2/pages/654\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/flute-artist-08/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59106\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2022/08/flute-artist-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/08/flute-artist-08-600x2761.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/flute-artist-08/wp-json/wp/v2/pages/650\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/flute-artist-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59103\";a:12:{s:5:\"title\";s:9:\"Biography\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/08/flute-artist-08-biography.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/08/flute-artist-08-biography-600x1848.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/flute-artist-08/wp-json/wp/v2/pages/652\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/flute-artist-08/biography/\";s:15:\"astra-sites-tag\";a:1:{i:1566;s:9:\"biography\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59655\";a:22:{s:5:\"title\";s:20:\"Chartered Accountant\";s:2:\"id\";i:59655;s:12:\"publish-date\";i:1656964003;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/03/charter-accountant-01.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/03/charter-accountant-01-600x2204.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/03/charter-accountant-01-400x1469.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/accountant-01\";s:20:\"astra-site-parent-id\";i:2648;s:15:\"astra-sites-tag\";a:3:{i:447;s:10:\"accountant\";i:449;s:20:\"chartered-accountant\";i:2254;s:22:\"finance-and-accounting\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2481;s:15:\"finance-service\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-59657\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/03/charter-accountant-01-contant.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/03/charter-accountant-01-contant-600x889.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/accountant-01/wp-json/wp/v2/pages/637\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/accountant-01/contact/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59658\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/03/charter-accountant-01.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/03/charter-accountant-01-600x2204.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/accountant-01/wp-json/wp/v2/pages/632\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/accountant-01/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59656\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/03/charter-accountant-01-about.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/03/charter-accountant-01-about-600x1078.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/accountant-01/wp-json/wp/v2/pages/633\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/accountant-01/about/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-59659\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/03/charter-accountant-01-services.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2022/03/charter-accountant-01-services-600x1226.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/accountant-01/wp-json/wp/v2/pages/634\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/accountant-01/services/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-59660\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/03/charter-accountant-01-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:99:\"https://websitedemos.net/wp-content/uploads/2022/03/charter-accountant-01-testimonials-600x1223.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/accountant-01/wp-json/wp/v2/pages/636\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/accountant-01/testimonials/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-59661\";a:12:{s:5:\"title\";s:13:\"Why choose me\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/03/charter-accountant-01-choose.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/03/charter-accountant-01-choose-600x965.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/accountant-01/wp-json/wp/v2/pages/635\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/accountant-01/why-choose-me/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59803\";a:22:{s:5:\"title\";s:18:\"Ayurvedic Products\";s:2:\"id\";i:59803;s:12:\"publish-date\";i:1661245799;s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2022/08/ayurveda-08.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/08/ayurveda-08-600x2964.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/08/ayurveda-08-400x1976.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/ayurveda-08\";s:20:\"astra-site-parent-id\";i:2658;s:15:\"astra-sites-tag\";a:5:{i:2650;s:8:\"ayurveda\";i:618;s:9:\"ayurvedic\";i:2643;s:19:\"ayurvedic-treatment\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-59804\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/08/ayurveda-08-about.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/08/ayurveda-08-about-600x2203.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/ayurveda-08/wp-json/wp/v2/pages/329\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/ayurveda-08/about/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59805\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/08/ayurveda-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/08/ayurveda-08-contact-600x796.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/ayurveda-08/wp-json/wp/v2/pages/331\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/ayurveda-08/contact/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59806\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2022/08/ayurveda-08.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/08/ayurveda-08-600x2964.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/ayurveda-08/wp-json/wp/v2/pages/326\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/ayurveda-08/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(199,'astra-sites-and-pages-page-5','a:15:{s:8:\"id-59789\";a:22:{s:5:\"title\";s:10:\"Book Store\";s:2:\"id\";i:59789;s:12:\"publish-date\";i:1661251526;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2022/08/book-store-08.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/08/book-store-08-600x2546.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/08/book-store-08-400x1697.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/book-store-08\";s:20:\"astra-site-parent-id\";i:2657;s:15:\"astra-sites-tag\";a:8:{i:724;s:6:\"author\";i:2355;s:17:\"author-book-store\";i:2354;s:16:\"author-portfolio\";i:2353;s:11:\"book-writer\";i:2352;s:11:\"books-store\";i:496;s:9:\"ecommerce\";i:383;s:12:\"online-store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-59791\";a:12:{s:5:\"title\";s:5:\"Books\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/08/book-store-08-books.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/08/book-store-08-books-600x1400.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/book-store-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/book-store-08/books/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}s:8:\"id-59792\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/08/book-store-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/08/book-store-08-contact-600x931.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/book-store-08/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/book-store-08/contact/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59793\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2022/08/book-store-08.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/08/book-store-08-600x2546.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/book-store-08/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/book-store-08/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}s:8:\"id-59790\";a:12:{s:5:\"title\";s:12:\"About Author\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/08/book-store-08-about-author.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/08/book-store-08-about-author-600x1597.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/book-store-08/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/book-store-08/about-author/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59775\";a:22:{s:5:\"title\";s:14:\"Digital Agency\";s:2:\"id\";i:59775;s:12:\"publish-date\";i:1661176634;s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2022/08/agency-08.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/08/agency-08-600x2216.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/08/agency-08-400x1477.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/agency-08\";s:20:\"astra-site-parent-id\";i:2656;s:15:\"astra-sites-tag\";a:6:{i:663;s:6:\"agency\";i:979;s:7:\"company\";i:686;s:9:\"corporate\";i:664;s:16:\"digital-services\";i:812;s:6:\"office\";i:665;s:14:\"service-agency\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-59776\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2022/08/agency-08-about.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/08/agency-08-about-600x1426.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/agency-08/wp-json/wp/v2/pages/1490\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/agency-08/about/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59777\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/08/agency-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/08/agency-08-contact-600x829.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/agency-08/wp-json/wp/v2/pages/1494\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/agency-08/contact/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59778\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2022/08/agency-08.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/08/agency-08-600x2216.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/agency-08/wp-json/wp/v2/pages/1488\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/agency-08/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59779\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/08/agency-08-services.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/08/agency-08-services-600x1322.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/agency-08/wp-json/wp/v2/pages/1492\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/agency-08/services/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59760\";a:22:{s:5:\"title\";s:11:\"Love Nature\";s:2:\"id\";i:59760;s:12:\"publish-date\";i:1661343275;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2022/08/love-nature-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/08/love-nature-08-600x1562.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/08/love-nature-08-400x1041.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/love-nature-08\";s:20:\"astra-site-parent-id\";i:2655;s:15:\"astra-sites-tag\";a:8:{i:538;s:6:\"forest\";i:2456;s:7:\"generic\";i:2493;s:12:\"multipurpose\";i:537;s:13:\"national-park\";i:535;s:6:\"nature\";i:534;s:11:\"nature-park\";i:539;s:9:\"sanctuary\";i:536;s:10:\"wilderness\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2500;s:12:\"multipurpose\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-59761\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/08/love-nature-08-about.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/08/love-nature-08-about-600x908.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/love-nature-08/wp-json/wp/v2/pages/1324\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/love-nature-08/about/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59762\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/08/love-nature-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/08/love-nature-08-contact-600x830.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/love-nature-08/wp-json/wp/v2/pages/1328\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/love-nature-08/contact/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59763\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2022/08/love-nature-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/08/love-nature-08-600x1562.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/love-nature-08/wp-json/wp/v2/pages/1322\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/love-nature-08/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59764\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/08/love-nature-08-services.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/08/love-nature-08-services-600x1347.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/love-nature-08/wp-json/wp/v2/pages/1326\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/love-nature-08/services/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59726\";a:22:{s:5:\"title\";s:20:\"Freelance Copywriter\";s:2:\"id\";i:59726;s:12:\"publish-date\";i:1665068704;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/10/freelance-copywriter-08.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/10/freelance-copywriter-08-600x2282.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/10/freelance-copywriter-08-400x1521.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/freelance-copywriter-08\";s:20:\"astra-site-parent-id\";i:2653;s:15:\"astra-sites-tag\";a:8:{i:1652;s:7:\"blogger\";i:1654;s:15:\"content-creator\";i:1649;s:14:\"content-writer\";i:1650;s:10:\"copywriter\";i:1648;s:20:\"freelance-copywriter\";i:669;s:10:\"freelancer\";i:1651;s:8:\"marketer\";i:1653;s:19:\"web-content-creator\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-59727\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/10/freelance-copywriter-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2022/10/freelance-copywriter-08-contact-600x1176.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/freelance-copywriter-08/wp-json/wp/v2/pages/264\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/freelance-copywriter-08/contact/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59728\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/10/freelance-copywriter-08.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/10/freelance-copywriter-08-600x2282.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/freelance-copywriter-08/wp-json/wp/v2/pages/257\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/freelance-copywriter-08/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59729\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/10/freelance-copywriter-08-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:101:\"https://websitedemos.net/wp-content/uploads/2022/10/freelance-copywriter-08-testimonials-600x1631.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/freelance-copywriter-08/wp-json/wp/v2/pages/262\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:56:\"//websitedemos.net/freelance-copywriter-08/testimonials/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59730\";a:12:{s:5:\"title\";s:4:\"Work\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/10/freelance-copywriter-08-work.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/10/freelance-copywriter-08-work-600x1479.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/freelance-copywriter-08/wp-json/wp/v2/pages/260\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/freelance-copywriter-08/work/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59557\";a:22:{s:5:\"title\";s:9:\"Guitarist\";s:2:\"id\";i:59557;s:12:\"publish-date\";i:1675438131;s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08-600x3032.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08-400x2021.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/guitarist-08\";s:20:\"astra-site-parent-id\";i:2637;s:15:\"astra-sites-tag\";a:5:{i:2612;s:12:\"guitar-cello\";i:2611;s:13:\"guitar-player\";i:2610;s:9:\"guitarist\";i:1571;s:6:\"singer\";i:1573;s:8:\"vocalist\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2802;s:6:\"artist\";i:2781;s:5:\"music\";i:2868;s:15:\"musician-singer\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2486;s:9:\"art-music\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-59558\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08-about.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08-about-600x2350.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/guitarist-08/wp-json/wp/v2/pages/774\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/guitarist-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59559\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08-contact-600x921.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/guitarist-08/wp-json/wp/v2/pages/780\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/guitarist-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59560\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08-600x3032.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/guitarist-08/wp-json/wp/v2/pages/772\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/guitarist-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59561\";a:12:{s:5:\"title\";s:7:\"Lessons\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08-lessons.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08-lessons-600x1434.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/guitarist-08/wp-json/wp/v2/pages/776\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/guitarist-08/lessons/\";s:15:\"astra-sites-tag\";a:1:{i:747;s:7:\"lessons\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59562\";a:12:{s:5:\"title\";s:5:\"Shows\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08-shows.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08-shows-600x1090.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/guitarist-08/wp-json/wp/v2/pages/778\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/guitarist-08/shows/\";s:15:\"astra-sites-tag\";a:1:{i:1568;s:5:\"shows\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59249\";a:22:{s:5:\"title\";s:17:\"Security Services\";s:2:\"id\";i:59249;s:12:\"publish-date\";i:1669220644;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/11/security-services-08.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/11/security-services-08-600x2231.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/11/security-services-08-400x1487.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/security-services-08\";s:20:\"astra-site-parent-id\";i:2586;s:15:\"astra-sites-tag\";a:8:{i:2508;s:14:\"alarm-security\";i:2507;s:15:\"camera-security\";i:2511;s:16:\"custody-services\";i:2510;s:5:\"guard\";i:2506;s:16:\"private-security\";i:2509;s:6:\"safety\";i:2399;s:17:\"security-services\";i:2400;s:15:\"security-system\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-59250\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/11/security-services-08-about.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/11/security-services-08-about-600x1145.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/security-services-08/wp-json/wp/v2/pages/528\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/security-services-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59251\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/11/security-services-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/11/security-services-08-contact-600x932.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/security-services-08/wp-json/wp/v2/pages/532\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/security-services-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59252\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/11/security-services-08.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/11/security-services-08-600x2231.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/security-services-08/wp-json/wp/v2/pages/476\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/security-services-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59253\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/11/security-services-08-services.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2022/11/security-services-08-services-600x2320.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/security-services-08/wp-json/wp/v2/pages/513\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/security-services-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59233\";a:22:{s:5:\"title\";s:12:\"Coffee House\";s:2:\"id\";i:59233;s:12:\"publish-date\";i:1661278258;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2022/08/coffee-house-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/08/coffee-house-08-600x2042.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/08/coffee-house-08-400x1361.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/coffee-house-08\";s:20:\"astra-site-parent-id\";i:2585;s:15:\"astra-sites-tag\";a:9:{i:693;s:4:\"cafe\";i:2042;s:8:\"cafe-bar\";i:1527;s:9:\"cafeteria\";i:2043;s:12:\"coffee-house\";i:1575;s:11:\"coffee-shop\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:335;s:10:\"restaurant\";i:2041;s:9:\"snack-bar\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-59234\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/08/coffee-house-08-about.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/08/coffee-house-08-about-600x1733.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/coffee-house-08/wp-json/wp/v2/pages/516\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/coffee-house-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59235\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/08/coffee-house-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/08/coffee-house-08-contact-600x1114.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/coffee-house-08/wp-json/wp/v2/pages/520\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/coffee-house-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59236\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2022/08/coffee-house-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/08/coffee-house-08-600x2042.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/coffee-house-08/wp-json/wp/v2/pages/514\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/coffee-house-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59237\";a:12:{s:5:\"title\";s:4:\"Menu\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/08/coffee-house-08-menu.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/08/coffee-house-08-menu-600x1102.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/coffee-house-08/wp-json/wp/v2/pages/518\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/coffee-house-08/menu/\";s:15:\"astra-sites-tag\";a:1:{i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59219\";a:22:{s:5:\"title\";s:18:\"Personal Portfolio\";s:2:\"id\";i:59219;s:12:\"publish-date\";i:1643987375;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-08-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-08-1-600x2832.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-08-1-400x1888.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/personal-portfolio-08\";s:20:\"astra-site-parent-id\";i:2584;s:15:\"astra-sites-tag\";a:6:{i:2151;s:16:\"curriculum-vitae\";i:2150;s:2:\"cv\";i:1903;s:16:\"personal-website\";i:444;s:9:\"portfolio\";i:2153;s:6:\"resume\";i:2152;s:12:\"work-profile\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-59220\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-08-about-1-600x1481.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/personal-portfolio-08/wp-json/wp/v2/pages/1203\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/personal-portfolio-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59221\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-08-contact-1-600x791.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/personal-portfolio-08/wp-json/wp/v2/pages/1207\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/personal-portfolio-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59222\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-08-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-08-1-600x2832.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/personal-portfolio-08/wp-json/wp/v2/pages/1201\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/personal-portfolio-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59223\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-08-portfolio-1.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-08-portfolio-1-600x733.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/personal-portfolio-08/wp-json/wp/v2/pages/1205\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/personal-portfolio-08/portfolio/\";s:15:\"astra-sites-tag\";a:1:{i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59202\";a:22:{s:5:\"title\";s:23:\"Limousine Rental Agency\";s:2:\"id\";i:59202;s:12:\"publish-date\";i:1669231673;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08-600x3360.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08-400x2240.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/rental-agency-08\";s:20:\"astra-site-parent-id\";i:2582;s:15:\"astra-sites-tag\";a:5:{i:2540;s:9:\"limousine\";i:2538;s:15:\"rent-limousines\";i:2539;s:13:\"rent-services\";i:2537;s:13:\"rental-agency\";i:2541;s:5:\"sedan\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-59203\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08-about-us-600x2154.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/rental-agency-08/wp-json/wp/v2/pages/578\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/rental-agency-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59204\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08-save.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08-save-600x1413.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/rental-agency-08/wp-json/wp/v2/pages/584\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/rental-agency-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59205\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08-600x3360.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/rental-agency-08/wp-json/wp/v2/pages/576\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/rental-agency-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59206\";a:12:{s:5:\"title\";s:9:\"Our Fleet\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08-our-fleet.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08-our-fleet-600x2014.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/rental-agency-08/wp-json/wp/v2/pages/580\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/rental-agency-08/our-fleet/\";s:15:\"astra-sites-tag\";a:1:{i:2583;s:9:\"our-fleet\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59207\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08-services.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08-services-600x2575.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/rental-agency-08/wp-json/wp/v2/pages/582\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/rental-agency-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-69440\";a:22:{s:5:\"title\";s:13:\"Eyewear Store\";s:2:\"id\";i:69440;s:12:\"publish-date\";i:1663782034;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/09/eyewear-store-04.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/09/eyewear-store-04-600x2705.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/09/eyewear-store-04-400x1803.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/eyewear-store-04\";s:20:\"astra-site-parent-id\";i:2914;s:15:\"astra-sites-tag\";a:14:{i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2918;s:4:\"eyes\";i:2915;s:7:\"eyewear\";i:2916;s:13:\"eyewear-store\";i:2919;s:6:\"glears\";i:2922;s:8:\"lenskart\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:2921;s:5:\"specs\";i:2920;s:10:\"spectacles\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:3:{i:2769;s:9:\"ecommerce\";i:2858;s:16:\"fashion-clothing\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:926:\"<!-- wp:paragraph -->\n<p>The Eyewear online store template is a light and bright full screen template that makes a great first impression. It opens with a fullscreen image, heading and call to action before opening into a full width store page.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Eyewear Store template has an upmarket feel with quality images, attractive fonts and modern layout. It is SEO-friendly, WooCommerce compatible and works with most page builders, giving you everything you need to build an online store.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Eyewear Store template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Compelling eCommerce store theme for WordPress</li><li>Superb colors, fonts and layout</li><li>Designed to convert</li><li>Lots of options for showing products</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:76:\"Light and bright eCommerce template designed to sell any product effectively\";s:5:\"pages\";a:3:{s:8:\"id-69441\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/09/eyewear-store-04-about.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/09/eyewear-store-04-about-600x1646.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/eyewear-store-04/wp-json/wp/v2/pages/223\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/eyewear-store-04/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-69442\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/09/eyewear-store-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/09/eyewear-store-04-contact-600x979.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/eyewear-store-04/wp-json/wp/v2/pages/225\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/eyewear-store-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69443\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/09/eyewear-store-04.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/09/eyewear-store-04-600x2705.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/eyewear-store-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/eyewear-store-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-58478\";a:22:{s:5:\"title\";s:10:\"Plant Shop\";s:2:\"id\";i:58478;s:12:\"publish-date\";i:1633716900;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/10/plant-shop-08.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/10/plant-shop-08-600x2149.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/10/plant-shop-08-400x1432.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/plant-shop-08\";s:20:\"astra-site-parent-id\";i:2451;s:15:\"astra-sites-tag\";a:15:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2419;s:9:\"eshopping\";i:2422;s:13:\"online-market\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:497;s:11:\"plant-store\";i:495;s:6:\"plants\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2769;s:9:\"ecommerce\";i:2830;s:6:\"nature\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-58547\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/10/plant-shop-08.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/10/plant-shop-08-600x2149.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/plant-shop-08/wp-json/wp/v2/pages/1008\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/plant-shop-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-58546\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/10/plant-shop-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/10/plant-shop-08-contact-1-600x701.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/plant-shop-08/wp-json/wp/v2/pages/1004\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/plant-shop-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-58545\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/10/plant-shop-08-about-.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/10/plant-shop-08-about--600x1317.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/plant-shop-08/wp-json/wp/v2/pages/1002\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/plant-shop-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-56593\";a:22:{s:5:\"title\";s:18:\"Meditation Courses\";s:2:\"id\";i:56593;s:12:\"publish-date\";i:1632945042;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/09/learn-meditation-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/09/learn-meditation-08-600x2660.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/09/learn-meditation-08-400x1773.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/learn-meditation-08\";s:20:\"astra-site-parent-id\";i:2242;s:15:\"astra-sites-tag\";a:5:{i:462;s:7:\"courses\";i:467;s:9:\"learndash\";i:1850;s:10:\"meditation\";i:975;s:15:\"online-learning\";i:720;s:9:\"tutorials\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:2:{i:2494;s:9:\"elearning\";i:2480;s:16:\"fitness-wellness\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:2;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-56595\";a:12:{s:5:\"title\";s:7:\"Classes\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/09/learn-meditation-08-classes.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/09/learn-meditation-08-classes-600x976.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/learn-meditation-08/wp-json/wp/v2/pages/607\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/learn-meditation-08/classes/\";s:15:\"astra-sites-tag\";a:1:{i:557;s:7:\"classes\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56596\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/09/learn-meditation-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/09/learn-meditation-08-contact-600x855.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/learn-meditation-08/wp-json/wp/v2/pages/617\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/learn-meditation-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56594\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/09/learn-meditation-08-about.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/09/learn-meditation-08-about-600x1259.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/learn-meditation-08/wp-json/wp/v2/pages/612\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/learn-meditation-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56597\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/09/learn-meditation-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/09/learn-meditation-08-600x2660.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/learn-meditation-08/wp-json/wp/v2/pages/572\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/learn-meditation-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-73550\";a:22:{s:5:\"title\";s:30:\"Ursula Jones &#8211; Traveller\";s:2:\"id\";i:73550;s:12:\"publish-date\";i:1681833186;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2023/04/ursulajones-traveller.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/04/ursulajones-traveller-600x900.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/04/ursulajones-traveller-400x600.jpg\";s:14:\"astra-site-url\";s:53:\"//websitedemos.net/ursulajones-traveller-index-bio-02\";s:20:\"astra-site-parent-id\";i:3190;s:15:\"astra-sites-tag\";a:10:{i:1918;s:5:\"beach\";i:1023;s:6:\"beauty\";i:3064;s:4:\"life\";i:541;s:9:\"mountains\";i:3181;s:6:\"sunset\";i:427;s:6:\"travel\";i:3179;s:18:\"travel-photography\";i:3178;s:9:\"traveller\";i:3180;s:10:\"travelling\";i:3182;s:14:\"traveltheworld\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:1:{i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:3171;s:11:\"link-in-bio\";i:2770;s:8:\"personal\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:3:{i:3191;s:11:\"link-in-bio\";i:2927;s:8:\"one-page\";i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1192:\"<!-- wp:paragraph -->\n<p>The Social Media Travel Influencer link in bio template is a flexible alternative to Linktree. It’s good-looking, flexible, and fully responsive so it will look just as good on any device and screen size.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Link in bio pages are the latest way to show off your work. They are simple landing pages where you can share your links and gather an audience, and the Social Media Travel Influencer link in bio template is the perfect way to do it!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Social Media Travel Influencer link in bio template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Attractive Landing tree alternative</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fully responsive and works well on any screen size</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fully customizable using built-in tools</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Flexible content and link areas</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:92:\"The Social Media Travel Influencer link in bio template has everything to attract attention!\";s:5:\"pages\";a:1:{s:8:\"id-73551\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/04/ursulajones-traveller-index-bio-02.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2023/04/ursulajones-traveller-index-bio-02-600x347.jpg\";s:18:\"astra-page-api-url\";s:81:\"https://websitedemos.net/ursulajones-traveller-index-bio-02/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/ursulajones-traveller-index-bio-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-73411\";a:22:{s:5:\"title\";s:19:\"Artist Multipurpose\";s:2:\"id\";i:73411;s:12:\"publish-date\";i:1681496599;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2023/04/artist-multipurpose-02.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2023/04/artist-multipurpose-02-600x1618.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2023/04/artist-multipurpose-02-400x1079.jpg\";s:14:\"astra-site-url\";s:41:\"//websitedemos.net/artist-multipurpose-02\";s:20:\"astra-site-parent-id\";i:3140;s:15:\"astra-sites-tag\";a:13:{i:1511;s:7:\"artisan\";i:339;s:6:\"artist\";i:2299;s:16:\"artist-portfolio\";i:2456;s:7:\"generic\";i:2667;s:16:\"generic-template\";i:1526;s:13:\"multi-purpose\";i:2493;s:12:\"multipurpose\";i:614;s:7:\"painter\";i:2284;s:14:\"painter-artist\";i:1512;s:8:\"painting\";i:861;s:9:\"paintings\";i:3013;s:8:\"template\";i:2726;s:13:\"visual-artist\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:39;s:4:\"free\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:5:{i:2802;s:6:\"artist\";i:2791;s:8:\"creative\";i:2860;s:12:\"multipurpose\";i:2770;s:8:\"personal\";i:2797;s:14:\"simple-minimal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2500;s:12:\"multipurpose\";i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1250:\"<!-- wp:paragraph -->\n<p>The Artist Generic Multipurpose template is a classy design ideal for showing off your creative work, building an online portfolio, and sharing your story with the world. If you’re looking to attract sponsors, and clients or build a community, this is the template you need.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design is trendy, with a soft background color, a free-flowing layout, and a subtle parallax effect. There are content blocks throughout as well as a large portfolio section and an attractive gallery page to showcase your work.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Artist Generic Multipurpose template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Classy modern design with instant engagement</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Frameless layout works amazingly well</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Attractive portfolio sections and gallery page</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fully responsive and SEO-friendly</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:89:\"The Artist Generic Multipurpose template is all the portfolio you need to share your work\";s:5:\"pages\";a:4:{s:8:\"id-73412\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/04/artist-multipurpose-02-about.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2023/04/artist-multipurpose-02-about-600x1198.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/artist-multipurpose-02/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/artist-multipurpose-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-73413\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/04/artist-multipurpose-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2023/04/artist-multipurpose-02-contact-600x654.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/artist-multipurpose-02/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/artist-multipurpose-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-73414\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/04/artist-multipurpose-02-gallery.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2023/04/artist-multipurpose-02-gallery-600x793.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/artist-multipurpose-02/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/artist-multipurpose-02/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-73415\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2023/04/artist-multipurpose-02.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2023/04/artist-multipurpose-02-600x1618.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/artist-multipurpose-02/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/artist-multipurpose-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-19884\";a:22:{s:5:\"title\";s:17:\"Outdoor Adventure\";s:2:\"id\";i:19884;s:12:\"publish-date\";i:1544174928;s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/outdoor-adventure-home-screenshot.png\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/outdoor-adventure-home-screenshot.png\";s:28:\"fullpage-thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/outdoor-adventure-home-screenshot.png\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/outdoor-adventure-01\";s:20:\"astra-site-parent-id\";i:184;s:15:\"astra-sites-tag\";a:6:{i:544;s:9:\"adventure\";i:545;s:7:\"camping\";i:543;s:14:\"extreme-sports\";i:541;s:9:\"mountains\";i:542;s:4:\"park\";i:546;s:6:\"sports\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2500;s:12:\"multipurpose\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-23776\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/outdoor-adventure-home-screenshot.png\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/outdoor-adventure-home-screenshot.png\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/outdoor-adventure-01/wp-json/wp/v2/pages/271\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/outdoor-adventure-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-23769\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/outdoor-adventure-about-screenshot.png\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/outdoor-adventure-about-screenshot.png\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/outdoor-adventure-01/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/outdoor-adventure-01/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-23781\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2019/07/outdoor-adventure-services-screenshot.png\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2019/07/outdoor-adventure-services-screenshot.png\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/outdoor-adventure-01/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/outdoor-adventure-01/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-23780\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2019/07/outdoor-adventure-projects-screenshot.png\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2019/07/outdoor-adventure-projects-screenshot.png\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/outdoor-adventure-01/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/outdoor-adventure-01/projects/\";s:15:\"astra-sites-tag\";a:1:{i:424;s:7:\"project\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-23772\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2019/07/outdoor-adventure-contact-screenshot.png\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23772-outdoor-adventure-contact-resize.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/outdoor-adventure-01/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/outdoor-adventure-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(200,'astra-sites-and-pages-page-6','a:15:{s:8:\"id-71238\";a:22:{s:5:\"title\";s:15:\"Game Dev Studio\";s:2:\"id\";i:71238;s:12:\"publish-date\";i:1672852753;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/01/game-dev-studio-04.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/01/game-dev-studio-04-600x2821.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/01/game-dev-studio-04-400x1881.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/game-dev-studio-04\";s:20:\"astra-site-parent-id\";i:3071;s:15:\"astra-sites-tag\";a:8:{i:652;s:4:\"game\";i:3073;s:16:\"game-development\";i:3077;s:10:\"gamedesign\";i:3074;s:7:\"gamedev\";i:3075;s:13:\"gamedeveloper\";i:3072;s:6:\"gaming\";i:1510;s:6:\"studio\";i:3076;s:10:\"videogames\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2791;s:8:\"creative\";i:2768;s:9:\"portfolio\";i:2779;s:16:\"software-company\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2499;s:10:\"technology\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1239:\"<!-- wp:paragraph -->\n<p>The Game Dev Studio template has everything a development studio needs in a website. Content boxes, fullscreen design with amazing background images, blocks to showcase your games and extra areas to help you tell your story.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Game Dev Studio template is a dark design with colorful images, bright modern fonts and a mix of common content areas. There are options to highlight new releases, updates, blog posts and share your story throughout the theme.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Game Dev Studio template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Modern Game Dev Studio website design ideal for the niche</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Dark design with colorful imagery throughout</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Flexible content areas that can be customized to suit</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lots of optional page elements to create a unique experience</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:65:\"Powerful Game Dev Studio template designed to appeal to the niche\";s:5:\"pages\";a:4:{s:8:\"id-71240\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2023/01/game-dev-studio-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/01/game-dev-studio-04-contact-600x919.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/game-dev-studio-04/wp-json/wp/v2/pages/18\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/game-dev-studio-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71239\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/01/game-dev-studio-04-about.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/01/game-dev-studio-04-about-600x2701.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/game-dev-studio-04/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/game-dev-studio-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-71241\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/01/game-dev-studio-04.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/01/game-dev-studio-04-600x2821.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/game-dev-studio-04/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/game-dev-studio-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-71242\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/01/game-dev-studio-04-projects.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2023/01/game-dev-studio-04-projects-600x1465.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/game-dev-studio-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/game-dev-studio-04/projects/\";s:15:\"astra-sites-tag\";a:1:{i:1613;s:8:\"projects\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59589\";a:22:{s:5:\"title\";s:9:\"Lotus Spa\";s:2:\"id\";i:59589;s:12:\"publish-date\";i:1646330912;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/03/lotus-spa-02home.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/03/lotus-spa-02home-600x2915.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/03/lotus-spa-02home-400x1943.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/lotus-spa-02\";s:20:\"astra-site-parent-id\";i:2638;s:15:\"astra-sites-tag\";a:9:{i:2643;s:19:\"ayurvedic-treatment\";i:2642;s:8:\"body-spa\";i:2641;s:13:\"curative-bath\";i:2639;s:9:\"lotus-spa\";i:528;s:7:\"massage\";i:530;s:3:\"spa\";i:2640;s:8:\"spa-club\";i:2644;s:11:\"spa-therapy\";i:619;s:8:\"wellness\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2790;s:14:\"beauty-fashion\";i:2821;s:14:\"feminine-girly\";i:2822;s:15:\"massage-therapy\";i:2856;s:3:\"spa\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2480;s:16:\"fitness-wellness\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:968:\"<!-- wp:paragraph -->\n<p>The Lotus Spa template is a feminine theme with a lovely blend of images and colors that suits the niche perfectly. The design is calm, confident and welcomes you as soon as you land.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Every page reflects the core design with comfortable colors and fonts, effective imagery and the content blocks you expect to see on the page. Everything you see can be fully customized too.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Lotus Spa template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Warm and welcoming design perfect for the niche</li><li>Exceptional use of color, fonts and white space</li><li>Lots of content blocks including product and service sections</li><li>Effective contact page including map for ease of use</li><li>Social media elements built into the design</li><li>Fully compatible with drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:82:\"Relaxed spa template that’s useful for many types of beauty or wellness business\";s:5:\"pages\";a:4:{s:8:\"id-59590\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/03/lotus-spa-02-about.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/03/lotus-spa-02-about-600x2079.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/lotus-spa-02/wp-json/wp/v2/pages/239\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/lotus-spa-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-59591\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/03/lotus-spa-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/03/lotus-spa-02-contact-600x931.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/lotus-spa-02/wp-json/wp/v2/pages/647\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/lotus-spa-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59592\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/03/lotus-spa-02home.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/03/lotus-spa-02home-600x2915.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/lotus-spa-02/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/lotus-spa-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-59593\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/03/lotus-spa-02-services.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/03/lotus-spa-02-services-600x2746.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/lotus-spa-02/wp-json/wp/v2/pages/467\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/lotus-spa-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71556\";a:22:{s:5:\"title\";s:24:\"Finance &amp; Consulting\";s:2:\"id\";i:71556;s:12:\"publish-date\";i:1676369679;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2023/02/finance-consulting-04.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/02/finance-consulting-04-600x1970.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/02/finance-consulting-04-400x1313.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/finance-consulting-04\";s:20:\"astra-site-parent-id\";i:3091;s:15:\"astra-sites-tag\";a:10:{i:447;s:10:\"accountant\";i:448;s:10:\"accounting\";i:581;s:6:\"advice\";i:2288;s:19:\"business-consulting\";i:449;s:20:\"chartered-accountant\";i:1898;s:10:\"consulting\";i:446;s:7:\"finance\";i:3092;s:18:\"finance-consultant\";i:582;s:20:\"financial-investment\";i:775;s:18:\"investment-banking\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:6:{i:2823;s:10:\"accounting\";i:2777;s:8:\"business\";i:2794;s:10:\"consulting\";i:2805;s:7:\"finance\";i:2866;s:9:\"insurance\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2481;s:15:\"finance-service\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1335:\"<!-- wp:paragraph -->\n<p>The Finance &amp; Consulting template uses a fullscreen design with bold colors and fonts to make a great first impression. The template includes all the primary pages you’re likely to need including service pages, about, clients, a jobs page and contact page.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Finance &amp; Consulting template covers all the needs of a company in this niche. All page elements are fully customizable and you can add or remove as you see fit. With a couple of modest but impressive animations, this could be the only template you ever need.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Finance &amp; Consulting template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Elegant design with an upscale feel ideal for the niche</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Attractive fullscreen design with customizable colors and typography</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Includes parallax scrolling and animations</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Entire template can be fully customized without touching code</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:69:\"Upscale Finance & Consulting template suitable for any business niche\";s:5:\"pages\";a:6:{s:8:\"id-71558\";a:12:{s:5:\"title\";s:7:\"Careers\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/02/finance-consulting-04-careers.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2023/02/finance-consulting-04-careers-600x1416.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/finance-consulting-04/wp-json/wp/v2/pages/21\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/finance-consulting-04/careers/\";s:15:\"astra-sites-tag\";a:1:{i:3093;s:7:\"careers\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-71559\";a:12:{s:5:\"title\";s:7:\"Clients\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/02/finance-consulting-04-clients.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2023/02/finance-consulting-04-clients-600x1709.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/finance-consulting-04/wp-json/wp/v2/pages/19\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/finance-consulting-04/clients/\";s:15:\"astra-sites-tag\";a:1:{i:450;s:7:\"clients\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-71560\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/02/finance-consulting-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2023/02/finance-consulting-04-contact-600x842.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/finance-consulting-04/wp-json/wp/v2/pages/23\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/finance-consulting-04/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71561\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2023/02/finance-consulting-04.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/02/finance-consulting-04-600x1970.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/finance-consulting-04/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/finance-consulting-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-71562\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/02/finance-consulting-04-services.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2023/02/finance-consulting-04-services-600x1436.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/finance-consulting-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/finance-consulting-04/home/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-71557\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/02/finance-consulting-04-about.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2023/02/finance-consulting-04-about-600x1562.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/finance-consulting-04/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/finance-consulting-04/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-69429\";a:22:{s:5:\"title\";s:14:\"Blingg Jewelry\";s:2:\"id\";i:69429;s:12:\"publish-date\";i:1663782015;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/09/blingg-jewellery-04.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/09/blingg-jewellery-04-600x2006.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/09/blingg-jewellery-04-400x1337.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/blingg-jewelry-store-04\";s:20:\"astra-site-parent-id\";i:2911;s:15:\"astra-sites-tag\";a:12:{i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2912;s:9:\"jewellery\";i:2382;s:15:\"jewellery-store\";i:731;s:7:\"jewelry\";i:2529;s:13:\"jewelry-store\";i:2383;s:22:\"online-jewellery-store\";i:383;s:12:\"online-store\";i:967;s:13:\"product-store\";i:2913;s:4:\"ring\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:3:{i:2769;s:9:\"ecommerce\";i:2838;s:9:\"jewellery\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:946:\"<!-- wp:paragraph -->\n<p>The Blingg Jewelry website template has an elegant feel ideal for jewelry or upmarket stores. Subtle colors, stylish fonts and great use of images and whitespace creates that feeling of luxury customers will love.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes simple navigation with a shopping cart at the top and lots of space in the page for products, special offers, featured products and confidence messages. All designed to encourage shoppers to explore and to buy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Blingg Jewelry template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Elegant eCommerce theme ideal for the luxury niche</li><li>Superb layout with plenty of whitespace</li><li>Multiple options for showcasing products</li><li>Nice pastel colors and font choices</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:68:\"Stylish eCommerce template with a lot of upmarket touches to convert\";s:5:\"pages\";a:3:{s:8:\"id-69431\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/09/blingg-jewellery-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/09/blingg-jewellery-04-contact-600x903.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/blingg-jewelry-store-04/wp-json/wp/v2/pages/73\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/blingg-jewelry-store-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69432\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/09/blingg-jewellery-04.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/09/blingg-jewellery-04-600x2006.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/blingg-jewelry-store-04/wp-json/wp/v2/pages/68\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/blingg-jewelry-store-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}s:8:\"id-69430\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/09/blingg-jewellery-04-about.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/09/blingg-jewellery-04-about-600x1462.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/blingg-jewelry-store-04/wp-json/wp/v2/pages/71\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/blingg-jewelry-store-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48078\";a:22:{s:5:\"title\";s:17:\"Outdoor Adventure\";s:2:\"id\";i:48078;s:12:\"publish-date\";i:1603893485;s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08-home-1.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08-home-1-600x1377.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08-home-1-400x918.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/outdoor-adventure-08\";s:20:\"astra-site-parent-id\";i:1698;s:15:\"astra-sites-tag\";a:6:{i:544;s:9:\"adventure\";i:545;s:7:\"camping\";i:543;s:14:\"extreme-sports\";i:541;s:9:\"mountains\";i:542;s:4:\"park\";i:546;s:6:\"sports\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2500;s:12:\"multipurpose\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48081\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08-600x1377.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/outdoor-adventure-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/outdoor-adventure-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48079\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08-about-1-600x731.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/outdoor-adventure-08/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/outdoor-adventure-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48083\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08-services-1-600x1162.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/outdoor-adventure-08/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/outdoor-adventure-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48082\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08-projects-1.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08-projects-1-600x1218.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/outdoor-adventure-08/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/outdoor-adventure-08/projects/\";s:15:\"astra-sites-tag\";a:1:{i:1613;s:8:\"projects\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48080\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08-contact-1-600x598.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/outdoor-adventure-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/outdoor-adventure-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-73443\";a:22:{s:5:\"title\";s:24:\"ArchMasters Architecture\";s:2:\"id\";i:73443;s:12:\"publish-date\";i:1681501675;s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/04/archmasters-architecture-02.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2023/04/archmasters-architecture-02-600x2302.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2023/04/archmasters-architecture-02-400x1535.jpg\";s:14:\"astra-site-url\";s:46:\"//websitedemos.net/archmasters-architecture-02\";s:20:\"astra-site-parent-id\";i:3144;s:15:\"astra-sites-tag\";a:9:{i:435;s:12:\"architecture\";i:1898;s:10:\"consulting\";i:3008;s:6:\"design\";i:2456;s:7:\"generic\";i:2667;s:16:\"generic-template\";i:1526;s:13:\"multi-purpose\";i:2493;s:12:\"multipurpose\";i:3146;s:8:\"planning\";i:3145;s:19:\"project-managements\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:1:{i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2795;s:12:\"architecture\";i:2791;s:8:\"creative\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2500;s:12:\"multipurpose\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1212:\"<!-- wp:paragraph -->\n<p>The Architect Generic Multipurpose template is a dark design with a free-flowing structure that’s great for big ideas. It uses bold fonts and largely monochrome colors with pops of color provided by imagery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s a niche design but you could easily use it to showcase your designs, build an online portfolio of work and help attract clients by telling your story. The design is fully responsible and fully customizable, so you could tweak it to fit your brand perfectly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Architect Generic Multipurpose template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Dark portfolio website is ideal for showing your work</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Creates a feeling of style and luxury</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Flexible content areas and portfolio sections</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fully customizable</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:89:\"The Architect Generic Multipurpose template is everything you need to build a client base\";s:5:\"pages\";a:5:{s:8:\"id-73444\";a:12:{s:5:\"title\";s:8:\"About us\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/04/archmasters-architecture-02-about.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2023/04/archmasters-architecture-02-about-600x2087.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/archmasters-architecture-02/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:56:\"//websitedemos.net/archmasters-architecture-02/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-73445\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2023/04/archmasters-architecture-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:99:\"https://websitedemos.net/wp-content/uploads/2023/04/archmasters-architecture-02-contact-600x822.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/archmasters-architecture-02/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/archmasters-architecture-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-73446\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/04/archmasters-architecture-02.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2023/04/archmasters-architecture-02-600x2302.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/archmasters-architecture-02/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/archmasters-architecture-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-73447\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2023/04/archmasters-architecture-02-portfolio.jpg\";s:19:\"thumbnail-image-url\";s:102:\"https://websitedemos.net/wp-content/uploads/2023/04/archmasters-architecture-02-portfolio-600x2004.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/archmasters-architecture-02/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:57:\"//websitedemos.net/archmasters-architecture-02/portfolio/\";s:15:\"astra-sites-tag\";a:1:{i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-73448\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2023/04/archmasters-architecture-02-services.jpg\";s:19:\"thumbnail-image-url\";s:101:\"https://websitedemos.net/wp-content/uploads/2023/04/archmasters-architecture-02-services-600x1805.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/archmasters-architecture-02/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:56:\"//websitedemos.net/archmasters-architecture-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-72543\";a:22:{s:5:\"title\";s:22:\"Photographer Portfolio\";s:2:\"id\";i:72543;s:12:\"publish-date\";i:1679309579;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2023/02/portfolio-photographer-04.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/02/portfolio-photographer-04-600x2414.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/02/portfolio-photographer-04-400x1609.jpg\";s:14:\"astra-site-url\";s:44:\"//websitedemos.net/portfolio-photographer-04\";s:20:\"astra-site-parent-id\";i:3125;s:15:\"astra-sites-tag\";a:10:{i:3114;s:5:\"photo\";i:2409;s:9:\"photoblog\";i:511;s:12:\"photographer\";i:1008;s:21:\"photographer-homepage\";i:3126;s:22:\"photographer-portfolio\";i:509;s:11:\"photography\";i:1580;s:6:\"photos\";i:3113;s:10:\"photoshoot\";i:444;s:9:\"portfolio\";i:425;s:8:\"services\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:6:{i:2791;s:8:\"creative\";i:2810;s:9:\"freelance\";i:2770;s:8:\"personal\";i:2773;s:11:\"photography\";i:2768;s:9:\"portfolio\";i:2783;s:6:\"resume\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1271:\"<!-- wp:paragraph -->\n<p>The Photographer Portfolio template is a fantastic dark, fullscreen design that lets your work speak for itself. It opens with a large image slider where you can showcase your latest and greatest and includes extra gallery areas to show off more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template has an upscale feel with well-chosen typography, balanced pages, calm colors, smart layout options and all the elements you need for an effective portfolio. There are also readymade pages for your gallery, services, biography and contact all ready to go.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Photographer Portfolio template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Stylish dark design with an elegant feel</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lots of options to showcase images, videos or other work</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Well-balanced page with lots of flexible content areas</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Engaging colors and typography</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:87:\"The Photographer Portfolio template is all you need to build a stylish online portfolio\";s:5:\"pages\";a:5:{s:8:\"id-72545\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/02/portfolio-photographer-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2023/02/portfolio-photographer-04-contact-600x715.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/portfolio-photographer-04/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/portfolio-photographer-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-72546\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/02/portfolio-photographer-04-gallery.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2023/02/portfolio-photographer-04-gallery-600x4467.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/portfolio-photographer-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/portfolio-photographer-04/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-72547\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2023/02/portfolio-photographer-04.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/02/portfolio-photographer-04-600x2414.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/portfolio-photographer-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/portfolio-photographer-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-72544\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/02/portfolio-photographer-04-about-me.jpg\";s:19:\"thumbnail-image-url\";s:99:\"https://websitedemos.net/wp-content/uploads/2023/02/portfolio-photographer-04-about-me-600x1777.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/portfolio-photographer-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/portfolio-photographer-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-72548\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/02/portfolio-photographer-04-services.jpg\";s:19:\"thumbnail-image-url\";s:99:\"https://websitedemos.net/wp-content/uploads/2023/02/portfolio-photographer-04-services-600x1716.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/portfolio-photographer-04/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/portfolio-photographer-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59455\";a:22:{s:5:\"title\";s:20:\"Construction Company\";s:2:\"id\";i:59455;s:12:\"publish-date\";i:1674834221;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/01/construction-company-02.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/01/construction-company-02-600x3410.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/01/construction-company-02-400x2273.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/construction-company-02\";s:20:\"astra-site-parent-id\";i:2620;s:15:\"astra-sites-tag\";a:6:{i:435;s:12:\"architecture\";i:3078;s:7:\"builder\";i:692;s:8:\"business\";i:484;s:12:\"construction\";i:795;s:10:\"contractor\";i:485;s:11:\"real-estate\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2795;s:12:\"architecture\";i:2836;s:12:\"construction\";i:2778;s:11:\"real-estate\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1375:\"<!-- wp:paragraph -->\n<p>The Construction Company template is a bright and engaging design with bold colors, plenty of images and lots of whitespace to add balance. The homepage includes lots of content and service areas, somewhere to show off building projects and lots more besides.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Construction Company template comes with readymade pages for projects, services, about the company and a contact and quote page. Elements also include FAQs, testimonials, social media, a contact form and very attractive headers and footers. Everything a business needs for their online presence!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Construction Company template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Bright and engaging design ideal for construction companies</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Well-balanced design with equal areas of boldness and whitespace</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Includes typical page elements a construction company would need</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Template can be fully customized without touching code</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:77:\"Construction Company has everything a building firm needs to launch a website\";s:5:\"pages\";a:5:{s:8:\"id-59456\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/01/construction-company-02-about.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2023/01/construction-company-02-about-600x1612.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/construction-company-02/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/construction-company-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-59457\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/01/construction-company-02-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:99:\"https://websitedemos.net/wp-content/uploads/2023/01/construction-company-02-contact-us-600x1386.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/construction-company-02/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/construction-company-02/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59458\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/01/construction-company-02.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/01/construction-company-02-600x3410.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/construction-company-02/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/construction-company-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-59459\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/01/construction-company-02-projects.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2023/01/construction-company-02-projects-600x1167.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/construction-company-02/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/construction-company-02/projects/\";s:15:\"astra-sites-tag\";a:1:{i:1613;s:8:\"projects\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-59460\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/01/construction-company-02-services.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2023/01/construction-company-02-services-600x1113.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/construction-company-02/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/construction-company-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:59455;s:26:\"related-gutenberg-template\";i:68254;}s:8:\"id-59077\";a:22:{s:5:\"title\";s:19:\"Recycled Shoe Store\";s:2:\"id\";i:59077;s:12:\"publish-date\";i:1643646115;s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/01/recycled-shoe-store-home-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/01/recycled-shoe-store-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/01/recycled-shoe-store-home-1.jpg\";s:14:\"astra-site-url\";s:41:\"//websitedemos.net/recycled-shoe-store-04\";s:20:\"astra-site-parent-id\";i:2574;s:15:\"astra-sites-tag\";a:20:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2419;s:9:\"eshopping\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:384;s:13:\"running-shoes\";i:382;s:10:\"shoe-store\";i:385;s:5:\"shoes\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:2427;s:12:\"sports-shoes\";i:749;s:5:\"store\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:3:{i:2769;s:9:\"ecommerce\";i:2857;s:15:\"online-shopping\";i:2878;s:5:\"shoes\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:7:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:3;a:3:{s:4:\"slug\";s:11:\"svg-support\";s:4:\"init\";s:27:\"svg-support/svg-support.php\";s:4:\"name\";s:11:\"SVG Support\";}i:4;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:5;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:6;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1301:\"<!-- wp:paragraph -->\n<p>The Recycled Shoe Store template is a contemporary eCommerce design with full screen image on the homepage and lots of whitespace throughout. It’s an attractive design that could be fully customized for any type of store.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The use of whitespace means images and graphics really stand out. Pages include featured product areas, calls to action and all those elements an online store needs, including an attractive checkout page.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Recycled Shoe Store template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Contemporary store design with lots of white space</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Plenty of customizable product feature blocks</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Simple header with cart and search elements</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Effective product pages with filters and search</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Extra content pages that can be customized as required</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fully compatible with drag and drop page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:80:\"Appealing eCommerce design ideal for a wide range of stores covering every niche\";s:5:\"pages\";a:5:{s:8:\"id-59078\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/01/recycled-shoe-store-contact.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/01/recycled-shoe-store-contact.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/recycled-shoe-store-04/wp-json/wp/v2/pages/859\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/recycled-shoe-store-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59079\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/01/recycled-shoe-store-home-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/01/recycled-shoe-store-home-1.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/recycled-shoe-store-04/wp-json/wp/v2/pages/30\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/recycled-shoe-store-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-59080\";a:12:{s:5:\"title\";s:8:\"Lookbook\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/01/recycled-shoe-store-lookbook.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/01/recycled-shoe-store-lookbook.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/recycled-shoe-store-04/wp-json/wp/v2/pages/649\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/recycled-shoe-store-04/lookbook/\";s:15:\"astra-sites-tag\";a:1:{i:752;s:8:\"lookbook\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-59081\";a:12:{s:5:\"title\";s:4:\"Sale\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/01/recycled-shoe-store-sale.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/01/recycled-shoe-store-sale.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/recycled-shoe-store-04/wp-json/wp/v2/pages/731\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/recycled-shoe-store-04/sale/\";s:15:\"astra-sites-tag\";a:2:{i:2575;s:8:\"discount\";i:2063;s:5:\"sales\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-59082\";a:12:{s:5:\"title\";s:5:\"Story\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/01/recycled-shoe-store-story.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/01/recycled-shoe-store-story.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/recycled-shoe-store-04/wp-json/wp/v2/pages/524\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/recycled-shoe-store-04/story/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:767;s:5:\"story\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-72600\";a:22:{s:5:\"title\";s:9:\"Tanz Tech\";s:2:\"id\";i:72600;s:12:\"publish-date\";i:1679481663;s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-04.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-04-600x3437.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-04-400x2291.jpg\";s:14:\"astra-site-url\";s:26:\"//websitedemos.net/saas-04\";s:20:\"astra-site-parent-id\";i:3128;s:15:\"astra-sites-tag\";a:7:{i:2712;s:9:\"analytics\";i:3131;s:10:\"automation\";i:692;s:8:\"business\";i:3132;s:19:\"business-operations\";i:2708;s:4:\"saas\";i:3130;s:4:\"tech\";i:3129;s:10:\"technology\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2831;s:7:\"service\";i:2817;s:10:\"technology\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2499;s:10:\"technology\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1281:\"<!-- wp:paragraph -->\n<p>The Tanz Tech template is a youthful flat design ideal for agencies and tech businesses. It uses light colors, sans serif fonts, and graphics to draw you in and tell your story. It’s an excellent design that could work for any type of business.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design is easy going and helps build confidence in the visitor, ideal for converting them into customers. There are flexible content areas, alternating dark and light sections, and lots of opportunities to engage, inform and convert. Everything a business needs to succeed online!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Tanz Tech template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Youthful design ideal for many types of business</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Light, welcoming colors and typography</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Attractive page features that can be customized with ease</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Essential supplementary pages already built</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:85:\"The Tanz Tech template is welcoming, well-designed and ideal for any type of business\";s:5:\"pages\";a:5:{s:8:\"id-72604\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-04.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-04-600x3437.jpg\";s:18:\"astra-page-api-url\";s:54:\"https://websitedemos.net/saas-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:27:\"//websitedemos.net/saas-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-72601\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-04-about.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-04-about-600x2338.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/saas-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/saas-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-72602\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-04-contact-600x1061.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/saas-04/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/saas-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-72603\";a:12:{s:5:\"title\";s:8:\"Features\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-04-features.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-04-features-600x2271.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/saas-04/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/saas-04/features/\";s:15:\"astra-sites-tag\";a:1:{i:453;s:8:\"features\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-72605\";a:12:{s:5:\"title\";s:7:\"Pricing\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-04-pricing.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/03/saas-04-pricing-600x1445.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/saas-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/saas-04/pricing/\";s:15:\"astra-sites-tag\";a:1:{i:585;s:7:\"pricing\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18035\";a:22:{s:5:\"title\";s:10:\"Brandstore\";s:2:\"id\";i:18035;s:12:\"publish-date\";i:1514381509;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/brandstore-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/brandstore-01-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/brandstore-01-homepage.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/brandstore-01\";s:20:\"astra-site-parent-id\";i:149;s:15:\"astra-sites-tag\";a:20:{i:639;s:11:\"accessories\";i:638;s:11:\"brand-store\";i:880;s:9:\"cartflows\";i:640;s:11:\"cloth-store\";i:637;s:8:\"clothing\";i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:967;s:13:\"product-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:5;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-23419\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/brandstore-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/brandstore-01-homepage.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/brandstore-01/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/brandstore-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-23417\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/brandstore-01-about.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/brandstore-01-about.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/brandstore-01/wp-json/wp/v2/pages/43\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/brandstore-01/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-23418\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/brandstore-01-contact.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23418-brandstore-contact-us-resize.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/brandstore-01/wp-json/wp/v2/pages/414\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/brandstore-01/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48050\";a:22:{s:5:\"title\";s:10:\"Brandstore\";s:2:\"id\";i:48050;s:12:\"publish-date\";i:1603830906;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/10/brandstore-08.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/brandstore-08-600x1827.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/brandstore-08-400x1218.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/brandstore-08\";s:20:\"astra-site-parent-id\";i:1695;s:15:\"astra-sites-tag\";a:20:{i:639;s:11:\"accessories\";i:638;s:11:\"brand-store\";i:880;s:9:\"cartflows\";i:640;s:11:\"cloth-store\";i:637;s:8:\"clothing\";i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:967;s:13:\"product-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:3:{i:27;s:8:\"business\";i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1341:\"<!-- wp:paragraph -->\n<p>Let your brand shine with our Brandstore website template. The Brandstore template is a simple, clean, mobile-friendly design, helping customers shop from anywhere. The template is built to integrate with WooCommerce seamlessly, so you can start showcasing your products in minutes and accept online payments.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We also have a range of custom page templates for you to use as the foundation for your site and a range of beautiful preset designs we’ve created. It’s a modern design with a lot to recommend it, ideal for online stores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Brandstore template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>High converting and lightweight online store template</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Seamless integration with WooCommerce</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Impressive hero image to display your best products and offers</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Host of customization options from colors and typography to layout and more</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fully responsive and works perfectly well on mobile devices</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:437:\"Let your brand shine with our Brandstore website template. The Brandstore template is a simple, clean, mobile-friendly design, helping customers shop from anywhere. The template is built to integrate with WooCommerce seamlessly, so you can start showcasing your products in minutes and accept online payments. We also have a range of custom page templates for &hellip;<p class=\"read-more\"> <a class=\"\" href=\"\">  Read More &raquo;</a></p>\";s:5:\"pages\";a:3:{s:8:\"id-48053\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/10/brandstore-08.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/brandstore-08-600x1827.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/brandstore-08/wp-json/wp/v2/pages/61\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/brandstore-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:3:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48051\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/brandstore-08-about-2.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/brandstore-08-about-2-600x1491.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/brandstore-08/wp-json/wp/v2/pages/59\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/brandstore-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:3:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48052\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/brandstore-08-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/brandstore-08-contact-2-600x888.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/brandstore-08/wp-json/wp/v2/pages/60\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/brandstore-08/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:3:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-73530\";a:22:{s:5:\"title\";s:29:\"Joan Thomas &#8211; Traveller\";s:2:\"id\";i:73530;s:12:\"publish-date\";i:1681831828;s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/04/joanthomas-traveller-bio.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/04/joanthomas-traveller-bio-600x900.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/04/joanthomas-traveller-bio-400x600.jpg\";s:14:\"astra-site-url\";s:52:\"//websitedemos.net/joanthomas-traveller-index-bio-02\";s:20:\"astra-site-parent-id\";i:3183;s:15:\"astra-sites-tag\";a:10:{i:1918;s:5:\"beach\";i:1023;s:6:\"beauty\";i:3064;s:4:\"life\";i:541;s:9:\"mountains\";i:3181;s:6:\"sunset\";i:427;s:6:\"travel\";i:3179;s:18:\"travel-photography\";i:3178;s:9:\"traveller\";i:3180;s:10:\"travelling\";i:3182;s:14:\"traveltheworld\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:1:{i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:3171;s:11:\"link-in-bio\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:3:{i:3191;s:11:\"link-in-bio\";i:2927;s:8:\"one-page\";i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1391:\"<!-- wp:paragraph -->\n<p>This link in bio for travel influencers template offers you all the tools you need to re-route your followers to all your social networks. Promote your website and your products or include your affiliate links so that your audience can financially support your adventures</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is the perfect Linktree alternative template as it has a very easygoing design you can set up in minutes, while at the same time, it can be expanded in features as your online presence grows.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the link in bio for travel influencers template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Minimal design with an attention-grabbing world map in the background.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fully customizable. Use the colors, fonts, and pictures you want.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Mobile-ready. Linking sections adapt to the size of any screen.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Versatile. Expand its features as much as you need.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Use it with your own domain.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:105:\"The link in bio for travel influencers template gives you all the features you need as a content creator.\";s:5:\"pages\";a:1:{s:8:\"id-73531\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/04/joanthomas-traveller-index-bio-02.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2023/04/joanthomas-traveller-index-bio-02-600x347.jpg\";s:18:\"astra-page-api-url\";s:81:\"https://websitedemos.net/joanthomas-traveller-index-bio-02/wp-json/wp/v2/pages/36\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/joanthomas-traveller-index-bio-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-20478\";a:22:{s:5:\"title\";s:10:\"Brandstore\";s:2:\"id\";i:20478;s:12:\"publish-date\";i:1545657559;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/brandstore-05-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/brandstore-05-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/brandstore-05-home.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/brandstore-05\";s:20:\"astra-site-parent-id\";i:165;s:15:\"astra-sites-tag\";a:20:{i:639;s:11:\"accessories\";i:638;s:11:\"brand-store\";i:880;s:9:\"cartflows\";i:640;s:11:\"cloth-store\";i:637;s:8:\"clothing\";i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:967;s:13:\"product-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-23567\";a:12:{s:5:\"title\";s:8:\"Homepage\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/brandstore-05-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/brandstore-05-home.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/brandstore-05/wp-json/wp/v2/pages/448\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/brandstore-05/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23565\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/brandstore-05-about.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/brandstore-05-about.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/brandstore-05/wp-json/wp/v2/pages/465\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/brandstore-05/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23566\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/brandstore-05-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/brandstore-05-contact-us.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/brandstore-05/wp-json/wp/v2/pages/468\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/brandstore-05/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-70901\";a:22:{s:5:\"title\";s:21:\"Digital Product Store\";s:2:\"id\";i:70901;s:12:\"publish-date\";i:1670588688;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/12/design-resource-02.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/12/design-resource-02-600x2475.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/12/design-resource-02-400x1650.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/design-resource-02\";s:20:\"astra-site-parent-id\";i:3007;s:15:\"astra-sites-tag\";a:15:{i:3011;s:8:\"creative\";i:3008;s:6:\"design\";i:670;s:8:\"designer\";i:3018;s:14:\"digitalproduct\";i:3019;s:12:\"digitalstore\";i:3009;s:8:\"download\";i:3016;s:19:\"easydigitaldownload\";i:3017;s:9:\"eddplugin\";i:3015;s:12:\"freedownload\";i:669;s:10:\"freelancer\";i:1651;s:8:\"marketer\";i:3010;s:6:\"mockup\";i:3012;s:11:\"socialmedia\";i:3013;s:8:\"template\";i:3014;s:4:\"uiux\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:5:{i:2777;s:8:\"business\";i:2791;s:8:\"creative\";i:2812;s:14:\"digital-agency\";i:2769;s:9:\"ecommerce\";i:2817;s:10:\"technology\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2499;s:10:\"technology\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:22:\"easy-digital-downloads\";s:4:\"init\";s:49:\"easy-digital-downloads/easy-digital-downloads.php\";s:4:\"name\";s:22:\"Easy Digital Downloads\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1262:\"<!-- wp:paragraph -->\n<p>The Digital Product Store website template is a contemporary eCommerce design designed to convert using calm colors, simple design and effective typography. It’s a relaxed design with frameless sections and a centralized product area to showcase your wares.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Digital Product Store template includes highlighted product areas, icon-driven navigation, testimonials, subscription option and attractive supplementary pages. The entire design can be fully customized to suit any products or type of store.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Digital Product Store template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Contemporary Digital Product website design</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Calm design with engaging elements designed to convert</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lots of product showcase options</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Can be fully customized for any type of online store</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:67:\"Contemporary digital product store template that engages right away\";s:5:\"pages\";a:4:{s:8:\"id-70903\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/design-resource-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/12/design-resource-02-contact-600x1022.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/design-resource-02/wp-json/wp/v2/pages/808\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/design-resource-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-70904\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/12/design-resource-02.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/12/design-resource-02-600x2475.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/design-resource-02/wp-json/wp/v2/pages/23\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/design-resource-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:22:\"easy-digital-downloads\";s:4:\"init\";s:49:\"easy-digital-downloads/easy-digital-downloads.php\";s:4:\"name\";s:22:\"Easy Digital Downloads\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-70905\";a:12:{s:5:\"title\";s:7:\"Premium\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/design-resource-02-premium.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/12/design-resource-02-premium-600x1355.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/design-resource-02/wp-json/wp/v2/pages/901\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/design-resource-02/premium/\";s:15:\"astra-sites-tag\";a:1:{i:1844;s:7:\"premium\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:22:\"easy-digital-downloads\";s:4:\"init\";s:49:\"easy-digital-downloads/easy-digital-downloads.php\";s:4:\"name\";s:22:\"Easy Digital Downloads\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-70902\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/12/design-resource-02-about.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2022/12/design-resource-02-about-600x1179.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/design-resource-02/wp-json/wp/v2/pages/645\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/design-resource-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(201,'astra-sites-and-pages-page-7','a:15:{s:8:\"id-73525\";a:22:{s:5:\"title\";s:29:\"Emily Smith &#8211; Traveller\";s:2:\"id\";i:73525;s:12:\"publish-date\";i:1681831161;s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/04/emilysmith-traveller-bio.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/04/emilysmith-traveller-bio-600x900.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/04/emilysmith-traveller-bio-400x600.jpg\";s:14:\"astra-site-url\";s:52:\"//websitedemos.net/emilysmith-traveller-index-bio-02\";s:20:\"astra-site-parent-id\";i:3177;s:15:\"astra-sites-tag\";a:10:{i:1918;s:5:\"beach\";i:1023;s:6:\"beauty\";i:3064;s:4:\"life\";i:541;s:9:\"mountains\";i:3181;s:6:\"sunset\";i:427;s:6:\"travel\";i:3179;s:18:\"travel-photography\";i:3178;s:9:\"traveller\";i:3180;s:10:\"travelling\";i:3182;s:14:\"traveltheworld\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:1:{i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:3171;s:11:\"link-in-bio\";i:2770;s:8:\"personal\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:3:{i:3191;s:11:\"link-in-bio\";i:2927;s:8:\"one-page\";i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1293:\"<!-- wp:paragraph -->\n<p>Our link in bio template has all the tools you need to simplify your online presence as a travel influencer. Share your travel adventures, connect your social media profiles, and drive your fans ‌wherever you need to.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A great alternative to Linktree that you can easily set up. With way more design options and advanced features that you can implement as your influence as a traveler grows.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the link in bio for travel influencers template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Clean and vibrant design with a cheerful background.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Match your brand by changing the colors, images, or fonts used.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Responsive. Everything will look great on small screens.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Compatible with Elementor and other page builders.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Grow in features as your business expands.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Can be used with your own domain name.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:103:\"The travel influencers template gives you all the features you need to create a great link in bio site.\";s:5:\"pages\";a:1:{s:8:\"id-73526\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/04/emilysmith-traveller-index-bio-02.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2023/04/emilysmith-traveller-index-bio-02-600x347.jpg\";s:18:\"astra-page-api-url\";s:82:\"https://websitedemos.net/emilysmith-traveller-index-bio-02/wp-json/wp/v2/pages/132\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/emilysmith-traveller-index-bio-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-69418\";a:22:{s:5:\"title\";s:7:\"Be Bold\";s:2:\"id\";i:69418;s:12:\"publish-date\";i:1663781995;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/09/be-bold-beauty-store-04.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/09/be-bold-beauty-store-04-600x2255.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/09/be-bold-beauty-store-04-400x1503.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/be-bold-beauty-store-04\";s:20:\"astra-site-parent-id\";i:2910;s:15:\"astra-sites-tag\";a:11:{i:1023;s:6:\"beauty\";i:1465;s:15:\"beauty-products\";i:2384;s:21:\"beauty-products-store\";i:1466;s:17:\"cosmetic-products\";i:1464;s:14:\"cosmetic-store\";i:1463;s:9:\"cosmetics\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:383;s:12:\"online-store\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:4:{i:2790;s:14:\"beauty-fashion\";i:2769;s:9:\"ecommerce\";i:2890;s:15:\"makeup-cosmetic\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2479;s:6:\"beauty\";i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:9:\"cartflows\";s:4:\"init\";s:23:\"cartflows/cartflows.php\";s:4:\"name\";s:9:\"CartFlows\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:900:\"<!-- wp:paragraph -->\n<p>The Be Bold template reflects the quality of many successful stores, well-chosen colors and fonts, confidence-inspiring feel and a genuine elegance that inspires you to purchase.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is a full width template that uses every inch of screen to help create that image of a lifestyle. Amazing images, attractive product showcases and parallax effects help create the same feeling you get from well-known brand stores. All designed to help you convert.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Be Bold template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Professional-quality eCommerce template</li><li>Superb use of colors and fonts</li><li>Designed to sell using images</li><li>Awesome layout and design</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:77:\"Upscale eCommerce template that inspires confidence and encourages you to buy\";s:5:\"pages\";a:3:{s:8:\"id-69419\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/09/be-bold-beauty-store-04-about.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2022/09/be-bold-beauty-store-04-about-600x1530.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/be-bold-beauty-store-04/wp-json/wp/v2/pages/35\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/be-bold-beauty-store-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-69420\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/09/be-bold-beauty-store-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2022/09/be-bold-beauty-store-04-contact-600x992.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/be-bold-beauty-store-04/wp-json/wp/v2/pages/37\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/be-bold-beauty-store-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69421\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/09/be-bold-beauty-store-04.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/09/be-bold-beauty-store-04-600x2255.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/be-bold-beauty-store-04/wp-json/wp/v2/pages/32\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/be-bold-beauty-store-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-73493\";a:22:{s:5:\"title\";s:12:\"Video Editor\";s:2:\"id\";i:73493;s:12:\"publish-date\";i:1681736609;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2023/04/video-editor-04.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/04/video-editor-04-600x2238.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/04/video-editor-04-400x1492.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/video-editor-04\";s:20:\"astra-site-parent-id\";i:3162;s:15:\"astra-sites-tag\";a:11:{i:3170;s:14:\"cinematography\";i:3165;s:7:\"editing\";i:3168;s:10:\"filmmaking\";i:489;s:10:\"production\";i:3066;s:5:\"video\";i:3163;s:12:\"videoediting\";i:3166;s:11:\"videoeditor\";i:3164;s:10:\"videoedits\";i:3169;s:12:\"videographer\";i:514;s:11:\"videography\";i:3167;s:15:\"videoproduction\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2768;s:9:\"portfolio\";i:2801;s:5:\"video\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2488;s:9:\"portfolio\";i:2926;s:5:\"video\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1227:\"<!-- wp:paragraph -->\n<p>The Video Editor template is a dark responsive portfolio design that can be customized to suit anyone. It’s nicely balanced and contains the essential elements to showcase your skills and your work in creative ways.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes support for video, images and audio and includes video elements on the main page and a portfolio block to tease your latest creations. Pages include an attractive portfolio page, contact form, biography and everything you need to appeal to potential clients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Video Editor template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Modern dark portfolio template</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Supports video, audio and images</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Well-balanced main and supplementary pages</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Includes support for galleries, portfolios and biographies</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"The Video Editor template is everything a videographer needs to attract new clients.\";s:5:\"pages\";a:5:{s:8:\"id-73494\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2023/04/video-editor-04-about.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/04/video-editor-04-about-600x1673.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/video-editor-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/video-editor-04/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-73495\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/04/video-editor-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2023/04/video-editor-04-contact-600x486.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/video-editor-04/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/video-editor-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-73496\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2023/04/video-editor-04.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/04/video-editor-04-600x2238.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/video-editor-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/video-editor-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-73497\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/04/video-editor-04-services.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/04/video-editor-04-services-600x1530.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/video-editor-04/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/video-editor-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-73498\";a:12:{s:5:\"title\";s:4:\"Work\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/04/video-editor-04-work.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/04/video-editor-04-work-600x1715.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/video-editor-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/video-editor-04/work/\";s:15:\"astra-sites-tag\";a:1:{i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-60297\";a:22:{s:5:\"title\";s:17:\"Day Care Services\";s:2:\"id\";i:60297;s:12:\"publish-date\";i:1676367698;s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2022/04/daycare.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/04/daycare-600x4393.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/04/daycare-400x2928.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/daycare-02\";s:20:\"astra-site-parent-id\";i:2679;s:15:\"astra-sites-tag\";a:7:{i:2156;s:7:\"daycare\";i:459;s:9:\"education\";i:1490;s:4:\"kids\";i:617;s:12:\"kindergarten\";i:460;s:8:\"learning\";i:456;s:6:\"school\";i:425;s:8:\"services\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2772;s:9:\"education\";i:2782;s:6:\"school\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2491;s:22:\"educational-institutes\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1322:\"<!-- wp:paragraph -->\n<p>The Day Care Services template is a bright and colorful template that reflects the playfulness of the childcare niche perfectly. It’s a light, bright, energetic design with all the elements a day care service would need from their website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pages include an engaging homepage, program and admissions pages, about, contact and an enrolment page. More pages can be added in seconds and configured using a drag and drop page builder. It’s a very flexible theme where you can customize everything you see on the page.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Day Care Services template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Bright and colorful template that reflects the playfulness of the niche</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Includes all the essential pages and page elements you need</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Option to add or remove everything you see on the page</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lots of opportunities to use images for engagement</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:75:\"The Day Care Services template is everything a childcare service could need\";s:5:\"pages\";a:5:{s:8:\"id-60298\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2022/04/daycare-about.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/04/daycare-about-600x2437.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/daycare-02/wp-json/wp/v2/pages/452\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/daycare-02/about/\";s:15:\"astra-sites-tag\";a:6:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";i:459;s:9:\"education\";i:1490;s:4:\"kids\";i:617;s:12:\"kindergarten\";i:685;s:10:\"who-we-are\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-60299\";a:12:{s:5:\"title\";s:9:\"Admission\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/04/daycare-admission.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/04/daycare-admission-600x1147.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/daycare-02/wp-json/wp/v2/pages/938\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/daycare-02/admission/\";s:15:\"astra-sites-tag\";a:7:{i:2680;s:9:\"admission\";i:2682;s:7:\"educate\";i:459;s:9:\"education\";i:1490;s:4:\"kids\";i:617;s:12:\"kindergarten\";i:460;s:8:\"learning\";i:2681;s:4:\"play\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-60300\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2022/04/daycare-contact.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/04/daycare-contact-600x1061.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/daycare-02/wp-json/wp/v2/pages/1059\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/daycare-02/contact/\";s:15:\"astra-sites-tag\";a:7:{i:415;s:7:\"contact\";i:1009;s:10:\"contact-me\";i:2682;s:7:\"educate\";i:1490;s:4:\"kids\";i:617;s:12:\"kindergarten\";i:2683;s:5:\"learn\";i:2681;s:4:\"play\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-60301\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2022/04/daycare.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/04/daycare-600x4393.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/daycare-02/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/daycare-02/\";s:15:\"astra-sites-tag\";a:6:{i:2682;s:7:\"educate\";i:423;s:4:\"home\";i:814;s:8:\"homepage\";i:1490;s:4:\"kids\";i:617;s:12:\"kindergarten\";i:2683;s:5:\"learn\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-60302\";a:12:{s:5:\"title\";s:7:\"Program\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2022/04/daycare-program.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/04/daycare-program-600x2934.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/daycare-02/wp-json/wp/v2/pages/739\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/daycare-02/program/\";s:15:\"astra-sites-tag\";a:7:{i:2682;s:7:\"educate\";i:1490;s:4:\"kids\";i:617;s:12:\"kindergarten\";i:2683;s:5:\"learn\";i:2681;s:4:\"play\";i:2684;s:7:\"program\";i:989;s:8:\"programs\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:60297;s:26:\"related-gutenberg-template\";i:71474;}s:8:\"id-71576\";a:22:{s:5:\"title\";s:21:\"Blockchain Technology\";s:2:\"id\";i:71576;s:12:\"publish-date\";i:1676371662;s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/02/blockchain-technology-04.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/02/blockchain-technology-04-600x2398.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/02/blockchain-technology-04-400x1598.jpg\";s:14:\"astra-site-url\";s:43:\"//websitedemos.net/blockchain-technology-04\";s:20:\"astra-site-parent-id\";i:3094;s:15:\"astra-sites-tag\";a:8:{i:3097;s:7:\"bitcoin\";i:3095;s:10:\"blockchain\";i:3096;s:20:\"blockchaintechnology\";i:3101;s:16:\"blockchaintrends\";i:3098;s:6:\"crypto\";i:3100;s:9:\"cryptoart\";i:3102;s:12:\"cryptoartist\";i:3099;s:4:\"nfts\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:2:{i:37;s:4:\"blog\";i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2828;s:4:\"blog\";i:2777;s:8:\"business\";i:2817;s:10:\"technology\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2497;s:4:\"blog\";i:2499;s:10:\"technology\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1241:\"<!-- wp:paragraph -->\n<p>The Blockchain Technology template has been designed for tech companies and has a very modern look and feel that reflects the niche. The template includes all the core page elements and pages you’re likely to need, along with page builder compatibility.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design is inherently flexible with bold contrasting colors, parallax scrolling and the engagement opportunities any type of tech business could use to drum up business. It’s a very accomplished design with unique appeal!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Blockchain Technology template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Accomplished design ideal for the tech niche</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Includes all the core pages a tech business might need</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Excellent use of color and typography</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Flexible layouts with page builder compatibility</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:77:\"Blockchain Technology is a stylish design ideal for any kind of tech business\";s:5:\"pages\";a:4:{s:8:\"id-71577\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/02/blockchain-technology-04-about.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2023/02/blockchain-technology-04-about-600x1279.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/blockchain-technology-04/wp-json/wp/v2/pages/23\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/blockchain-technology-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-71578\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/02/blockchain-technology-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2023/02/blockchain-technology-04-contact-600x816.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/blockchain-technology-04/wp-json/wp/v2/pages/25\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/blockchain-technology-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71579\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/02/blockchain-technology-04.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/02/blockchain-technology-04-600x2398.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/blockchain-technology-04/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/blockchain-technology-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71580\";a:12:{s:5:\"title\";s:9:\"Resources\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/02/blockchain-technology-04-resources.jpg\";s:19:\"thumbnail-image-url\";s:99:\"https://websitedemos.net/wp-content/uploads/2023/02/blockchain-technology-04-resources-600x1273.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/blockchain-technology-04/wp-json/wp/v2/pages/19\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/blockchain-technology-04/resources/\";s:15:\"astra-sites-tag\";a:1:{i:3103;s:9:\"resources\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-73545\";a:22:{s:5:\"title\";s:35:\"Kate Stone &#8211; Fashion Designer\";s:2:\"id\";i:73545;s:12:\"publish-date\";i:1681832611;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2023/04/kate-stone-designer.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/04/kate-stone-designer-600x900.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/04/kate-stone-designer-400x600.jpg\";s:14:\"astra-site-url\";s:45:\"//websitedemos.net/kate-stone-designer-bio-02\";s:20:\"astra-site-parent-id\";i:3189;s:15:\"astra-sites-tag\";a:18:{i:2924;s:3:\"bio\";i:2150;s:2:\"cv\";i:670;s:8:\"designer\";i:482;s:7:\"fashion\";i:2164;s:15:\"fashion-blogger\";i:2327;s:16:\"fashion-designer\";i:2351;s:26:\"fashion-designer-portfolio\";i:2161;s:18:\"fashion-influencer\";i:3173;s:11:\"link-in-bio\";i:3185;s:6:\"linkin\";i:3187;s:5:\"links\";i:3186;s:8:\"linktree\";i:3124;s:18:\"personal-portfolio\";i:444;s:9:\"portfolio\";i:2153;s:6:\"resume\";i:2212;s:12:\"social-media\";i:2163;s:23:\"social-media-influencer\";i:3012;s:11:\"socialmedia\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:1:{i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:3171;s:11:\"link-in-bio\";i:2770;s:8:\"personal\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:3:{i:3191;s:11:\"link-in-bio\";i:2927;s:8:\"one-page\";i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1181:\"<!-- wp:paragraph -->\n<p>The Designer link in bio template provides the same advantages as Linktree but with more design freedom. It’s a fully responsive template with many more opportunities to customize it and make it your own using your favorite page builder.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Designer link in bio template is a landing page where you can share links to your website, socials, and anywhere you like. They are used extensively to help promote yourself and your skills with a simple, engaging page.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Designer link in bio template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Attractive Linktree alternative</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fully responsive and works on any screen</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Customize everything you see on the page</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Share links and resources easily</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:82:\"The Designer link in bio template is the Linktree alternative you’re looking for\";s:5:\"pages\";a:1:{s:8:\"id-73546\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2023/04/kate-stone-designer-bio-02.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/04/kate-stone-designer-bio-02-600x349.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/kate-stone-designer-bio-02/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/kate-stone-designer-bio-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-69858\";a:22:{s:5:\"title\";s:17:\"Black Friday Sale\";s:2:\"id\";i:69858;s:12:\"publish-date\";i:1668541699;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/11/black-friday-sale-04.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/11/black-friday-sale-04-600x2927.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/11/black-friday-sale-04-400x1951.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/black-friday-sale-04\";s:20:\"astra-site-parent-id\";i:2990;s:15:\"astra-sites-tag\";a:10:{i:2994;s:26:\"black-friday-sales-landing\";i:2991;s:12:\"black-friday\";i:2992;s:11:\"blackfriday\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2387;s:13:\"fashion-store\";i:2389;s:20:\"online-fashion-store\";i:383;s:12:\"online-store\";i:2993;s:13:\"sales-landing\";i:749;s:5:\"store\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:5:{i:2769;s:9:\"ecommerce\";i:2858;s:16:\"fashion-clothing\";i:2863;s:12:\"landing-page\";i:2771;s:8:\"one-page\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2927;s:8:\"one-page\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1221:\"<!-- wp:paragraph -->\n<p>The Black Friday Sale template makes it so very simple to feature a seasonal sale on your website. It’s a bright, bold and engaging template with the dark design Black Friday is known for with the speed and ease of use Astra is so well known for.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Black Friday Sale template is a seasonal sale landing page with countdown timer, product showcases, logo area, discount banners and the option to add any page element you need. It’s the easiest way to engage on such a busy shopping day.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Black Friday Sale template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Modern landing page template for Black Friday</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Modern and engaging fonts and colors</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Plenty of product and offer elements throughout</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Designed to engage and convert</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:80:\"Black Friday Sale landing page template designed to boost profits in your store.\";s:5:\"pages\";a:1:{s:8:\"id-69859\";a:12:{s:5:\"title\";s:30:\"Black Friday Sale Landing Page\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/11/black-friday-sale-04.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/11/black-friday-sale-04-600x2927.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/black-friday-sale-04/wp-json/wp/v2/pages/301\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/black-friday-sale-04/\";s:15:\"astra-sites-tag\";a:3:{i:2994;s:26:\"black-friday-sales-landing\";i:2991;s:12:\"black-friday\";i:2992;s:11:\"blackfriday\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-69690\";a:22:{s:5:\"title\";s:15:\"Halloween Party\";s:2:\"id\";i:69690;s:12:\"publish-date\";i:1665165528;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/10/halloween-party-04.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/10/halloween-party-04-600x2209.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/10/halloween-party-04-400x1473.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/halloween-party-04\";s:20:\"astra-site-parent-id\";i:2930;s:15:\"astra-sites-tag\";a:11:{i:597;s:3:\"art\";i:2947;s:8:\"autumn-2\";i:2946;s:15:\"halloweeenparty\";i:2943;s:11:\"halloween-2\";i:2944;s:18:\"halloweencostume-2\";i:2948;s:16:\"halloweendecor-2\";i:2951;s:17:\"halloweenmakeup-2\";i:2950;s:16:\"happyhalloween-2\";i:2952;s:9:\"pumpkin-2\";i:2953;s:14:\"spookyseason-2\";i:2949;s:12:\"trcikortreat\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:1:{i:2784;s:5:\"event\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2489;s:16:\"event-invitation\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:2;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:999:\"<!-- wp:paragraph -->\n<p>The Halloween Party template is a lot of fun. Bold colors, stylish fonts and some amazing graphics create an awesome atmosphere ideal for the holiday. It’s bright, engaging and a lot of fun, which makes it ideal for almost any use.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The page opens with a strong image, header and call to action before opening out into service and product areas. The colors are synonymous with Halloween, the illustrations are great and there’s a real sense of playfulness about the design. It’s perfect for Halloween!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Halloween Party template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Fun-filled template ideal for Halloween</li><li>Well-chosen colors, fonts and layout</li><li>Can be used as a single page, landing page or traditional website</li><li>Amazing graphics</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:77:\"The Halloween Party template is simply amazing. It’s perfect for Halloween!\";s:5:\"pages\";a:5:{s:8:\"id-69691\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/10/halloween-party-04-about.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2022/10/halloween-party-04-about-600x1439.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/halloween-party-04/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/halloween-party-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-69692\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/10/halloween-party-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/10/halloween-party-04-contact-600x985.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/halloween-party-04/wp-json/wp/v2/pages/18\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/halloween-party-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69693\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/10/halloween-party-04-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/10/halloween-party-04-1-600x2209.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/halloween-party-04/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/halloween-party-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69694\";a:12:{s:5:\"title\";s:7:\"Program\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/10/halloween-party-04-program.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/10/halloween-party-04-program-600x1216.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/halloween-party-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/halloween-party-04/program/\";s:15:\"astra-sites-tag\";a:1:{i:2684;s:7:\"program\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69695\";a:12:{s:5:\"title\";s:7:\"Tickets\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/10/halloween-party-04-tickets.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/10/halloween-party-04-tickets-600x946.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/halloween-party-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/halloween-party-04/tickets/\";s:15:\"astra-sites-tag\";a:1:{i:2954;s:7:\"tickets\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-69393\";a:22:{s:5:\"title\";s:14:\"T-Shirts Store\";s:2:\"id\";i:69393;s:12:\"publish-date\";i:1663781896;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/09/t-shirts-store-04.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/09/t-shirts-store-04-600x2752.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/09/t-shirts-store-04-400x1835.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/t-shirts-store-04\";s:20:\"astra-site-parent-id\";i:2905;s:15:\"astra-sites-tag\";a:10:{i:2697;s:7:\"clothes\";i:2907;s:12:\"design-store\";i:2350;s:21:\"designer-cloths-store\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:383;s:12:\"online-store\";i:967;s:13:\"product-store\";i:749;s:5:\"store\";i:2906;s:6:\"tshirt\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:3:{i:2769;s:9:\"ecommerce\";i:2858;s:16:\"fashion-clothing\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:941:\"<!-- wp:paragraph -->\n<p>The T-Shirts Store template has a young feel with a pastel color palette, strong imagery and modern fonts. Combined with simple navigation and lots of whitespace, the store is a nice place to spend time, and money.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s a full width layout with a strong banner and call to action that opens into a modern page with product areas, featured product sections, reviews and features you would see on any online store. It’s a complete online store template for any modern venture.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the T-Shirts Store template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Modern eCommerce template</li><li>Slick design with a youthful feel</li><li>Fully responsive and SEO friendly</li><li>Lots of options to showcase products</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:83:\"The T-Shirts Store template is a young-looking eCommerce design with genuine appeal\";s:5:\"pages\";a:3:{s:8:\"id-69394\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/09/t-shirts-store-04-about.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/09/t-shirts-store-04-about-600x1219.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/t-shirts-store-04/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/t-shirts-store-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-69395\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/09/t-shirts-store-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2022/09/t-shirts-store-04-contact-600x963.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/t-shirts-store-04/wp-json/wp/v2/pages/19\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/t-shirts-store-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69396\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/09/t-shirts-store-04.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/09/t-shirts-store-04-600x2752.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/t-shirts-store-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/t-shirts-store-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59604\";a:22:{s:5:\"title\";s:13:\"Creative Blog\";s:2:\"id\";i:59604;s:12:\"publish-date\";i:1646331663;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/03/creative-blog-02.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/03/creative-blog-02-600x1468.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/03/creative-blog-02-400x978.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/creative-blog-02\";s:20:\"astra-site-parent-id\";i:2645;s:15:\"astra-sites-tag\";a:10:{i:2209;s:11:\"advertising\";i:1652;s:7:\"blogger\";i:729;s:8:\"blogging\";i:2408;s:13:\"creative-blog\";i:2410;s:11:\"design-blog\";i:2646;s:12:\"digital-blog\";i:2412;s:9:\"film-blog\";i:509;s:11:\"photography\";i:2270;s:8:\"podcasts\";i:2165;s:16:\"style-influencer\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:37;s:4:\"blog\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2828;s:4:\"blog\";i:2791;s:8:\"creative\";i:2774;s:8:\"magazine\";i:2829;s:7:\"podcast\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:967:\"<!-- wp:paragraph -->\n<p>The Creative Blog template keeps things simple and light to let your content shine. The design uses subtle colors, lots of white space and a few well-chosen images to showcase yourself or your work.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design isn’t your usual blog layout, which makes it immediately stand out. The creative way it is designed helps you showcase your work without tying yourself to convention.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Creative Blog template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Light, friendly design with unconventional layout</li><li>Still delivers space for blog posts and content</li><li>Calm colors and fonts help you relax while on the page</li><li>Includes strong colors for buttons and calls to action</li><li>Predesigned pages for blog categories</li><li>Fully compatible with drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:86:\"Blog template with a difference that delivers your news and opinion in an engaging way\";s:5:\"pages\";a:1:{s:8:\"id-59645\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/03/creative-blog-02.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/03/creative-blog-02-600x1468.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/creative-blog-02/wp-json/wp/v2/pages/576\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/creative-blog-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";s:0:\"\";}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-69842\";a:22:{s:5:\"title\";s:16:\"Fiona Patisserie\";s:2:\"id\";i:69842;s:12:\"publish-date\";i:1668450617;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/11/fiona-patisserie-04.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/11/fiona-patisserie-04-600x2816.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/11/fiona-patisserie-04-400x1877.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/fiona-patisserie-04\";s:20:\"astra-site-parent-id\";i:2981;s:15:\"astra-sites-tag\";a:12:{i:758;s:6:\"bakery\";i:1857;s:6:\"baking\";i:783;s:4:\"cake\";i:2987;s:9:\"delicious\";i:336;s:4:\"food\";i:2988;s:6:\"foodie\";i:2984;s:8:\"foodporn\";i:2983;s:6:\"pastry\";i:2989;s:10:\"pastrylove\";i:2982;s:10:\"patisserie\";i:2986;s:5:\"sweet\";i:2985;s:8:\"tisserie\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:3:{i:2804;s:11:\"cafe-bakery\";i:2785;s:4:\"food\";i:2776;s:10:\"restaurant\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2478;s:17:\"local-storefronts\";i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1222:\"<!-- wp:paragraph -->\n<p>The Fiona Patisserie template is a light and engaging food template that opens with a large slider with high quality images and a simple menu up top. The page unfolds into a light, engaging design with parallax effect and more imagery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There are lots of options to add more products, add content, feature banners, special offers and integrate a store into the design. The template also includes an attractive menu page, about us and contact page so you have everything you need.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Fiona Patisserie template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Light and relaxed WordPress food template</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Parallax effects and image blocks add character</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Option to add more content, images or store elements</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Attractive menu and contact pages</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:71:\"Light hearted WordPress food template designed to help promote and sell\";s:5:\"pages\";a:4:{s:8:\"id-69843\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/11/fiona-patisserie-04-about-us.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/11/fiona-patisserie-04-about-us-600x2596.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/fiona-patisserie-04/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/fiona-patisserie-04/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69844\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/11/fiona-patisserie-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/11/fiona-patisserie-04-contact-600x981.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/fiona-patisserie-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/fiona-patisserie-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69845\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/11/fiona-patisserie-04.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/11/fiona-patisserie-04-600x2816.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/fiona-patisserie-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/fiona-patisserie-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69846\";a:12:{s:5:\"title\";s:8:\"Our Menu\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/11/fiona-patisserie-04-our-menu.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/11/fiona-patisserie-04-our-menu-600x1206.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/fiona-patisserie-04/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/fiona-patisserie-04/our-menu/\";s:15:\"astra-sites-tag\";a:2:{i:565;s:4:\"menu\";i:1578;s:8:\"our-menu\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-53724\";a:22:{s:5:\"title\";s:29:\"Food Blogger &amp; Influencer\";s:2:\"id\";i:53724;s:12:\"publish-date\";i:1623427699;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/food-blogger-02-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/food-blogger-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/food-blogger-02-home.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/food-blogger-04\";s:20:\"astra-site-parent-id\";i:2000;s:15:\"astra-sites-tag\";a:9:{i:1652;s:7:\"blogger\";i:1654;s:15:\"content-creator\";i:2173;s:11:\"food-drinks\";i:2171;s:22:\"food-drinks-influencer\";i:2172;s:19:\"food-drinks-vlogger\";i:890;s:12:\"food-blogger\";i:1547;s:10:\"influencer\";i:2163;s:23:\"social-media-influencer\";i:1837;s:7:\"vlogger\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:37;s:4:\"blog\";}s:29:\"astra-sites-template-category\";a:6:{i:2828;s:4:\"blog\";i:2785;s:4:\"food\";i:2770;s:8:\"personal\";i:2776;s:10:\"restaurant\";i:2801;s:5:\"video\";i:2870;s:4:\"vlog\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2497;s:4:\"blog\";i:2926;s:5:\"video\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1027:\"<!-- wp:paragraph -->\n<p>Are you a food blogger, an influencer, or both? Want to build a website and become an authority in your niche? We\'ve got you covered with this Food Blogger &amp; Influencer website template.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It\'s elegant, professional, and clean — perfect for showcasing your content, be it reviews of exotic new dishes or the latest restaurant in the neighborhood. Plus, it\'s got social media integrations so you can easily share and engage with your audience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Food Blogger &amp; Influencer template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Clean, professional, and elegant website template</li><li>Easy to use with social media integrations</li><li>Option to include latest review videos as well</li><li>Build your email list with the newsletter sign-up form integrated on the homepage</li><li>Compatible with leading drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:77:\"Perfect website template for food bloggers, influencers or restaurant reviews\";s:5:\"pages\";a:5:{s:8:\"id-53726\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/food-blogger-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/food-blogger-02-contact.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/food-blogger-04/wp-json/wp/v2/pages/904\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/food-blogger-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-53725\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/food-blogger-02-about.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/food-blogger-02-about.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/food-blogger-04/wp-json/wp/v2/pages/462\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/food-blogger-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-53727\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/food-blogger-02-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/food-blogger-02-home.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/food-blogger-04/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/food-blogger-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-53728\";a:12:{s:5:\"title\";s:7:\"Reviews\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/food-blogger-02-reviews.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/food-blogger-02-reviews.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/food-blogger-04/wp-json/wp/v2/pages/709\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/food-blogger-04/reviews/\";s:15:\"astra-sites-tag\";a:1:{i:432;s:6:\"review\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-53729\";a:12:{s:5:\"title\";s:6:\"Videos\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/food-blogger-02-videos.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/food-blogger-02-videos.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/food-blogger-04/wp-json/wp/v2/pages/833\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/food-blogger-04/videos/\";s:15:\"astra-sites-tag\";a:2:{i:2002;s:7:\"updates\";i:2001;s:6:\"videos\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:55865;s:26:\"related-elementor-template\";i:53724;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-53593\";a:22:{s:5:\"title\";s:12:\"The Pizzeria\";s:2:\"id\";i:53593;s:12:\"publish-date\";i:1620419161;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/pizzeria-homepage-01.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/pizzeria-homepage-01.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/pizzeria-homepage-01.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/pizzeria-04\";s:20:\"astra-site-parent-id\";i:1961;s:15:\"astra-sites-tag\";a:10:{i:2011;s:15:\"fast-food-chain\";i:2013;s:20:\"fast-food-restaurant\";i:2018;s:17:\"fast-food-service\";i:350;s:5:\"hotel\";i:563;s:18:\"italian-restaurant\";i:1975;s:5:\"pasta\";i:1971;s:5:\"pizza\";i:2012;s:11:\"pizza-house\";i:1977;s:8:\"pizzeria\";i:335;s:10:\"restaurant\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2785;s:4:\"food\";i:2876;s:13:\"food-ordering\";i:2776;s:10:\"restaurant\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1017:\"<!-- wp:paragraph -->\n<p>Here’s a pizza website template that is not only beautiful but also functional. We’ve made this template as easy to use as possible so you can focus on the important aspects of your pizzeria business: making delicious pizza and taking care of your customers.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This package includes a professionally designed website template, a facility to order online, an online menu, a table booking module so customers can reserve their tables in advance, social media integration, and client testimonials.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of The Pizzeria template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Professionally and creatively designed template</li><li>Includes everything you need to build a top-notch pizza ordering system</li><li>Visually appealing design</li><li>Placeholders to display the best deals and offers</li><li>Fully customizable and flexible layout</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:80:\"The perfect pizzeria website template to build an online pizza ordering platform\";s:5:\"pages\";a:5:{s:8:\"id-53594\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/pizzeria-02-about.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/pizzeria-02-about.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/pizzeria-04/wp-json/wp/v2/pages/860\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/pizzeria-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-53595\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/pizzeria-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/pizzeria-02-contact.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/pizzeria-04/wp-json/wp/v2/pages/1035\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/pizzeria-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-53596\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/pizzeria-homepage-01.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/pizzeria-homepage-01.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/pizzeria-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/pizzeria-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-53597\";a:12:{s:5:\"title\";s:6:\"Offers\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/pizzeria-02-offers.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/pizzeria-02-offers.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/pizzeria-04/wp-json/wp/v2/pages/1018\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/pizzeria-04/offers/\";s:15:\"astra-sites-tag\";a:1:{i:1969;s:6:\"offers\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-53598\";a:12:{s:5:\"title\";s:8:\"Our Menu\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/pizzeria-02-our-menu.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/pizzeria-02-our-menu.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/pizzeria-04/wp-json/wp/v2/pages/648\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/pizzeria-04/our-menu/\";s:15:\"astra-sites-tag\";a:1:{i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-73478\";a:22:{s:5:\"title\";s:26:\"Freelance Digital Designer\";s:2:\"id\";i:73478;s:12:\"publish-date\";i:1681733748;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2023/04/digital-designer-04.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/04/digital-designer-04-600x2730.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/04/digital-designer-04-400x1820.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/digital-designer-04\";s:20:\"astra-site-parent-id\";i:3155;s:15:\"astra-sites-tag\";a:12:{i:597;s:3:\"art\";i:3008;s:6:\"design\";i:670;s:8:\"designer\";i:2720;s:7:\"digital\";i:3158;s:10:\"digitalart\";i:3157;s:13:\"digitaldesign\";i:3160;s:20:\"digitalillustrations\";i:669;s:10:\"freelancer\";i:3156;s:16:\"graphic-designer\";i:3159;s:13:\"illustrations\";i:444;s:9:\"portfolio\";i:3161;s:9:\"webdesign\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:5:{i:2777;s:8:\"business\";i:2810;s:9:\"freelance\";i:2770;s:8:\"personal\";i:2768;s:9:\"portfolio\";i:2817;s:10:\"technology\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2488;s:9:\"portfolio\";i:2499;s:10:\"technology\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1252:\"<!-- wp:paragraph -->\n<p>The Freelance Digital Designer template is an energetic portfolio design that does a great job of hooking you in so you want to explore more. That’s a great feature of a page designed to attract new clients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design is modern, flat and alternates between dark and light with an orange contrast color. You can change all this if you like, but the default design has everything you need including a portfolio, contact page, biography and the opportunity to fully personalize.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Freelance Digital Designer template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Energetic design that’s instantly engaging</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>All the essential ingredients for a portfolio website</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Attractive pages and lots of imagery</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Useful supplementary pages including biography and portfolio</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"Freelance Digital Designer offers the perfect opportunity to attract new clients.\";s:5:\"pages\";a:4:{s:8:\"id-73479\";a:12:{s:5:\"title\";s:8:\"About me\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2023/04/digital-designer-04-about.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/04/digital-designer-04-about-600x1966.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/digital-designer-04/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/digital-designer-04/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-73482\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/04/digital-designer-04-portfolio.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2023/04/digital-designer-04-portfolio-600x1189.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/digital-designer-04/wp-json/wp/v2/pages/20\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/digital-designer-04/portfolio/\";s:15:\"astra-sites-tag\";a:1:{i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-73480\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/04/digital-designer-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2023/04/digital-designer-04-contact-600x420.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/digital-designer-04/wp-json/wp/v2/pages/24\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/digital-designer-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-73481\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2023/04/digital-designer-04.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/04/digital-designer-04-600x2730.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/digital-designer-04/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/digital-designer-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-22401\";a:22:{s:5:\"title\";s:13:\"Organic Store\";s:2:\"id\";i:22401;s:12:\"publish-date\";i:1562655449;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/10/organic-shop-01-home-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/10/organic-shop-01-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/10/organic-shop-01-home-1.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/organic-shop-01\";s:20:\"astra-site-parent-id\";i:79;s:15:\"astra-sites-tag\";a:20:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2419;s:9:\"eshopping\";i:2424;s:11:\"health-food\";i:2425;s:9:\"lite-food\";i:369;s:7:\"natural\";i:2215;s:16:\"online-marketing\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:368;s:7:\"organic\";i:2423;s:12:\"organic-food\";i:967;s:13:\"product-store\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:2426;s:15:\"vegetarian-food\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:4;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:5;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-34078\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/10/organic-shop-01-home-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/10/organic-shop-01-home-1.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/organic-shop-01/wp-json/wp/v2/pages/95\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/organic-shop-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-22303\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/10/organic-shop-01-about.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/10/organic-shop-01-about.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/organic-shop-01/wp-json/wp/v2/pages/96\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/organic-shop-01/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-22304\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/10/organic-shop-01-contact.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/10/organic-shop-01-contact.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/organic-shop-01/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/organic-shop-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(202,'astra-sites-and-pages-page-8','a:15:{s:8:\"id-48121\";a:22:{s:5:\"title\";s:13:\"Organic Store\";s:2:\"id\";i:48121;s:12:\"publish-date\";i:1603893477;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/10/organic-shop-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/organic-shop-08-600x2164.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/organic-shop-08-400x1442.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/organic-shop-08\";s:20:\"astra-site-parent-id\";i:1702;s:15:\"astra-sites-tag\";a:20:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2419;s:9:\"eshopping\";i:2424;s:11:\"health-food\";i:2425;s:9:\"lite-food\";i:369;s:7:\"natural\";i:2215;s:16:\"online-marketing\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:368;s:7:\"organic\";i:2423;s:12:\"organic-food\";i:967;s:13:\"product-store\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:2426;s:15:\"vegetarian-food\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:4;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-48124\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/10/organic-shop-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/organic-shop-08-600x2164.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/organic-shop-08/wp-json/wp/v2/pages/3610\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/organic-shop-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48122\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/organic-shop-08-about.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/organic-shop-08-about-600x1246.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/organic-shop-08/wp-json/wp/v2/pages/3612\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/organic-shop-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48123\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/organic-shop-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/organic-shop-08-contact-600x832.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/organic-shop-08/wp-json/wp/v2/pages/3614\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/organic-shop-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59435\";a:22:{s:5:\"title\";s:12:\"eBook Author\";s:2:\"id\";i:59435;s:12:\"publish-date\";i:1644586356;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/02/kathryn-ebook-author-02.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/02/kathryn-ebook-author-02-600x2456.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/02/kathryn-ebook-author-02-400x1637.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/kathryn-ebook-author-02\";s:20:\"astra-site-parent-id\";i:2619;s:15:\"astra-sites-tag\";a:0:{}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2814;s:9:\"bookstore\";i:2769;s:9:\"ecommerce\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2486;s:9:\"art-music\";i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:22:\"easy-digital-downloads\";s:4:\"init\";s:49:\"easy-digital-downloads/easy-digital-downloads.php\";s:4:\"name\";s:22:\"Easy Digital Downloads\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1017:\"<!-- wp:paragraph -->\n<p>The eBook Author web template is designed to promote your latest work while also making space for existing creations. It’s a light, personable design with lovely colors and fonts, effective imagery and a nice feel overall.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes a well designed homepage with flexible content areas and specific pages for biography and books. It can integrate with WooCommerce if you want to sell your books as well as promote them.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the eBook Author template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Makes it easy to promote yourself and your work</li><li>Light, easygoing colors and fonts</li><li>Can integrate with WooCommerce to sell as well as promote</li><li>Flexible content areas that can be fully customized</li><li>Attractive product page to promote all your books</li><li>Fully compatible with drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:82:\"Show off your work with this attractive portfolio template, ideal for any creative\";s:5:\"pages\";a:4:{s:8:\"id-59443\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/02/kathryn-ebook-author-02.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/02/kathryn-ebook-author-02-600x2456.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/kathryn-ebook-author-02/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/kathryn-ebook-author-02/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:22:\"easy-digital-downloads\";s:4:\"init\";s:49:\"easy-digital-downloads/easy-digital-downloads.php\";s:4:\"name\";s:22:\"Easy Digital Downloads\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-59436\";a:12:{s:5:\"title\";s:3:\"Bio\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/02/kathryn-ebook-author-02-bio.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/02/kathryn-ebook-author-02-bio-600x2324.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/kathryn-ebook-author-02/wp-json/wp/v2/pages/19\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/kathryn-ebook-author-02/bio/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:1566;s:9:\"biography\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-59437\";a:12:{s:5:\"title\";s:5:\"Books\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/02/kathryn-ebook-author-02-books.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2022/02/kathryn-ebook-author-02-books-600x2100.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/kathryn-ebook-author-02/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/kathryn-ebook-author-02/books/\";s:15:\"astra-sites-tag\";a:2:{i:1740;s:5:\"books\";i:540;s:8:\"products\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:22:\"easy-digital-downloads\";s:4:\"init\";s:49:\"easy-digital-downloads/easy-digital-downloads.php\";s:4:\"name\";s:22:\"Easy Digital Downloads\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-59442\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/02/kathryn-ebook-author-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2022/02/kathryn-ebook-author-02-contact-600x1026.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/kathryn-ebook-author-02/wp-json/wp/v2/pages/27\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/kathryn-ebook-author-02/contact/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55865\";a:22:{s:5:\"title\";s:29:\"Food Blogger &amp; Influencer\";s:2:\"id\";i:55865;s:12:\"publish-date\";i:1624910279;s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/06/food-blogger-homepage-bb.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/06/food-blogger-homepage-bb.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/06/food-blogger-homepage-bb.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/food-blogger-03\";s:20:\"astra-site-parent-id\";i:2222;s:15:\"astra-sites-tag\";a:9:{i:1652;s:7:\"blogger\";i:1654;s:15:\"content-creator\";i:2172;s:19:\"food-drinks-vlogger\";i:2068;s:15:\"food-and-drinks\";i:2223;s:26:\"food-and-drinks-influencer\";i:890;s:12:\"food-blogger\";i:1547;s:10:\"influencer\";i:2163;s:23:\"social-media-influencer\";i:1837;s:7:\"vlogger\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:37;s:4:\"blog\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:2:{i:2497;s:4:\"blog\";i:2926;s:5:\"video\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-55866\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/06/food-blogger-about-bb.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/06/food-blogger-about-bb.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/food-blogger-03/wp-json/wp/v2/pages/1069\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/food-blogger-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-55867\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/06/food-blogger-contact-bb.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/06/food-blogger-contact-bb.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/food-blogger-03/wp-json/wp/v2/pages/1085\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/food-blogger-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55868\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/06/food-blogger-homepage-bb.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/06/food-blogger-homepage-bb.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/food-blogger-03/wp-json/wp/v2/pages/1056\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/food-blogger-03/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55869\";a:12:{s:5:\"title\";s:7:\"Reviews\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/06/food-blogger-reviews-bb.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/06/food-blogger-reviews-bb.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/food-blogger-03/wp-json/wp/v2/pages/1075\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/food-blogger-03/reviews/\";s:15:\"astra-sites-tag\";a:1:{i:1615;s:7:\"reviews\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55870\";a:12:{s:5:\"title\";s:6:\"Videos\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/06/food-blogger-videos-bb.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/06/food-blogger-videos-bb.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/food-blogger-03/wp-json/wp/v2/pages/1079\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/food-blogger-03/videos/\";s:15:\"astra-sites-tag\";a:1:{i:2001;s:6:\"videos\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71207\";a:22:{s:5:\"title\";s:7:\"Vlogger\";s:2:\"id\";i:71207;s:12:\"publish-date\";i:1672838784;s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2023/01/vlogger-04.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2023/01/vlogger-04-600x2466.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2023/01/vlogger-04-400x1644.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/vlogger-04\";s:20:\"astra-site-parent-id\";i:3063;s:15:\"astra-sites-tag\";a:9:{i:3065;s:7:\"explore\";i:482;s:7:\"fashion\";i:3064;s:4:\"life\";i:479;s:9:\"lifestyle\";i:427;s:6:\"travel\";i:3066;s:5:\"video\";i:1839;s:13:\"video-creator\";i:1837;s:7:\"vlogger\";i:1838;s:8:\"youtuber\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:2:{i:37;s:4:\"blog\";i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:5:{i:2828;s:4:\"blog\";i:2770;s:8:\"personal\";i:2768;s:9:\"portfolio\";i:2801;s:5:\"video\";i:2870;s:4:\"vlog\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2497;s:4:\"blog\";i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1245:\"<!-- wp:paragraph -->\n<p>The Vlogger website template is a fullscreen resume and portfolio design full of color, vibrancy and engagement. It opens with a simple image of the vlogger with headline introduction before unfolding into a description, video element, blog posts, social media links and contact area.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you’re a vlogger or into modern media, this template is ideal for providing a professional persona to potential clients, backers or supporters. It’s modern, attractive and makes the positive impact you need to get ahead.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Vlogger template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Attractive fullscreen Vlogger website design</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Great use of colors and typography throughout</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Designed as a resume or portfolio website</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Can be fully customized to make it unique</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:60:\"Attractive vlogger template ideal for anyone in modern media\";s:5:\"pages\";a:4:{s:8:\"id-71208\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2023/01/vlogger-04-about.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2023/01/vlogger-04-about-600x2086.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/vlogger-04/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/vlogger-04/home/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71209\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/01/vlogger-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2023/01/vlogger-04-contact-600x890.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/vlogger-04/wp-json/wp/v2/pages/20\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/vlogger-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71211\";a:12:{s:5:\"title\";s:13:\"Video Gallery\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/01/vlogger-04-video-gallery.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/01/vlogger-04-video-gallery-600x1379.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/vlogger-04/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/vlogger-04/video-gallery/\";s:15:\"astra-sites-tag\";a:1:{i:3067;s:13:\"video-gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71210\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2023/01/vlogger-04.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2023/01/vlogger-04-600x2466.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/vlogger-04/wp-json/wp/v2/pages/18\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/vlogger-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-70940\";a:22:{s:5:\"title\";s:15:\"Christmas Party\";s:2:\"id\";i:70940;s:12:\"publish-date\";i:1671042334;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/12/christmas-party-04.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/12/christmas-party-04-600x2443.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/12/christmas-party-04-400x1628.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/christmas-party-04\";s:20:\"astra-site-parent-id\";i:3020;s:15:\"astra-sites-tag\";a:15:{i:3021;s:9:\"christmas\";i:3029;s:14:\"christmascheer\";i:3024;s:12:\"christmasfun\";i:3025;s:13:\"christmasmood\";i:3022;s:14:\"christmasparty\";i:3032;s:21:\"christmaspartyhopping\";i:3026;s:15:\"christmasspirit\";i:3023;s:13:\"christmastime\";i:3030;s:14:\"christmasvibes\";i:3028;s:13:\"chrstmasparty\";i:3027;s:5:\"dance\";i:406;s:2:\"dj\";i:882;s:6:\"drinks\";i:3031;s:12:\"holidayparty\";i:407;s:5:\"music\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2869;s:2:\"dj\";i:2784;s:5:\"event\";i:2781;s:5:\"music\";i:2868;s:15:\"musician-singer\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2489;s:16:\"event-invitation\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1248:\"<!-- wp:paragraph -->\n<p>The Christmas Party website template is light, bright and ready to celebrate. It’s a fullscreen design ideal for showcasing a Christmas party, festival, performance or other celebration. It’s a great way to get viewers in the mood while promoting your event.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Christmas Party template uses plenty of red with strong white fonts and a neat animated snowflake effect. The page includes elements to showcase the what, when and where of your event alongside customizable areas to use as you need.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Christmas Party template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Festive Christmas Party website design</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Neat animated snowflake effect to get you in the mood</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Includes all essential page elements for events</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Can be fully customized to fit your brand</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:64:\"Festive Christmas Party template that’s great for the holidays\";s:5:\"pages\";a:4:{s:8:\"id-70941\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/christmas-party-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/12/christmas-party-04-contact-600x730.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/christmas-party-04/wp-json/wp/v2/pages/19\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/christmas-party-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-70942\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/12/christmas-party-04.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/12/christmas-party-04-600x2443.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/christmas-party-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/christmas-party-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-70943\";a:12:{s:5:\"title\";s:7:\"Program\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/12/christmas-party-04-programs.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/12/christmas-party-04-programs-600x1754.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/christmas-party-04/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/christmas-party-04/program/\";s:15:\"astra-sites-tag\";a:1:{i:2684;s:7:\"program\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-70944\";a:12:{s:5:\"title\";s:7:\"Tickets\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/christmas-party-04-tickets.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/12/christmas-party-04-tickets-600x1026.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/christmas-party-04/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/christmas-party-04/tickets/\";s:15:\"astra-sites-tag\";a:1:{i:2954;s:7:\"tickets\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71025\";a:22:{s:5:\"title\";s:9:\"Locksmith\";s:2:\"id\";i:71025;s:12:\"publish-date\";i:1671716774;s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2022/12/locksmith-02.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/12/locksmith-02-600x3651.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/12/locksmith-02-400x2434.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/locksmith-02\";s:20:\"astra-site-parent-id\";i:3051;s:15:\"astra-sites-tag\";a:9:{i:3042;s:10:\"keycutting\";i:3035;s:4:\"keys\";i:3040;s:4:\"lock\";i:3034;s:5:\"locks\";i:2430;s:9:\"locksmith\";i:3039;s:12:\"locksmithing\";i:3036;s:16:\"locksmithservice\";i:3038;s:17:\"locksmithservices\";i:3041;s:7:\"lostkey\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2863;s:12:\"landing-page\";i:2771;s:8:\"one-page\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:3:{i:2483;s:15:\"expert-services\";i:2471;s:16:\"local-technician\";i:2927;s:8:\"one-page\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1217:\"<!-- wp:paragraph -->\n<p>The Locksmith website template proves small business websites can be special. It’s a slick design with a strong header image and call to action with calming colors to help inspire confidence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Locksmith website design uses strong colors and fonts on a white background alongside strong images to make an impact. It includes essential service sections, an about us, reviews and areas to help you build authority and confidence. Everything a locksmith needs to attract new business.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Locksmith template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Modern small business locksmith template</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Calm design that inspires confidence</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Includes relevant service and authority sections</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Can be fully customized to make it stand out</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:63:\"Modern flat locksmith template that can be customized with ease\";s:5:\"pages\";a:1:{s:8:\"id-58440\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/10/locksmith-02.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/10/locksmith-02.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/locksmith-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/locksmith-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:71025;s:26:\"related-gutenberg-template\";i:70969;}s:8:\"id-66946\";a:22:{s:5:\"title\";s:16:\"Electric Scooter\";s:2:\"id\";i:66946;s:12:\"publish-date\";i:1658427252;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/07/electric-scooter-04.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/07/electric-scooter-04-600x2314.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/07/electric-scooter-04-400x1543.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/electric-scooter-04\";s:20:\"astra-site-parent-id\";i:2847;s:15:\"astra-sites-tag\";a:8:{i:2851;s:7:\"bicycle\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2848;s:16:\"electric-scooter\";i:2850;s:14:\"electric-store\";i:383;s:12:\"online-store\";i:2849;s:7:\"scooter\";i:749;s:5:\"store\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:3:{i:2800;s:14:\"car-automotive\";i:2769;s:9:\"ecommerce\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:3:{i:2495;s:9:\"ecommerce\";i:2499;s:10:\"technology\";i:2473;s:9:\"transport\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:20:\"woocommerce-payments\";s:4:\"init\";s:45:\"woocommerce-payments/woocommerce-payments.php\";s:4:\"name\";s:20:\"WooCommerce Payments\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:5;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1172:\"<!-- wp:paragraph -->\n<p>The Electric Scooter template is an eCommerce design with a contemporary feel. It opens with a large product section and unfolds into a wide open store template with a parallax effect that works incredibly well.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design uses open design and feels welcoming and engaging. Combined with high quality images, modern fonts and plenty of whitespace, there’s a professional feel to this template. Ideal for new stores or those dealing with big ticket items.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Electric Scooter template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Modern eCommerce templates with modern touches</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Neutral colors and modern fonts</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Open design with lots of whitespace</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fully compatible with WooCommerce</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:71:\"Modern eCommerce design with an open light feel ideal for online stores\";s:5:\"pages\";a:6:{s:8:\"id-66947\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/07/electric-scooter-about-04.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/07/electric-scooter-about-04-600x1215.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/electric-scooter-04/wp-json/wp/v2/pages/270\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/electric-scooter-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-66948\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/07/electric-scooter-contact-04.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/07/electric-scooter-contact-04-600x837.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/electric-scooter-04/wp-json/wp/v2/pages/272\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/electric-scooter-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-66949\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/07/electric-scooter-04.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/07/electric-scooter-04-600x2314.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/electric-scooter-04/wp-json/wp/v2/pages/268\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/electric-scooter-04/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:1467;s:14:\"store-homepage\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-67228\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/electric-scooter-04/wp-json/wp/v2/pages/270\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/electric-scooter-04/about/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-67229\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/electric-scooter-04/wp-json/wp/v2/pages/272\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/electric-scooter-04/contact/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-67230\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/electric-scooter-04/wp-json/wp/v2/pages/268\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/electric-scooter-04/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-57006\";a:22:{s:5:\"title\";s:17:\"Business Magazine\";s:2:\"id\";i:57006;s:12:\"publish-date\";i:1626890664;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/07/business-magazine-04-home.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/07/business-magazine-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/07/business-magazine-04-home.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/business-magazine-04\";s:20:\"astra-site-parent-id\";i:2258;s:15:\"astra-sites-tag\";a:9:{i:480;s:4:\"blog\";i:2275;s:13:\"business-blog\";i:2277;s:17:\"business-magazine\";i:2276;s:13:\"business-news\";i:2273;s:9:\"editorial\";i:2274;s:8:\"magazine\";i:2271;s:4:\"news\";i:2272;s:10:\"publishing\";i:2278;s:16:\"publishing-house\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:37;s:4:\"blog\";}s:29:\"astra-sites-template-category\";a:3:{i:2828;s:4:\"blog\";i:2774;s:8:\"magazine\";i:2859;s:4:\"news\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:989:\"<!-- wp:paragraph -->\n<p>Get your business magazine website template and share the latest in the business world with your audience. Keep them informed on all the latest business trends, ideas, and updates with this online magazine template.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The user-friendly and clutter-free layout features a variety of integrated social media links and newsletter subscription forms, making it easy to stay on top of the latest business news, trends, and opportunities.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Business Magazine template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>User-friendly and clutter-free website template</li><li>Placeholders for trending news, editor’s picks, and world news</li><li>Social media integrations and newsletter sign-up form</li><li>Include the latest videos or even podcast episodes</li><li>Compatible with leading drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"The Business Magazine template has been crafted for the modern business professional\";s:5:\"pages\";a:3:{s:8:\"id-57007\";a:12:{s:5:\"title\";s:8:\"About us\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/07/business-magazine-04-about.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/07/business-magazine-04-about.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/business-magazine-04/wp-json/wp/v2/pages/495\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/business-magazine-04/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57008\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/07/business-magazine-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/07/business-magazine-04-contact.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/business-magazine-04/wp-json/wp/v2/pages/497\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/business-magazine-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-57009\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/07/business-magazine-04-home.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/07/business-magazine-04-home.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/business-magazine-04/wp-json/wp/v2/pages/226\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/business-magazine-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-69404\";a:22:{s:5:\"title\";s:14:\"Furniture Shop\";s:2:\"id\";i:69404;s:12:\"publish-date\";i:1663781944;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/09/furniture-shop-04.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/09/furniture-shop-04-600x1880.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/09/furniture-shop-04-400x1253.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/furniture-shop-04\";s:20:\"astra-site-parent-id\";i:2908;s:15:\"astra-sites-tag\";a:9:{i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:524;s:9:\"furniture\";i:856;s:15:\"furniture-store\";i:2359;s:20:\"home-furniture-store\";i:2358;s:22:\"office-furniture-store\";i:2357;s:22:\"online-furniture-store\";i:383;s:12:\"online-store\";i:749;s:5:\"store\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:3:{i:2769;s:9:\"ecommerce\";i:2879;s:9:\"furniture\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:950:\"<!-- wp:paragraph -->\n<p>The Furniture Shop template is a contemporary eCommerce design that looks modern and has instant appeal. It’s a full page template that opens with a strong fullscreen header with headline and call to action.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The rest of the template uses lots of whitespace and superb layout while allowing the products to be the star of the show. There are featured product sections, attractive product pages and a simple navigation bar with a shopping cart. Everything you need to sell.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Furniture Shop template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Contemporary fullscreen eCommerce template</li><li>Great use of colors, fonts and images</li><li>Attractive product pages</li><li>Simple navigation with search and cart</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:66:\"Contemporary eCommerce template with modern design and modern feel\";s:5:\"pages\";a:4:{s:8:\"id-69407\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/09/furniture-shop-04.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/09/furniture-shop-04-600x1880.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/furniture-shop-04/wp-json/wp/v2/pages/56\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/furniture-shop-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}s:8:\"id-69408\";a:12:{s:5:\"title\";s:5:\"Story\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/09/furniture-shop-04-story.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/09/furniture-shop-04-story-600x1388.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/furniture-shop-04/wp-json/wp/v2/pages/59\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/furniture-shop-04/story/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:767;s:5:\"story\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-69405\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/09/furniture-shop-04-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/09/furniture-shop-04-contact-1-600x732.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/furniture-shop-04/wp-json/wp/v2/pages/61\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/furniture-shop-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69406\";a:12:{s:5:\"title\";s:4:\"Help\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/09/furniture-shop-04-help-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/09/furniture-shop-04-help-1-600x805.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/furniture-shop-04/wp-json/wp/v2/pages/468\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/furniture-shop-04/help/\";s:15:\"astra-sites-tag\";a:1:{i:2909;s:4:\"help\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-52215\";a:22:{s:5:\"title\";s:23:\"Wine Bar and Restaurant\";s:2:\"id\";i:52215;s:12:\"publish-date\";i:1620389225;s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/04/wine-bar-and-restaurant-04-home-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/04/wine-bar-and-restaurant-04-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/04/wine-bar-and-restaurant-04-home-1.jpg\";s:14:\"astra-site-url\";s:45:\"//websitedemos.net/wine-bar-and-restaurant-04\";s:20:\"astra-site-parent-id\";i:1944;s:15:\"astra-sites-tag\";a:12:{i:1980;s:3:\"bar\";i:2004;s:8:\"barbeque\";i:2007;s:19:\"barbeque-restaurant\";i:1988;s:10:\"beer-joint\";i:882;s:6:\"drinks\";i:1982;s:10:\"food-court\";i:350;s:5:\"hotel\";i:1983;s:3:\"pub\";i:335;s:10:\"restaurant\";i:2006;s:8:\"wine-bar\";i:2005;s:23:\"wine-bar-and-restaurant\";i:633;s:6:\"winery\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2785;s:4:\"food\";i:2876;s:13:\"food-ordering\";i:2776;s:10:\"restaurant\";i:2813;s:6:\"winery\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:978:\"<!-- wp:paragraph -->\n<p>Miss the days of going to the wine bar and restaurant with your friends? We\'ve designed this website template with you in mind. The wine bar and restaurant website template is an elegant and classy template that’ll make you feel like you\'re at a wine bar without leaving home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Customize it to your liking by adding or removing elements or changing colors. With an online order form, you can even deliver wines right to your customer’s doorstep.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Wine Bar and Restaurant template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Elegant and classy website design</li><li>WooCommerce-ready template to facilitate the sale of wine</li><li>Impressive photo gallery on the homepage</li><li>Option to facilitate table reservations and online ordering</li><li>Page builder ready and fully customizable</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"Elegant and classy design that will make your website stand out from the competition\";s:5:\"pages\";a:6:{s:8:\"id-52216\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/04/wine-bar-and-restaurant-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/04/wine-bar-and-restaurant-04-contact.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/wine-bar-and-restaurant-04/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/wine-bar-and-restaurant-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-52217\";a:12:{s:5:\"title\";s:6:\"Events\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/05/wine-bar-and-restaurant-04-events.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/05/wine-bar-and-restaurant-04-events.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/wine-bar-and-restaurant-04/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/wine-bar-and-restaurant-04/events/\";s:15:\"astra-sites-tag\";a:1:{i:409;s:5:\"event\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-52218\";a:12:{s:5:\"title\";s:6:\"Grills\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/04/wine-bar-and-restaurant-04-grills.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/04/wine-bar-and-restaurant-04-grills.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/wine-bar-and-restaurant-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/wine-bar-and-restaurant-04/grills/\";s:15:\"astra-sites-tag\";a:2:{i:1978;s:5:\"grill\";i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-52219\";a:12:{s:5:\"title\";s:7:\"History\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/04/wine-bar-and-restaurant-04-history.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/04/wine-bar-and-restaurant-04-history.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/wine-bar-and-restaurant-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/wine-bar-and-restaurant-04/history/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:645;s:7:\"history\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-52220\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/04/wine-bar-and-restaurant-04-home-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/04/wine-bar-and-restaurant-04-home-1.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/wine-bar-and-restaurant-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/wine-bar-and-restaurant-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-52221\";a:12:{s:5:\"title\";s:5:\"Wines\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/04/wine-bar-and-restaurant-04-wines.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/04/wine-bar-and-restaurant-04-wines.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/wine-bar-and-restaurant-04/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/wine-bar-and-restaurant-04/wines/\";s:15:\"astra-sites-tag\";a:2:{i:1979;s:4:\"wine\";i:633;s:6:\"winery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";i:54361;s:26:\"related-elementor-template\";i:52215;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-73520\";a:22:{s:5:\"title\";s:12:\"Local Bakery\";s:2:\"id\";i:73520;s:12:\"publish-date\";i:1681825313;s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2023/04/local-bakery.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/04/local-bakery-600x900.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/04/local-bakery-400x600.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/bakery-index-bio-02\";s:20:\"astra-site-parent-id\";i:3172;s:15:\"astra-sites-tag\";a:8:{i:758;s:6:\"bakery\";i:783;s:4:\"cake\";i:2988;s:6:\"foodie\";i:2984;s:8:\"foodporn\";i:3173;s:11:\"link-in-bio\";i:3174;s:11:\"localbakery\";i:3175;s:9:\"shoplocal\";i:3176;s:5:\"yummy\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:1:{i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:3171;s:11:\"link-in-bio\";i:2770;s:8:\"personal\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:3:{i:3191;s:11:\"link-in-bio\";i:2927;s:8:\"one-page\";i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1222:\"<!-- wp:paragraph -->\n<p>The Local Baker Link-in-Bio template is an engaging way to showcase your skills and your work and share links to other resources. It’s a landing page and then some, offering far more than Linktree, including fully responsive pages.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Local Baker Link-in-Bio template has a lovely design with calm colors, attractive center blocks with images and links and a slider block to show off your skills. It’s also fully responsive so will work on any screen size.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Local Baker linktree template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Attractive Link-in-Bio template with genuine appeal</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Nice colors and can be fully customized</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Responsive design that will work flawlessly on any device</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Includes options for all types of links</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:83:\"The Local Baker Link-in-Bio template is the ideal landing page to share your links.\";s:5:\"pages\";a:1:{s:8:\"id-73521\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2023/04/bakery-index-bio-02.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/04/bakery-index-bio-02-600x347.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/bakery-index-bio-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/bakery-index-bio-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-66934\";a:22:{s:5:\"title\";s:15:\"Innesa Perfumes\";s:2:\"id\";i:66934;s:12:\"publish-date\";i:1658427055;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/07/inessa-perfumes-04.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/07/inessa-perfumes-04-600x2287.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/07/inessa-perfumes-04-400x1524.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/inessa-perfumes-04\";s:20:\"astra-site-parent-id\";i:2842;s:15:\"astra-sites-tag\";a:9:{i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2844;s:9:\"fragrance\";i:383;s:12:\"online-store\";i:2843;s:7:\"perfume\";i:2846;s:13:\"perfume-store\";i:967;s:13:\"product-store\";i:2845;s:5:\"smell\";i:749;s:5:\"store\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:3:{i:2769;s:9:\"ecommerce\";i:2890;s:15:\"makeup-cosmetic\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:961:\"<!-- wp:paragraph -->\n<p>The Inessa Perfumes website template is an elegant eCommerce design ideal for a wide range of online stores. It has an upmarket look, with fullscreen header, well-chosen fonts and an excellent product showcase section further down the page.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The combination of fonts, colors and whitespace give a premium feel while minimal navigation keeps things tidy while delivering user intent. The template is fully compatible with WooCommerce and sales funnel plugins, so should deliver all the features you need.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Inessa Perfumes template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Elegant eCommerce theme</li><li>Stylish colors and fonts throughout</li><li>Borderless content areas for an open feel</li><li>Attractive product area</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"Elegant eCommerce template ideal for selling luxury items to discerning customers\";s:5:\"pages\";a:3:{s:8:\"id-66935\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/07/inessa-perfumes-about-04.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2022/07/inessa-perfumes-about-04-600x2137.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/inessa-perfumes-04/wp-json/wp/v2/pages/20\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/inessa-perfumes-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-66936\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/07/inessa-perfumes-contact-04.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/07/inessa-perfumes-contact-04-600x810.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/inessa-perfumes-04/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/inessa-perfumes-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-66937\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/07/inessa-perfumes-04.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/07/inessa-perfumes-04-600x2287.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/inessa-perfumes-04/wp-json/wp/v2/pages/18\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/inessa-perfumes-04/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:1467;s:14:\"store-homepage\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-67195\";a:22:{s:5:\"title\";s:12:\"eGrow Plants\";s:2:\"id\";i:67195;s:12:\"publish-date\";i:1658428955;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2022/07/egrow-plants-04.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/07/egrow-plants-04-600x2899.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/07/egrow-plants-04-400x1932.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/egrow-plants-04\";s:20:\"astra-site-parent-id\";i:2865;s:15:\"astra-sites-tag\";a:15:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2419;s:9:\"eshopping\";i:2422;s:13:\"online-market\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:497;s:11:\"plant-store\";i:495;s:6:\"plants\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:2:{i:2769;s:9:\"ecommerce\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2495;s:9:\"ecommerce\";i:2476;s:9:\"gardening\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1144:\"<!-- wp:paragraph -->\n<p>The eGrow Plants template is a minimalist eCommerce design ideal for a wide range of stores, not just for plants. It has a very calm vibe with neutral colors, lots of whitespace and some nice shaded images.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design includes simple navigation, a cart option in the top bar, highlighted products section, attractive product pages and flexible content areas ideal for any store. It also integrates seamlessly with WooCommerce.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the eGrow Plants template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Minimalist eCommerce template with a relaxed feel</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lots of whitespace and neutral colors</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Flexible content areas ideal for products</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Cart icon in the top bar</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:66:\"Minimalist eCommerce template ideal for most types of online store\";s:5:\"pages\";a:13:{s:8:\"id-67196\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/07/egrow-plants-contact-04.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/07/egrow-plants-contact-04-600x1008.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/egrow-plants-04/wp-json/wp/v2/pages/261\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/egrow-plants-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-67197\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2022/07/egrow-plants-04.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/07/egrow-plants-04-600x2899.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/egrow-plants-04/wp-json/wp/v2/pages/270\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/egrow-plants-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}s:8:\"id-67198\";a:12:{s:5:\"title\";s:9:\"Our Story\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/07/egrow-plants-about-04.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/07/egrow-plants-about-04-600x1231.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/egrow-plants-04/wp-json/wp/v2/pages/255\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/egrow-plants-04/home/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-67211\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/egrow-plants-04/wp-json/wp/v2/pages/270\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/egrow-plants-04/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-67212\";a:12:{s:5:\"title\";s:10:\"My account\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/egrow-plants-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/egrow-plants-04/my-account/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-67213\";a:12:{s:5:\"title\";s:9:\"Our Story\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/egrow-plants-04/wp-json/wp/v2/pages/255\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/egrow-plants-04/home/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-67208\";a:12:{s:5:\"title\";s:4:\"Cart\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/egrow-plants-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/egrow-plants-04/cart/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-67209\";a:12:{s:5:\"title\";s:8:\"Checkout\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/egrow-plants-04/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/egrow-plants-04/checkout/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-67210\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/egrow-plants-04/wp-json/wp/v2/pages/261\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/egrow-plants-04/contact/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-67214\";a:12:{s:5:\"title\";s:4:\"Shop\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/egrow-plants-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/egrow-plants-04/shop/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-67222\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/egrow-plants-04/wp-json/wp/v2/pages/261\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/egrow-plants-04/contact/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-67223\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/egrow-plants-04/wp-json/wp/v2/pages/270\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/egrow-plants-04/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}s:8:\"id-67224\";a:12:{s:5:\"title\";s:9:\"Our Story\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/egrow-plants-04/wp-json/wp/v2/pages/255\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/egrow-plants-04/home/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-54361\";a:22:{s:5:\"title\";s:23:\"Wine Bar and Restaurant\";s:2:\"id\";i:54361;s:12:\"publish-date\";i:1621266421;s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/05/wine-and-bar-restaurant-03-home.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/05/wine-and-bar-restaurant-03-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/05/wine-and-bar-restaurant-03-home.jpg\";s:14:\"astra-site-url\";s:45:\"//websitedemos.net/wine-bar-and-restaurant-03\";s:20:\"astra-site-parent-id\";i:2026;s:15:\"astra-sites-tag\";a:12:{i:1980;s:3:\"bar\";i:2004;s:8:\"barbeque\";i:2007;s:19:\"barbeque-restaurant\";i:1988;s:10:\"beer-joint\";i:882;s:6:\"drinks\";i:1982;s:10:\"food-court\";i:350;s:5:\"hotel\";i:1983;s:3:\"pub\";i:335;s:10:\"restaurant\";i:2006;s:8:\"wine-bar\";i:2005;s:23:\"wine-bar-and-restaurant\";i:633;s:6:\"winery\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-54362\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/04/wine-bar-and-restaurant-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/04/wine-bar-and-restaurant-04-contact.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/wine-bar-and-restaurant-03/wp-json/wp/v2/pages/889\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/wine-bar-and-restaurant-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-54363\";a:12:{s:5:\"title\";s:6:\"Events\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/05/wine-bar-and-restaurant-04-events.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/05/wine-bar-and-restaurant-04-events.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/wine-bar-and-restaurant-03/wp-json/wp/v2/pages/887\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/wine-bar-and-restaurant-03/events/\";s:15:\"astra-sites-tag\";a:1:{i:1569;s:6:\"events\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-54364\";a:12:{s:5:\"title\";s:6:\"Grills\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/05/wine-and-bar-restaurant-03-grills.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/05/wine-and-bar-restaurant-03-grills.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/wine-bar-and-restaurant-03/wp-json/wp/v2/pages/883\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/wine-bar-and-restaurant-03/grills/\";s:15:\"astra-sites-tag\";a:2:{i:2027;s:6:\"grills\";i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-54365\";a:12:{s:5:\"title\";s:7:\"History\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/04/wine-bar-and-restaurant-04-history.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/04/wine-bar-and-restaurant-04-history.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/wine-bar-and-restaurant-03/wp-json/wp/v2/pages/881\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/wine-bar-and-restaurant-03/history/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:645;s:7:\"history\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-54366\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/05/wine-and-bar-restaurant-03-home.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/05/wine-and-bar-restaurant-03-home.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/wine-bar-and-restaurant-03/wp-json/wp/v2/pages/879\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/wine-bar-and-restaurant-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-54367\";a:12:{s:5:\"title\";s:5:\"Wines\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/05/wine-and-bar-restaurant-03-wines.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/05/wine-and-bar-restaurant-03-wines.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/wine-bar-and-restaurant-03/wp-json/wp/v2/pages/885\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/wine-bar-and-restaurant-03/wines/\";s:15:\"astra-sites-tag\";a:2:{i:565;s:4:\"menu\";i:1979;s:4:\"wine\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-58561\";a:22:{s:5:\"title\";s:16:\"Fashion Designer\";s:2:\"id\";i:58561;s:12:\"publish-date\";i:1634042866;s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08-600x2900.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08-400x1933.jpg\";s:14:\"astra-site-url\";s:47:\"//websitedemos.net/fashion-designer-boutique-08\";s:20:\"astra-site-parent-id\";i:2452;s:15:\"astra-sites-tag\";a:20:{i:2105;s:8:\"boutique\";i:2418;s:8:\"commerce\";i:2350;s:21:\"designer-cloths-store\";i:496;s:9:\"ecommerce\";i:2419;s:9:\"eshopping\";i:2327;s:16:\"fashion-designer\";i:2349;s:25:\"fashion-designer-boutique\";i:2351;s:26:\"fashion-designer-portfolio\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:444;s:9:\"portfolio\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-58562\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08-about-2.jpg\";s:19:\"thumbnail-image-url\";s:101:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08-about-2-600x1400.jpg\";s:18:\"astra-page-api-url\";s:78:\"https://websitedemos.net/fashion-designer-boutique-08/wp-json/wp/v2/pages/1009\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/fashion-designer-boutique-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-58564\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:103:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08-contact-1-600x1045.jpg\";s:18:\"astra-page-api-url\";s:78:\"https://websitedemos.net/fashion-designer-boutique-08/wp-json/wp/v2/pages/1015\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:56:\"//websitedemos.net/fashion-designer-boutique-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-58563\";a:12:{s:5:\"title\";s:10:\"Collection\";s:18:\"featured-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08-collection-1.jpg\";s:19:\"thumbnail-image-url\";s:106:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08-collection-1-600x2040.jpg\";s:18:\"astra-page-api-url\";s:78:\"https://websitedemos.net/fashion-designer-boutique-08/wp-json/wp/v2/pages/1011\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:59:\"//websitedemos.net/fashion-designer-boutique-08/collection/\";s:15:\"astra-sites-tag\";a:2:{i:596;s:10:\"collection\";i:2453;s:5:\"stock\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-58566\";a:12:{s:5:\"title\";s:12:\"New Arrivals\";s:18:\"featured-image-url\";s:99:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08-new-arrivals-1.jpg\";s:19:\"thumbnail-image-url\";s:108:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08-new-arrivals-1-600x2023.jpg\";s:18:\"astra-page-api-url\";s:78:\"https://websitedemos.net/fashion-designer-boutique-08/wp-json/wp/v2/pages/1013\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:61:\"//websitedemos.net/fashion-designer-boutique-08/new-arrivals/\";s:15:\"astra-sites-tag\";a:1:{i:2326;s:11:\"new-arrival\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-58565\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08-600x2900.jpg\";s:18:\"astra-page-api-url\";s:78:\"https://websitedemos.net/fashion-designer-boutique-08/wp-json/wp/v2/pages/1007\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/fashion-designer-boutique-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no');
INSERT INTO `wpjv_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (203,'astra-sites-and-pages-page-9','a:15:{s:8:\"id-22009\";a:22:{s:5:\"title\";s:17:\"LearnDash Academy\";s:2:\"id\";i:22009;s:12:\"publish-date\";i:1559573120;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/01/learndash-academy-02-home.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/01/learndash-academy-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/01/learndash-academy-02-home.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/learndash-academy-02\";s:20:\"astra-site-parent-id\";i:851;s:15:\"astra-sites-tag\";a:7:{i:462;s:7:\"courses\";i:469;s:7:\"ecourse\";i:468;s:9:\"elearning\";i:467;s:9:\"learndash\";i:460;s:8:\"learning\";i:466;s:14:\"online-courses\";i:975;s:15:\"online-learning\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:5:{i:2825;s:8:\"coaching\";i:2772;s:9:\"education\";i:2835;s:9:\"elearning\";i:2880;s:10:\"membership\";i:2827;s:13:\"online-course\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:8:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:2;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:3;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:4;a:3:{s:4:\"slug\";s:21:\"learndash-woocommerce\";s:4:\"init\";s:47:\"learndash-woocommerce/learndash_woocommerce.php\";s:4:\"name\";s:39:\"LearnDash LMS - WooCommerce Integration\";}i:5;a:3:{s:4:\"slug\";s:9:\"cartflows\";s:4:\"init\";s:23:\"cartflows/cartflows.php\";s:4:\"name\";s:9:\"CartFlows\";}i:6;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:7;a:3:{s:4:\"slug\";s:13:\"presto-player\";s:4:\"init\";s:31:\"presto-player/presto-player.php\";s:4:\"name\";s:13:\"Presto Player\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1004:\"<!-- wp:paragraph -->\n<p>Want to create an online course platform using the most popular WordPress LMS plugin, LearnDash? Our LearnDash Academy website template is just what you need. Coupled with the LearnDash plugin, you can create a course from scratch or use one of our professionally pre-built templates to start quickly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The LearnDash Academy template has everything you need to build your online academy website and start delivering online courses, quizzes, certificates, and more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the LearnDash Academy template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Professionally designed online course platform</li><li>Well integrated with the LearnDash WordPress plugin</li><li>Offer courses, quizzes, training, certificates, and more</li><li>Offer free and paid online courses</li><li>Fully customizable and compatible with popular page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:87:\"The perfect LMS platform to manage all your online courses, training, quizzes, and more\";s:5:\"pages\";a:4:{s:8:\"id-42985\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/01/learndash-academy-02-home.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/01/learndash-academy-02-home.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/learndash-academy-02/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/learndash-academy-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-42984\";a:12:{s:5:\"title\";s:11:\"All Courses\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/01/learndash-academy-02-courses.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/01/learndash-academy-02-courses.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/learndash-academy-02/wp-json/wp/v2/pages/201\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/learndash-academy-02/all-courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-31168\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/learndash-academy-02-about.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/learndash-academy-02-about.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/learndash-academy-02/wp-json/wp/v2/pages/158\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/learndash-academy-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-31169\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/01/learndash-academy-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/01/learndash-academy-02-contact.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/learndash-academy-02/wp-json/wp/v2/pages/401\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/learndash-academy-02/contact/\";s:15:\"astra-sites-tag\";a:3:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:22110;s:26:\"related-elementor-template\";i:22009;s:26:\"related-gutenberg-template\";i:47984;}s:8:\"id-69823\";a:22:{s:5:\"title\";s:15:\"Wildlife Safari\";s:2:\"id\";i:69823;s:12:\"publish-date\";i:1668447761;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/11/wildlife-safari-04.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/11/wildlife-safari-04-600x3453.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/11/wildlife-safari-04-400x2302.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/wildlife-safari-04\";s:20:\"astra-site-parent-id\";i:2957;s:15:\"astra-sites-tag\";a:15:{i:544;s:9:\"adventure\";i:1931;s:7:\"animals\";i:2979;s:9:\"awareness\";i:2976;s:12:\"conservation\";i:2971;s:8:\"elephant\";i:2974;s:5:\"kenya\";i:2970;s:6:\"lion-2\";i:2973;s:4:\"love\";i:2975;s:8:\"natgeo-2\";i:2978;s:10:\"natgeowild\";i:535;s:6:\"nature\";i:2977;s:12:\"naturelovers\";i:2968;s:8:\"safari-2\";i:2972;s:6:\"wild-2\";i:2969;s:10:\"wildlife-2\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:3:{i:2830;s:6:\"nature\";i:2809;s:10:\"pet-animal\";i:2775;s:14:\"travel-tourism\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2472;s:4:\"pets\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1255:\"<!-- wp:paragraph -->\n<p>The Wildlife Safari template makes an instant impact with its strong headline and header image. It unfolds to more strong imagery and contrasting white fonts on a dark background. It’s a very attractive design that grabs and then keeps your attention.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The rest of the Wildlife Safari template uses imagery and fonts very well. There are options to sell experiences or safari holidays, pages to highlight products and offers and the background to popular destinations. Everything can be fully customized too!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Wildlife Safari template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Striking Wildlife Safari template</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Dark design with contrasting colors makes an impact</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Uses imagery to help engagement very effectively</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Optional page elements can be added anywhere</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:72:\"Striking Wildlife Safari template with dark design and lots of potential\";s:5:\"pages\";a:5:{s:8:\"id-69824\";a:12:{s:5:\"title\";s:8:\"About us\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/11/wildlife-safari-04-about-us.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/11/wildlife-safari-04-about-us-600x2294.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/wildlife-safari-04/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/wildlife-safari-04/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-69825\";a:12:{s:5:\"title\";s:9:\"Awareness\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/11/wildlife-safari-04-awareness.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/11/wildlife-safari-04-awareness-600x2134.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/wildlife-safari-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/wildlife-safari-04/awareness/\";s:15:\"astra-sites-tag\";a:1:{i:2979;s:9:\"awareness\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-69826\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/11/wildlife-safari-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/11/wildlife-safari-04-contact-600x954.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/wildlife-safari-04/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/wildlife-safari-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69827\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/11/wildlife-safari-04.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/11/wildlife-safari-04-600x3453.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/wildlife-safari-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/wildlife-safari-04/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-69828\";a:12:{s:5:\"title\";s:7:\"Safaris\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/11/wildlife-safari-04-safaris.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/11/wildlife-safari-04-safaris-600x1546.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/wildlife-safari-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/wildlife-safari-04/safaris/\";s:15:\"astra-sites-tag\";a:1:{i:2980;s:7:\"safaris\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-57365\";a:22:{s:5:\"title\";s:22:\"Office Furniture Store\";s:2:\"id\";i:57365;s:12:\"publish-date\";i:1629979669;s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/08/office-furniture-store-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/08/office-furniture-store-04-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/08/office-furniture-store-04-homepage.jpg\";s:14:\"astra-site-url\";s:44:\"//websitedemos.net/office-furniture-store-04\";s:20:\"astra-site-parent-id\";i:2331;s:15:\"astra-sites-tag\";a:19:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2419;s:9:\"eshopping\";i:524;s:9:\"furniture\";i:856;s:15:\"furniture-store\";i:2359;s:20:\"home-furniture-store\";i:2358;s:22:\"office-furniture-store\";i:2357;s:22:\"online-furniture-store\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";i:2356;s:14:\"work-from-home\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:5:{i:2777;s:8:\"business\";i:2769;s:9:\"ecommerce\";i:2879;s:9:\"furniture\";i:2793;s:15:\"interior-design\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:7:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:5;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:6;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1259:\"<!-- wp:paragraph -->\n<p>Office Furniture Store is a WooCommerce-ready website template that’ll help you create an online store for selling office furniture. It features an elegant and impressive design with a modern look and feel, and a user-friendly checkout process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Include your entire range of quality office furniture products, such as desks, chairs, storage units, and more. The individual product pages allow you to accept customer reviews and show related products.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Office Furniture Store template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Elegantly designed and WooCommerce-ready website template</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Impressive layout allows you to promote products clutter-free</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Showcase products based on new arrivals and featured collections</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fully customizable and flexible template</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Compatible with leading WordPress page builder plugins</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:85:\"A perfect website template for those looking to start their own online furniture shop\";s:5:\"pages\";a:5:{s:8:\"id-57366\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/08/office-furniture-store-04-about.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/08/office-furniture-store-04-about.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/office-furniture-store-04/wp-json/wp/v2/pages/433\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/office-furniture-store-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57367\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/08/office-furniture-store-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/08/office-furniture-store-04-contact.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/office-furniture-store-04/wp-json/wp/v2/pages/554\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/office-furniture-store-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-57368\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/08/office-furniture-store-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/08/office-furniture-store-04-homepage.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/office-furniture-store-04/wp-json/wp/v2/pages/27\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/office-furniture-store-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57369\";a:12:{s:5:\"title\";s:18:\"Home Office Setups\";s:18:\"featured-image-url\";s:100:\"https://websitedemos.net/wp-content/uploads/2021/08/office-furniture-store-04-home-office-setups.jpg\";s:19:\"thumbnail-image-url\";s:100:\"https://websitedemos.net/wp-content/uploads/2021/08/office-furniture-store-04-home-office-setups.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/office-furniture-store-04/wp-json/wp/v2/pages/735\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:64:\"//websitedemos.net/office-furniture-store-04/home-office-setups/\";s:15:\"astra-sites-tag\";a:3:{i:2333;s:10:\"home-setup\";i:812;s:6:\"office\";i:2332;s:12:\"office-setup\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57370\";a:12:{s:5:\"title\";s:13:\"Office Setups\";s:18:\"featured-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2021/08/office-furniture-store-04-office-setups.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2021/08/office-furniture-store-04-office-setups.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/office-furniture-store-04/wp-json/wp/v2/pages/621\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:59:\"//websitedemos.net/office-furniture-store-04/office-setups/\";s:15:\"astra-sites-tag\";a:1:{i:2332;s:12:\"office-setup\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-22110\";a:22:{s:5:\"title\";s:17:\"Learndash Academy\";s:2:\"id\";i:22110;s:12:\"publish-date\";i:1561291642;s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/10/learndash-academy-01-home-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/10/learndash-academy-01-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/10/learndash-academy-01-home-1.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/learndash-academy-01\";s:20:\"astra-site-parent-id\";i:885;s:15:\"astra-sites-tag\";a:6:{i:462;s:7:\"courses\";i:468;s:9:\"elearning\";i:467;s:9:\"learndash\";i:460;s:8:\"learning\";i:466;s:14:\"online-courses\";i:975;s:15:\"online-learning\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:9:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:9:\"cartflows\";s:4:\"init\";s:23:\"cartflows/cartflows.php\";s:4:\"name\";s:9:\"CartFlows\";}i:2;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:3;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:4;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:5;a:3:{s:4:\"slug\";s:21:\"learndash-woocommerce\";s:4:\"init\";s:47:\"learndash-woocommerce/learndash_woocommerce.php\";s:4:\"name\";s:39:\"LearnDash LMS - WooCommerce Integration\";}i:6;a:3:{s:4:\"slug\";s:13:\"presto-player\";s:4:\"init\";s:31:\"presto-player/presto-player.php\";s:4:\"name\";s:13:\"Presto Player\";}i:7;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:8;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-34127\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/10/learndash-academy-01-home-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/10/learndash-academy-01-home-1.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/learndash-academy-01/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/learndash-academy-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-34126\";a:12:{s:5:\"title\";s:11:\"All Courses\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/10/learndash-academy-01-courses.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/10/learndash-academy-01-courses.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/learndash-academy-01/wp-json/wp/v2/pages/201\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/learndash-academy-01/all-courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-31832\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/10/learndash-academy-01-about.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/10/learndash-academy-01-about.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/learndash-academy-01/wp-json/wp/v2/pages/158\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/learndash-academy-01/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-31833\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/10/learndash-academy-01-contact.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/10/learndash-academy-01-contact.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/learndash-academy-01/wp-json/wp/v2/pages/401\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/learndash-academy-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47984\";a:22:{s:5:\"title\";s:17:\"LearnDash Academy\";s:2:\"id\";i:47984;s:12:\"publish-date\";i:1603828903;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/learndash-academy-08.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/learndash-academy-08-600x1847.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/learndash-academy-08-400x1231.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/learndash-academy-08\";s:20:\"astra-site-parent-id\";i:1691;s:15:\"astra-sites-tag\";a:5:{i:462;s:7:\"courses\";i:468;s:9:\"elearning\";i:467;s:9:\"learndash\";i:460;s:8:\"learning\";i:466;s:14:\"online-courses\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:2;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:3;a:3:{s:4:\"slug\";s:13:\"presto-player\";s:4:\"init\";s:31:\"presto-player/presto-player.php\";s:4:\"name\";s:13:\"Presto Player\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-47988\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/learndash-academy-08.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/learndash-academy-08-600x1847.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/learndash-academy-08/wp-json/wp/v2/pages/25407\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/learndash-academy-08/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47986\";a:12:{s:5:\"title\";s:11:\"All Courses\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/learndash-academy-08-all-courses.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2020/10/learndash-academy-08-all-courses-600x966.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/learndash-academy-08/wp-json/wp/v2/pages/25403\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/learndash-academy-08/all-courses/\";s:15:\"astra-sites-tag\";a:2:{i:1692;s:11:\"all-courses\";i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47985\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/learndash-academy-08-about-2.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/learndash-academy-08-about-2-600x1582.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/learndash-academy-08/wp-json/wp/v2/pages/25401\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/learndash-academy-08/about/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47987\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/learndash-academy-08-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/learndash-academy-08-contact-2-600x1274.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/learndash-academy-08/wp-json/wp/v2/pages/25405\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/learndash-academy-08/contact/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-73540\";a:22:{s:5:\"title\";s:35:\"Adham Hoffman &#8211; UI/X Designer\";s:2:\"id\";i:73540;s:12:\"publish-date\";i:1681832261;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2023/04/adham-hoffman-designer.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/04/adham-hoffman-designer-600x900.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/04/adham-hoffman-designer-400x600.jpg\";s:14:\"astra-site-url\";s:48:\"//websitedemos.net/adham-hoffman-designer-bio-02\";s:20:\"astra-site-parent-id\";i:3188;s:15:\"astra-sites-tag\";a:17:{i:2924;s:3:\"bio\";i:2150;s:2:\"cv\";i:670;s:8:\"designer\";i:2297;s:18:\"designer-portfolio\";i:3173;s:11:\"link-in-bio\";i:3185;s:6:\"linkin\";i:3187;s:5:\"links\";i:3186;s:8:\"linktree\";i:3124;s:18:\"personal-portfolio\";i:444;s:9:\"portfolio\";i:2153;s:6:\"resume\";i:2212;s:12:\"social-media\";i:2163;s:23:\"social-media-influencer\";i:3012;s:11:\"socialmedia\";i:3014;s:4:\"uiux\";i:3045;s:12:\"uiuxcreative\";i:3044;s:10:\"uiuxdesign\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:1:{i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:3171;s:11:\"link-in-bio\";i:2770;s:8:\"personal\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:3:{i:3191;s:11:\"link-in-bio\";i:2927;s:8:\"one-page\";i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1167:\"<!-- wp:paragraph -->\n<p>The Designer Link in Bio template is a landing page with all your essential links front and center. It’s ideal for designers and developers who want to place everything in front of the visitor all at once.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design is dark, modern, and engaging and can be fully customized to fit any niche. It’s easy to personalize and provides a center section for links that you can add, remove or change as you see fit. It works on any screen size too!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Designer Link in Bio Template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Attractive dark link in bio template</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Can be fully customized</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Includes everything a link in bio page requires</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fast, fully responsive, and loads quickly</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:77:\"Dark Designer Link in Bio template ideal for promoting yourself and your work\";s:5:\"pages\";a:1:{s:8:\"id-73541\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/04/adham-hoffman-designer-bio-02.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2023/04/adham-hoffman-designer-bio-02-600x347.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/adham-hoffman-designer-bio-02/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/adham-hoffman-designer-bio-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47729\";a:22:{s:5:\"title\";s:19:\"Online Health Coach\";s:2:\"id\";i:47729;s:12:\"publish-date\";i:1602768883;s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-coach-02-home.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-coach-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-coach-02-home.jpg\";s:14:\"astra-site-url\";s:41:\"//websitedemos.net/online-health-coach-02\";s:20:\"astra-site-parent-id\";i:1670;s:15:\"astra-sites-tag\";a:8:{i:462;s:7:\"courses\";i:469;s:7:\"ecourse\";i:468;s:9:\"elearning\";i:518;s:12:\"health-coach\";i:467;s:9:\"learndash\";i:460;s:8:\"learning\";i:466;s:14:\"online-courses\";i:975;s:15:\"online-learning\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:6:{i:2825;s:8:\"coaching\";i:2835;s:9:\"elearning\";i:2875;s:12:\"health-coach\";i:2834;s:10:\"healthcare\";i:2880;s:10:\"membership\";i:2827;s:13:\"online-course\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2494;s:9:\"elearning\";i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:2;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:13:\"presto-player\";s:4:\"init\";s:31:\"presto-player/presto-player.php\";s:4:\"name\";s:13:\"Presto Player\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1278:\"<!-- wp:paragraph -->\n<p>Are you a health coach? Want to offer coaching online? Our Online Health Coach website template helps you get started today. The template has all the tools and features you need to start a full-fledged coaching business.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can create and manage courses easily thanks to the seamless integration with WordPress LMS plugins. The template allows you to include details of the trainers, student testimonials and build an email list through a newsletter subscription form.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Online Health Coach template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Clean and simple design that comes with everything you need to build a coaching business</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Seamlessly integrates with popular WordPress LMS plugins</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Create courses from scratch and manage them easily through your dashboard</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Customize just about everything</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Gutenberg and page builder ready</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:80:\"Perfect solution for people who want to start an online health coaching business\";s:5:\"pages\";a:4:{s:8:\"id-47733\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-coach-02-home.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-coach-02-home.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/online-health-coach-02/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/online-health-coach-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47731\";a:12:{s:5:\"title\";s:11:\"All Courses\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-coach-02-courses.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-coach-02-courses.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/online-health-coach-02/wp-json/wp/v2/pages/24254\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/online-health-coach-02/all-courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47730\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-coach-02-about.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-coach-02-about.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/online-health-coach-02/wp-json/wp/v2/pages/104\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/online-health-coach-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47732\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-coach-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-coach-02-contact.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/online-health-coach-02/wp-json/wp/v2/pages/105\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/online-health-coach-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-49457\";a:22:{s:5:\"title\";s:11:\"Coffee Shop\";s:2:\"id\";i:49457;s:12:\"publish-date\";i:1608767094;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/12/coffee-shop-04.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/12/coffee-shop-04.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/12/coffee-shop-04.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/coffee-shop-04\";s:20:\"astra-site-parent-id\";i:1843;s:15:\"astra-sites-tag\";a:9:{i:693;s:4:\"cafe\";i:2042;s:8:\"cafe-bar\";i:1527;s:9:\"cafeteria\";i:2043;s:12:\"coffee-house\";i:1575;s:11:\"coffee-shop\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:335;s:10:\"restaurant\";i:2041;s:9:\"snack-bar\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2785;s:4:\"food\";i:2776;s:10:\"restaurant\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1000:\"<!-- wp:paragraph -->\n<p>Whether you are building a coffee shop website from scratch or revamping an existing one, our Coffee Shop template is precisely what you need. From the colors to the layout, every element of the template is going to recreate the experience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Include the menu, photos, and showcase some of your best drinks on the homepage. With deep WooCommerce integration, you can even sell products such as coffee beans, coffee powders, and more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Coffee Shop template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Minimalistic yet highly creative coffee shop website template</li><li>Showcase your best drink and coffee-related products on the homepage</li><li>Sell your coffee-related products online</li><li>Fully customizable and mobile-friendly template</li><li>SEO-friendly template, allowing you to be found on search engines</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"A creatively designed website template for recreating your coffee shop experience\";s:5:\"pages\";a:5:{s:8:\"id-49461\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/12/coffee-shop-04.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/12/coffee-shop-04.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/coffee-shop-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/coffee-shop-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49462\";a:12:{s:5:\"title\";s:8:\"Our Menu\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/12/coffee-shop-04-our-menu.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/12/coffee-shop-04-our-menu.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/coffee-shop-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/coffee-shop-04/our-menu/\";s:15:\"astra-sites-tag\";a:3:{i:1579;s:9:\"food-menu\";i:565;s:4:\"menu\";i:1578;s:8:\"our-menu\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49458\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/12/coffee-shop-04-about.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/12/coffee-shop-04-about.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/coffee-shop-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/coffee-shop-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49460\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/12/coffee-shop-04-gallery.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/12/coffee-shop-04-gallery.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/coffee-shop-04/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/coffee-shop-04/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49459\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/12/coffee-shop-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/12/coffee-shop-04-contact.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/coffee-shop-04/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/coffee-shop-04/contact/\";s:15:\"astra-sites-tag\";a:4:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";i:896;s:13:\"get-connected\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48741\";a:22:{s:5:\"title\";s:19:\"Online Health Coach\";s:2:\"id\";i:48741;s:12:\"publish-date\";i:1605548885;s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/11/online-health-coach-01-home-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/11/online-health-coach-01-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/11/online-health-coach-01-home-1.jpg\";s:14:\"astra-site-url\";s:41:\"//websitedemos.net/online-health-coach-01\";s:20:\"astra-site-parent-id\";i:1766;s:15:\"astra-sites-tag\";a:8:{i:462;s:7:\"courses\";i:469;s:7:\"ecourse\";i:468;s:9:\"elearning\";i:518;s:12:\"health-coach\";i:467;s:9:\"learndash\";i:460;s:8:\"learning\";i:466;s:14:\"online-courses\";i:975;s:15:\"online-learning\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:2:{i:2494;s:9:\"elearning\";i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:2;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:3;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:4;a:3:{s:4:\"slug\";s:13:\"presto-player\";s:4:\"init\";s:31:\"presto-player/presto-player.php\";s:4:\"name\";s:13:\"Presto Player\";}i:5;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-48742\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/11/online-health-coach-01-about-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/11/online-health-coach-01-about-1.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/online-health-coach-01/wp-json/wp/v2/pages/24369\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/online-health-coach-01/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-48743\";a:12:{s:5:\"title\";s:11:\"All Courses\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/11/online-health-coach-01-courses-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/11/online-health-coach-01-courses-1.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/online-health-coach-01/wp-json/wp/v2/pages/24366\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/online-health-coach-01/all-courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-48744\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/11/online-health-coach-01-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/11/online-health-coach-01-contact-1.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/online-health-coach-01/wp-json/wp/v2/pages/24370\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/online-health-coach-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48745\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/11/online-health-coach-01-home-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/11/online-health-coach-01-home-1.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/online-health-coach-01/wp-json/wp/v2/pages/24365\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/online-health-coach-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47932\";a:22:{s:5:\"title\";s:19:\"Online Health Coach\";s:2:\"id\";i:47932;s:12:\"publish-date\";i:1603823106;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-08-600x1990.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-08-400x1327.jpg\";s:14:\"astra-site-url\";s:41:\"//websitedemos.net/online-health-coach-08\";s:20:\"astra-site-parent-id\";i:1684;s:15:\"astra-sites-tag\";a:8:{i:462;s:7:\"courses\";i:469;s:7:\"ecourse\";i:468;s:9:\"elearning\";i:518;s:12:\"health-coach\";i:467;s:9:\"learndash\";i:460;s:8:\"learning\";i:466;s:14:\"online-courses\";i:975;s:15:\"online-learning\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:2;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:3;a:3:{s:4:\"slug\";s:13:\"presto-player\";s:4:\"init\";s:31:\"presto-player/presto-player.php\";s:4:\"name\";s:13:\"Presto Player\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-47941\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-08-600x1990.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/online-health-coach-08/wp-json/wp/v2/pages/24365\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/online-health-coach-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47939\";a:12:{s:5:\"title\";s:11:\"All Courses\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-08-courses.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-08-courses-600x954.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/online-health-coach-08/wp-json/wp/v2/pages/24366\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/online-health-coach-08/all-courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47938\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-08-about.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-08-about-600x1541.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/online-health-coach-08/wp-json/wp/v2/pages/24368\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/online-health-coach-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47940\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-08-contact-600x734.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/online-health-coach-08/wp-json/wp/v2/pages/24369\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/online-health-coach-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-51320\";a:22:{s:5:\"title\";s:15:\"Criminal Lawyer\";s:2:\"id\";i:51320;s:12:\"publish-date\";i:1616782626;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/03/criminal-lawyer-04-home.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/03/criminal-lawyer-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/03/criminal-lawyer-04-home.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/criminal-lawyer-04\";s:20:\"astra-site-parent-id\";i:1862;s:15:\"astra-sites-tag\";a:4:{i:1873;s:24:\"criminal-defence-lawyers\";i:1874;s:16:\"criminal-lawyers\";i:1870;s:11:\"lawyer-firm\";i:1868;s:7:\"lawyers\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2824;s:8:\"law-firm\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2482;s:3:\"law\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1089:\"<!-- wp:paragraph -->\n<p>Criminal law is a serious and highly specialized area of law. Our Criminal Lawyer Template is a responsive design that can be used for law firms and takes you through the process of designing a website for a criminal lawyer from start to finish.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>From choosing an elegant, professional design to strategically implementing your practice areas, we’ve got you covered. You can even include clients\' reviews so potential clients can see how others feel about your services!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Criminal Lawyer template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Classy and elegant design, tailor-made for a lawyer’s website</li><li>Template includes CTA buttons such as free consultation and contact us today</li><li>Showcase your practice areas and the team of lawyers</li><li>Include client reviews and media clippings to build trust and authority</li><li>Fully customizable and can be tweaked for any practicing lawyers</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:82:\"Perfect solution for a criminal lawyer looking for an elegant professional website\";s:5:\"pages\";a:6:{s:8:\"id-51321\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/criminal-lawyer-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/criminal-lawyer-04-contact.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/criminal-lawyer-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/criminal-lawyer-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-51322\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/03/criminal-lawyer-04-faq.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/03/criminal-lawyer-04-faq.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/criminal-lawyer-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/criminal-lawyer-04/faq/\";s:15:\"astra-sites-tag\";a:2:{i:426;s:3:\"faq\";i:1476;s:26:\"frequently-asked-questions\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51323\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/03/criminal-lawyer-04-home.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/03/criminal-lawyer-04-home.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/criminal-lawyer-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/criminal-lawyer-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51324\";a:12:{s:5:\"title\";s:11:\"Our Lawyers\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/03/criminal-lawyer-04-our-lawyers.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/03/criminal-lawyer-04-our-lawyers.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/criminal-lawyer-04/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/criminal-lawyer-04/our-lawyers/\";s:15:\"astra-sites-tag\";a:3:{i:912;s:9:\"attorneys\";i:1868;s:7:\"lawyers\";i:486;s:4:\"team\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51325\";a:12:{s:5:\"title\";s:14:\"Practice Areas\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/03/criminal-lawyer-04-practoce-areas.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/03/criminal-lawyer-04-practoce-areas.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/criminal-lawyer-04/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/criminal-lawyer-04/practice-areas/\";s:15:\"astra-sites-tag\";a:2:{i:1863;s:14:\"practice-areas\";i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51326\";a:12:{s:5:\"title\";s:7:\"Reviews\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/criminal-lawyer-04-reviews.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/criminal-lawyer-04-reviews.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/criminal-lawyer-04/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/criminal-lawyer-04/reviews/\";s:15:\"astra-sites-tag\";a:2:{i:1615;s:7:\"reviews\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55769\";a:22:{s:5:\"title\";s:14:\"Marketing Firm\";s:2:\"id\";i:55769;s:12:\"publish-date\";i:1624377112;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/06/marketing-firm-04-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/06/marketing-firm-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/06/marketing-firm-04-home.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/marketing-firm-04\";s:20:\"astra-site-parent-id\";i:2207;s:15:\"astra-sites-tag\";a:12:{i:1587;s:18:\"advertising-agency\";i:2232;s:19:\"advertising-company\";i:2229;s:16:\"advertising-firm\";i:663;s:6:\"agency\";i:979;s:7:\"company\";i:1588;s:16:\"marketing-agency\";i:2233;s:17:\"marketing-company\";i:2228;s:14:\"marketing-firm\";i:2230;s:12:\"press-agency\";i:2227;s:14:\"promotion-firm\";i:2231;s:14:\"publicity-firm\";i:2234;s:18:\"publicity-services\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2812;s:14:\"digital-agency\";i:2796;s:17:\"digital-marketing\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1010:\"<!-- wp:paragraph -->\n<p>Are you a marketing agency looking to rebrand your business? Want a creative website design to complement the services you offer? If so, the Marketing Firm web template is just right for you. With a professionally designed layout, our marketing firm templates make it easy for you to stand out.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>An impressive hero section allows you to promote your best service upfront. The homepage is beautifully designed to showcase your services, client reviews, and more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Marketing Firm template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Creative website design template for your marketing firm</li><li>Impressive background effects</li><li>Showcase your services, awards, certifications, and client reviews on the homepage</li><li>Fully customizable and responsive layout&nbsp;</li><li>Templates look great across all mobile devices</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"An impressive website design that will give your marketing firm the perfect branding\";s:5:\"pages\";a:6:{s:8:\"id-55771\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/06/marketing-firm-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/06/marketing-firm-04-contact.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/marketing-firm-04/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/marketing-firm-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55770\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/06/marketing-firm-04-about.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/06/marketing-firm-04-about.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/marketing-firm-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/marketing-firm-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55773\";a:12:{s:5:\"title\";s:7:\"Reviews\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/06/marketing-firm-04-reviews.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/06/marketing-firm-04-reviews.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/marketing-firm-04/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/marketing-firm-04/reviews/\";s:15:\"astra-sites-tag\";a:2:{i:432;s:6:\"review\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55772\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/06/marketing-firm-04-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/06/marketing-firm-04-home.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/marketing-firm-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/marketing-firm-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55774\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/06/marketing-firm-04-services.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/06/marketing-firm-04-services.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/marketing-firm-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/marketing-firm-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55912\";a:12:{s:5:\"title\";s:4:\"Work\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/06/marketing-firm-04-work.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/06/marketing-firm-04-work.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/marketing-firm-04/wp-json/wp/v2/pages/689\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/marketing-firm-04/work/\";s:15:\"astra-sites-tag\";a:2:{i:444;s:9:\"portfolio\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-53702\";a:22:{s:5:\"title\";s:20:\"Fast Food Restaurant\";s:2:\"id\";i:53702;s:12:\"publish-date\";i:1620420634;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/fast-food-02-home.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/fast-food-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/fast-food-02-home.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/fast-food-04\";s:20:\"astra-site-parent-id\";i:1990;s:15:\"astra-sites-tag\";a:7:{i:1996;s:6:\"burger\";i:2011;s:15:\"fast-food-chain\";i:2013;s:20:\"fast-food-restaurant\";i:350;s:5:\"hotel\";i:335;s:10:\"restaurant\";i:2020;s:16:\"restaurant-chain\";i:1993;s:10:\"snack-food\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2785;s:4:\"food\";i:2876;s:13:\"food-ordering\";i:2776;s:10:\"restaurant\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1041:\"<!-- wp:paragraph -->\n<p>Do you own a takeaway joint or an international fast-food chain franchise? Want to take it online? If so, you should consider our Fast Food Restaurant template. With an impressive design layout and opportune use of images, customers are sure to connect with you instantaneously.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>From an online ordering system, menus, deals and offers to customer reviews, outlet details, and more, the template includes everything you need to offer your customers and build an excellent fast food restaurant website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Fast Food Restaurant template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Vibrant and creative design</li><li>Impressive use of images with overlay text and call-to-action buttons</li><li>Parallax background effects to enhance user engagement</li><li>WooCommerce-ready allowing you to sell online</li><li>100% customizable and responsive website template</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:78:\"Create equally mouth-watering websites using our Fast Food Restaurant template\";s:5:\"pages\";a:6:{s:8:\"id-53705\";a:12:{s:5:\"title\";s:10:\"Franchisee\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/fast-food-02-franchisee.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/fast-food-02-franchisee.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/fast-food-04/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/fast-food-04/franchisee/\";s:15:\"astra-sites-tag\";a:1:{i:1991;s:10:\"franchisee\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-53707\";a:12:{s:5:\"title\";s:6:\"Offers\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/fast-food-02-offers.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/fast-food-02-offers.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/fast-food-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/fast-food-04/offers/\";s:15:\"astra-sites-tag\";a:1:{i:1969;s:6:\"offers\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-53703\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/fast-food-02-about.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/fast-food-02-about.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/fast-food-04/wp-json/wp/v2/pages/20\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/fast-food-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-53704\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/fast-food-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/fast-food-02-contact.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/fast-food-04/wp-json/wp/v2/pages/27\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/fast-food-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-53706\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/fast-food-02-home.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/fast-food-02-home.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/fast-food-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/fast-food-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-53708\";a:12:{s:5:\"title\";s:8:\"Our Menu\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/fast-food-02-our-menu.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/fast-food-02-our-menu.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/fast-food-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/fast-food-04/our-menu/\";s:15:\"astra-sites-tag\";a:1:{i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59264\";a:22:{s:5:\"title\";s:18:\"Personal Portfolio\";s:2:\"id\";i:59264;s:12:\"publish-date\";i:1644408071;s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-02-home.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-02-home.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/personal-portfolio-02\";s:20:\"astra-site-parent-id\";i:2587;s:15:\"astra-sites-tag\";a:6:{i:2151;s:16:\"curriculum-vitae\";i:2150;s:2:\"cv\";i:1903;s:16:\"personal-website\";i:444;s:9:\"portfolio\";i:2153;s:6:\"resume\";i:2152;s:12:\"work-profile\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:1:{i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2810;s:9:\"freelance\";i:2768;s:9:\"portfolio\";i:2783;s:6:\"resume\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1004:\"<!-- wp:paragraph -->\n<p>The Personal Portfolio template has been designed to showcase you and your services without going over the top. The homepage image sets the scene and the use of serif fonts and calm colors inspire confidence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes lots of options to tell your story, add examples of work, testimonials, images, video and other content. There’s also a readymade portfolio page to help you promote your work.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Personal Portfolio template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Simple and attractive portfolio web template</li><li>Header image and headline make an instant connection</li><li>Pastel colors and serif fonts help inspire confidence</li><li>Lots of options to promote yourself and your work</li><li>Readymade portfolio and contact pages</li><li>Fully compatible with popular drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:89:\"Attractive portfolio template that’s ideal for showcasing personal or professional work\";s:5:\"pages\";a:4:{s:8:\"id-59265\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-02-about-.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-02-about-.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/personal-portfolio-02/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/personal-portfolio-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-59266\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-02-contact.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/personal-portfolio-02/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/personal-portfolio-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59267\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-02-home.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-02-home.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/personal-portfolio-02/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/personal-portfolio-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-59268\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-02-portfolio.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-02-portfolio.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/personal-portfolio-02/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/personal-portfolio-02/portfolio/\";s:15:\"astra-sites-tag\";a:1:{i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71221\";a:22:{s:5:\"title\";s:17:\"Flavio Restaurant\";s:2:\"id\";i:71221;s:12:\"publish-date\";i:1672840358;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/01/flavio-restaurant-04.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/01/flavio-restaurant-04-600x2452.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/01/flavio-restaurant-04-400x1634.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/flavio-restaurant-04\";s:20:\"astra-site-parent-id\";i:3068;s:15:\"astra-sites-tag\";a:8:{i:3070;s:25:\"delicious-food-restaurant\";i:561;s:6:\"eatery\";i:336;s:4:\"food\";i:2067;s:19:\"food-and-restaurant\";i:1579;s:9:\"food-menu\";i:559;s:6:\"outlet\";i:335;s:10:\"restaurant\";i:970;s:6:\"restro\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2785;s:4:\"food\";i:2876;s:13:\"food-ordering\";i:2776;s:10:\"restaurant\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1210:\"<!-- wp:paragraph -->\n<p>The Flavio Restaurant website template is a modern fullscreen design with a mixture of modern and handwritten fonts and beautiful images of food throughout. It’s an engaging design with lots of color and imagery to catch the eye.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Flavio Restaurant design has an attractive menu section with dedicated pages, a built in reservation element, attractive contact form with map and the social media elements you expect from a restaurant website. Everything can be fully customized to suit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Flavio Restaurant template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Modern fullscreen Flavio Restaurant template</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lots of color and attractive typography</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Engaging images of food throughout</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Menu section and dedicated page</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:69:\"Bright and colorful design ideal for contemporary restaurant websites\";s:5:\"pages\";a:4:{s:8:\"id-71222\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/01/flavio-restaurant-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2023/01/flavio-restaurant-04-contact-600x943.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/flavio-restaurant-04/wp-json/wp/v2/pages/100\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/flavio-restaurant-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71223\";a:12:{s:5:\"title\";s:7:\"History\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/01/flavio-restaurant-04-history.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2023/01/flavio-restaurant-04-history-600x2110.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/flavio-restaurant-04/wp-json/wp/v2/pages/105\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/flavio-restaurant-04/history/\";s:15:\"astra-sites-tag\";a:1:{i:645;s:7:\"history\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71224\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/01/flavio-restaurant-04.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/01/flavio-restaurant-04-600x2452.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/flavio-restaurant-04/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/flavio-restaurant-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71225\";a:12:{s:5:\"title\";s:8:\"Our Menu\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/01/flavio-restaurant-04-our-menu.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2023/01/flavio-restaurant-04-our-menu-600x1444.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/flavio-restaurant-04/wp-json/wp/v2/pages/107\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/flavio-restaurant-04/our-menu/\";s:15:\"astra-sites-tag\";a:1:{i:1578;s:8:\"our-menu\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(204,'astra-sites-and-pages-page-10','a:15:{s:8:\"id-59063\";a:22:{s:5:\"title\";s:26:\"Heating And A/C Technician\";s:2:\"id\";i:59063;s:12:\"publish-date\";i:1643645899;s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2022/01/heating-and-ac-technician-02-home.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2022/01/heating-and-ac-technician-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2022/01/heating-and-ac-technician-02-home.jpg\";s:14:\"astra-site-url\";s:47:\"//websitedemos.net/heating-and-ac-technician-02\";s:20:\"astra-site-parent-id\";i:2571;s:15:\"astra-sites-tag\";a:7:{i:599;s:9:\"ac-repair\";i:2573;s:24:\"air-conditioning-service\";i:439;s:14:\"local-services\";i:2572;s:12:\"manufacturer\";i:2094;s:8:\"mechanic\";i:600;s:15:\"repair-services\";i:441;s:10:\"technician\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:1:{i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1004:\"<!-- wp:paragraph -->\n<p>The Heating And A/C Technician template has a minimalist feel even though it packs in the features. Thanks to a light page design with nice colors and modern fonts, the design has instant appeal with minimal distraction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The homepage includes blocks for most uses, with the opportunity to add or remove them as required. Additional pages all reflect the core design to deliver the information visitors will need.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Heating And A/C Technician template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Light, open design that draws you in</li><li>Great use of subtle colors and modern fonts</li><li>Calls to action and buttons stand out to help engage</li><li>Option to add or remove page blocks however you need</li><li>Subtle animations and parallax effects work well</li><li>Fully compatible with drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:87:\"Minimalist design that lets you showcase your heating or AC business in an engaging way\";s:5:\"pages\";a:4:{s:8:\"id-59065\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/01/heating-and-ac-technician-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/01/heating-and-ac-technician-02-contact.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/heating-and-ac-technician-02/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:56:\"//websitedemos.net/heating-and-ac-technician-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59064\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/01/heating-and-ac-technician-02-about.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/01/heating-and-ac-technician-02-about.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/heating-and-ac-technician-02/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/heating-and-ac-technician-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-59066\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2022/01/heating-and-ac-technician-02-home.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2022/01/heating-and-ac-technician-02-home.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/heating-and-ac-technician-02/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/heating-and-ac-technician-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-59067\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/01/heating-and-ac-technician-02-services.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/01/heating-and-ac-technician-02-services.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/heating-and-ac-technician-02/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:57:\"//websitedemos.net/heating-and-ac-technician-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-58084\";a:22:{s:5:\"title\";s:10:\"Plant Shop\";s:2:\"id\";i:58084;s:12:\"publish-date\";i:1632244281;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/09/plant-shop-02-home-page.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/09/plant-shop-02-home-page.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/09/plant-shop-02-home-page.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/plant-shop-02\";s:20:\"astra-site-parent-id\";i:2375;s:15:\"astra-sites-tag\";a:15:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2419;s:9:\"eshopping\";i:2422;s:13:\"online-market\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:497;s:11:\"plant-store\";i:495;s:6:\"plants\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2769;s:9:\"ecommerce\";i:2830;s:6:\"nature\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:9:\"cartflows\";s:4:\"init\";s:23:\"cartflows/cartflows.php\";s:4:\"name\";s:9:\"CartFlows\";}i:1;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:5;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1200:\"<!-- wp:paragraph -->\n<p>If you are running a nursery and want to take your business online, the Plant Shop template is a great starting point. The design is clean and minimalistic yet has all the correct elements to build a high-converting plant shop website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Plant Shop web template is fully compatible with WooCommerce and allows you to set up your store quickly. Add your latest plants, customer reviews, and more on the impressive-looking homepage.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Plant Shop template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Simple, clean design that comes with all the correct elements</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Impressive hero image, best to promote your product line</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Deep integration with WooCommerce, allowing you to sell online quickly</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Simple yet highly effective product pages</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Page builder ready</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:85:\"Simple and minimalistic design perfect to create a high converting plant shop website\";s:5:\"pages\";a:3:{s:8:\"id-58085\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/02/earth-store-02-about.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/02/earth-store-02-about-600x778.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/plant-shop-02/wp-json/wp/v2/pages/252\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/plant-shop-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58086\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2023/02/earth-store-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/02/earth-store-02-contact-600x709.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/plant-shop-02/wp-json/wp/v2/pages/357\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/plant-shop-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-58087\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2023/02/earth-store-02.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/02/earth-store-02-600x1210.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/plant-shop-02/wp-json/wp/v2/pages/25\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/plant-shop-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47609\";a:22:{s:5:\"title\";s:22:\"Online Furniture Store\";s:2:\"id\";i:47609;s:12:\"publish-date\";i:1600961412;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/09/home-decor-04.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/09/home-decor-04.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/09/home-decor-04.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/home-decor-04\";s:20:\"astra-site-parent-id\";i:1655;s:15:\"astra-sites-tag\";a:17:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2419;s:9:\"eshopping\";i:524;s:9:\"furniture\";i:856;s:15:\"furniture-store\";i:2357;s:22:\"online-furniture-store\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";i:2356;s:14:\"work-from-home\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:5:{i:2777;s:8:\"business\";i:2769;s:9:\"ecommerce\";i:2879;s:9:\"furniture\";i:2793;s:15:\"interior-design\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:5;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1220:\"<!-- wp:paragraph -->\n<p>The right furniture livens up your home. It sets the ​​stage for comfortable and cozy living spaces. And what better way to set the tone online than having the perfect website template.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Online Furniture Store template is beautifully designed, helping you create an instant engagement with your customers. The template is designed to help you sell all kinds of furniture for living rooms, bedrooms, kitchens, and bathrooms.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Online Furniture Store template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Beautifully designed website template</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Showcase your latest products and best sellers on the homepage</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Offers deals and offers on the homepage</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Build an email list by getting customers to sign up for your newsletter</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>SEO-friendly and WooCommerce-ready template</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:68:\"Well designed eCommerce web template to sell all kinds of home decor\";s:5:\"pages\";a:4:{s:8:\"id-47610\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/09/home-decor-04-about-us.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/09/home-decor-04-about-us.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/home-decor-04/wp-json/wp/v2/pages/162\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/home-decor-04/about-us/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47611\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/09/home-decor-04-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/09/home-decor-04-contact-us.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/home-decor-04/wp-json/wp/v2/pages/196\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/home-decor-04/contact-us/\";s:15:\"astra-sites-tag\";a:4:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";i:896;s:13:\"get-connected\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47612\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/09/home-decor-04.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/09/home-decor-04.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/home-decor-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/home-decor-04/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47613\";a:12:{s:5:\"title\";s:5:\"Rooms\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/09/home-decor-04-rooms.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/09/home-decor-04-rooms.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/home-decor-04/wp-json/wp/v2/pages/133\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/home-decor-04/rooms/\";s:15:\"astra-sites-tag\";a:1:{i:540;s:8:\"products\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-58970\";a:22:{s:5:\"title\";s:10:\"Cycle Shop\";s:2:\"id\";i:58970;s:12:\"publish-date\";i:1643645321;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/01/cycle-shop-02-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/01/cycle-shop-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/01/cycle-shop-02-home.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/cycle-shop-02\";s:20:\"astra-site-parent-id\";i:2547;s:15:\"astra-sites-tag\";a:18:{i:880;s:9:\"cartflows\";i:2418;s:8:\"commerce\";i:2548;s:10:\"cycle-shop\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:967;s:13:\"product-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:2549;s:12:\"sport-cycyle\";i:749;s:5:\"store\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2769;s:9:\"ecommerce\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:2;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1274:\"<!-- wp:paragraph -->\n<p>The Cycle Shop template is an easy way to take advantage of the global rise in cycling. It’s an attractive modern template with a full screen image on the homepage that opens out into a modern, well-balanced design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template can integrate seamlessly with WooCommerce so you can sell products easily, and the template as a whole can be fully customized to fit your brand.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Cycle Shop template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Modern cycling shop website template designed to engage</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fully integrates with WooCommerce for an online store</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Attractive product areas and product pages</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Product highlight blocks already built into the design</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Option to add products, pages and sections quickly and easily</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fully compatible with leading drag and drop page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"Impactful eCommerce template designed for cycle shops or any type of online retailer\";s:5:\"pages\";a:3:{s:8:\"id-58972\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/01/cycle-shop-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/01/cycle-shop-02-contact.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/cycle-shop-02/wp-json/wp/v2/pages/24\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/cycle-shop-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-58971\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/01/cycle-shop-02-about-us.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/01/cycle-shop-02-about-us.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/cycle-shop-02/wp-json/wp/v2/pages/20\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/cycle-shop-02/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58973\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/01/cycle-shop-02-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/01/cycle-shop-02-home.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/cycle-shop-02/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/cycle-shop-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59046\";a:22:{s:5:\"title\";s:14:\"Roofing Agency\";s:2:\"id\";i:59046;s:12:\"publish-date\";i:1643645546;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/01/roofing-agency-02-home02..jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/01/roofing-agency-02-home02..jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/01/roofing-agency-02-home02..jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/roofing-agency-02\";s:20:\"astra-site-parent-id\";i:2569;s:15:\"astra-sites-tag\";a:7:{i:1630;s:18:\"commercial-roofing\";i:1629;s:19:\"residential-roofing\";i:1634;s:17:\"roof-installation\";i:1633;s:11:\"roof-repair\";i:1631;s:16:\"roof-replacement\";i:2570;s:14:\"roofing-agency\";i:1632;s:16:\"roofing-services\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2818;s:7:\"roofing\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1046:\"<!-- wp:paragraph -->\n<p>The Roofing Agency template has a clean, crisp look that provides a professional persona from the start. Combined with attractive imagery and careful use of colors and white space, it delivers exactly the impression you would want.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template homepage uses a flat design with a mix of colors, images and white space that delivers impact without overloading the senses. Additional pages reflect these qualities, for a fully coherent design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Roofing Agency template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Clean, crisp design ideal for trades or construction companies</li><li>Excellent mix of features throughout</li><li>Great balance of color, images and whitespace</li><li>Bold color to highlight buttons and calls to action</li><li>Contract form front and center to encourage conversion</li><li>Fully compatible with leading drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:85:\"Clean, crisp agency website design that addresses user intent from the very beginning\";s:5:\"pages\";a:5:{s:8:\"id-59047\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/01/roofing-agency-02-about.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/01/roofing-agency-02-about.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/roofing-agency-02/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/roofing-agency-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-59048\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/01/roofing-agency-02-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/01/roofing-agency-02-contact-us.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/roofing-agency-02/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/roofing-agency-02/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59049\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/01/roofing-agency-02-home02..jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/01/roofing-agency-02-home02..jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/roofing-agency-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/roofing-agency-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59050\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/01/roofing-agency-02-projects.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/01/roofing-agency-02-projects.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/roofing-agency-02/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/roofing-agency-02/projects/\";s:15:\"astra-sites-tag\";a:1:{i:1613;s:8:\"projects\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-59051\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/01/roofing-agency-02-services.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/01/roofing-agency-02-services.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/roofing-agency-02/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/roofing-agency-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59018\";a:22:{s:5:\"title\";s:12:\"Coffee House\";s:2:\"id\";i:59018;s:12:\"publish-date\";i:1643645176;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/01/coffee-house-02-home-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/01/coffee-house-02-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/01/coffee-house-02-home-1.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/coffee-house-02\";s:20:\"astra-site-parent-id\";i:2563;s:15:\"astra-sites-tag\";a:9:{i:693;s:4:\"cafe\";i:2042;s:8:\"cafe-bar\";i:1527;s:9:\"cafeteria\";i:2043;s:12:\"coffee-house\";i:1575;s:11:\"coffee-shop\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:335;s:10:\"restaurant\";i:2041;s:9:\"snack-bar\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:1:{i:2776;s:10:\"restaurant\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:972:\"<!-- wp:paragraph -->\n<p>The Coffee House template uses a warm, heritage look that can work so well for baristas and coffee shops. It creates a warm, welcoming vibe that invites you to explore, which is exactly what we want from a coffee house website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The homepage has rich images, warm colors and plenty of whitespace for balance. There’s a menu section and an option to sell coffee by integrating WooCommerce. It’s a very flexible template!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Coffee House template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Precisely the feel you expect from a coffee house</li><li>Warm, welcoming colors and fonts</li><li>Attractive menu section and page</li><li>Can integrate with WooCommerce to sell products</li><li>Instagram section built into the homepage</li><li>Compatible with leading drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:86:\"Give a warm welcome to visitors with this engaging template for cafes and coffee shops\";s:5:\"pages\";a:4:{s:8:\"id-59019\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/01/coffee-house-02-about-1.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/01/coffee-house-02-about-1.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/coffee-house-02/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/coffee-house-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-59020\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/01/coffee-house-02-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/01/coffee-house-02-contact-1.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/coffee-house-02/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/coffee-house-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59021\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/01/coffee-house-02-home-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/01/coffee-house-02-home-1.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/coffee-house-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/coffee-house-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-59022\";a:12:{s:5:\"title\";s:4:\"Menu\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/01/coffee-house-02-menu-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/01/coffee-house-02-menu-1.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/coffee-house-02/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/coffee-house-02/menu/\";s:15:\"astra-sites-tag\";a:1:{i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-58953\";a:22:{s:5:\"title\";s:12:\"Construction\";s:2:\"id\";i:58953;s:12:\"publish-date\";i:1643644056;s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/01/building-construction-04-home-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/01/building-construction-04-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/01/building-construction-04-home-1.jpg\";s:14:\"astra-site-url\";s:43:\"//websitedemos.net/building-construction-04\";s:20:\"astra-site-parent-id\";i:2542;s:15:\"astra-sites-tag\";a:11:{i:435;s:12:\"architecture\";i:2543;s:8:\"building\";i:2545;s:19:\"building-foundation\";i:979;s:7:\"company\";i:484;s:12:\"construction\";i:2546;s:21:\"construction-services\";i:2544;s:11:\"fabricating\";i:436;s:8:\"interior\";i:812;s:6:\"office\";i:485;s:11:\"real-estate\";i:687;s:6:\"realty\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2836;s:12:\"construction\";i:2793;s:15:\"interior-design\";i:2778;s:11:\"real-estate\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1026:\"<!-- wp:paragraph -->\n<p>The Construction website template makes an instant impact with bold contrast colors and a deep blue image. This design is reflected throughout all pages but can easily be changed to suit your brand.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template has a bold homepage with lots of content areas and a professional feel demanded by the niche. There are also extra pages you can use to outline products or services, add a portfolio or anything you choose.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Construction template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Bold design that makes an instant impact</li><li>Good use of contrast colors and fonts to create a professional look</li><li>Lots of content blocks that can be customized at will</li><li>Add, remove or change pages as required</li><li>Areas for testimonials, certifications and other social proof</li><li>Compatible with popular drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:86:\"Composed design that makes an impact for all the right reasons, ideal for construction\";s:5:\"pages\";a:5:{s:8:\"id-58954\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/01/building-construction-04-about.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/01/building-construction-04-about.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/building-construction-04/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/building-construction-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58955\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/01/building-construction-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/01/building-construction-04-contact.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/building-construction-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/building-construction-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-58956\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/01/building-construction-04-home-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/01/building-construction-04-home-1.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/building-construction-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/building-construction-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58957\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2022/01/building-construction-04-projects.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2022/01/building-construction-04-projects.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/building-construction-04/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/building-construction-04/projects/\";s:15:\"astra-sites-tag\";a:1:{i:424;s:7:\"project\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58958\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2022/01/building-construction-04-services.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2022/01/building-construction-04-services.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/building-construction-04/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/building-construction-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59004\";a:22:{s:5:\"title\";s:7:\"eCourse\";s:2:\"id\";i:59004;s:12:\"publish-date\";i:1643645158;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/01/teach-ecourse-04-home.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/01/teach-ecourse-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/01/teach-ecourse-04-home.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/teach-ecourse-04\";s:20:\"astra-site-parent-id\";i:2561;s:15:\"astra-sites-tag\";a:9:{i:2562;s:11:\"code-course\";i:462;s:7:\"courses\";i:469;s:7:\"ecourse\";i:468;s:9:\"elearning\";i:719;s:15:\"online-coaching\";i:466;s:14:\"online-courses\";i:975;s:15:\"online-learning\";i:721;s:8:\"training\";i:720;s:9:\"tutorials\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:4:{i:2825;s:8:\"coaching\";i:2835;s:9:\"elearning\";i:2880;s:10:\"membership\";i:2827;s:13:\"online-course\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:954:\"<!-- wp:paragraph -->\n<p>The eCourse template offers an alternative to the predictable with a bright, welcoming vibe. While mocked up for coders, you can easily see how it could be customized to suit any type of eLearning website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design is light, open and modern. The homepage includes simple graphics and imagery that makes an impact, along with customizable content blocks you can tweak however you like.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the eCourse template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Attractive design that stands out from the norm</li><li>Customizable pages and content blocks</li><li>Ideal for eLearning and compatible with most LMS</li><li>Can feature audio and video within lessons or as promotion</li><li>Great layout with a welcoming feel</li><li>Compatible with popular drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:88:\"Modern, accessible template ideal for websites that offer online learning or utilize LMS\";s:5:\"pages\";a:4:{s:8:\"id-59005\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/01/teach-ecourse-04-about.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/01/teach-ecourse-04-about.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/teach-ecourse-04/wp-json/wp/v2/pages/617\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/teach-ecourse-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-59006\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/01/teach-ecourse-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/01/teach-ecourse-04-contact.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/teach-ecourse-04/wp-json/wp/v2/pages/568\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/teach-ecourse-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59007\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/01/teach-ecourse-04-home.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/01/teach-ecourse-04-home.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/teach-ecourse-04/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/teach-ecourse-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-59008\";a:12:{s:5:\"title\";s:7:\"Lessons\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/01/teach-ecourse-04-lessons.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/01/teach-ecourse-04-lessons.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/teach-ecourse-04/wp-json/wp/v2/pages/769\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/teach-ecourse-04/lessons/\";s:15:\"astra-sites-tag\";a:1:{i:747;s:7:\"lessons\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59540\";a:22:{s:5:\"title\";s:12:\"Library Cafe\";s:2:\"id\";i:59540;s:12:\"publish-date\";i:1646329876;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08-600x2416.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08-400x1610.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/cafe-library-08\";s:20:\"astra-site-parent-id\";i:2636;s:15:\"astra-sites-tag\";a:7:{i:2607;s:10:\"book-house\";i:1740;s:5:\"books\";i:2606;s:10:\"books-room\";i:1527;s:9:\"cafeteria\";i:2603;s:10:\"coffee-bar\";i:2604;s:7:\"library\";i:2605;s:12:\"library-cafe\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-59541\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08-about.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08-about-600x1438.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/cafe-library-08/wp-json/wp/v2/pages/710\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/cafe-library-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59542\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08-contact-600x939.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/cafe-library-08/wp-json/wp/v2/pages/712\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/cafe-library-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59543\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08-600x2416.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/cafe-library-08/wp-json/wp/v2/pages/704\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/cafe-library-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59544\";a:12:{s:5:\"title\";s:4:\"Menu\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08-menu.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08-menu-600x1081.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/cafe-library-08/wp-json/wp/v2/pages/706\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/cafe-library-08/menu/\";s:15:\"astra-sites-tag\";a:1:{i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59545\";a:12:{s:5:\"title\";s:7:\"Reviews\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08-reviews.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08-reviews-600x1040.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/cafe-library-08/wp-json/wp/v2/pages/708\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/cafe-library-08/reviews/\";s:15:\"astra-sites-tag\";a:1:{i:432;s:6:\"review\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-51341\";a:22:{s:5:\"title\";s:10:\"Life Coach\";s:2:\"id\";i:51341;s:12:\"publish-date\";i:1616781676;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/03/certified-life-coach-04.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/03/certified-life-coach-04.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/03/certified-life-coach-04.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/certified-life-coach-04\";s:20:\"astra-site-parent-id\";i:1865;s:15:\"astra-sites-tag\";a:5:{i:854;s:5:\"coach\";i:610;s:8:\"coaching\";i:1123;s:11:\"councelling\";i:612;s:10:\"life-coach\";i:1866;s:10:\"life-guide\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2825;s:8:\"coaching\";i:2794;s:10:\"consulting\";i:2874;s:10:\"life-coach\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1119:\"<!-- wp:paragraph -->\n<p>As a certified life coach, you’d probably have several one-on-one consultations with your clients. You probably even offer live online sessions and several packages to achieve personal and career goals, live a happier life, manage time, and keep oneself organized, among other things.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our Life Coach website template has you covered. The professionally designed template has everything you need to launch your coaching business today. It’s light, welcoming and includes a range of customizable sections for your professional services.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Life Coach template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Professionally designed template, perfect for life coaches and trainers</li><li>Significant hero image to promote the coach</li><li>Include the various services and packages being offered on the homepage</li><li>Dedicated section to showcase client testimonials to build trust</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:86:\"A professionally designed website template for all certified trainers and life coaches\";s:5:\"pages\";a:4:{s:8:\"id-51342\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/03/certified-life-coach-04-about.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/03/certified-life-coach-04-about.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/certified-life-coach-04/wp-json/wp/v2/pages/447\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/certified-life-coach-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51343\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/03/certified-life-coach-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/03/certified-life-coach-04-contact.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/certified-life-coach-04/wp-json/wp/v2/pages/872\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/certified-life-coach-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-51344\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/03/certified-life-coach-04.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/03/certified-life-coach-04.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/certified-life-coach-04/wp-json/wp/v2/pages/44\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/certified-life-coach-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-51345\";a:12:{s:5:\"title\";s:20:\"Live Online Sessions\";s:18:\"featured-image-url\";s:100:\"https://websitedemos.net/wp-content/uploads/2021/03/certified-life-coach-04-live-online-sessions.jpg\";s:19:\"thumbnail-image-url\";s:100:\"https://websitedemos.net/wp-content/uploads/2021/03/certified-life-coach-04-live-online-sessions.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/certified-life-coach-04/wp-json/wp/v2/pages/726\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:64:\"//websitedemos.net/certified-life-coach-04/live-online-sessions/\";s:15:\"astra-sites-tag\";a:4:{i:1871;s:13:\"live-sessions\";i:719;s:15:\"online-coaching\";i:975;s:15:\"online-learning\";i:1872;s:8:\"sessions\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-58934\";a:22:{s:5:\"title\";s:22:\"Real Estate Consultant\";s:2:\"id\";i:58934;s:12:\"publish-date\";i:1643644267;s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/01/real-estate-consultant-02-home-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/01/real-estate-consultant-02-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/01/real-estate-consultant-02-home-1.jpg\";s:14:\"astra-site-url\";s:44:\"//websitedemos.net/real-estate-consultant-02\";s:20:\"astra-site-parent-id\";i:2534;s:15:\"astra-sites-tag\";a:8:{i:2311;s:19:\"construction-agency\";i:2088;s:20:\"construction-company\";i:2313;s:16:\"property-rentals\";i:485;s:11:\"real-estate\";i:2310;s:18:\"real-estate-agency\";i:2535;s:22:\"real-estate-consultant\";i:2314;s:22:\"real-estate-developers\";i:2312;s:14:\"sales-property\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2794;s:10:\"consulting\";i:2778;s:11:\"real-estate\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2483;s:15:\"expert-services\";i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:992:\"<!-- wp:paragraph -->\n<p>The Real Estate Consultant template could easily be used for any type of consultant. It’s bright and breezy with a welcoming feel and a contact box front and center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The rest of the design uses light complementing colors and modern sans serif fonts to create subtle authority while remaining accessible. The template comes with flexible content areas and extra pages you can customize as you see fit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Real Estate Consultant template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Attractive design suitable for any type of consultant</li><li>Warm and welcoming with appealing colors</li><li>Contact form front and center to capture leads</li><li>Flexible content blocks throughout</li><li>Additional pages can be customized to suit any requirement</li><li>Compatible with popular drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"Deliver the professional look and feel that gives customers the confidence they need\";s:5:\"pages\";a:5:{s:8:\"id-58935\";a:12:{s:5:\"title\";s:8:\"About me\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/01/real-estate-consultant-02-about-me-1.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/01/real-estate-consultant-02-about-me-1.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/real-estate-consultant-02/wp-json/wp/v2/pages/405\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/real-estate-consultant-02/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:1007;s:8:\"about-me\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58936\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/01/real-estate-consultant-02-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/01/real-estate-consultant-02-contact-1.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/real-estate-consultant-02/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/real-estate-consultant-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-58937\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/01/real-estate-consultant-02-home-1-1.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/01/real-estate-consultant-02-home-1-1.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/real-estate-consultant-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/real-estate-consultant-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-58938\";a:12:{s:5:\"title\";s:7:\"Reviews\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/01/real-estate-consultant-02-reviews-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/01/real-estate-consultant-02-reviews-1.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/real-estate-consultant-02/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/real-estate-consultant-02/reviews/\";s:15:\"astra-sites-tag\";a:1:{i:432;s:6:\"review\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58939\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/01/real-estate-consultant-02-services-1.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/01/real-estate-consultant-02-services-1.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/real-estate-consultant-02/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/real-estate-consultant-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-58872\";a:22:{s:5:\"title\";s:15:\"Deli Restaurant\";s:2:\"id\";i:58872;s:12:\"publish-date\";i:1643644642;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/08/nyus-deli-restaurant-home.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/08/nyus-deli-restaurant-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/08/nyus-deli-restaurant-home.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/deli-restaurant-02\";s:20:\"astra-site-parent-id\";i:2512;s:15:\"astra-sites-tag\";a:14:{i:1527;s:9:\"cafeteria\";i:783;s:4:\"cake\";i:972;s:4:\"club\";i:560;s:7:\"cuisine\";i:2394;s:15:\"deli-restaurant\";i:1974;s:7:\"dessert\";i:561;s:6:\"eatery\";i:336;s:4:\"food\";i:1579;s:9:\"food-menu\";i:2513;s:11:\"fruits-dish\";i:350;s:5:\"hotel\";i:559;s:6:\"outlet\";i:335;s:10:\"restaurant\";i:2041;s:9:\"snack-bar\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2785;s:4:\"food\";i:2876;s:13:\"food-ordering\";i:2776;s:10:\"restaurant\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1014:\"<!-- wp:paragraph -->\n<p>The Deli Restaurant template has an upscale look that’s obvious as soon as the full page image unfolds. Combined with modern white fonts and creative imagery, it sets the scene perfectly for a restaurant or deli.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes a menu section and flexible content sections you can personalize along with the extra pages you may need to continue telling your story. It’s a well-designed website template with everything a deli needs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Deli Restaurant template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Upscale design ideal for a deli or restaurant</li><li>Attractive menu section and menu pages</li><li>Lots of image blocks to help create an appetite</li><li>Optional content blocks that can be fully customized</li><li>Engaging contact page with reservation button</li><li>Compatible with drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:89:\"Engaging design designed around the food industry, with all essential features you expect\";s:5:\"pages\";a:6:{s:8:\"id-47163\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/08/nyus-deli-restaurant-home.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/08/nyus-deli-restaurant-home.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/deli-restaurant-02/wp-json/wp/v2/pages/18\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/deli-restaurant-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47161\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/08/nyus-deli-restaurant-about.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/08/nyus-deli-restaurant-about.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/deli-restaurant-02/wp-json/wp/v2/pages/114\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/deli-restaurant-02/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47164\";a:12:{s:5:\"title\";s:4:\"Menu\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/08/nyus-deli-restaurant-menu.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/08/nyus-deli-restaurant-menu.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/deli-restaurant-02/wp-json/wp/v2/pages/138\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/deli-restaurant-02/menu/\";s:15:\"astra-sites-tag\";a:2:{i:1579;s:9:\"food-menu\";i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47165\";a:12:{s:5:\"title\";s:9:\"Menu Dark\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/08/nyus-deli-restaurant-dark-menu-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/08/nyus-deli-restaurant-dark-menu-1.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/deli-restaurant-02/wp-json/wp/v2/pages/219\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/deli-restaurant-02/menu-dark/\";s:15:\"astra-sites-tag\";a:3:{i:1616;s:9:\"dark-menu\";i:1579;s:9:\"food-menu\";i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47166\";a:12:{s:5:\"title\";s:11:\"Testimonial\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/08/nyus-deli-restaurant-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/08/nyus-deli-restaurant-testimonials.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/deli-restaurant-02/wp-json/wp/v2/pages/142\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/deli-restaurant-02/testimonial/\";s:15:\"astra-sites-tag\";a:2:{i:1615;s:7:\"reviews\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47162\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/08/nyus-deli-restaurant-contact.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/08/nyus-deli-restaurant-contact.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/deli-restaurant-02/wp-json/wp/v2/pages/163\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/deli-restaurant-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-58898\";a:22:{s:5:\"title\";s:10:\"Consultant\";s:2:\"id\";i:58898;s:12:\"publish-date\";i:1643644121;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/01/consultant-04-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/01/consultant-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/01/consultant-04-home.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/consultant-04\";s:20:\"astra-site-parent-id\";i:2523;s:15:\"astra-sites-tag\";a:9:{i:2524;s:7:\"adviser\";i:2527;s:9:\"authority\";i:2287;s:20:\"consultancy-services\";i:1621;s:10:\"consultant\";i:1876;s:10:\"counsellor\";i:2528;s:13:\"expert-advice\";i:2525;s:5:\"guide\";i:1880;s:6:\"mentor\";i:2526;s:10:\"specialist\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:2:{i:2794;s:10:\"consulting\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1017:\"<!-- wp:paragraph -->\n<p>The Consultant web template is an extended portfolio design with an attractive home page and extra pages to help tell your story. Created to be warm and welcoming, while also modern and professional, this is a very well balanced design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template uses a strong main color with well-chosen complementing colors along with plenty of white space to let you breathe. All while portraying the professionalism you want to communicate on your website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Consultant template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Uses strong colors balanced by lots of white space</li><li>Attractive imagery and fonts</li><li>Includes subtle animations to help bring the page to life</li><li>Has extra pages to outline your products and services</li><li>Effective call to action banner ready to go</li><li>Compatible with drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:89:\"Combination business site and portfolio design that’s ideal for all types of consultant\";s:5:\"pages\";a:5:{s:8:\"id-58899\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/01/consultant-04-about.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/01/consultant-04-about.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/consultant-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/consultant-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58900\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/01/consultant-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/01/consultant-04-contact.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/consultant-04/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/consultant-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-58901\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/01/consultant-04-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/01/consultant-04-home.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/consultant-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/consultant-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58902\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/01/consultant-04-services.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/01/consultant-04-services.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/consultant-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/consultant-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58903\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/01/consultant-04-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/01/consultant-04-testimonials.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/consultant-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/consultant-04/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:2302;s:11:\"testimonial\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-58981\";a:22:{s:5:\"title\";s:19:\"Covid 19 Prevention\";s:2:\"id\";i:58981;s:12:\"publish-date\";i:1643644731;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/01/covid-prevention-02-home1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/01/covid-prevention-02-home1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/01/covid-prevention-02-home1.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/covid-prevention-02\";s:20:\"astra-site-parent-id\";i:2550;s:15:\"astra-sites-tag\";a:5:{i:2556;s:9:\"avoidance\";i:2554;s:5:\"covid\";i:2555;s:16:\"covid-prevention\";i:2558;s:18:\"disease-prevention\";i:2557;s:11:\"prohibition\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2794;s:10:\"consulting\";i:2867;s:6:\"doctor\";i:2834;s:10:\"healthcare\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2490;s:10:\"healthcare\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:972:\"<!-- wp:paragraph -->\n<p>The Covid 19 Prevention template tries to balance the seriousness of the subject with light hearted design and colors. The use of lots of white space and bright blue and green offsets the emotive nature of the niche.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design would suit many areas of care or medicine and can be fully personalized using a page builder. The template works well as it is, with lots of customization options throughout.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Covid 19 Prevention template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Excellent balance of colors and white space</li><li>Lots of content areas to tell a story</li><li>Could easily be tweaked to suit any medical niche</li><li>Includes extra content pages for convenience</li><li>Attractive contact page with built-in map</li><li>Compatible with leading drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:83:\"Contemporary web design that gives a warm welcome that sets you immediately at ease\";s:5:\"pages\";a:5:{s:8:\"id-58982\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/01/covid-prevention-02-contact-us-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/01/covid-prevention-02-contact-us-1.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/covid-prevention-02/wp-json/wp/v2/pages/919\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/covid-prevention-02/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:454;s:10:\"contact-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-58983\";a:12:{s:5:\"title\";s:9:\"Contagion\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/01/covid-prevention-02-contagion-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/01/covid-prevention-02-contagion-1.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/covid-prevention-02/wp-json/wp/v2/pages/442\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/covid-prevention-02/contagion/\";s:15:\"astra-sites-tag\";a:1:{i:2551;s:9:\"contagion\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58984\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/01/covid-prevention-02-home1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/01/covid-prevention-02-home1.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/covid-prevention-02/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/covid-prevention-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58985\";a:12:{s:5:\"title\";s:10:\"Prevention\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/01/covid-prevention-02-prevention-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/01/covid-prevention-02-prevention-1.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/covid-prevention-02/wp-json/wp/v2/pages/717\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/covid-prevention-02/prevention/\";s:15:\"astra-sites-tag\";a:1:{i:2552;s:10:\"prevention\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58986\";a:12:{s:5:\"title\";s:8:\"Symptoms\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/01/covid-prevention-02-symptoms-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/01/covid-prevention-02-symptoms-1.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/covid-prevention-02/wp-json/wp/v2/pages/558\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/covid-prevention-02/symptoms/\";s:15:\"astra-sites-tag\";a:1:{i:2553;s:8:\"symptoms\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-57399\";a:22:{s:5:\"title\";s:17:\"Sports Wear Store\";s:2:\"id\";i:57399;s:12:\"publish-date\";i:1630001801;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/08/sports-wear-store-04-home.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/08/sports-wear-store-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/08/sports-wear-store-04-home.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/sports-wear-store-04\";s:20:\"astra-site-parent-id\";i:2337;s:15:\"astra-sites-tag\";a:17:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2419;s:9:\"eshopping\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:2344;s:11:\"sports-gear\";i:2339;s:11:\"sports-wear\";i:2345;s:20:\"sports-wear-and-gear\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2769;s:9:\"ecommerce\";i:2857;s:15:\"online-shopping\";i:2826;s:6:\"sports\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:5;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1056:\"<!-- wp:paragraph -->\n<p>Want to build an online sportswear store? Or maybe even revamp an existing one. With our Sports Wear Store web template, you can launch a fully-fledged store quickly and easily. The templates come fully integrated with WooCommerce, making it easy to sell online.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The impressive template allows you to showcase products based on the sports category, gender, latest arrivals, and more. Additionally, you can feature all the top deals as well.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Sports Wear Store template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Well-designed template that has all the correct elements in the right place</li><li>Dedicated template to showcase the best deals and offers</li><li>Display products based on categories, such as sports, gender, and best sellers</li><li>Newsletter subscription form integrated across the website templates</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:79:\"Perfect website template for building a highly engaging online sportswear store\";s:5:\"pages\";a:4:{s:8:\"id-57401\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/08/sports-wear-store-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/08/sports-wear-store-04-contact.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/sports-wear-store-04/wp-json/wp/v2/pages/658\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/sports-wear-store-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-57400\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/08/sports-wear-store-04-about.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/08/sports-wear-store-04-about.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/sports-wear-store-04/wp-json/wp/v2/pages/533\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/sports-wear-store-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57402\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/08/sports-wear-store-04-home.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/08/sports-wear-store-04-home.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/sports-wear-store-04/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/sports-wear-store-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57403\";a:12:{s:5:\"title\";s:9:\"Top Deals\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/08/sports-wear-store-04-top-deals.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/08/sports-wear-store-04-top-deals.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/sports-wear-store-04/wp-json/wp/v2/pages/389\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/sports-wear-store-04/top-deals/\";s:15:\"astra-sites-tag\";a:2:{i:2063;s:5:\"sales\";i:2338;s:9:\"top-deals\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(205,'astra-sites-and-pages-page-11','a:15:{s:8:\"id-58864\";a:22:{s:5:\"title\";s:12:\"Flute Artist\";s:2:\"id\";i:58864;s:12:\"publish-date\";i:1643645073;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/01/flute-artist-02-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/01/flute-artist-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/01/flute-artist-02-home.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/flute-artist-02\";s:20:\"astra-site-parent-id\";i:2502;s:15:\"astra-sites-tag\";a:6:{i:339;s:6:\"artist\";i:2438;s:12:\"flute-artist\";i:2439;s:12:\"flute-player\";i:2503;s:7:\"grooved\";i:407;s:5:\"music\";i:2504;s:25:\"musical-instrument-player\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2802;s:6:\"artist\";i:2781;s:5:\"music\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2486;s:9:\"art-music\";i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:969:\"<!-- wp:paragraph -->\n<p>The Flute Artist template has been designed to reflect the elegance and classic nature of the instrument and the industry. It’s a very calm layout with sober colors and an instant appeal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The homepage begins dark and quickly opens out to include lots of white space, modern, elegant fonts and lots of imagery to set the scene. There are also options to include video and audio clips, a biography page, portfolio page and contact form.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Flute Artist template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Flexible portfolio website for musicians</li><li>Elegant design ideal for the niche</li><li>Includes the option to add audio and video</li><li>Dedicated portfolio and contact page</li><li>Flexible layout that can be fully customized</li><li>Page builder compatible for ease of use</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:83:\"A very elegant musician template designed to appeal to the widest possible audience\";s:5:\"pages\";a:4:{s:8:\"id-58446\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/01/flute-artist-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/01/flute-artist-02-contact.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/flute-artist-02/wp-json/wp/v2/pages/32\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/flute-artist-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-58445\";a:12:{s:5:\"title\";s:9:\"Biography\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/01/flute-artist-02-biography.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/01/flute-artist-02-biography.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/flute-artist-02/wp-json/wp/v2/pages/26\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/flute-artist-02/biography/\";s:15:\"astra-sites-tag\";a:1:{i:1566;s:9:\"biography\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58447\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/01/flute-artist-02-gallery.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/01/flute-artist-02-gallery.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/flute-artist-02/wp-json/wp/v2/pages/28\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/flute-artist-02/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58448\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/01/flute-artist-02-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/01/flute-artist-02-home.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/flute-artist-02/wp-json/wp/v2/pages/24\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/flute-artist-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-58999\";a:22:{s:5:\"title\";s:18:\"Wedding Invitation\";s:2:\"id\";i:58999;s:12:\"publish-date\";i:1643645131;s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/01/wedding-invitation-02-home.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/01/wedding-invitation-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/01/wedding-invitation-02-home.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/wedding-invitation-02\";s:20:\"astra-site-parent-id\";i:2559;s:15:\"astra-sites-tag\";a:4:{i:699;s:10:\"invitation\";i:2560;s:20:\"reception-invitation\";i:697;s:7:\"wedding\";i:1457;s:18:\"wedding-invitation\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2771;s:8:\"one-page\";i:2792;s:7:\"wedding\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2489;s:16:\"event-invitation\";i:2927;s:8:\"one-page\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:997:\"<!-- wp:paragraph -->\n<p>The Wedding Invitation template is a simple, yet elegant one page website template designed specifically to deliver wedding invitations for the 21<sup>st</sup> century.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template begins with a full size image of the bride and groom and opens out into a light and easygoing page with parallax effect. It can outline the what, where and when and be customized to include any extra content you need, including an RSVP form.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Wedding Invitation template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Elegant single page wedding invitation template</li><li>Uses elegant colors and fonts</li><li>Smooth parallax effects throughout the page</li><li>Flexible content areas so you can design the page however you like</li><li>Includes RSVP form for total convenience</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:79:\"Elegant wedding invitation template with a romantic feel and essential features\";s:5:\"pages\";a:1:{s:8:\"id-59000\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/01/wedding-invitation-02-home.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/01/wedding-invitation-02-home.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/wedding-invitation-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/wedding-invitation-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-49236\";a:22:{s:5:\"title\";s:11:\"Yoga Studio\";s:2:\"id\";i:49236;s:12:\"publish-date\";i:1608714979;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/12/yoga-studio-04-home.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/12/yoga-studio-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/12/yoga-studio-04-home.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/yoga-studio-04\";s:20:\"astra-site-parent-id\";i:1787;s:15:\"astra-sites-tag\";a:5:{i:499;s:7:\"fitness\";i:976;s:14:\"gym-instructor\";i:395;s:15:\"yoga-instructor\";i:397;s:11:\"yoga-studio\";i:398;s:12:\"yoga-trainer\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2825;s:8:\"coaching\";i:2787;s:11:\"gym-fitness\";i:2808;s:4:\"yoga\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2480;s:16:\"fitness-wellness\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1055:\"<!-- wp:paragraph -->\n<p>Whether you’re an independent yoga instructor or a full-fledged yoga training institute, the Yoga Studio template is exactly what you want. The pastel colors and the impressive use of images make this template tailor-made for a yoga studio website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Include the various yoga poses, popular classes, instructor details, and customer reviews, among other things. You can also stay connected with your customers through a newsletter subscription form.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Yoga Studio template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Elegant-looking website template, perfect for a yoga studio website</li><li>Pastel colors, typography, and images set the tone of the website</li><li>Impressive layout that allows you to promote your classes clutter-free</li><li>Include details of instructors and customer reviews, among other things</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:83:\"An elegant-looking template that’s tailor-made for building a yoga studio website\";s:5:\"pages\";a:5:{s:8:\"id-47690\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/12/yoga-studio-04-about.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/12/yoga-studio-04-about.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/yoga-studio-04/wp-json/wp/v2/pages/135\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/yoga-studio-04/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47693\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/12/yoga-studio-04-home.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/12/yoga-studio-04-home.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/yoga-studio-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/yoga-studio-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47691\";a:12:{s:5:\"title\";s:7:\"Classes\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/12/yoga-studio-04-classes.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/12/yoga-studio-04-classes.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/yoga-studio-04/wp-json/wp/v2/pages/181\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/yoga-studio-04/classes/\";s:15:\"astra-sites-tag\";a:1:{i:557;s:7:\"classes\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47694\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/12/yoga-studio-04-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/12/yoga-studio-04-testimonials.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/yoga-studio-04/wp-json/wp/v2/pages/226\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/yoga-studio-04/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47692\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/12/yoga-studio-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/12/yoga-studio-04-contact.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/yoga-studio-04/wp-json/wp/v2/pages/269\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/yoga-studio-04/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:454;s:10:\"contact-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-58951\";a:22:{s:5:\"title\";s:23:\"Limousine Rental Agency\";s:2:\"id\";i:58951;s:12:\"publish-date\";i:1643644485;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/10/rental-agency-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/10/rental-agency-02-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/10/rental-agency-02-homepage.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/rental-agency-02\";s:20:\"astra-site-parent-id\";i:2536;s:15:\"astra-sites-tag\";a:5:{i:2540;s:9:\"limousine\";i:2538;s:15:\"rent-limousines\";i:2539;s:13:\"rent-services\";i:2537;s:13:\"rental-agency\";i:2541;s:5:\"sedan\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:1:{i:2832;s:8:\"property\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2475;s:10:\"automotive\";i:2473;s:9:\"transport\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1244:\"<!-- wp:paragraph -->\n<p>The Limousine Rental Agency template opens with a full screen image with complementing colors that create a feeling of luxury ideal for this niche.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The rest of the design continues the look with alternating dark and light backgrounds, an attractive parallax effect and lots of content areas. Each page reflects the same values to create a very attractive website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Limousine Rental Agency template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Homepage and extra pages all use luxurious colors and design</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Parallax effect on the homepage</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Good use of white space to add modernity</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Template includes all essential pages including map and contact</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lots of content areas to add extra features or services</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fully compatible with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"Professional template with nice layout and modern design ideal for limousine rentals\";s:5:\"pages\";a:5:{s:8:\"id-58460\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/10/rental-agency-02-about-us.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/10/rental-agency-02-about-us.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/rental-agency-02/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/rental-agency-02/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58461\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/10/rental-agency-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/10/rental-agency-02-contact.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/rental-agency-02/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/rental-agency-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-58462\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/10/rental-agency-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/10/rental-agency-02-homepage.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/rental-agency-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/rental-agency-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58463\";a:12:{s:5:\"title\";s:9:\"Our Fleet\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/10/rental-agency-02-our-fleet.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/10/rental-agency-02-our-fleet.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/rental-agency-02/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/rental-agency-02/our-fleet/\";s:15:\"astra-sites-tag\";a:1:{i:2445;s:5:\"fleet\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58464\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/10/rental-agency-02-services.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/10/rental-agency-02-services.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/rental-agency-02/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/rental-agency-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-58172\";a:22:{s:5:\"title\";s:19:\"Skin Cleanser Store\";s:2:\"id\";i:58172;s:12:\"publish-date\";i:1632244102;s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/09/skin-cleanser-store-02-home-page.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/09/skin-cleanser-store-02-home-page.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/09/skin-cleanser-store-02-home-page.jpg\";s:14:\"astra-site-url\";s:41:\"//websitedemos.net/skin-cleanser-store-02\";s:20:\"astra-site-parent-id\";i:2378;s:15:\"astra-sites-tag\";a:19:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2419;s:9:\"eshopping\";i:2392;s:19:\"online-beauty-store\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:2391;s:11:\"skin-beauty\";i:1127;s:9:\"skin-care\";i:2380;s:19:\"skin-cleanser-store\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2790;s:14:\"beauty-fashion\";i:2777;s:8:\"business\";i:2769;s:9:\"ecommerce\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:5;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1358:\"<!-- wp:paragraph -->\n<p>Want to sell skin care products to a global audience? If so, you must consider the Skin Cleanser Store template. The design is simple yet highly effective in promoting various beauty products. It can also be customized to suit any type of store.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Use the impressive hero image to promote your best product. Include the latest products, best sellers, customer reviews, and beauty tips on the homepage. With seamless social media integrations, showcase photos from your social feel too.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Skin Cleanser Store template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Beautifully designed and tailor-made for skin cleanser products online store</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>From the colors to typography and layout, customize every element to suit your needs</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>WooCommerce-ready template that lets you set up your store quickly and easily</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Showcase customer reviews and photos from your social media feed</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:82:\"The perfect eCommerce website template for selling all kinds of skin care products\";s:5:\"pages\";a:3:{s:8:\"id-58175\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/09/skin-cleanser-store-02-home-page.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/09/skin-cleanser-store-02-home-page.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/skin-cleanser-store-02/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/skin-cleanser-store-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58173\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/09/skin-cleanser-store-02-about.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/09/skin-cleanser-store-02-about.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/skin-cleanser-store-02/wp-json/wp/v2/pages/381\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/skin-cleanser-store-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58174\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/09/skin-cleanser-store-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/09/skin-cleanser-store-02-contact.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/skin-cleanser-store-02/wp-json/wp/v2/pages/559\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/skin-cleanser-store-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-45564\";a:22:{s:5:\"title\";s:16:\"Personal Trainer\";s:2:\"id\";i:45564;s:12:\"publish-date\";i:1584532209;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/03/personal-trainer-04.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/03/personal-trainer-04.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/03/personal-trainer-04.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/personal-trainer-04\";s:20:\"astra-site-parent-id\";i:1449;s:15:\"astra-sites-tag\";a:6:{i:499;s:7:\"fitness\";i:505;s:15:\"fitness-trainer\";i:976;s:14:\"gym-instructor\";i:504;s:11:\"gym-trainer\";i:1454;s:16:\"personal-trainer\";i:1455;s:15:\"workout-trainer\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2787;s:11:\"gym-fitness\";i:2771;s:8:\"one-page\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2480;s:16:\"fitness-wellness\";i:2927;s:8:\"one-page\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1009:\"<!-- wp:paragraph -->\n<p>As a personal trainer, you’d probably want to promote yourself in the best way possible. If so, the Personal Trainer template is perfect for you. The website revolves around you and your various training programs.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Promote yourself on the homepage, include training programs, such as private training and group training, reviews and photos of your happy customers, and more to build trust with your potential customers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Personal Trainer template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Creatively designed website template that’s perfect for the personal trainer in you</li><li>Showcase your various training programs and packages</li><li>Include photos and reviews of your happy customers</li><li>Template incorporates a FAQ section to help customers with their questions</li><li>Impressive background effects</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:86:\"Professionally designed website templates for the professional personal trainer in you\";s:5:\"pages\";a:1:{s:8:\"id-45565\";a:12:{s:5:\"title\";s:13:\"Trainer Jenny\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/03/personal-trainer-04.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/03/personal-trainer-04.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/personal-trainer-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/personal-trainer-04/\";s:15:\"astra-sites-tag\";a:4:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";i:850;s:12:\"landing-page\";i:1458;s:26:\"personal-trainer-home-page\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:45573;s:26:\"related-elementor-template\";i:45564;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-45573\";a:22:{s:5:\"title\";s:16:\"Personal Trainer\";s:2:\"id\";i:45573;s:12:\"publish-date\";i:1584532070;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/03/personal-trainer-04.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/03/personal-trainer-04.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/03/personal-trainer-04.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/personal-trainer-03\";s:20:\"astra-site-parent-id\";i:1450;s:15:\"astra-sites-tag\";a:6:{i:499;s:7:\"fitness\";i:505;s:15:\"fitness-trainer\";i:976;s:14:\"gym-instructor\";i:504;s:11:\"gym-trainer\";i:1454;s:16:\"personal-trainer\";i:1455;s:15:\"workout-trainer\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2480;s:16:\"fitness-wellness\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-45574\";a:12:{s:5:\"title\";s:13:\"Trainer Jenny\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/03/personal-trainer-04.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/03/personal-trainer-04.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/personal-trainer-03/wp-json/wp/v2/pages/29\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/personal-trainer-03/\";s:15:\"astra-sites-tag\";a:4:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";i:850;s:12:\"landing-page\";i:1458;s:26:\"personal-trainer-home-page\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-20859\";a:22:{s:5:\"title\";s:14:\"Simply Natural\";s:2:\"id\";i:20859;s:12:\"publish-date\";i:1549006228;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/10/plant-store-02-home.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/10/plant-store-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/10/plant-store-02-home.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/plant-store-02\";s:20:\"astra-site-parent-id\";i:190;s:15:\"astra-sites-tag\";a:15:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2419;s:9:\"eshopping\";i:2422;s:13:\"online-market\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:497;s:11:\"plant-store\";i:495;s:6:\"plants\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2769;s:9:\"ecommerce\";i:2830;s:6:\"nature\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:5;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1236:\"<!-- wp:paragraph -->\n<p>If you are looking for a simple and clean website design to sell all kinds of plants online, Simply Natural is just the template for you. The minimalist design has all the elements to build a highly engaging online store.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>From an impressive hero section that includes a CTA button to the featured products and client testimonials, the template has all the ingredients you need to build a fantastic online store.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Simply Natural template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Simple, clean, and elegant design, ideal for selling plants online</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Showcase your featured products as well as the latest arrivals</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Easily customize every element of your website to suit your specific requirements</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fully responsive and WooCommerce-ready template</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"Simple and elegant design that’s perfect for selling all kinds of plants online\";s:5:\"pages\";a:4:{s:8:\"id-57904\";a:12:{s:5:\"title\";s:4:\"Shop\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/plant-store-02/wp-json/wp/v2/pages/1613\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/plant-store-02/shop/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-34084\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/10/plant-store-02-home.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/10/plant-store-02-home.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/plant-store-02/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/plant-store-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23955\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/10/plant-store-02-about.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/10/plant-store-02-about.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/plant-store-02/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/plant-store-02/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23956\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/10/plant-store-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/10/plant-store-02-contact.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/plant-store-02/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/plant-store-02/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:20907;s:26:\"related-elementor-template\";i:20859;s:26:\"related-gutenberg-template\";i:48431;}s:8:\"id-20907\";a:22:{s:5:\"title\";s:14:\"Simply Natural\";s:2:\"id\";i:20907;s:12:\"publish-date\";i:1550052176;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/10/simply-natural-bb-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/10/simply-natural-bb-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/10/simply-natural-bb-home.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/plant-store-01\";s:20:\"astra-site-parent-id\";i:193;s:15:\"astra-sites-tag\";a:16:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2419;s:9:\"eshopping\";i:535;s:6:\"nature\";i:2422;s:13:\"online-market\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:497;s:11:\"plant-store\";i:495;s:6:\"plants\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:7:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:4;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:5;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:6;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-34086\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/10/simply-natural-bb-home-1.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/10/simply-natural-bb-home-1.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/plant-store-01/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/plant-store-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-23984\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/simply-natural-bb-about.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/simply-natural-bb-about.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/plant-store-01/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/plant-store-01/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-23985\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/simply-natural-bb-contact.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/simply-natural-bb-contact.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/plant-store-01/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/plant-store-01/contact-us/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48431\";a:22:{s:5:\"title\";s:14:\"Simply Natural\";s:2:\"id\";i:48431;s:12:\"publish-date\";i:1603963839;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/10/plant-store-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/plant-store-08-600x2263.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/plant-store-08-400x1508.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/plant-store-08\";s:20:\"astra-site-parent-id\";i:1732;s:15:\"astra-sites-tag\";a:16:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2419;s:9:\"eshopping\";i:535;s:6:\"nature\";i:2422;s:13:\"online-market\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:497;s:11:\"plant-store\";i:495;s:6:\"plants\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2500;s:12:\"multipurpose\";}s:16:\"required-plugins\";a:7:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:5;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:6;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-68346\";a:12:{s:5:\"title\";s:5:\"Store\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/plant-store-08-store.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/plant-store-08-store-600x1973.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/plant-store-08/wp-json/wp/v2/pages/118\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/plant-store-08/store/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48432\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/plant-store-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/plant-store-08-about-us-600x1926.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/plant-store-08/wp-json/wp/v2/pages/119\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/plant-store-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48433\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/plant-store-08-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/plant-store-08-contact-us-600x886.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/plant-store-08/wp-json/wp/v2/pages/120\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/plant-store-08/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48434\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/10/plant-store-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/plant-store-08-600x2263.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/plant-store-08/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/plant-store-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-49340\";a:22:{s:5:\"title\";s:10:\"Baby Store\";s:2:\"id\";i:49340;s:12:\"publish-date\";i:1608635939;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/12/baby-store-04.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/12/baby-store-04.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/12/baby-store-04.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/baby-store-04\";s:20:\"astra-site-parent-id\";i:1813;s:15:\"astra-sites-tag\";a:4:{i:1816;s:10:\"baby-store\";i:1818;s:14:\"children-store\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:2:{i:2777;s:8:\"business\";i:2769;s:9:\"ecommerce\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:5;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1271:\"<!-- wp:paragraph -->\n<p>Want to sell baby products online? Build an online store using our lightweight Baby Store template. The well-designed template is easy to set up and helps you start selling quickly thanks to full integration with WooCommerce.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template is tailor-made for an online baby store, from subtle colors to having the right images in place. Showcase your latest products, best sellers, deals and offers, and customer reviews, among other things, on the homepage.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Baby Store template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Elegantly designed website template perfect for an online baby store</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Use the global palette to customize your store’s colors easily</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Display products based on categories, best sellers, latest arrivals, and more</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Showcase client reviews and testimonials</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:87:\"Elegantly designed online store website template for selling all kinds of baby products\";s:5:\"pages\";a:4:{s:8:\"id-49346\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/12/baby-store-04-about-us.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/12/baby-store-04-about-us.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/baby-store-04/wp-json/wp/v2/pages/406\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/baby-store-04/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49347\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/12/baby-store-04-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/12/baby-store-04-contact-us.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/baby-store-04/wp-json/wp/v2/pages/564\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/baby-store-04/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-49348\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/12/baby-store-04.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/12/baby-store-04.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/baby-store-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/baby-store-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}s:8:\"id-49349\";a:12:{s:5:\"title\";s:11:\"Testimonial\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/12/baby-store-04-testimonial.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/12/baby-store-04-testimonial.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/baby-store-04/wp-json/wp/v2/pages/494\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/baby-store-04/testimonial/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55741\";a:22:{s:5:\"title\";s:18:\"Fashion Influencer\";s:2:\"id\";i:55741;s:12:\"publish-date\";i:1624910284;s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/06/fashion-influencer-homepage-bb.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/06/fashion-influencer-homepage-bb.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/06/fashion-influencer-homepage-bb.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/fashion-influencer-03\";s:20:\"astra-site-parent-id\";i:2205;s:15:\"astra-sites-tag\";a:9:{i:1652;s:7:\"blogger\";i:1654;s:15:\"content-creator\";i:2164;s:15:\"fashion-blogger\";i:2161;s:18:\"fashion-influencer\";i:1547;s:10:\"influencer\";i:2162;s:17:\"lifestyle-blogger\";i:2166;s:17:\"luxury-influencer\";i:2163;s:23:\"social-media-influencer\";i:2165;s:16:\"style-influencer\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:37;s:4:\"blog\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-55742\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/06/fashion-influencer-about-bb.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/06/fashion-influencer-about-bb.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/fashion-influencer-03/wp-json/wp/v2/pages/1046\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/fashion-influencer-03/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-55743\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/06/fashion-influencer-contact-bb.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/06/fashion-influencer-contact-bb.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/fashion-influencer-03/wp-json/wp/v2/pages/1051\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/fashion-influencer-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55745\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/06/fashion-influencer-homepage-bb.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/06/fashion-influencer-homepage-bb.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/fashion-influencer-03/wp-json/wp/v2/pages/1019\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/fashion-influencer-03/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55746\";a:12:{s:5:\"title\";s:8:\"Lookbook\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/06/fashion-influencer-lookbook-bb.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/06/fashion-influencer-lookbook-bb.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/fashion-influencer-03/wp-json/wp/v2/pages/1038\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/fashion-influencer-03/lookbook/\";s:15:\"astra-sites-tag\";a:1:{i:752;s:8:\"lookbook\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-55747\";a:12:{s:5:\"title\";s:6:\"Shoots\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/06/fashion-influencer-shoots-bb.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/06/fashion-influencer-shoots-bb.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/fashion-influencer-03/wp-json/wp/v2/pages/1031\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/fashion-influencer-03/shoots/\";s:15:\"astra-sites-tag\";a:1:{i:2023;s:6:\"shoots\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-49829\";a:22:{s:5:\"title\";s:12:\"Learn Baking\";s:2:\"id\";i:49829;s:12:\"publish-date\";i:1612559280;s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-baking-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-baking-02-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-baking-02-homepage.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/learn-baking-02\";s:20:\"astra-site-parent-id\";i:1856;s:15:\"astra-sites-tag\";a:5:{i:1857;s:6:\"baking\";i:462;s:7:\"courses\";i:467;s:9:\"learndash\";i:975;s:15:\"online-learning\";i:720;s:9:\"tutorials\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:7:{i:2828;s:4:\"blog\";i:2835;s:9:\"elearning\";i:2785;s:4:\"food\";i:2880;s:10:\"membership\";i:2827;s:13:\"online-course\";i:2770;s:8:\"personal\";i:2873;s:5:\"tutor\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:7:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:3;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:5;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:29:\"Ultimate Addons for Gutenberg\";}i:6;a:3:{s:4:\"slug\";s:13:\"presto-player\";s:4:\"init\";s:31:\"presto-player/presto-player.php\";s:4:\"name\";s:13:\"Presto Player\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1057:\"<!-- wp:paragraph -->\n<p>An online platform helps break boundaries and reach a wider audience. And with our Learn Baking template, you can offer online courses on baking cookies, pastries, cakes, and more to just about anyone.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The seamless integrations with popular LMS WordPress plugins, such as LearnDash, lets you easily create and manage courses on your website. Showcase your popular courses and testimonials from students who’ve enrolled in your courses on the homepage.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Learn Baking template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Perfect website template to offer online courses on baking</li><li>Seamless integration with all popular LMS WordPress plugins</li><li>Showcase the popular courses and student testimonials on the homepage</li><li>Publish blogs to not only educate your students but also to be known as an authority</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:82:\"A web template that’s perfect for creating and managing online courses on baking\";s:5:\"pages\";a:5:{s:8:\"id-49830\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-baking-02-about.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-baking-02-about.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/learn-baking-02/wp-json/wp/v2/pages/481\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/learn-baking-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49831\";a:12:{s:5:\"title\";s:11:\"All Courses\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-baking-02-all-courses.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-baking-02-all-courses.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/learn-baking-02/wp-json/wp/v2/pages/836\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/learn-baking-02/all-courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49832\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-baking-02-blog.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-baking-02-blog.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/learn-baking-02/wp-json/wp/v2/pages/719\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/learn-baking-02/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:29:\"Ultimate Addons for Gutenberg\";}}}s:8:\"id-49833\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-baking-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-baking-02-contact.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/learn-baking-02/wp-json/wp/v2/pages/533\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/learn-baking-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-49834\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-baking-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-baking-02-homepage.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/learn-baking-02/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/learn-baking-02/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-58870\";a:22:{s:5:\"title\";s:17:\"Security Services\";s:2:\"id\";i:58870;s:12:\"publish-date\";i:1643644862;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/09/security-services-02-home.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/09/security-services-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/09/security-services-02-home.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/security-services-02\";s:20:\"astra-site-parent-id\";i:2505;s:15:\"astra-sites-tag\";a:8:{i:2508;s:14:\"alarm-security\";i:2507;s:15:\"camera-security\";i:2511;s:16:\"custody-services\";i:2510;s:5:\"guard\";i:2506;s:16:\"private-security\";i:2509;s:6:\"safety\";i:2399;s:17:\"security-services\";i:2400;s:15:\"security-system\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:1:{i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:958:\"<!-- wp:paragraph -->\n<p>Security Services is an impressive design created to portray the seriousness of the topic without being overbearing. The dark homepage image is contrasted by white fonts and a bright red color to help keep you grounded.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design uses modern fonts and an attractive flat design with great spacing, good use of white space and all the features you would expect to see on a security website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Security Services template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Contrasting dark and light elements that make an impact</li><li>Simple navigation for ease of use</li><li>Good use of colors with plenty of white space</li><li>Bold content sections for important messages</li><li>Simple service section designed for clarity</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:90:\"A template designed to deliver the information clients want to see from a security service\";s:5:\"pages\";a:5:{s:8:\"id-58273\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/09/security-services-02-home.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/09/security-services-02-home.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/security-services-02/wp-json/wp/v2/pages/25\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/security-services-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58274\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/09/security-services-02-services.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/09/security-services-02-services.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/security-services-02/wp-json/wp/v2/pages/230\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/security-services-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58275\";a:12:{s:5:\"title\";s:8:\"Training\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/09/security-services-02-training.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/09/security-services-02-training.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/security-services-02/wp-json/wp/v2/pages/273\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/security-services-02/training/\";s:15:\"astra-sites-tag\";a:1:{i:721;s:8:\"training\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58271\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/09/security-services-02-about.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/09/security-services-02-about.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/security-services-02/wp-json/wp/v2/pages/328\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/security-services-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58272\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/09/security-services-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/09/security-services-02-contact.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/security-services-02/wp-json/wp/v2/pages/410\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/security-services-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-53742\";a:22:{s:5:\"title\";s:31:\"Travel Blogger &amp; Influencer\";s:2:\"id\";i:53742;s:12:\"publish-date\";i:1623425467;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-home.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/travel-blogger-04\";s:20:\"astra-site-parent-id\";i:2003;s:15:\"astra-sites-tag\";a:9:{i:1652;s:7:\"blogger\";i:1654;s:15:\"content-creator\";i:1547;s:10:\"influencer\";i:2163;s:23:\"social-media-influencer\";i:2168;s:19:\"tourism-influencers\";i:2170;s:14:\"travel-tourism\";i:1683;s:14:\"travel-blogger\";i:2167;s:17:\"travel-influencer\";i:2169;s:14:\"travel-vlogger\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:37;s:4:\"blog\";}s:29:\"astra-sites-template-category\";a:6:{i:2828;s:4:\"blog\";i:2770;s:8:\"personal\";i:2768;s:9:\"portfolio\";i:2775;s:14:\"travel-tourism\";i:2801;s:5:\"video\";i:2870;s:4:\"vlog\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2497;s:4:\"blog\";i:2926;s:5:\"video\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1061:\"<!-- wp:paragraph -->\n<p>Are you a travel blogger, an influencer, or both? Want to share your travel experiences with the world? Start a blog by using our awe-inspiring Travel Blogger &amp; Influencer template.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The engaging website template is designed to help you promote yourself as the face behind the blog. Additionally, you can publish blogs, upload and share videos, provide insights into your next travel destination, and even integrate your Instagram feed on your homepage.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Travel Blogger &amp; Influencer template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Inspiring website template, perfect for travel bloggers and influencers</li><li>Integrate your Instagram feed on the website</li><li>Upload and share videos of your various travel destinations</li><li>Publish blogs on topics related to travel, destinations, tips, and more</li><li>Fully customizable page builder-ready template</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:87:\"Awe-inspiring website template for bloggers and influencers to share travel experiences\";s:5:\"pages\";a:9:{s:8:\"id-53743\";a:12:{s:5:\"title\";s:8:\"About me\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-about.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-about.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/travel-blogger-04/wp-json/wp/v2/pages/19\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/travel-blogger-04/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-53744\";a:12:{s:5:\"title\";s:6:\"Africa\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-africa.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-africa.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/travel-blogger-04/wp-json/wp/v2/pages/29\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/travel-blogger-04/africa/\";s:15:\"astra-sites-tag\";a:2:{i:2019;s:6:\"africa\";i:786;s:12:\"travel-place\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-53745\";a:12:{s:5:\"title\";s:4:\"Asia\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-asia.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-asia.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/travel-blogger-04/wp-json/wp/v2/pages/31\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/travel-blogger-04/asia/\";s:15:\"astra-sites-tag\";a:2:{i:2017;s:4:\"asia\";i:786;s:12:\"travel-place\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-53746\";a:12:{s:5:\"title\";s:11:\"Destination\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-destination.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-destination.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/travel-blogger-04/wp-json/wp/v2/pages/367\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/travel-blogger-04/destination/\";s:15:\"astra-sites-tag\";a:1:{i:785;s:11:\"destination\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-53747\";a:12:{s:5:\"title\";s:6:\"Europe\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-europe.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-europe.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/travel-blogger-04/wp-json/wp/v2/pages/27\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/travel-blogger-04/europe/\";s:15:\"astra-sites-tag\";a:2:{i:2014;s:6:\"europe\";i:786;s:12:\"travel-place\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-53748\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-home.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/travel-blogger-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/travel-blogger-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-53749\";a:12:{s:5:\"title\";s:12:\"The Americas\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-the-americas.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-the-americas.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/travel-blogger-04/wp-json/wp/v2/pages/35\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/travel-blogger-04/the-americas/\";s:15:\"astra-sites-tag\";a:2:{i:2015;s:7:\"america\";i:786;s:12:\"travel-place\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-53750\";a:12:{s:5:\"title\";s:6:\"Videos\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-videos.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-videos.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/travel-blogger-04/wp-json/wp/v2/pages/23\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/travel-blogger-04/videos/\";s:15:\"astra-sites-tag\";a:1:{i:2001;s:6:\"videos\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-53751\";a:12:{s:5:\"title\";s:12:\"Work with me\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-work-with-me.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-work-with-me.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/travel-blogger-04/wp-json/wp/v2/pages/25\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/travel-blogger-04/work-with-me/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:55717;s:26:\"related-elementor-template\";i:53742;s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(206,'astra-sites-and-pages-page-12','a:15:{s:8:\"id-55717\";a:22:{s:5:\"title\";s:31:\"Travel Blogger &amp; Influencer\";s:2:\"id\";i:55717;s:12:\"publish-date\";i:1624910289;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/06/travel-blogger-03-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/06/travel-blogger-03-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/06/travel-blogger-03-home.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/travel-blogger-03\";s:20:\"astra-site-parent-id\";i:2203;s:15:\"astra-sites-tag\";a:9:{i:1652;s:7:\"blogger\";i:1654;s:15:\"content-creator\";i:1547;s:10:\"influencer\";i:2163;s:23:\"social-media-influencer\";i:2168;s:19:\"tourism-influencers\";i:2170;s:14:\"travel-tourism\";i:1683;s:14:\"travel-blogger\";i:2167;s:17:\"travel-influencer\";i:2169;s:14:\"travel-vlogger\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:37;s:4:\"blog\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:2:{i:2497;s:4:\"blog\";i:2926;s:5:\"video\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:9:{s:8:\"id-55718\";a:12:{s:5:\"title\";s:8:\"About me\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-about.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-about.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/travel-blogger-03/wp-json/wp/v2/pages/603\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/travel-blogger-03/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-55719\";a:12:{s:5:\"title\";s:6:\"Africa\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-africa.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-africa.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/travel-blogger-03/wp-json/wp/v2/pages/605\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/travel-blogger-03/africa/\";s:15:\"astra-sites-tag\";a:2:{i:2019;s:6:\"africa\";i:786;s:12:\"travel-place\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-55720\";a:12:{s:5:\"title\";s:4:\"Asia\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-asia.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-asia.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/travel-blogger-03/wp-json/wp/v2/pages/607\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/travel-blogger-03/asia/\";s:15:\"astra-sites-tag\";a:2:{i:2017;s:4:\"asia\";i:786;s:12:\"travel-place\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-55721\";a:12:{s:5:\"title\";s:11:\"Destination\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/06/travel-blogger-03-destination.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/06/travel-blogger-03-destination.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/travel-blogger-03/wp-json/wp/v2/pages/609\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/travel-blogger-03/destination/\";s:15:\"astra-sites-tag\";a:1:{i:785;s:11:\"destination\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-55722\";a:12:{s:5:\"title\";s:6:\"Europe\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-europe.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-europe.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/travel-blogger-03/wp-json/wp/v2/pages/611\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/travel-blogger-03/europe/\";s:15:\"astra-sites-tag\";a:2:{i:2014;s:6:\"europe\";i:786;s:12:\"travel-place\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-55723\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/06/travel-blogger-03-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/06/travel-blogger-03-home.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/travel-blogger-03/wp-json/wp/v2/pages/601\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/travel-blogger-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55724\";a:12:{s:5:\"title\";s:12:\"The Americas\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-the-americas.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-the-americas.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/travel-blogger-03/wp-json/wp/v2/pages/613\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/travel-blogger-03/the-americas/\";s:15:\"astra-sites-tag\";a:2:{i:2015;s:7:\"america\";i:786;s:12:\"travel-place\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-55725\";a:12:{s:5:\"title\";s:6:\"Videos\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/06/travel-blogger-03-videos.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/06/travel-blogger-03-videos.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/travel-blogger-03/wp-json/wp/v2/pages/615\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/travel-blogger-03/videos/\";s:15:\"astra-sites-tag\";a:1:{i:2001;s:6:\"videos\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-55726\";a:12:{s:5:\"title\";s:12:\"Work with me\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-work-with-me.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-blogger-02-work-with-me.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/travel-blogger-03/wp-json/wp/v2/pages/617\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/travel-blogger-03/work-with-me/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:784;s:12:\"work-with-me\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55257\";a:22:{s:5:\"title\";s:14:\"Local Business\";s:2:\"id\";i:55257;s:12:\"publish-date\";i:1621610678;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-02.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-02.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-02.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/local-business-02\";s:20:\"astra-site-parent-id\";i:2057;s:15:\"astra-sites-tag\";a:15:{i:586;s:8:\"car-wash\";i:2085;s:9:\"carpentry\";i:2089;s:16:\"cleaning-company\";i:2088;s:20:\"construction-company\";i:341;s:11:\"electrician\";i:2090;s:16:\"flooring-company\";i:1021;s:14:\"local-business\";i:2086;s:12:\"local-worker\";i:2094;s:8:\"mechanic\";i:2093;s:16:\"painting-company\";i:508;s:8:\"plumbing\";i:2092;s:16:\"plumbing-company\";i:2091;s:15:\"roofing-company\";i:2087;s:20:\"services-maintenance\";i:441;s:10:\"technician\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2816;s:8:\"plumbing\";i:2768;s:9:\"portfolio\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1100:\"<!-- wp:paragraph -->\n<p>A website makes you look professional and helps build trust with your prospective clients. Whatever service you offer, be it plumbing, gardening, building maintenance, or painting, you are seen as someone professional and serious about your business by having an online presence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our Local Business web template covers you and makes you look every bit professional. Showcase testimonials from your happy customers as well to build trust.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Local Business template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Professionally designed template that’s tailored to promote your local services</li><li>List all the services and include a portfolio of your completed work as well</li><li>Include customer testimonials to enhance trustworthiness</li><li>Display office hours and integrate Google maps to help customers locate you</li><li>Global color palettes allow you to customize and play around with the website colors</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"Professional-looking website template to promote your local business and services\";s:5:\"pages\";a:4:{s:8:\"id-55258\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-02-about-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-02-about-1.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/local-business-02/wp-json/wp/v2/pages/245\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/local-business-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55259\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-02-contact.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/local-business-02/wp-json/wp/v2/pages/247\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/local-business-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55260\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-02.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-02.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/local-business-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/local-business-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55261\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-02-services.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-02-services.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/local-business-02/wp-json/wp/v2/pages/246\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/local-business-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:55257;s:26:\"related-gutenberg-template\";i:55315;}s:8:\"id-55315\";a:22:{s:5:\"title\";s:14:\"Local Business\";s:2:\"id\";i:55315;s:12:\"publish-date\";i:1621624705;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-08-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-08-1-600x2413.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-08-1-400x1609.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/local-business-08\";s:20:\"astra-site-parent-id\";i:2066;s:15:\"astra-sites-tag\";a:15:{i:586;s:8:\"car-wash\";i:2085;s:9:\"carpentry\";i:2089;s:16:\"cleaning-company\";i:2088;s:20:\"construction-company\";i:341;s:11:\"electrician\";i:2090;s:16:\"flooring-company\";i:1021;s:14:\"local-business\";i:2086;s:12:\"local-worker\";i:2094;s:8:\"mechanic\";i:2093;s:16:\"painting-company\";i:508;s:8:\"plumbing\";i:2092;s:16:\"plumbing-company\";i:2091;s:15:\"roofing-company\";i:2087;s:20:\"services-maintenance\";i:441;s:10:\"technician\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-55317\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-08-contact-1-600x939.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/local-business-08/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/local-business-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55318\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-08-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-08-1-600x2413.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/local-business-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/local-business-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55319\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-08-services-1-600x1283.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/local-business-08/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/local-business-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55316\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-08-about-2.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-08-about-2-600x1662.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/local-business-08/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/local-business-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55660\";a:22:{s:5:\"title\";s:14:\"Heritage Hotel\";s:2:\"id\";i:55660;s:12:\"publish-date\";i:1623760910;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/06/heritage-hotel-04-home-01.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/06/heritage-hotel-04-home-01.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/06/heritage-hotel-04-home-01.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/heritage-hotel-04\";s:20:\"astra-site-parent-id\";i:2178;s:15:\"astra-sites-tag\";a:8:{i:2180;s:14:\"heritage-hotel\";i:350;s:5:\"hotel\";i:2199;s:21:\"indian-heritage-hotel\";i:2082;s:12:\"luxury-hotel\";i:2197;s:16:\"luxury-residence\";i:2196;s:12:\"palace-hotel\";i:2195;s:4:\"stay\";i:2198;s:17:\"traditional-hotel\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2788;s:9:\"hotel-bnb\";i:2775;s:14:\"travel-tourism\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2498;s:12:\"hotel-travel\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1009:\"<!-- wp:paragraph -->\n<p>Want potential customers to experience the luxury of your heritage hotel from the comfort of their home? The Heritage Hotel template does just that. The classy website design sets the tone and lets potential customers envisage their stay at the property.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>From the rooms and suites to the dining experience, and walkthrough of the entire property, your heritage hotel website template comes equipped with everything you need to draw your customer’s attention.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Heritage Hotel template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Experience royalty with a classy and elegant website design</li><li>Include details of the rooms and suites, tariffs, and more</li><li>An impressive gallery to showcase every bit of your hotel</li><li>Accept online reservations and bookings</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:87:\"Inspiring and classy template perfect for recreating the experience of a heritage hotel\";s:5:\"pages\";a:7:{s:8:\"id-55661\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/06/heritage-hotel-04-contact-01.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/06/heritage-hotel-04-contact-01.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/heritage-hotel-04/wp-json/wp/v2/pages/794\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/heritage-hotel-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55662\";a:12:{s:5:\"title\";s:6:\"Dining\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/06/heritage-hotel-02-dining.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/06/heritage-hotel-02-dining.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/heritage-hotel-04/wp-json/wp/v2/pages/734\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/heritage-hotel-04/dining/\";s:15:\"astra-sites-tag\";a:1:{i:1798;s:6:\"dining\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55663\";a:12:{s:5:\"title\";s:10:\"Experience\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/06/heritage-hotel-04-experience-01.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/06/heritage-hotel-04-experience-01.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/heritage-hotel-04/wp-json/wp/v2/pages/589\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/heritage-hotel-04/experience/\";s:15:\"astra-sites-tag\";a:1:{i:636;s:10:\"experience\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55666\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/06/heritage-hotel-04-home-01.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/06/heritage-hotel-04-home-01.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/heritage-hotel-04/wp-json/wp/v2/pages/24\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/heritage-hotel-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55664\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/06/heritage-hotel-02-gallery.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/06/heritage-hotel-02-gallery.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/heritage-hotel-04/wp-json/wp/v2/pages/830\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/heritage-hotel-04/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55665\";a:12:{s:5:\"title\";s:7:\"History\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/06/heritage-hotel-02-history.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/06/heritage-hotel-02-history.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/heritage-hotel-04/wp-json/wp/v2/pages/476\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/heritage-hotel-04/history/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:645;s:7:\"history\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55667\";a:12:{s:5:\"title\";s:18:\"Rooms &amp; Suites\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/06/heritage-hotel-02-rooms-suites.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/06/heritage-hotel-02-rooms-suites.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/heritage-hotel-04/wp-json/wp/v2/pages/644\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/heritage-hotel-04/rooms-suites/\";s:15:\"astra-sites-tag\";a:2:{i:715;s:5:\"rooms\";i:2179;s:6:\"suites\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55172\";a:22:{s:5:\"title\";s:11:\"Steak House\";s:2:\"id\";i:55172;s:12:\"publish-date\";i:1621602080;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-02-home.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-02-home.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/steak-house-02\";s:20:\"astra-site-parent-id\";i:2053;s:15:\"astra-sites-tag\";a:9:{i:2071;s:15:\"chef-restaurant\";i:336;s:4:\"food\";i:2068;s:15:\"food-and-drinks\";i:2067;s:19:\"food-and-restaurant\";i:2070;s:10:\"food-house\";i:350;s:5:\"hotel\";i:2069;s:25:\"non-vegetarian-restaurant\";i:335;s:10:\"restaurant\";i:2072;s:11:\"steak-house\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2785;s:4:\"food\";i:2876;s:13:\"food-ordering\";i:2776;s:10:\"restaurant\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:972:\"<!-- wp:paragraph -->\n<p>Do you own a steak house? Want to promote your dine-in and accept orders online? If so, the Steak House web template is perfect for you. The design is attractive and ensures your customers engage with your cuisine instantaneously.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Showcase your mouth watering menu, facilitate online reservations, and include customer reviews, among other things, on your website. Additionally, you can include your working hours and the ambiance photos to help connect with your customers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Steak House template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Attractive and engaging website design</li><li>Showcase your fabulous and mouth watering menu</li><li>Include customer testimonials and ambiance photos</li><li>Accept online table reservations</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:79:\"The perfect website template to sell mouth-watering and delicious steaks online\";s:5:\"pages\";a:8:{s:8:\"id-57906\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/steak-house-02/wp-json/wp/v2/pages/105\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/steak-house-02/about/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-57907\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/steak-house-02/wp-json/wp/v2/pages/107\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/steak-house-02/contact/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-57908\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/steak-house-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/steak-house-02/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-57909\";a:12:{s:5:\"title\";s:4:\"Menu\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/steak-house-02/wp-json/wp/v2/pages/106\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/steak-house-02/menu/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-55173\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-02-about.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-02-about.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/steak-house-02/wp-json/wp/v2/pages/105\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/steak-house-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55174\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-02-contact.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/steak-house-02/wp-json/wp/v2/pages/107\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/steak-house-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55175\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-02-home.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-02-home.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/steak-house-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/steak-house-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55176\";a:12:{s:5:\"title\";s:4:\"Menu\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-02-menu.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-02-menu.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/steak-house-02/wp-json/wp/v2/pages/106\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/steak-house-02/menu/\";s:15:\"astra-sites-tag\";a:2:{i:1579;s:9:\"food-menu\";i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:55172;s:26:\"related-gutenberg-template\";i:64717;}s:8:\"id-54338\";a:22:{s:5:\"title\";s:11:\"Steak House\";s:2:\"id\";i:54338;s:12:\"publish-date\";i:1620833417;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-08-600x2370.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-08-400x1580.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/steak-house-08\";s:20:\"astra-site-parent-id\";i:2025;s:15:\"astra-sites-tag\";a:9:{i:2071;s:15:\"chef-restaurant\";i:336;s:4:\"food\";i:2068;s:15:\"food-and-drinks\";i:2067;s:19:\"food-and-restaurant\";i:2070;s:10:\"food-house\";i:350;s:5:\"hotel\";i:2069;s:25:\"non-vegetarian-restaurant\";i:335;s:10:\"restaurant\";i:2072;s:11:\"steak-house\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-54341\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-08-600x2370.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/steak-house-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/steak-house-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-54339\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-08-about-1-600x1939.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/steak-house-08/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/steak-house-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-54340\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-08-contact-1-600x1150.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/steak-house-08/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/steak-house-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-54342\";a:12:{s:5:\"title\";s:4:\"Menu\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-08-menu-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-08-menu-1-600x1663.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/steak-house-08/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/steak-house-08/menu/\";s:15:\"astra-sites-tag\";a:2:{i:1579;s:9:\"food-menu\";i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-57057\";a:22:{s:5:\"title\";s:13:\"Business Blog\";s:2:\"id\";i:57057;s:12:\"publish-date\";i:1626458028;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/07/business-blog-04-home.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/07/business-blog-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/07/business-blog-04-home.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/business-blog-04\";s:20:\"astra-site-parent-id\";i:2262;s:15:\"astra-sites-tag\";a:9:{i:480;s:4:\"blog\";i:2275;s:13:\"business-blog\";i:2277;s:17:\"business-magazine\";i:2276;s:13:\"business-news\";i:2273;s:9:\"editorial\";i:2274;s:8:\"magazine\";i:2271;s:4:\"news\";i:2272;s:10:\"publishing\";i:2278;s:16:\"publishing-house\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:37;s:4:\"blog\";}s:29:\"astra-sites-template-category\";a:4:{i:2828;s:4:\"blog\";i:2777;s:8:\"business\";i:2774;s:8:\"magazine\";i:2859;s:4:\"news\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1088:\"<!-- wp:paragraph -->\n<p>Want to build a blog and publish articles on the latest happenings in the business world? Use our Business Blog template. From the stock market and current affairs to startups and new business opportunities, share the latest news and trends with our highly engaging template.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Business Blog template is well designed and allows for a clutter-free reading experience. You can let readers subscribe to your newsletter and update them every time an article is published. Ideal for any type of business website!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Business Blog template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Engaging and clutter-free design that enhances user experience</li><li>Newsletter subscription form that’s well integrated with the templates</li><li>Well-designed layout that delivers a great reading experience</li><li>Compatible with all popular page builders</li><li>Fully responsive and looks great on all device sizes</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:85:\"Share the latest trends in the business world with the perfect business blog template\";s:5:\"pages\";a:4:{s:8:\"id-57058\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/07/business-blog-04-about.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/07/business-blog-04-about.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/business-blog-04/wp-json/wp/v2/pages/649\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/business-blog-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57059\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/07/business-blog-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/07/business-blog-04-contact.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/business-blog-04/wp-json/wp/v2/pages/773\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/business-blog-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57060\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/07/business-blog-04-home.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/07/business-blog-04-home.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/business-blog-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/business-blog-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-57061\";a:12:{s:5:\"title\";s:20:\"Interactive Sessions\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/07/business-blog-04-sessions.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/07/business-blog-04-sessions.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/business-blog-04/wp-json/wp/v2/pages/839\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:57:\"//websitedemos.net/business-blog-04/interactive-sessions/\";s:15:\"astra-sites-tag\";a:2:{i:2270;s:8:\"podcasts\";i:1872;s:8:\"sessions\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";i:57416;s:26:\"related-elementor-template\";i:57057;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-57416\";a:22:{s:5:\"title\";s:13:\"Business Blog\";s:2:\"id\";i:57416;s:12:\"publish-date\";i:1630403198;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/07/business-blog-04-home.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/07/business-blog-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/07/business-blog-04-home.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/business-blog-03\";s:20:\"astra-site-parent-id\";i:2341;s:15:\"astra-sites-tag\";a:9:{i:480;s:4:\"blog\";i:2275;s:13:\"business-blog\";i:2277;s:17:\"business-magazine\";i:2276;s:13:\"business-news\";i:2273;s:9:\"editorial\";i:2274;s:8:\"magazine\";i:2271;s:4:\"news\";i:2272;s:10:\"publishing\";i:2278;s:16:\"publishing-house\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:37;s:4:\"blog\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-57417\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/07/business-blog-04-about.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/07/business-blog-04-about.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/business-blog-03/wp-json/wp/v2/pages/1323\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/business-blog-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-57418\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/07/business-blog-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/07/business-blog-04-contact.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/business-blog-03/wp-json/wp/v2/pages/1325\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/business-blog-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-57419\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/07/business-blog-04-home.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/07/business-blog-04-home.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/business-blog-03/wp-json/wp/v2/pages/1327\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/business-blog-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-57420\";a:12:{s:5:\"title\";s:20:\"Interactive Sessions\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/07/business-blog-04-sessions.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/07/business-blog-04-sessions.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/business-blog-03/wp-json/wp/v2/pages/1329\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:57:\"//websitedemos.net/business-blog-03/interactive-sessions/\";s:15:\"astra-sites-tag\";a:2:{i:2342;s:19:\"interactive-session\";i:2343;s:7:\"session\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-57178\";a:22:{s:5:\"title\";s:14:\"Painter Artist\";s:2:\"id\";i:57178;s:12:\"publish-date\";i:1627044188;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/07/painter-artist-04-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/07/painter-artist-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/07/painter-artist-04-home.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/painter-artist-04\";s:20:\"astra-site-parent-id\";i:2281;s:15:\"astra-sites-tag\";a:10:{i:339;s:6:\"artist\";i:2299;s:16:\"artist-portfolio\";i:2298;s:17:\"artwork-portfolio\";i:2297;s:18:\"designer-portfolio\";i:2296;s:17:\"graphic-designers\";i:2295;s:11:\"illustrator\";i:614;s:7:\"painter\";i:2284;s:14:\"painter-artist\";i:2283;s:14:\"painting-store\";i:444;s:9:\"portfolio\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:4:{i:2802;s:6:\"artist\";i:2769;s:9:\"ecommerce\";i:2770;s:8:\"personal\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:7:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:5;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:6;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1047:\"<!-- wp:paragraph -->\n<p>Are you an artist, abstract painter, or an art educator? Want to showcase your work to the world? Import our Painter Artist template and launch your website quickly and easily.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The creatively designed template complements your work and does justice while showcasing your portfolio. Promote your best work, include details of upcoming exhibitions, sell your paintings online, include courses on painting, and do a lot more on your website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Painter Artist template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Creatively designed website template, ideal for artists and art lovers</li><li>From showcasing your artwork to upcoming exhibitions, the template has it all covered</li><li>Well integrated with WooCommerce allowing you to sell your artwork online</li><li>Create and manage courses on painting as well</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"Aesthetically pleasing website design that’s perfect for artists and art lovers\";s:5:\"pages\";a:5:{s:8:\"id-57179\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/07/painter-artist-04-about.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/07/painter-artist-04-about.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/painter-artist-04/wp-json/wp/v2/pages/465\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/painter-artist-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57180\";a:12:{s:5:\"title\";s:7:\"Artwork\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/07/painter-artist-04-artworks.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/07/painter-artist-04-artworks.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/painter-artist-04/wp-json/wp/v2/pages/466\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/painter-artist-04/artwork/\";s:15:\"astra-sites-tag\";a:3:{i:2294;s:8:\"artworks\";i:444;s:9:\"portfolio\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57181\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/07/painter-artist-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/07/painter-artist-04-contact.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/painter-artist-04/wp-json/wp/v2/pages/468\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/painter-artist-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-57182\";a:12:{s:5:\"title\";s:11:\"Exhibitions\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/07/painter-artist-04-exhibitions.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/07/painter-artist-04-exhibitions.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/painter-artist-04/wp-json/wp/v2/pages/467\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/painter-artist-04/exhibitions/\";s:15:\"astra-sites-tag\";a:1:{i:2293;s:11:\"exhibitions\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57183\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/07/painter-artist-04-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/07/painter-artist-04-home.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/painter-artist-04/wp-json/wp/v2/pages/18\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/painter-artist-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-54398\";a:22:{s:5:\"title\";s:14:\"Digital Agency\";s:2:\"id\";i:54398;s:12:\"publish-date\";i:1621455198;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-02-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-02-home.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/digital-agency-02\";s:20:\"astra-site-parent-id\";i:2029;s:15:\"astra-sites-tag\";a:13:{i:1587;s:18:\"advertising-agency\";i:663;s:6:\"agency\";i:2050;s:27:\"business-consulting-company\";i:2037;s:13:\"design-agency\";i:2048;s:13:\"design-studio\";i:2039;s:14:\"digital-agency\";i:2036;s:22:\"digital-marketing-firm\";i:2040;s:4:\"firm\";i:2049;s:21:\"graphic-design-studio\";i:2038;s:11:\"it-services\";i:1588;s:16:\"marketing-agency\";i:2035;s:18:\"marketing-services\";i:1762;s:16:\"software-company\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:5:{i:2777;s:8:\"business\";i:2812;s:14:\"digital-agency\";i:2796;s:17:\"digital-marketing\";i:2831;s:7:\"service\";i:2779;s:16:\"software-company\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1118:\"<!-- wp:paragraph -->\n<p>You’ll probably agree that prospective clients would like to see your portfolio of work before engaging with you. In addition to having a portfolio to showcase, having a professionally designed agency website would surely help close the deal.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our Digital Agency template does that for you. The beautifully designed template helps you showcase your expertise, promote your services, introduce the team members, and even display testimonials from your happy clients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Digital Agency template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Professionally designed digital agency template to showcase your expertise</li><li>Template includes done-for-pages, such as an about us, services, and a fully functional contact page</li><li>Customize the website to match your branding, using the global color palette and typography</li><li>Fully functional newsletter subscription form</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"Build an agency website using our professionally designed Digital Agency template\";s:5:\"pages\";a:4:{s:8:\"id-54400\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-02-contact.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/digital-agency-02/wp-json/wp/v2/pages/114\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/digital-agency-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-54399\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-02-about-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-02-about-1.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/digital-agency-02/wp-json/wp/v2/pages/113\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/digital-agency-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-54402\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-02-services.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-02-services.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/digital-agency-02/wp-json/wp/v2/pages/112\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/digital-agency-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-54401\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-02-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-02-home.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/digital-agency-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/digital-agency-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:54398;s:26:\"related-gutenberg-template\";i:54463;}s:8:\"id-54463\";a:22:{s:5:\"title\";s:14:\"Digital Agency\";s:2:\"id\";i:54463;s:12:\"publish-date\";i:1621459243;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-08-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-08-1-600x2456.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-08-1-400x1637.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/digital-agency-08\";s:20:\"astra-site-parent-id\";i:2051;s:15:\"astra-sites-tag\";a:13:{i:1587;s:18:\"advertising-agency\";i:663;s:6:\"agency\";i:2050;s:27:\"business-consulting-company\";i:2037;s:13:\"design-agency\";i:2048;s:13:\"design-studio\";i:2039;s:14:\"digital-agency\";i:2036;s:22:\"digital-marketing-firm\";i:2040;s:4:\"firm\";i:2049;s:21:\"graphic-design-studio\";i:2038;s:11:\"it-services\";i:1588;s:16:\"marketing-agency\";i:2035;s:18:\"marketing-services\";i:1762;s:16:\"software-company\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-54464\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-08-about-us-2.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-08-about-us-2-600x1549.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/digital-agency-08/wp-json/wp/v2/pages/139\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/digital-agency-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-54465\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-08-contact-1-600x969.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/digital-agency-08/wp-json/wp/v2/pages/141\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/digital-agency-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-54466\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-08-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-08-1-600x2456.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/digital-agency-08/wp-json/wp/v2/pages/135\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/digital-agency-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-54467\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-08-services-1-600x1326.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/digital-agency-08/wp-json/wp/v2/pages/137\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/digital-agency-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-57122\";a:22:{s:5:\"title\";s:25:\"Business Consultancy Firm\";s:2:\"id\";i:57122;s:12:\"publish-date\";i:1627046837;s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consultancy-firm-04-home.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consultancy-firm-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consultancy-firm-04-home.jpg\";s:14:\"astra-site-url\";s:47:\"//websitedemos.net/business-consultancy-firm-04\";s:20:\"astra-site-parent-id\";i:2280;s:15:\"astra-sites-tag\";a:11:{i:663;s:6:\"agency\";i:2285;s:20:\"business-consultancy\";i:2286;s:25:\"business-consultancy-firm\";i:2288;s:19:\"business-consulting\";i:2050;s:27:\"business-consulting-company\";i:979;s:7:\"company\";i:2287;s:20:\"consultancy-services\";i:2289;s:20:\"financial-consulting\";i:2292;s:13:\"hr-consulting\";i:2290;s:15:\"sales-marketing\";i:2291;s:21:\"technology-consulting\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2825;s:8:\"coaching\";i:2794;s:10:\"consulting\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1249:\"<!-- wp:paragraph -->\n<p>If you’re an independent business consultant or a consultancy firm, having a professional-looking website gives you the much-needed edge over your competitors. Whether consultancy in business, financial, or even sales and marketing, our Business Consultancy Firm web template gives you that professional edge.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template has impressive background effects and allows you to share case studies, list your services, and reviews from happy clients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Business Consultancy Firm template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Professionally designed consultancy firm template that comes with impressive background effects</li><li>The package includes templates for every service that you may offer, such as business consultancy, financial consultancy, and HR consultancy, among others</li><li>The about us page contains details of the team members and career opportunities with the firm</li><li>A ‘book a free consulting call’ call to action button is integrated into the top menu</li><li>Fully responsive and customizable business consultancy firm template</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:86:\"The perfect template to build a professional-looking business consultancy firm website\";s:5:\"pages\";a:11:{s:8:\"id-57123\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consultancy-firm-04-about.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consultancy-firm-04-about.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/business-consultancy-firm-04/wp-json/wp/v2/pages/18\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/business-consultancy-firm-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57124\";a:12:{s:5:\"title\";s:19:\"Business Consulting\";s:18:\"featured-image-url\";s:104:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consultancy-firm-04-business-consulting.jpg\";s:19:\"thumbnail-image-url\";s:104:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consultancy-firm-04-business-consulting.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/business-consultancy-firm-04/wp-json/wp/v2/pages/32\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:68:\"//websitedemos.net/business-consultancy-firm-04/business-consulting/\";s:15:\"astra-sites-tag\";a:2:{i:2288;s:19:\"business-consulting\";i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57126\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consultancy-firm-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consultancy-firm-04-contact.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/business-consultancy-firm-04/wp-json/wp/v2/pages/20\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:56:\"//websitedemos.net/business-consultancy-firm-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-57127\";a:12:{s:5:\"title\";s:20:\"Financial Consulting\";s:18:\"featured-image-url\";s:105:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consultancy-firm-04-financial-consulting.jpg\";s:19:\"thumbnail-image-url\";s:105:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consultancy-firm-04-financial-consulting.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/business-consultancy-firm-04/wp-json/wp/v2/pages/34\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:69:\"//websitedemos.net/business-consultancy-firm-04/financial-consulting/\";s:15:\"astra-sites-tag\";a:2:{i:2289;s:20:\"financial-consulting\";i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57128\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consultancy-firm-04-home.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consultancy-firm-04-home.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/business-consultancy-firm-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/business-consultancy-firm-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57129\";a:12:{s:5:\"title\";s:13:\"HR Consulting\";s:18:\"featured-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consultancy-firm-04-hr-consulting.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consultancy-firm-04-hr-consulting.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/business-consultancy-firm-04/wp-json/wp/v2/pages/42\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:62:\"//websitedemos.net/business-consultancy-firm-04/hr-consulting/\";s:15:\"astra-sites-tag\";a:2:{i:2292;s:13:\"hr-consulting\";i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57131\";a:12:{s:5:\"title\";s:24:\"Productivity Improvement\";s:18:\"featured-image-url\";s:109:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consultancy-firm-04-productivity-improvement.jpg\";s:19:\"thumbnail-image-url\";s:109:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consultancy-firm-04-productivity-improvement.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/business-consultancy-firm-04/wp-json/wp/v2/pages/38\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:73:\"//websitedemos.net/business-consultancy-firm-04/productivity-improvement/\";s:15:\"astra-sites-tag\";a:2:{i:2303;s:24:\"productivity-improvement\";i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57132\";a:12:{s:5:\"title\";s:21:\"Sales &amp; Marketing\";s:18:\"featured-image-url\";s:100:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consultancy-firm-04-sales-marketing.jpg\";s:19:\"thumbnail-image-url\";s:100:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consultancy-firm-04-sales-marketing.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/business-consultancy-firm-04/wp-json/wp/v2/pages/36\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:64:\"//websitedemos.net/business-consultancy-firm-04/sales-marketing/\";s:15:\"astra-sites-tag\";a:2:{i:2301;s:17:\"sales-marketing-2\";i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57133\";a:12:{s:5:\"title\";s:15:\"Success Stories\";s:18:\"featured-image-url\";s:100:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consultancy-firm-04-success-stories.jpg\";s:19:\"thumbnail-image-url\";s:100:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consultancy-firm-04-success-stories.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/business-consultancy-firm-04/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:64:\"//websitedemos.net/business-consultancy-firm-04/success-stories/\";s:15:\"astra-sites-tag\";a:4:{i:780;s:12:\"case-studies\";i:1615;s:7:\"reviews\";i:990;s:15:\"success-stories\";i:2302;s:11:\"testimonial\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57134\";a:12:{s:5:\"title\";s:21:\"Technology Consulting\";s:18:\"featured-image-url\";s:106:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consultancy-firm-04-technology-consulting.jpg\";s:19:\"thumbnail-image-url\";s:106:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consultancy-firm-04-technology-consulting.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/business-consultancy-firm-04/wp-json/wp/v2/pages/40\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:70:\"//websitedemos.net/business-consultancy-firm-04/technology-consulting/\";s:15:\"astra-sites-tag\";a:2:{i:425;s:8:\"services\";i:2291;s:21:\"technology-consulting\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57135\";a:12:{s:5:\"title\";s:8:\"Training\";s:18:\"featured-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consultancy-firm-04-training.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consultancy-firm-04-training.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/business-consultancy-firm-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:57:\"//websitedemos.net/business-consultancy-firm-04/training/\";s:15:\"astra-sites-tag\";a:1:{i:721;s:8:\"training\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-46177\";a:22:{s:5:\"title\";s:8:\"Mountain\";s:2:\"id\";i:46177;s:12:\"publish-date\";i:1587542678;s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/04/mountain-1.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/04/mountain-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/04/mountain-1.jpg\";s:14:\"astra-site-url\";s:27:\"//websitedemos.net/mountain\";s:20:\"astra-site-parent-id\";i:1524;s:15:\"astra-sites-tag\";a:3:{i:1525;s:8:\"mountain\";i:1526;s:13:\"multi-purpose\";i:535;s:6:\"nature\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:5:{i:2777;s:8:\"business\";i:2860;s:12:\"multipurpose\";i:2830;s:6:\"nature\";i:2831;s:7:\"service\";i:2797;s:14:\"simple-minimal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2500;s:12:\"multipurpose\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1224:\"<!-- wp:paragraph -->\n<p>Whether you’re an individual or a business, this fast, fully responsive multipurpose template, gives you all the tools you need to build a website. It provides the foundation for an amazing website. All it needs is your creativity.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Offer your services on the homepage and in the provided service page template. The template comes with a significant hero image that includes CTA buttons. Additionally, share those breathtaking mountain photos to entice your audience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Mountain template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Simple and clean design, ideal for building a multipurpose website</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Dedicated section to offer your services on the homepage</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Share breathtaking photos</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Call to action button integrated into the top menu</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Compatible with all popular page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"A fantastic multipurpose website template with modern typography and engaging design\";s:5:\"pages\";a:4:{s:8:\"id-46180\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/04/mountain-1.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/04/mountain-1.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/mountain/wp-json/wp/v2/pages/30\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:28:\"//websitedemos.net/mountain/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46178\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/04/mountain-about-1.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/04/mountain-about-1.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/mountain/wp-json/wp/v2/pages/31\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/mountain/about/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46181\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/04/mountain-services-1.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/04/mountain-services-1.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/mountain/wp-json/wp/v2/pages/32\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/mountain/services/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46179\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/04/mountain-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/04/mountain-contact-1.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/mountain/wp-json/wp/v2/pages/33\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/mountain/contact/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:46177;s:26:\"related-gutenberg-template\";i:48348;}s:8:\"id-34012\";a:22:{s:5:\"title\";s:8:\"Pet Care\";s:2:\"id\";i:34012;s:12:\"publish-date\";i:1571055795;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-04-home.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-04-home.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/pet-care-04\";s:20:\"astra-site-parent-id\";i:992;s:15:\"astra-sites-tag\";a:5:{i:1021;s:14:\"local-business\";i:374;s:8:\"pet-care\";i:372;s:11:\"pet-minding\";i:371;s:11:\"pet-sitting\";i:373;s:12:\"pet-training\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2809;s:10:\"pet-animal\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2472;s:4:\"pets\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1006:\"<!-- wp:paragraph -->\n<p>Want more takers for your pet care services? Promote your services online by building an attractive website using the Pet Care template. It comes with everything you need to take your business online and engage with prospective pet lovers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The homepage is designed to promote your best three services right up front. Scroll down, and you get to showcase all your services, include reviews of happy pet lovers, and book a free consultation call.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Pet Care template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Creatively designed pet care website template</li><li>Impressive mouseover effects on the homepage images</li><li>Done-for-you templates for about us, services, reviews, and contact page</li><li>The about us page includes details of the team behind the pet care service</li><li>SEO-friendly and page builder ready</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:86:\"A perfect website template to connect with pet lovers and offer your pet care services\";s:5:\"pages\";a:5:{s:8:\"id-35747\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-04-home.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-04-home.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/pet-care-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/pet-care-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-35745\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-04-about.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-04-about.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/pet-care-04/wp-json/wp/v2/pages/29\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/pet-care-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-35749\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-04-services.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-04-services.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/pet-care-04/wp-json/wp/v2/pages/31\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/pet-care-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-35748\";a:12:{s:5:\"title\";s:7:\"Reviews\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-04-reviews.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-04-reviews.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/pet-care-04/wp-json/wp/v2/pages/33\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/pet-care-04/reviews/\";s:15:\"astra-sites-tag\";a:1:{i:432;s:6:\"review\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-35746\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-04-contact.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/pet-care-04/wp-json/wp/v2/pages/35\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/pet-care-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:34244;s:26:\"related-elementor-template\";i:34012;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55687\";a:22:{s:5:\"title\";s:9:\"Home Stay\";s:2:\"id\";i:55687;s:12:\"publish-date\";i:1623760997;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-02-home.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-02-home.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/home-stay-04\";s:20:\"astra-site-parent-id\";i:2182;s:15:\"astra-sites-tag\";a:11:{i:2193;s:10:\"apartments\";i:2192;s:2:\"bb\";i:2202;s:17:\"bed-and-breakfast\";i:2191;s:11:\"budget-stay\";i:2189;s:11:\"guest-house\";i:2188;s:9:\"home-stay\";i:2194;s:7:\"hostels\";i:350;s:5:\"hotel\";i:712;s:5:\"lodge\";i:2190;s:13:\"lodging-house\";i:2195;s:4:\"stay\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2788;s:9:\"hotel-bnb\";i:2775;s:14:\"travel-tourism\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2498;s:12:\"hotel-travel\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1059:\"<!-- wp:paragraph -->\n<p>Want your homestay to run on 100% occupancy? You can promote your homestay and accept online reservations from a global audience by having an online presence. The elegantly designed Home Stay web template helps you launch your website quickly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design transports you to the serenity and tranquility of living in the countryside. The template has everything you need to build an informative and engaging website, from showcasing the rooms to the property facilities.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Home Stay template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Simple and clean design that gives a rustic and countryside look and feel</li><li>Significant hero image perfect for promoting the homestay</li><li>The homepage features the amenities and customer reviews</li><li>Google map is integrated to help prospective customers locate the property</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:87:\"A simple and clean website design that’s perfect for a homestay accommodation website\";s:5:\"pages\";a:5:{s:8:\"id-55688\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-02-about.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-02-about.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/home-stay-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/home-stay-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55689\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-02-contact.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/home-stay-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/home-stay-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55690\";a:12:{s:5:\"title\";s:10:\"Facilities\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-02-facilities.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-02-facilities.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/home-stay-04/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/home-stay-04/facilities/\";s:15:\"astra-sites-tag\";a:1:{i:1599;s:10:\"facilities\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55691\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-02-home.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-02-home.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/home-stay-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/home-stay-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55692\";a:12:{s:5:\"title\";s:5:\"Rooms\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-02-rooms.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-02-rooms.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/home-stay-04/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/home-stay-04/rooms/\";s:15:\"astra-sites-tag\";a:1:{i:715;s:5:\"rooms\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";i:55829;s:26:\"related-elementor-template\";i:55687;s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(207,'astra-sites-and-pages-page-13','a:15:{s:8:\"id-55829\";a:22:{s:5:\"title\";s:9:\"Home Stay\";s:2:\"id\";i:55829;s:12:\"publish-date\";i:1624910295;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-03-homepage.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/home-stay-03\";s:20:\"astra-site-parent-id\";i:2220;s:15:\"astra-sites-tag\";a:11:{i:2193;s:10:\"apartments\";i:2192;s:2:\"bb\";i:2202;s:17:\"bed-and-breakfast\";i:2191;s:11:\"budget-stay\";i:2189;s:11:\"guest-house\";i:2188;s:9:\"home-stay\";i:2194;s:7:\"hostels\";i:350;s:5:\"hotel\";i:712;s:5:\"lodge\";i:2190;s:13:\"lodging-house\";i:2195;s:4:\"stay\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2498;s:12:\"hotel-travel\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-55830\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-02-about.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-02-about.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/home-stay-03/wp-json/wp/v2/pages/305\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/home-stay-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-55831\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-02-contact.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/home-stay-03/wp-json/wp/v2/pages/307\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/home-stay-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55832\";a:12:{s:5:\"title\";s:10:\"Facilities\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-02-facilities.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-02-facilities.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/home-stay-03/wp-json/wp/v2/pages/303\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/home-stay-03/facilities/\";s:15:\"astra-sites-tag\";a:1:{i:1599;s:10:\"facilities\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-55833\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/home-stay-03/wp-json/wp/v2/pages/299\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/home-stay-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-55834\";a:12:{s:5:\"title\";s:5:\"Rooms\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-03-rooms-page.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/06/home-stay-03-rooms-page.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/home-stay-03/wp-json/wp/v2/pages/301\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/home-stay-03/rooms/\";s:15:\"astra-sites-tag\";a:1:{i:715;s:5:\"rooms\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-51295\";a:22:{s:5:\"title\";s:34:\"Business Coaching &amp; Consulting\";s:2:\"id\";i:51295;s:12:\"publish-date\";i:1616784275;s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/business-consulting-02-home.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/business-consulting-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/business-consulting-02-home.jpg\";s:14:\"astra-site-url\";s:41:\"//websitedemos.net/business-consulting-02\";s:20:\"astra-site-parent-id\";i:1859;s:15:\"astra-sites-tag\";a:6:{i:1878;s:14:\"business-coach\";i:1620;s:19:\"business-consultant\";i:1879;s:14:\"business-guide\";i:854;s:5:\"coach\";i:1880;s:6:\"mentor\";i:855;s:20:\"motivational-speaker\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2825;s:8:\"coaching\";i:2794;s:10:\"consulting\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1148:\"<!-- wp:paragraph -->\n<p>If you are an independent consultant offering all kinds of business coaching and consulting services, the Business Coaching &amp; Consulting template is precisely what you need to build a professional-looking website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template revolves around you and your services. Promote yourself on the significant hero image while including a CTA button to connect with you. Showcase the various coaching and consulting services you offer and the reviews of your happy clients. It’s all here!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Business Coaching &amp; Consulting template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Clean and professional-looking website template, perfect for a coaching and consulting business</li><li>Well-placed CTA buttons encouraging prospective clients to connect with you</li><li>Each of the template pages has been well thought out and designed</li><li>The contact page has Google maps integrated and a fully functional form</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:86:\"Professional website templates tailor-made to build a coaching and consulting business\";s:5:\"pages\";a:4:{s:8:\"id-51296\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/03/business-consulting-02-about.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/03/business-consulting-02-about.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/business-consulting-02/wp-json/wp/v2/pages/534\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/business-consulting-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51297\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/03/business-consulting-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/03/business-consulting-02-contact.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/business-consulting-02/wp-json/wp/v2/pages/736\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/business-consulting-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-51298\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/business-consulting-02-home.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/business-consulting-02-home.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/business-consulting-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/business-consulting-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51299\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/03/business-consulting-02-services.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/03/business-consulting-02-services.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/business-consulting-02/wp-json/wp/v2/pages/642\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/business-consulting-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";i:54427;s:26:\"related-elementor-template\";i:51295;s:26:\"related-gutenberg-template\";i:57046;}s:8:\"id-54427\";a:22:{s:5:\"title\";s:34:\"Business Coaching &amp; Consulting\";s:2:\"id\";i:54427;s:12:\"publish-date\";i:1621451238;s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/business-consulting-02-home.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/business-consulting-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/business-consulting-02-home.jpg\";s:14:\"astra-site-url\";s:41:\"//websitedemos.net/business-consulting-01\";s:20:\"astra-site-parent-id\";i:2032;s:15:\"astra-sites-tag\";a:6:{i:1878;s:14:\"business-coach\";i:1620;s:19:\"business-consultant\";i:1879;s:14:\"business-guide\";i:854;s:5:\"coach\";i:1880;s:6:\"mentor\";i:855;s:20:\"motivational-speaker\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-54428\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/03/business-consulting-02-about.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/03/business-consulting-02-about.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/business-consulting-01/wp-json/wp/v2/pages/975\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/business-consulting-01/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-54431\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/03/business-consulting-02-services.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/03/business-consulting-02-services.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/business-consulting-01/wp-json/wp/v2/pages/980\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/business-consulting-01/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-54429\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/03/business-consulting-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/03/business-consulting-02-contact.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/business-consulting-01/wp-json/wp/v2/pages/983\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/business-consulting-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-54430\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/business-consulting-02-home.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/business-consulting-02-home.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/business-consulting-01/wp-json/wp/v2/pages/968\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/business-consulting-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-57046\";a:22:{s:5:\"title\";s:35:\"Business Coaching &#038; Consulting\";s:2:\"id\";i:57046;s:12:\"publish-date\";i:1626465822;s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consulting-08-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consulting-08-1-600x2363.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consulting-08-1-400x1575.jpg\";s:14:\"astra-site-url\";s:41:\"//websitedemos.net/business-consulting-08\";s:20:\"astra-site-parent-id\";i:2261;s:15:\"astra-sites-tag\";a:6:{i:1878;s:14:\"business-coach\";i:1620;s:19:\"business-consultant\";i:1879;s:14:\"business-guide\";i:854;s:5:\"coach\";i:1880;s:6:\"mentor\";i:855;s:20:\"motivational-speaker\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-57047\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consulting-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consulting-08-about-1-600x2245.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/business-consulting-08/wp-json/wp/v2/pages/964\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/business-consulting-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-57048\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consulting-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consulting-08-contact-1-600x1328.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/business-consulting-08/wp-json/wp/v2/pages/968\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/business-consulting-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-57049\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consulting-08-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consulting-08-1-600x2363.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/business-consulting-08/wp-json/wp/v2/pages/961\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/business-consulting-08/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-57050\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consulting-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consulting-08-services-1-600x2098.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/business-consulting-08/wp-json/wp/v2/pages/966\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/business-consulting-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-57014\";a:22:{s:5:\"title\";s:25:\"Food &amp; Drinks Blogger\";s:2:\"id\";i:57014;s:12:\"publish-date\";i:1626285212;s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/07/food-drinks-blog-04-home.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/07/food-drinks-blog-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/07/food-drinks-blog-04-home.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/food-drinks-blog-04\";s:20:\"astra-site-parent-id\";i:2259;s:15:\"astra-sites-tag\";a:9:{i:1652;s:7:\"blogger\";i:1654;s:15:\"content-creator\";i:2263;s:19:\"food-drinks-blogger\";i:2171;s:22:\"food-drinks-influencer\";i:2172;s:19:\"food-drinks-vlogger\";i:890;s:12:\"food-blogger\";i:1547;s:10:\"influencer\";i:2163;s:23:\"social-media-influencer\";i:1837;s:7:\"vlogger\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:37;s:4:\"blog\";}s:29:\"astra-sites-template-category\";a:4:{i:2828;s:4:\"blog\";i:2785;s:4:\"food\";i:2770;s:8:\"personal\";i:2776;s:10:\"restaurant\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2497;s:4:\"blog\";i:2926;s:5:\"video\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1069:\"<!-- wp:paragraph -->\n<p>Are you a food and drinks blogger? Want to become an influencer or an authority in your niche? Start by building your online presence. Import our Food &amp; Drinks Blogger template and launch your blog quickly and easily.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template uses pastel colors that are just perfect for an engaging blog and allows you to share reviews of exotic food and drinks, restaurants, street food places, and recipes on your blog.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Food &amp; Drinks Blogger template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Appealing design that’s sure to enhance user engagement</li><li>Build an email list by using the well-integrated newsletter subscription form placed in the hero section of your homepage</li><li>Publish blogs and reviews on restaurants, recipes, food, drinks, and more</li><li>Upload video reviews as well on your food and drinks blog</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:76:\"Appealing website design, ideal for food and drinks bloggers and influencers\";s:5:\"pages\";a:3:{s:8:\"id-57015\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/07/food-drinks-blog-04-about.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/07/food-drinks-blog-04-about.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/food-drinks-blog-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/food-drinks-blog-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57016\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/07/food-drinks-blog-04-home.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/07/food-drinks-blog-04-home.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/food-drinks-blog-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/food-drinks-blog-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-57017\";a:12:{s:5:\"title\";s:12:\"Work With Me\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/07/food-drinks-blog-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/07/food-drinks-blog-04-contact.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/food-drinks-blog-04/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/food-drinks-blog-04/work-with-me/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:784;s:12:\"work-with-me\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-51472\";a:22:{s:5:\"title\";s:18:\"Bestselling Author\";s:2:\"id\";i:51472;s:12:\"publish-date\";i:1617304818;s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/bestselling-author-02-home.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/bestselling-author-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/bestselling-author-02-home.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/bestselling-author-02\";s:20:\"astra-site-parent-id\";i:1909;s:15:\"astra-sites-tag\";a:5:{i:724;s:6:\"author\";i:1911;s:23:\"bestselling-book-author\";i:1910;s:11:\"book-author\";i:1740;s:5:\"books\";i:725;s:6:\"writer\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2839;s:13:\"author-writer\";i:2814;s:9:\"bookstore\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1061:\"<!-- wp:paragraph -->\n<p>As an author, you’ll surely want your publication to be the next bestseller. Want to promote your books online? Build a stylish and creative website using the Bestselling Author template and launch your website right away.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template is smartly designed and well planned, from promoting your latest book upfront to showcasing all your work on the homepage. The readymade templates include pages like about, books, and contact.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Key features</strong> <strong>of the Bestselling Author template</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Build your website using the stylish Bestselling Author template</li><li>Promote your latest book on the homepage, above the fold</li><li>The template is WooCommerce ready and allows you to sell your books online</li><li>A fully functional contact form for readers to connect with you</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:75:\"Stylish website template for authors to promote and sell their publications\";s:5:\"pages\";a:4:{s:8:\"id-51476\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/bestselling-author-02-home.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/bestselling-author-02-home.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/bestselling-author-02/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/bestselling-author-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51473\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/bestselling-author-02-about.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/bestselling-author-02-about.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/bestselling-author-02/wp-json/wp/v2/pages/581\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/bestselling-author-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51474\";a:12:{s:5:\"title\";s:5:\"Books\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/bestselling-author-02-books.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/bestselling-author-02-books.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/bestselling-author-02/wp-json/wp/v2/pages/691\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/bestselling-author-02/books/\";s:15:\"astra-sites-tag\";a:1:{i:1740;s:5:\"books\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51475\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/03/bestselling-author-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/03/bestselling-author-02-contact.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/bestselling-author-02/wp-json/wp/v2/pages/754\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/bestselling-author-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:54404;s:26:\"related-elementor-template\";i:51472;s:26:\"related-gutenberg-template\";i:57071;}s:8:\"id-54404\";a:22:{s:5:\"title\";s:18:\"Bestselling Author\";s:2:\"id\";i:54404;s:12:\"publish-date\";i:1621450227;s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/bestselling-author-01-home.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/bestselling-author-01-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/bestselling-author-01-home.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/bestselling-author-01\";s:20:\"astra-site-parent-id\";i:2030;s:15:\"astra-sites-tag\";a:5:{i:724;s:6:\"author\";i:1911;s:23:\"bestselling-book-author\";i:1910;s:11:\"book-author\";i:1740;s:5:\"books\";i:725;s:6:\"writer\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-54407\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/05/bestselling-author-01-contact.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/05/bestselling-author-01-contact.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/bestselling-author-01/wp-json/wp/v2/pages/910\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/bestselling-author-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-54408\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/bestselling-author-01-home.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/bestselling-author-01-home.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/bestselling-author-01/wp-json/wp/v2/pages/898\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/bestselling-author-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-54405\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/05/bestselling-author-01-about.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/05/bestselling-author-01-about.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/bestselling-author-01/wp-json/wp/v2/pages/903\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/bestselling-author-01/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-54406\";a:12:{s:5:\"title\";s:5:\"Books\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/05/bestselling-author-01-books.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/05/bestselling-author-01-books.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/bestselling-author-01/wp-json/wp/v2/pages/906\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/bestselling-author-01/books/\";s:15:\"astra-sites-tag\";a:1:{i:1740;s:5:\"books\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-57071\";a:22:{s:5:\"title\";s:18:\"Bestselling Author\";s:2:\"id\";i:57071;s:12:\"publish-date\";i:1626466145;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/07/bestselling-author-08-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/07/bestselling-author-08-1-600x2212.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/07/bestselling-author-08-1-400x1474.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/bestselling-author-08\";s:20:\"astra-site-parent-id\";i:2265;s:15:\"astra-sites-tag\";a:5:{i:724;s:6:\"author\";i:1911;s:23:\"bestselling-book-author\";i:1910;s:11:\"book-author\";i:1740;s:5:\"books\";i:725;s:6:\"writer\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-57072\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/07/bestselling-author-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2021/07/bestselling-author-08-about-1-600x1890.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/bestselling-author-08/wp-json/wp/v2/pages/902\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/bestselling-author-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-57073\";a:12:{s:5:\"title\";s:5:\"Books\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/07/bestselling-author-08-books.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2021/07/bestselling-author-08-books-600x1590.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/bestselling-author-08/wp-json/wp/v2/pages/900\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/bestselling-author-08/books/\";s:15:\"astra-sites-tag\";a:1:{i:1740;s:5:\"books\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-57074\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/07/bestselling-author-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2021/07/bestselling-author-08-contact-1-600x1003.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/bestselling-author-08/wp-json/wp/v2/pages/898\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/bestselling-author-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-57075\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/07/bestselling-author-08-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/07/bestselling-author-08-1-600x2212.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/bestselling-author-08/wp-json/wp/v2/pages/896\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/bestselling-author-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-51392\";a:22:{s:5:\"title\";s:17:\"Tarot Card Reader\";s:2:\"id\";i:51392;s:12:\"publish-date\";i:1617131826;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/03/tarot-card-reader-04-home.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/03/tarot-card-reader-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/03/tarot-card-reader-04-home.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/tarot-card-reader-04\";s:20:\"astra-site-parent-id\";i:1881;s:15:\"astra-sites-tag\";a:5:{i:1902;s:10:\"cartomancy\";i:1900;s:8:\"geomancy\";i:1903;s:16:\"personal-website\";i:1899;s:5:\"tarot\";i:1901;s:17:\"tarot-card-reader\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2825;s:8:\"coaching\";i:2794;s:10:\"consulting\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1118:\"<!-- wp:paragraph -->\n<p>Attention tarot card readers, ​​psychic readers, and astrologers. Here’s the perfect template to offer reading and consultancy services online. The template is well designed and looks every bit a tarot reader’s website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>From booking an appointment online to viewing your services, the website template has everything you need to build a successful online business. And just in case you’d like to teach how to read tarot, you could also offer courses thanks to built-in LMS integration.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Bestselling Author template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Aptly designed website template, tailor-made for a tarot card reader’s website</li><li>The package includes template pages for about, consulting, coaching, and contact</li><li>Well integrated with LMS plugins, allowing you to offer online courses as well</li><li>Allow customers to book an appointment online</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:83:\"Offer online reading and consulting services through the Tarot Card Reader template\";s:5:\"pages\";a:5:{s:8:\"id-51393\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/tarot-card-reader-04-about.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/tarot-card-reader-04-about.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/tarot-card-reader-04/wp-json/wp/v2/pages/533\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/tarot-card-reader-04/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51394\";a:12:{s:5:\"title\";s:8:\"Coaching\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/03/tarot-card-reader-04-coaching.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/03/tarot-card-reader-04-coaching.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/tarot-card-reader-04/wp-json/wp/v2/pages/856\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/tarot-card-reader-04/coaching/\";s:15:\"astra-sites-tag\";a:2:{i:610;s:8:\"coaching\";i:721;s:8:\"training\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51395\";a:12:{s:5:\"title\";s:10:\"Consulting\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/03/tarot-card-reader-04-consulting.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/03/tarot-card-reader-04-consulting.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/tarot-card-reader-04/wp-json/wp/v2/pages/689\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/tarot-card-reader-04/consulting/\";s:15:\"astra-sites-tag\";a:2:{i:1898;s:10:\"consulting\";i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51396\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/03/tarot-card-reader-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/03/tarot-card-reader-04-contact.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/tarot-card-reader-04/wp-json/wp/v2/pages/1017\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/tarot-card-reader-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-51397\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/03/tarot-card-reader-04-home.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/03/tarot-card-reader-04-home.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/tarot-card-reader-04/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/tarot-card-reader-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";i:56535;s:26:\"related-elementor-template\";i:51392;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-56535\";a:22:{s:5:\"title\";s:17:\"Tarot Card Reader\";s:2:\"id\";i:56535;s:12:\"publish-date\";i:1624910267;s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/06/tarot-card-reader-homepage-bb.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/06/tarot-card-reader-homepage-bb.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/06/tarot-card-reader-homepage-bb.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/tarot-card-reader-03\";s:20:\"astra-site-parent-id\";i:2240;s:15:\"astra-sites-tag\";a:5:{i:1902;s:10:\"cartomancy\";i:1900;s:8:\"geomancy\";i:1903;s:16:\"personal-website\";i:1899;s:5:\"tarot\";i:1901;s:17:\"tarot-card-reader\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-56536\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/06/tarot-card-reader-about-bb.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/06/tarot-card-reader-about-bb.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/tarot-card-reader-03/wp-json/wp/v2/pages/1200\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/tarot-card-reader-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-56537\";a:12:{s:5:\"title\";s:8:\"Coaching\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/06/tarot-card-reader-coaching-bb.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/06/tarot-card-reader-coaching-bb.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/tarot-card-reader-03/wp-json/wp/v2/pages/1211\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/tarot-card-reader-03/coaching/\";s:15:\"astra-sites-tag\";a:1:{i:610;s:8:\"coaching\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-56538\";a:12:{s:5:\"title\";s:10:\"Consulting\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/06/tarot-card-reader-consulting-bb.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/06/tarot-card-reader-consulting-bb.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/tarot-card-reader-03/wp-json/wp/v2/pages/1206\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/tarot-card-reader-03/consulting/\";s:15:\"astra-sites-tag\";a:1:{i:1898;s:10:\"consulting\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-56539\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/06/tarot-card-reader-contact-bb.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/06/tarot-card-reader-contact-bb.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/tarot-card-reader-03/wp-json/wp/v2/pages/1214\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/tarot-card-reader-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56540\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/06/tarot-card-reader-homepage-bb.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/06/tarot-card-reader-homepage-bb.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/tarot-card-reader-03/wp-json/wp/v2/pages/1186\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/tarot-card-reader-03/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55786\";a:22:{s:5:\"title\";s:24:\"Digital Marketing Agency\";s:2:\"id\";i:55786;s:12:\"publish-date\";i:1623871379;s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/06/digital-marketing-agency-02-home.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/06/digital-marketing-agency-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/06/digital-marketing-agency-02-home.jpg\";s:14:\"astra-site-url\";s:46:\"//websitedemos.net/digital-marketing-agency-04\";s:20:\"astra-site-parent-id\";i:2211;s:15:\"astra-sites-tag\";a:14:{i:1587;s:18:\"advertising-agency\";i:2232;s:19:\"advertising-company\";i:2229;s:16:\"advertising-firm\";i:663;s:6:\"agency\";i:979;s:7:\"company\";i:2235;s:24:\"digital-marketing-agency\";i:2036;s:22:\"digital-marketing-firm\";i:1588;s:16:\"marketing-agency\";i:2233;s:17:\"marketing-company\";i:2228;s:14:\"marketing-firm\";i:2230;s:12:\"press-agency\";i:2227;s:14:\"promotion-firm\";i:2231;s:14:\"publicity-firm\";i:2234;s:18:\"publicity-services\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:5:{i:2777;s:8:\"business\";i:2794;s:10:\"consulting\";i:2812;s:14:\"digital-agency\";i:2796;s:17:\"digital-marketing\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1146:\"<!-- wp:paragraph -->\n<p>It’s one thing saying that it can be done and another showing that it can be done. And when it comes to letting your work do all the talking, a professionally designed website closes the deal for you with your prospective clients.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our Digital Marketing Agency template does that. The template is perfect for your agency website, from done-for-you templates showcasing all your individual services to customer reviews.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Digital Marketing Agency template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Professionally crafted templates for your digital marketing agency website</li><li>Package comes with individual templates for all your services, such as branding, digital marketing, SEO services, and social media</li><li>Include customer reviews as well as ratings from Google, Facebook, and Trustpilot, among others</li><li>Build authority and showcase your expertise by publishing regular blog posts</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:82:\"Professionally crafted template best suited for a digital marketing agency website\";s:5:\"pages\";a:8:{s:8:\"id-55787\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/06/digital-marketing-agency-02-about.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/06/digital-marketing-agency-02-about.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/digital-marketing-agency-04/wp-json/wp/v2/pages/321\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/digital-marketing-agency-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55789\";a:12:{s:5:\"title\";s:8:\"Branding\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2021/06/digital-marketing-agency-02-branding.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2021/06/digital-marketing-agency-02-branding.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/digital-marketing-agency-04/wp-json/wp/v2/pages/587\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:56:\"//websitedemos.net/digital-marketing-agency-04/branding/\";s:15:\"astra-sites-tag\";a:2:{i:2213;s:8:\"branding\";i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55790\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/06/digital-marketing-agency-02-contact.png\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/06/digital-marketing-agency-02-contact.png\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/digital-marketing-agency-04/wp-json/wp/v2/pages/325\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/digital-marketing-agency-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55791\";a:12:{s:5:\"title\";s:17:\"Digital Marketing\";s:18:\"featured-image-url\";s:101:\"https://websitedemos.net/wp-content/uploads/2021/06/digital-marketing-agency-02-digital-marketing.jpg\";s:19:\"thumbnail-image-url\";s:101:\"https://websitedemos.net/wp-content/uploads/2021/06/digital-marketing-agency-02-digital-marketing.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/digital-marketing-agency-04/wp-json/wp/v2/pages/589\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:65:\"//websitedemos.net/digital-marketing-agency-04/digital-marketing/\";s:15:\"astra-sites-tag\";a:2:{i:1855;s:17:\"digital-marketing\";i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55792\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/06/digital-marketing-agency-02-home.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/06/digital-marketing-agency-02-home.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/digital-marketing-agency-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/digital-marketing-agency-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55793\";a:12:{s:5:\"title\";s:12:\"SEO Services\";s:18:\"featured-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2021/06/digital-marketing-agency-02-seo-services.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2021/06/digital-marketing-agency-02-seo-services.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/digital-marketing-agency-04/wp-json/wp/v2/pages/717\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:60:\"//websitedemos.net/digital-marketing-agency-04/seo-services/\";s:15:\"astra-sites-tag\";a:2:{i:2214;s:12:\"seo-services\";i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55794\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2021/06/digital-marketing-agency-02-social-media.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2021/06/digital-marketing-agency-02-social-media.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/digital-marketing-agency-04/wp-json/wp/v2/pages/316\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:56:\"//websitedemos.net/digital-marketing-agency-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55795\";a:12:{s:5:\"title\";s:12:\"Social Media\";s:18:\"featured-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2021/06/digital-marketing-agency-02-social-media.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2021/06/digital-marketing-agency-02-social-media.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/digital-marketing-agency-04/wp-json/wp/v2/pages/719\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:60:\"//websitedemos.net/digital-marketing-agency-04/social-media/\";s:15:\"astra-sites-tag\";a:2:{i:425;s:8:\"services\";i:2212;s:12:\"social-media\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-58160\";a:22:{s:5:\"title\";s:15:\"Jewellery Store\";s:2:\"id\";i:58160;s:12:\"publish-date\";i:1632243433;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/09/jewellery-store-02-home.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/09/jewellery-store-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/09/jewellery-store-02-home.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/jewellery-store-04\";s:20:\"astra-site-parent-id\";i:2377;s:15:\"astra-sites-tag\";a:18:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2419;s:9:\"eshopping\";i:2382;s:15:\"jewellery-store\";i:2529;s:13:\"jewelry-store\";i:2383;s:22:\"online-jewellery-store\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:3:{i:2769;s:9:\"ecommerce\";i:2838;s:9:\"jewellery\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:5;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1116:\"<!-- wp:paragraph -->\n<p>Want to sell jewelry to a broader audience? Consider building an online store! Import our easy-to-use Jewellery Store template and launch your store quickly. Accept orders and payments round the clock through your website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The clean and minimalistic design has all the correct elements to help you build a high-converting store. From impressive background effects to displaying products based on categories and latest arrivals, Jewellery Store is the perfect web template for your store.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Jewellery Store template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Clean and simple design that has everything you need to build a fantastic online store</li><li>Display products based on categories, such as earrings, necklaces, rings, and more</li><li>Product page displays various payment options as well as related products</li><li>Straightforward checkout process</li><li>Well integrated with the WordPress eCommerce plugin, WooCommerce</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:79:\"Beautiful website template perfect for building an online store to sell jewelry\";s:5:\"pages\";a:3:{s:8:\"id-58166\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/09/jewellery-store-02-about.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/09/jewellery-store-02-about.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/jewellery-store-04/wp-json/wp/v2/pages/18\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/jewellery-store-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58167\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/09/jewellery-store-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/09/jewellery-store-02-contact.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/jewellery-store-04/wp-json/wp/v2/pages/20\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/jewellery-store-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-58168\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/09/jewellery-store-02-home.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/09/jewellery-store-02-home.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/jewellery-store-04/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/jewellery-store-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-53777\";a:22:{s:5:\"title\";s:18:\"Fashion Influencer\";s:2:\"id\";i:53777;s:12:\"publish-date\";i:1623424711;s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/fashion-influencer-02-home.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/fashion-influencer-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/fashion-influencer-02-home.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/fashion-influencer-04\";s:20:\"astra-site-parent-id\";i:2021;s:15:\"astra-sites-tag\";a:9:{i:1652;s:7:\"blogger\";i:1654;s:15:\"content-creator\";i:2164;s:15:\"fashion-blogger\";i:2161;s:18:\"fashion-influencer\";i:1547;s:10:\"influencer\";i:2162;s:17:\"lifestyle-blogger\";i:2166;s:17:\"luxury-influencer\";i:2163;s:23:\"social-media-influencer\";i:2165;s:16:\"style-influencer\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:37;s:4:\"blog\";}s:29:\"astra-sites-template-category\";a:5:{i:2790;s:14:\"beauty-fashion\";i:2828;s:4:\"blog\";i:2890;s:15:\"makeup-cosmetic\";i:2770;s:8:\"personal\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1086:\"<!-- wp:paragraph -->\n<p>Whether you are a fashion designer, blogger, influencer, or have anything to do with the fashion industry, the Fashion Influencer template is what you need to make a statement.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The classy website design is perfect for promoting various fashion brands, products, accessories, clothing, and cosmetics, among other things. Publish blogs and articles on topics related to fashion and upload videos as well on your fashion website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Fashion Influencer template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Classy and sophisticated-looking template, perfect for a fashion-related website</li><li>Ideal for fashion influencers, bloggers, and just about anyone in the fashion industry</li><li>Showcase various fashion brands, products, blogs, articles, and videos</li><li>Integrate your Instagram feed and share photos with your website visitors</li><li>Fully customizable and responsive website template</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"Sophisticated-looking website design that’s perfect for making a fashion statement\";s:5:\"pages\";a:6:{s:8:\"id-53778\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/05/fashion-influencer-02-about.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/05/fashion-influencer-02-about.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/fashion-influencer-04/wp-json/wp/v2/pages/670\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/fashion-influencer-04/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-53779\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/05/fashion-influencer-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/05/fashion-influencer-02-contact.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/fashion-influencer-04/wp-json/wp/v2/pages/731\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/fashion-influencer-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-53780\";a:12:{s:5:\"title\";s:12:\"Fashion Tips\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/05/fashion-influencer-02-fashion-tips.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/05/fashion-influencer-02-fashion-tips.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/fashion-influencer-04/wp-json/wp/v2/pages/805\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/fashion-influencer-04/fashion-tips/\";s:15:\"astra-sites-tag\";a:3:{i:480;s:4:\"blog\";i:482;s:7:\"fashion\";i:2022;s:4:\"tips\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-53781\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/fashion-influencer-02-home.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/fashion-influencer-02-home.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/fashion-influencer-04/wp-json/wp/v2/pages/28\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/fashion-influencer-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-53782\";a:12:{s:5:\"title\";s:8:\"Lookbook\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/05/fashion-influencer-02-lookbook.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/05/fashion-influencer-02-lookbook.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/fashion-influencer-04/wp-json/wp/v2/pages/613\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/fashion-influencer-04/lookbook/\";s:15:\"astra-sites-tag\";a:1:{i:752;s:8:\"lookbook\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-53783\";a:12:{s:5:\"title\";s:6:\"Shoots\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/fashion-influencer-02-shoots.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/fashion-influencer-02-shoots.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/fashion-influencer-04/wp-json/wp/v2/pages/445\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/fashion-influencer-04/shoots/\";s:15:\"astra-sites-tag\";a:2:{i:2023;s:6:\"shoots\";i:2001;s:6:\"videos\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";i:55741;s:26:\"related-elementor-template\";i:53777;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-51559\";a:22:{s:5:\"title\";s:14:\"Public Speaker\";s:2:\"id\";i:51559;s:12:\"publish-date\";i:1617821342;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/04/public-speaker-02-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/04/public-speaker-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/04/public-speaker-02-home.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/public-speaker-02\";s:20:\"astra-site-parent-id\";i:1937;s:15:\"astra-sites-tag\";a:9:{i:724;s:6:\"author\";i:854;s:5:\"coach\";i:612;s:10:\"life-coach\";i:1866;s:10:\"life-guide\";i:1880;s:6:\"mentor\";i:855;s:20:\"motivational-speaker\";i:1903;s:16:\"personal-website\";i:1939;s:14:\"public-speaker\";i:1940;s:11:\"storyteller\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2839;s:13:\"author-writer\";i:2814;s:9:\"bookstore\";i:2825;s:8:\"coaching\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1128:\"<!-- wp:paragraph -->\n<p>Want to fill your calendar with speaking engagements? Build a website! To make it easier, we’ve crafted the Public Speaker web template. It’s a thoughtfully crafted template with everything you need to promote yourself as a professional speaker.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Include videos of your previous speaking engagements, and publish blog posts to build authority and trustworthiness, among other things. If you have your publications, the template is well integrated to let you sell them online.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Public Speaker template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Thoughtfully designed template, perfect for a public speaker or an influencer</li><li>Promote videos of your speaking engagements</li><li>Package includes dedicated pages about the speaker, services offered, contact and even to sell your publications online</li><li>Want to offer live sessions? The template has you covered</li><li>Deep integrations with WooCommerce, allowing you to sell online</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:89:\"A thoughtful website template that’s perfect for building a website for public speakers\";s:5:\"pages\";a:5:{s:8:\"id-51560\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/04/public-speaker-02-about.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/04/public-speaker-02-about.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/public-speaker-02/wp-json/wp/v2/pages/494\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/public-speaker-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51562\";a:12:{s:5:\"title\";s:5:\"Books\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/04/public-speaker-02-books.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/04/public-speaker-02-books.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/public-speaker-02/wp-json/wp/v2/pages/587\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/public-speaker-02/books/\";s:15:\"astra-sites-tag\";a:1:{i:1740;s:5:\"books\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51563\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/04/public-speaker-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/04/public-speaker-02-contact.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/public-speaker-02/wp-json/wp/v2/pages/867\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/public-speaker-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51564\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/04/public-speaker-02-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/04/public-speaker-02-home.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/public-speaker-02/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/public-speaker-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51565\";a:12:{s:5:\"title\";s:12:\"What I Offer\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/04/public-speaker-02-services.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/04/public-speaker-02-services.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/public-speaker-02/wp-json/wp/v2/pages/670\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/public-speaker-02/what-i-offer/\";s:15:\"astra-sites-tag\";a:2:{i:425;s:8:\"services\";i:1938;s:12:\"what-i-offer\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:51559;s:26:\"related-gutenberg-template\";i:64754;}s:8:\"id-56739\";a:22:{s:5:\"title\";s:14:\"Public Speaker\";s:2:\"id\";i:56739;s:12:\"publish-date\";i:1626114397;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08-600x3080.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08-400x2053.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/public-speaker-08\";s:20:\"astra-site-parent-id\";i:2256;s:15:\"astra-sites-tag\";a:9:{i:724;s:6:\"author\";i:854;s:5:\"coach\";i:612;s:10:\"life-coach\";i:1866;s:10:\"life-guide\";i:1880;s:6:\"mentor\";i:855;s:20:\"motivational-speaker\";i:1903;s:16:\"personal-website\";i:1939;s:14:\"public-speaker\";i:1940;s:11:\"storyteller\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-56740\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08-about-1-600x2525.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/public-speaker-08/wp-json/wp/v2/pages/1068\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/public-speaker-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56741\";a:12:{s:5:\"title\";s:5:\"Books\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08-books-1.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08-books-1-600x1907.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/public-speaker-08/wp-json/wp/v2/pages/1070\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/public-speaker-08/books/\";s:15:\"astra-sites-tag\";a:1:{i:1740;s:5:\"books\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56742\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08-contact-1-600x812.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/public-speaker-08/wp-json/wp/v2/pages/1076\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/public-speaker-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56744\";a:12:{s:5:\"title\";s:12:\"What I Offer\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08-what-i-offer-1.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08-what-i-offer-1-600x2028.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/public-speaker-08/wp-json/wp/v2/pages/1072\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/public-speaker-08/what-i-offer/\";s:15:\"astra-sites-tag\";a:2:{i:425;s:8:\"services\";i:1938;s:12:\"what-i-offer\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56743\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08-600x3080.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/public-speaker-08/wp-json/wp/v2/pages/1066\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/public-speaker-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(208,'astra-sites-and-pages-page-14','a:15:{s:8:\"id-52222\";a:22:{s:5:\"title\";s:11:\"Pub and Bar\";s:2:\"id\";i:52222;s:12:\"publish-date\";i:1620390845;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/04/pub-and-bar-02-home.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/04/pub-and-bar-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/04/pub-and-bar-02-home.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/pub-and-bar-04\";s:20:\"astra-site-parent-id\";i:1945;s:15:\"astra-sites-tag\";a:13:{i:2009;s:8:\"bar-room\";i:2007;s:19:\"barbeque-restaurant\";i:2010;s:8:\"beer-bar\";i:1988;s:10:\"beer-joint\";i:562;s:6:\"bistro\";i:635;s:7:\"brewery\";i:1989;s:15:\"cocktail-lounge\";i:882;s:6:\"drinks\";i:350;s:5:\"hotel\";i:657;s:6:\"lounge\";i:1983;s:3:\"pub\";i:2008;s:11:\"pub-and-bar\";i:335;s:10:\"restaurant\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2769;s:9:\"ecommerce\";i:2785;s:4:\"food\";i:2776;s:10:\"restaurant\";i:2813;s:6:\"winery\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1062:\"<!-- wp:paragraph -->\n<p>Build your online presence and let customers connect with you before visiting your joint. Use the appealing Pub and Bar template to launch your website. Share photos of the ambiance, the exquisite food and drinks menu, and customer reviews, among other things.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template has exciting features, such as online table reservations, details of upcoming events, deals and offers, and more. You also have the option to sell store merchandise online.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Pub and Bar template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Take your pub and bar joint online with our appealing and attractive website template</li><li>Include photos of the joint, customer reviews, menu details, and more</li><li>Allow customers to make online table reservations</li><li>Sell your store merchandise online with our well-integrated WooCommerce template</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:88:\"The perfect lightweight and responsive template for taking your pub and bar joint online\";s:5:\"pages\";a:6:{s:8:\"id-52224\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/04/pub-and-bar-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/04/pub-and-bar-02-contact.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/pub-and-bar-04/wp-json/wp/v2/pages/891\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/pub-and-bar-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-52225\";a:12:{s:5:\"title\";s:6:\"Drinks\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/04/pub-and-bar-02-drinks.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/04/pub-and-bar-02-drinks.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/pub-and-bar-04/wp-json/wp/v2/pages/683\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/pub-and-bar-04/drinks/\";s:15:\"astra-sites-tag\";a:1:{i:882;s:6:\"drinks\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-52226\";a:12:{s:5:\"title\";s:4:\"Food\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/04/pub-and-bar-02-food.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/04/pub-and-bar-02-food.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/pub-and-bar-04/wp-json/wp/v2/pages/536\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/pub-and-bar-04/food/\";s:15:\"astra-sites-tag\";a:1:{i:336;s:4:\"food\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-52223\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/04/pub-and-bar-02-about.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/04/pub-and-bar-02-about.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/pub-and-bar-04/wp-json/wp/v2/pages/412\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/pub-and-bar-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-52227\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/04/pub-and-bar-02-home.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/04/pub-and-bar-02-home.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/pub-and-bar-04/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/pub-and-bar-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-52228\";a:12:{s:5:\"title\";s:5:\"Store\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/04/pub-and-bar-02-store.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/04/pub-and-bar-02-store.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/pub-and-bar-04/wp-json/wp/v2/pages/792\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/pub-and-bar-04/store/\";s:15:\"astra-sites-tag\";a:1:{i:749;s:5:\"store\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-49780\";a:22:{s:5:\"title\";s:18:\"Meditation Courses\";s:2:\"id\";i:49780;s:12:\"publish-date\";i:1612532912;s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-meditation-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-meditation-02-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-meditation-02-homepage.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/learn-meditation-02\";s:20:\"astra-site-parent-id\";i:1849;s:15:\"astra-sites-tag\";a:5:{i:462;s:7:\"courses\";i:467;s:9:\"learndash\";i:1850;s:10:\"meditation\";i:975;s:15:\"online-learning\";i:720;s:9:\"tutorials\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:5:{i:2835;s:9:\"elearning\";i:2880;s:10:\"membership\";i:2827;s:13:\"online-course\";i:2770;s:8:\"personal\";i:2808;s:4:\"yoga\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:3;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:5;a:3:{s:4:\"slug\";s:13:\"presto-player\";s:4:\"init\";s:31:\"presto-player/presto-player.php\";s:4:\"name\";s:13:\"Presto Player\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1198:\"<!-- wp:paragraph -->\n<p>Want to offer meditation classes online? To make things simple, we’ve crafted an inspirational Meditation Courses template that’s sure to engage with your prospective students. By offering courses online, you reach a much wider audience who can learn through your platform.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The clean and appealing design uses unique colors, typography, and background effects. It’s fully integrated with leading WordPress LMS plugins, allowing you to create and manage online courses easily.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Meditation Courses template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>A beautifully designed meditation course template, sure to enhance user experience</li><li>Fully integrated with LMS plugins allowing you to create and manage online courses from your WordPress dashboard</li><li>The homepage showcases the featured courses, a list of all courses, student reviews, about the trainer, and more</li><li>All templates have been planned, including a fully functional contact form</li><li>Fully responsive and customizable template</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:88:\"Aweinspiring design that’s perfect for building an online course website on meditation\";s:5:\"pages\";a:4:{s:8:\"id-49781\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-meditation-02-about.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-meditation-02-about.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/learn-meditation-02/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/learn-meditation-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49782\";a:12:{s:5:\"title\";s:7:\"Classes\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-meditation-02-classes.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-meditation-02-classes.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/learn-meditation-02/wp-json/wp/v2/pages/207\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/learn-meditation-02/classes/\";s:15:\"astra-sites-tag\";a:1:{i:557;s:7:\"classes\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49783\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-meditation-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-meditation-02-contact.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/learn-meditation-02/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/learn-meditation-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-49784\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-meditation-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-meditation-02-homepage.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/learn-meditation-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/learn-meditation-02/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55643\";a:22:{s:5:\"title\";s:12:\"Budget Hotel\";s:2:\"id\";i:55643;s:12:\"publish-date\";i:1623434678;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/06/budget-hotel-04-home-page.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/06/budget-hotel-04-home-page.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/06/budget-hotel-04-home-page.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/budget-hotel-04\";s:20:\"astra-site-parent-id\";i:2174;s:15:\"astra-sites-tag\";a:10:{i:2200;s:9:\"apartment\";i:2192;s:2:\"bb\";i:2202;s:17:\"bed-and-breakfast\";i:2175;s:12:\"budget-hotel\";i:2177;s:11:\"cheap-hotel\";i:2189;s:11:\"guest-house\";i:350;s:5:\"hotel\";i:712;s:5:\"lodge\";i:2201;s:7:\"lodging\";i:714;s:6:\"resort\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:2:{i:2777;s:8:\"business\";i:2788;s:9:\"hotel-bnb\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2498;s:12:\"hotel-travel\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1069:\"<!-- wp:paragraph -->\n<p>Whether you’re taking your hotel business online or revamping your existing website, the Budget Hotel template is a must-have. The elegantly designed template has all the elements to build a professional and engaging hotel website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The hero section not only has a significant image but also includes a CTA to check room availability. Other attractive templates include pages for rooms, facilities, things to do, and a fully functional contact form.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Budget Hotel template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>A professionally crafted design that’s perfect for a hotel website</li><li>Well-integrated and placed CTA for making online reservations</li><li>Google maps is integrated on the homepage that allows users to locate your property</li><li>Offer specials deals, include reviews of happy customers, and a lot more</li><li>Include a gallery that showcases your property</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:86:\"Build and launch your hotel website using our elegantly designed Budget Hotel template\";s:5:\"pages\";a:5:{s:8:\"id-55644\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/06/budget-hotel-04-contact-01.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/06/budget-hotel-04-contact-01.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/budget-hotel-04/wp-json/wp/v2/pages/930\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/budget-hotel-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55645\";a:12:{s:5:\"title\";s:10:\"Facilities\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/06/budget-hotel-04-facilities-01.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/06/budget-hotel-04-facilities-01.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/budget-hotel-04/wp-json/wp/v2/pages/792\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/budget-hotel-04/facilities/\";s:15:\"astra-sites-tag\";a:1:{i:1599;s:10:\"facilities\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55646\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/06/budget-hotel-04-home-page.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/06/budget-hotel-04-home-page.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/budget-hotel-04/wp-json/wp/v2/pages/20\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/budget-hotel-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55647\";a:12:{s:5:\"title\";s:5:\"Rooms\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/06/budget-hotel-04-rooms-01.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/06/budget-hotel-04-rooms-01.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/budget-hotel-04/wp-json/wp/v2/pages/511\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/budget-hotel-04/rooms/\";s:15:\"astra-sites-tag\";a:1:{i:715;s:5:\"rooms\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55648\";a:12:{s:5:\"title\";s:12:\"Things to do\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/06/budget-hotel-04-things-to-do-01.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/06/budget-hotel-04-things-to-do-01.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/budget-hotel-04/wp-json/wp/v2/pages/681\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/budget-hotel-04/things-to-do/\";s:15:\"astra-sites-tag\";a:1:{i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-51305\";a:22:{s:5:\"title\";s:18:\"Relationship Coach\";s:2:\"id\";i:51305;s:12:\"publish-date\";i:1616783693;s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/relationship-coach-02-home.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/relationship-coach-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/relationship-coach-02-home.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/relationship-coach-02\";s:20:\"astra-site-parent-id\";i:1860;s:15:\"astra-sites-tag\";a:5:{i:854;s:5:\"coach\";i:1876;s:10:\"counsellor\";i:612;s:10:\"life-coach\";i:1866;s:10:\"life-guide\";i:1877;s:18:\"relationship-coach\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:6:{i:2828;s:4:\"blog\";i:2814;s:9:\"bookstore\";i:2777;s:8:\"business\";i:2825;s:8:\"coaching\";i:2794;s:10:\"consulting\";i:2874;s:10:\"life-coach\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1156:\"<!-- wp:paragraph -->\n<p>Are you a relationship coach? Want to offer services, such as couples problems, parent-child issues, and ​family issues, among other things? Build a website using our Relationship Coach template and help prospective clients to seek guidance and consultation from you, irrespective of their location.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The vibrant template is well planned out and includes all the correct elements in the right place. From well-placed CTA to customer reviews, the template has you covered.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Relationship Coach template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Vibrant and attractive-looking template that’s easy to import and set up</li><li>Impressive background image scrolling effects</li><li>Dedicated and well-planned page layouts for selling books, showcasing your stage shows, and offering one-on-one consultations</li><li>Build authority and get found by search engines by publishing blogs consistently</li><li>Newsletter subscription form is well integrated into the template</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:89:\"Perfect template for building a vibrant-looking website for a relationship and life coach\";s:5:\"pages\";a:6:{s:8:\"id-51306\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/relationship-coach-02-about.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/relationship-coach-02-about.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/relationship-coach-02/wp-json/wp/v2/pages/23\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/relationship-coach-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51307\";a:12:{s:5:\"title\";s:5:\"Books\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/relationship-coach-02-books.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/relationship-coach-02-books.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/relationship-coach-02/wp-json/wp/v2/pages/29\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/relationship-coach-02/books/\";s:15:\"astra-sites-tag\";a:1:{i:1740;s:5:\"books\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51308\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/03/relationship-coach-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/03/relationship-coach-02-contact.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/relationship-coach-02/wp-json/wp/v2/pages/27\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/relationship-coach-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-51309\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/relationship-coach-02-home.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/relationship-coach-02-home.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/relationship-coach-02/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/relationship-coach-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51310\";a:12:{s:5:\"title\";s:21:\"One-on-One Counseling\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/03/relationship-coach-02-counseling.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/03/relationship-coach-02-counseling.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/relationship-coach-02/wp-json/wp/v2/pages/654\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:63:\"//websitedemos.net/relationship-coach-02/one-on-one-counseling/\";s:15:\"astra-sites-tag\";a:2:{i:610;s:8:\"coaching\";i:613;s:10:\"counseling\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-51311\";a:12:{s:5:\"title\";s:11:\"Stage Shows\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/relationship-coach-02-shows.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/relationship-coach-02-shows.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/relationship-coach-02/wp-json/wp/v2/pages/639\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/relationship-coach-02/stage-shows/\";s:15:\"astra-sites-tag\";a:2:{i:610;s:8:\"coaching\";i:1875;s:11:\"stage-shows\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:51305;s:26:\"related-gutenberg-template\";i:57085;}s:8:\"id-57085\";a:22:{s:5:\"title\";s:27:\"Relationship and Life Coach\";s:2:\"id\";i:57085;s:12:\"publish-date\";i:1626464394;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-1-600x3248.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-1-400x2165.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/relationship-coach-08\";s:20:\"astra-site-parent-id\";i:2279;s:15:\"astra-sites-tag\";a:5:{i:854;s:5:\"coach\";i:1876;s:10:\"counsellor\";i:612;s:10:\"life-coach\";i:1866;s:10:\"life-guide\";i:1877;s:18:\"relationship-coach\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:3:{i:37;s:4:\"blog\";i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-57088\";a:12:{s:5:\"title\";s:5:\"Books\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-books-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-books-1-600x1682.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/relationship-coach-08/wp-json/wp/v2/pages/1018\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/relationship-coach-08/books/\";s:15:\"astra-sites-tag\";a:1:{i:1740;s:5:\"books\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:3:{i:74;s:4:\"blog\";i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-57089\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-contact-1-600x1381.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/relationship-coach-08/wp-json/wp/v2/pages/1020\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/relationship-coach-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:3:{i:74;s:4:\"blog\";i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-57090\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-1-600x3248.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/relationship-coach-08/wp-json/wp/v2/pages/1022\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/relationship-coach-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:3:{i:74;s:4:\"blog\";i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-57086\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-about-1-600x1648.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/relationship-coach-08/wp-json/wp/v2/pages/1014\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/relationship-coach-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:3:{i:74;s:4:\"blog\";i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-57091\";a:12:{s:5:\"title\";s:21:\"One-on-One Counseling\";s:18:\"featured-image-url\";s:100:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-one-on-one-counselling.jpg\";s:19:\"thumbnail-image-url\";s:109:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-one-on-one-counselling-600x1993.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/relationship-coach-08/wp-json/wp/v2/pages/1024\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:63:\"//websitedemos.net/relationship-coach-08/one-on-one-counseling/\";s:15:\"astra-sites-tag\";a:1:{i:610;s:8:\"coaching\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:3:{i:74;s:4:\"blog\";i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-57092\";a:12:{s:5:\"title\";s:11:\"Stage Shows\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-stage-shows-1.jpg\";s:19:\"thumbnail-image-url\";s:100:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-stage-shows-1-600x1701.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/relationship-coach-08/wp-json/wp/v2/pages/1026\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/relationship-coach-08/stage-shows/\";s:15:\"astra-sites-tag\";a:1:{i:1875;s:11:\"stage-shows\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:3:{i:74;s:4:\"blog\";i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-56996\";a:22:{s:5:\"title\";s:12:\"Tech Blogger\";s:2:\"id\";i:56996;s:12:\"publish-date\";i:1626456827;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-blogger-04-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-blogger-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-blogger-04-home.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/tech-blogger-04\";s:20:\"astra-site-parent-id\";i:2257;s:15:\"astra-sites-tag\";a:9:{i:2269;s:18:\"affiliate-marketer\";i:1652;s:7:\"blogger\";i:1654;s:15:\"content-creator\";i:1547;s:10:\"influencer\";i:2163;s:23:\"social-media-influencer\";i:2266;s:12:\"tech-blogger\";i:2267;s:15:\"tech-influencer\";i:2268;s:17:\"technology-critic\";i:1837;s:7:\"vlogger\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:37;s:4:\"blog\";}s:29:\"astra-sites-template-category\";a:3:{i:2828;s:4:\"blog\";i:2774;s:8:\"magazine\";i:2817;s:10:\"technology\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1155:\"<!-- wp:paragraph -->\n<p>The Tech Blogger template is an easy-to-use, modern website template that lets you showcase the latest technology blog posts. Include the latest technology news and trends, hottest deals and offers, and posts on anything related to technology.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template is designed to help you quickly start your own technology blog. You don’t have to be a tech expert or a web developer to create your own website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Tech Blogger template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Modern and professional-looking template best suited for a technology blog</li><li>Newsletter subscription form is integrated into the hero section, allowing you to capture the email IDs of visitors. This way, you can update them the next time you publish a post</li><li>Showcase the best deals and offers on the homepage as well as on a dedicated page</li><li>Template is fully customizable and can be tweaked to suit your needs</li><li>Use your favorite page builder to edit and customize content</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"A modern website template that lets you showcase the latest technology blog posts\";s:5:\"pages\";a:4:{s:8:\"id-56997\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-blogger-04-about.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-blogger-04-about.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/tech-blogger-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/tech-blogger-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-56998\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-blogger-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-blogger-04-contact.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/tech-blogger-04/wp-json/wp/v2/pages/19\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/tech-blogger-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56999\";a:12:{s:5:\"title\";s:5:\"Deals\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-blogger-04-deals.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-blogger-04-deals.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/tech-blogger-04/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/tech-blogger-04/deals/\";s:15:\"astra-sites-tag\";a:1:{i:2264;s:5:\"deals\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57000\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-blogger-04-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-blogger-04-home.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/tech-blogger-04/wp-json/wp/v2/pages/67\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/tech-blogger-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-51504\";a:22:{s:5:\"title\";s:18:\"Creative Podcaster\";s:2:\"id\";i:51504;s:12:\"publish-date\";i:1617304812;s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/04/creative-podcaster-02-home.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/04/creative-podcaster-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/04/creative-podcaster-02-home.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/creative-podcaster-02\";s:20:\"astra-site-parent-id\";i:1923;s:15:\"astra-sites-tag\";a:5:{i:1654;s:15:\"content-creator\";i:1928;s:16:\"creative-podcast\";i:1929;s:9:\"creatives\";i:1927;s:15:\"podcast-website\";i:1926;s:9:\"podcaster\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2791;s:8:\"creative\";i:2770;s:8:\"personal\";i:2829;s:7:\"podcast\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:997:\"<!-- wp:paragraph -->\n<p>Create your own podcast website in minutes with our Creative Podcaster template. With a clean and minimalistic design that highlights your latest episodes, your latest guests, and your latest reviews, it’s easier than ever to get the word out about your show.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes an easy-to-use newsletter subscription form so you can start building up a loyal following of listeners who love what you do.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Creative Podcaster template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Clean and minimalistic design that’s perfect for any podcaster</li><li>Showcase your latest episodes in a done-for-you template</li><li>Include details of your hosts, customer reviews, and more on the homepage</li><li>Easily customize the colors and typography of your website</li><li>Fully responsive and customizable template</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:86:\"Perfect website template for any podcaster looking to create their own online presence\";s:5:\"pages\";a:4:{s:8:\"id-51508\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/04/creative-podcaster-02-home.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/04/creative-podcaster-02-home.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/creative-podcaster-02/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/creative-podcaster-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51505\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/04/creative-podcaster-02-about.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/04/creative-podcaster-02-about.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/creative-podcaster-02/wp-json/wp/v2/pages/575\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/creative-podcaster-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51506\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/04/creative-podcaster-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/04/creative-podcaster-02-contact.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/creative-podcaster-02/wp-json/wp/v2/pages/880\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/creative-podcaster-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-51507\";a:12:{s:5:\"title\";s:8:\"Episodes\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/04/creative-podcaster-02-episodes.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/04/creative-podcaster-02-episodes.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/creative-podcaster-02/wp-json/wp/v2/pages/758\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/creative-podcaster-02/episodes/\";s:15:\"astra-sites-tag\";a:2:{i:1924;s:8:\"episodes\";i:1925;s:15:\"podcast-episode\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:51504;s:26:\"related-gutenberg-template\";i:56607;}s:8:\"id-56607\";a:22:{s:5:\"title\";s:18:\"Creative Podcaster\";s:2:\"id\";i:56607;s:12:\"publish-date\";i:1626181230;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/07/creative-podcaster-08-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/07/creative-podcaster-08-1-600x2248.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/07/creative-podcaster-08-1-400x1499.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/creative-podcaster-08\";s:20:\"astra-site-parent-id\";i:2244;s:15:\"astra-sites-tag\";a:5:{i:1654;s:15:\"content-creator\";i:1928;s:16:\"creative-podcast\";i:1929;s:9:\"creatives\";i:1927;s:15:\"podcast-website\";i:1926;s:9:\"podcaster\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-56611\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/07/creative-podcaster-08-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/07/creative-podcaster-08-1-600x2248.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/creative-podcaster-08/wp-json/wp/v2/pages/1254\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/creative-podcaster-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56610\";a:12:{s:5:\"title\";s:8:\"Episodes\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/07/creative-podcaster-08-episodes-1.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2021/07/creative-podcaster-08-episodes-1-600x1327.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/creative-podcaster-08/wp-json/wp/v2/pages/1263\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/creative-podcaster-08/episodes/\";s:15:\"astra-sites-tag\";a:1:{i:1924;s:8:\"episodes\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56609\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/07/creative-podcaster-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2021/07/creative-podcaster-08-contact-1-600x1231.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/creative-podcaster-08/wp-json/wp/v2/pages/1274\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/creative-podcaster-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56608\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/07/creative-podcaster-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2021/07/creative-podcaster-08-about-1-600x1652.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/creative-podcaster-08/wp-json/wp/v2/pages/1271\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/creative-podcaster-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-57022\";a:22:{s:5:\"title\";s:9:\"Tech News\";s:2:\"id\";i:57022;s:12:\"publish-date\";i:1626294756;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-news-04-home.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-news-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-news-04-home.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/tech-news-04\";s:20:\"astra-site-parent-id\";i:2260;s:15:\"astra-sites-tag\";a:9:{i:480;s:4:\"blog\";i:2275;s:13:\"business-blog\";i:2277;s:17:\"business-magazine\";i:2276;s:13:\"business-news\";i:2273;s:9:\"editorial\";i:2274;s:8:\"magazine\";i:2271;s:4:\"news\";i:2272;s:10:\"publishing\";i:2278;s:16:\"publishing-house\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:37;s:4:\"blog\";}s:29:\"astra-sites-template-category\";a:3:{i:2828;s:4:\"blog\";i:2774;s:8:\"magazine\";i:2859;s:4:\"news\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1070:\"<!-- wp:paragraph -->\n<p>Build a technology website using the Tech News template and share the latest trends related to technology, gadgets, software, apps, games, and more. The clean and clutter-free design will help your website visitors find what they\'re looking for without digging through piles of information.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template features a newsletter subscription form that will let you build your newsletter list quickly and easily.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Tech News template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Simple and clutter-free website template, perfect for a technology website</li><li>The package includes well-planned layouts for individual category pages as well</li><li>Build an email list using the well-integrated newsletter subscription form</li><li>The template consists of placeholders for showcasing ads and monetizing your blog</li><li>Compatible with Gutenberg and all popular page builder plugins</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:75:\"Clean and simple website template, perfect for your technology news website\";s:5:\"pages\";a:4:{s:8:\"id-57023\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-news-04-about.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-news-04-about.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/tech-news-04/wp-json/wp/v2/pages/705\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/tech-news-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57024\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-news-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-news-04-contact.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/tech-news-04/wp-json/wp/v2/pages/852\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/tech-news-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57025\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-news-04-home.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-news-04-home.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/tech-news-04/wp-json/wp/v2/pages/61\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/tech-news-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-57026\";a:12:{s:5:\"title\";s:8:\"Podcasts\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-news-04-podcasts.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-news-04-podcasts.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/tech-news-04/wp-json/wp/v2/pages/463\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/tech-news-04/podcasts/\";s:15:\"astra-sites-tag\";a:1:{i:2270;s:8:\"podcasts\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";i:57290;s:26:\"related-elementor-template\";i:57022;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-57290\";a:22:{s:5:\"title\";s:9:\"Tech News\";s:2:\"id\";i:57290;s:12:\"publish-date\";i:1630403202;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/08/tech-news-03-home1.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/08/tech-news-03-home1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/08/tech-news-03-home1.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/tech-news-03\";s:20:\"astra-site-parent-id\";i:2317;s:15:\"astra-sites-tag\";a:9:{i:480;s:4:\"blog\";i:2275;s:13:\"business-blog\";i:2277;s:17:\"business-magazine\";i:2276;s:13:\"business-news\";i:2273;s:9:\"editorial\";i:2274;s:8:\"magazine\";i:2271;s:4:\"news\";i:2272;s:10:\"publishing\";i:2278;s:16:\"publishing-house\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:37;s:4:\"blog\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-57293\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/08/tech-news-03-home1.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/08/tech-news-03-home1.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/tech-news-03/wp-json/wp/v2/pages/4\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/tech-news-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-57291\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-news-04-about.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-news-04-about.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/tech-news-03/wp-json/wp/v2/pages/1231\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/tech-news-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-57292\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-news-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-news-04-contact.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/tech-news-03/wp-json/wp/v2/pages/1234\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/tech-news-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-57294\";a:12:{s:5:\"title\";s:8:\"Podcasts\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-news-04-podcasts.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/07/tech-news-04-podcasts.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/tech-news-03/wp-json/wp/v2/pages/1236\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/tech-news-03/podcasts/\";s:15:\"astra-sites-tag\";a:1:{i:2270;s:8:\"podcasts\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-34244\";a:22:{s:5:\"title\";s:8:\"Pet Care\";s:2:\"id\";i:34244;s:12:\"publish-date\";i:1571857455;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-03-home.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-03-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-03-home.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/pet-care-03\";s:20:\"astra-site-parent-id\";i:1010;s:15:\"astra-sites-tag\";a:6:{i:376;s:12:\"dog-training\";i:375;s:11:\"dog-walking\";i:374;s:8:\"pet-care\";i:372;s:11:\"pet-minding\";i:371;s:11:\"pet-sitting\";i:373;s:12:\"pet-training\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2472;s:4:\"pets\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-35752\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-03-home.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-03-home.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/pet-care-03/wp-json/wp/v2/pages/415\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/pet-care-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-35750\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-03-about.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-03-about.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/pet-care-03/wp-json/wp/v2/pages/29\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/pet-care-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-35754\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-03-services.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-03-services.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/pet-care-03/wp-json/wp/v2/pages/31\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/pet-care-03/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-35753\";a:12:{s:5:\"title\";s:7:\"Reviews\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-03-reviews.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-03-reviews.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/pet-care-03/wp-json/wp/v2/pages/33\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/pet-care-03/reviews/\";s:15:\"astra-sites-tag\";a:1:{i:432;s:6:\"review\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-35751\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/pet-care-03-contact.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/pet-care-03/wp-json/wp/v2/pages/35\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/pet-care-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55904\";a:22:{s:5:\"title\";s:18:\"Advertising Agency\";s:2:\"id\";i:55904;s:12:\"publish-date\";i:1624378294;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/06/promotion-firm-04-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/06/promotion-firm-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/06/promotion-firm-04-home.jpg\";s:14:\"astra-site-url\";s:45:\"//websitedemos.net/public-relations-agency-04\";s:20:\"astra-site-parent-id\";i:2225;s:15:\"astra-sites-tag\";a:13:{i:1587;s:18:\"advertising-agency\";i:2232;s:19:\"advertising-company\";i:2229;s:16:\"advertising-firm\";i:663;s:6:\"agency\";i:979;s:7:\"company\";i:1588;s:16:\"marketing-agency\";i:2233;s:17:\"marketing-company\";i:2228;s:14:\"marketing-firm\";i:2237;s:12:\"media-agency\";i:2230;s:12:\"press-agency\";i:2227;s:14:\"promotion-firm\";i:2231;s:14:\"publicity-firm\";i:2234;s:18:\"publicity-services\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2812;s:14:\"digital-agency\";i:2796;s:17:\"digital-marketing\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1087:\"<!-- wp:paragraph -->\n<p>Want to be the next big thing in advertising? Get your creative juices flowing with our Advertising Agency template. With its clean layout and creatively designed template, this agency website template will help you stand out from the crowd.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You’ll also be able to include a variety of services for your potential clients, along with case studies that will help them understand the process of working with you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Advertising Agency template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Beautifully designed website template to showcase the creative side of your business</li><li>A fully integrated template that promotes all the services you offer, case studies, customer reviews, and more</li><li>Add photos of your team members on the about page</li><li>A fully functional contact form that has Google maps integrated</li><li>Dedicated page to highlight your completed projects and case studies</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:87:\"A well-planned and professional layout that allows you to showcase your agency services\";s:5:\"pages\";a:6:{s:8:\"id-55905\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/06/promotion-firm-04-about.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/06/promotion-firm-04-about.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/public-relations-agency-04/wp-json/wp/v2/pages/395\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/public-relations-agency-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55906\";a:12:{s:5:\"title\";s:12:\"Case Studies\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/06/promotion-firm-04-case-studies.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/06/promotion-firm-04-case-studies.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/public-relations-agency-04/wp-json/wp/v2/pages/1105\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:59:\"//websitedemos.net/public-relations-agency-04/case-studies/\";s:15:\"astra-sites-tag\";a:1:{i:780;s:12:\"case-studies\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55907\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/06/promotion-firm-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/06/promotion-firm-04-contact.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/public-relations-agency-04/wp-json/wp/v2/pages/396\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/public-relations-agency-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55908\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/06/promotion-firm-04-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/06/promotion-firm-04-home.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/public-relations-agency-04/wp-json/wp/v2/pages/72\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/public-relations-agency-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55909\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/06/promotion-firm-04-services.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/06/promotion-firm-04-services.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/public-relations-agency-04/wp-json/wp/v2/pages/394\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/public-relations-agency-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55910\";a:12:{s:5:\"title\";s:4:\"Work\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/06/promotion-firm-04-work.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/06/promotion-firm-04-work.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/public-relations-agency-04/wp-json/wp/v2/pages/364\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/public-relations-agency-04/work/\";s:15:\"astra-sites-tag\";a:2:{i:444;s:9:\"portfolio\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-49268\";a:22:{s:5:\"title\";s:19:\"Martial Arts School\";s:2:\"id\";i:49268;s:12:\"publish-date\";i:1607721065;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/12/martial-arts-04.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/12/martial-arts-04.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/12/martial-arts-04.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/martial-arts-04\";s:20:\"astra-site-parent-id\";i:1800;s:15:\"astra-sites-tag\";a:5:{i:1804;s:6:\"karate\";i:1803;s:7:\"kung-fu\";i:1801;s:12:\"martial-arts\";i:1805;s:18:\"mixed-martial-arts\";i:1802;s:12:\"self-defence\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2825;s:8:\"coaching\";i:2772;s:9:\"education\";i:2782;s:6:\"school\";i:2873;s:5:\"tutor\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2491;s:22:\"educational-institutes\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1100:\"<!-- wp:paragraph -->\n<p>The Martial Arts School template is a professional and elegant design that allows you to showcase your martial arts school. It features a spacious homepage with an elegantly designed layout to allow for large photos and videos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template is perfect for promoting the various martial arts courses, the instructors, student reviews, and more. A CTA is well integrated into the menu to help prospective students quickly start the programs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Martial Arts School template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Creatively designed layout that’s perfect for a martial arts school website</li><li>Impressive use of colors, fonts, and images</li><li>Well-designed and planned out layouts for each of the pages, such as about, programs, testimonials, and contact</li><li>Showcase an introductory video of the martial arts school on the about page</li><li>Fully responsive design that looks great across all devices</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:88:\"Perfect template for a martial arts school and showcasing courses, instructors, and more\";s:5:\"pages\";a:5:{s:8:\"id-49269\";a:12:{s:5:\"title\";s:8:\"About us\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/12/martial-arts-04-about-us.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/12/martial-arts-04-about-us.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/martial-arts-04/wp-json/wp/v2/pages/127\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/martial-arts-04/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49270\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/12/martial-arts-04-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/12/martial-arts-04-contact-us.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/martial-arts-04/wp-json/wp/v2/pages/209\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/martial-arts-04/contact-us/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-49271\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/12/martial-arts-04.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/12/martial-arts-04.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/martial-arts-04/wp-json/wp/v2/pages/4\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/martial-arts-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49272\";a:12:{s:5:\"title\";s:8:\"Programs\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/12/martial-arts-04-programs.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/12/martial-arts-04-programs.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/martial-arts-04/wp-json/wp/v2/pages/163\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/martial-arts-04/programs/\";s:15:\"astra-sites-tag\";a:2:{i:989;s:8:\"programs\";i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49273\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/12/martial-arts-04-testimonial.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/12/martial-arts-04-testimonial.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/martial-arts-04/wp-json/wp/v2/pages/177\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/martial-arts-04/testimonials/\";s:15:\"astra-sites-tag\";a:2:{i:1615;s:7:\"reviews\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-49809\";a:22:{s:5:\"title\";s:23:\"Learn Digital Marketing\";s:2:\"id\";i:49809;s:12:\"publish-date\";i:1612557346;s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-digital-marketing-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-digital-marketing-02-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-digital-marketing-02-homepage.jpg\";s:14:\"astra-site-url\";s:45:\"//websitedemos.net/learn-digital-marketing-02\";s:20:\"astra-site-parent-id\";i:1853;s:15:\"astra-sites-tag\";a:5:{i:462;s:7:\"courses\";i:1855;s:17:\"digital-marketing\";i:467;s:9:\"learndash\";i:975;s:15:\"online-learning\";i:720;s:9:\"tutorials\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:6:{i:2825;s:8:\"coaching\";i:2796;s:17:\"digital-marketing\";i:2835;s:9:\"elearning\";i:2880;s:10:\"membership\";i:2827;s:13:\"online-course\";i:2873;s:5:\"tutor\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:2;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:3;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:29:\"Ultimate Addons for Gutenberg\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:5;a:3:{s:4:\"slug\";s:13:\"presto-player\";s:4:\"init\";s:31:\"presto-player/presto-player.php\";s:4:\"name\";s:13:\"Presto Player\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1277:\"<!-- wp:paragraph -->\n<p>Want to build a platform and offer courses online? Our Learn Digital Marketing template is an elegant and minimalistic design that’ll help showcase your courses on digital marketing. The template promotes you, the expert, within a significant hero section.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>An ‘enroll today’ CTA button integrated into the menu allows potential students to immediately sign up for your courses. The well-integrated newsletter subscription form lets you build a list and send tips and tricks to your students.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Learn Digital Marketing template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Build an online platform to offer courses in digital marketing, using our engaging and minimalistic website template</li><li>Well integrated with popular LMS plugins, such as LearnDash, to create, manage, and offer courses online</li><li>Offer additional resources, such as ebooks, and case studies on a specifically designed page</li><li>Fully functional contact form that allows prospective students to get in touch with you</li><li>A customizable and flexible template that can be tweaked to suit your needs</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:77:\"An ideal website template to offer courses and resources on digital marketing\";s:5:\"pages\";a:6:{s:8:\"id-49814\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-digital-marketing-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-digital-marketing-02-homepage.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/learn-digital-marketing-02/wp-json/wp/v2/pages/4\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/learn-digital-marketing-02/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49810\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-digital-marketing-02-about.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-digital-marketing-02-about.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/learn-digital-marketing-02/wp-json/wp/v2/pages/561\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/learn-digital-marketing-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49813\";a:12:{s:5:\"title\";s:7:\"Courses\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/02/digital-marketing-02-all-courses.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/02/digital-marketing-02-all-courses.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/learn-digital-marketing-02/wp-json/wp/v2/pages/908\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:58:\"//websitedemos.net/learn-digital-marketing-02/all-courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49815\";a:12:{s:5:\"title\";s:8:\"Resource\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/02/digital-marketing-02-resource.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/02/digital-marketing-02-resource.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/learn-digital-marketing-02/wp-json/wp/v2/pages/688\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/learn-digital-marketing-02/resource/\";s:15:\"astra-sites-tag\";a:1:{i:1854;s:8:\"resource\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49811\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-digital-marketing-02-blog.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-digital-marketing-02-blog.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/learn-digital-marketing-02/wp-json/wp/v2/pages/890\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/learn-digital-marketing-02/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:29:\"Ultimate Addons for Gutenberg\";}}}s:8:\"id-49812\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/02/digital-marketing-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/02/digital-marketing-02-contact.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/learn-digital-marketing-02/wp-json/wp/v2/pages/812\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/learn-digital-marketing-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:49809;s:26:\"related-gutenberg-template\";i:56525;}s:8:\"id-56525\";a:22:{s:5:\"title\";s:23:\"Learn Digital Marketing\";s:2:\"id\";i:56525;s:12:\"publish-date\";i:1625493814;s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-600x3205.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-400x2137.jpg\";s:14:\"astra-site-url\";s:45:\"//websitedemos.net/learn-digital-marketing-08\";s:20:\"astra-site-parent-id\";i:2239;s:15:\"astra-sites-tag\";a:5:{i:462;s:7:\"courses\";i:1855;s:17:\"digital-marketing\";i:467;s:9:\"learndash\";i:975;s:15:\"online-learning\";i:720;s:9:\"tutorials\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:13:\"presto-player\";s:4:\"init\";s:31:\"presto-player/presto-player.php\";s:4:\"name\";s:13:\"Presto Player\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-56526\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:99:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-about-1-600x2264.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/learn-digital-marketing-08/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/learn-digital-marketing-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56527\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-blog-1.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-blog-1-600x1125.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/learn-digital-marketing-08/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/learn-digital-marketing-08/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56528\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:101:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-contact-1-600x1238.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/learn-digital-marketing-08/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/learn-digital-marketing-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56531\";a:12:{s:5:\"title\";s:8:\"Resource\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-resources.jpg\";s:19:\"thumbnail-image-url\";s:101:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-resources-600x1984.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/learn-digital-marketing-08/wp-json/wp/v2/pages/19\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/learn-digital-marketing-08/resource/\";s:15:\"astra-sites-tag\";a:1:{i:1854;s:8:\"resource\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56529\";a:12:{s:5:\"title\";s:7:\"Courses\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-courses.jpg\";s:19:\"thumbnail-image-url\";s:99:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-courses-600x1495.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/learn-digital-marketing-08/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:58:\"//websitedemos.net/learn-digital-marketing-08/all-courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56530\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-600x3205.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/learn-digital-marketing-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/learn-digital-marketing-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(209,'astra-sites-and-pages-page-15','a:15:{s:8:\"id-49241\";a:22:{s:5:\"title\";s:21:\"Catering &amp; Events\";s:2:\"id\";i:49241;s:12:\"publish-date\";i:1607708411;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/12/catering-services-04-home.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/12/catering-services-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/12/catering-services-04-home.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/catering-services-04\";s:20:\"astra-site-parent-id\";i:1788;s:15:\"astra-sites-tag\";a:11:{i:693;s:4:\"cafe\";i:1791;s:17:\"catering-services\";i:1792;s:6:\"caters\";i:792;s:7:\"cooking\";i:1798;s:6:\"dining\";i:1569;s:6:\"events\";i:1789;s:7:\"feeding\";i:336;s:4:\"food\";i:1799;s:13:\"food-festival\";i:1793;s:10:\"meal-serve\";i:1790;s:7:\"serving\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2855;s:8:\"catering\";i:2784;s:5:\"event\";i:2785;s:4:\"food\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2489;s:16:\"event-invitation\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1002:\"<!-- wp:paragraph -->\n<p>Have you been looking for a website template that is both easy to use and provides an organized, professional image? Our Catering &amp; Events template is the answer! It comes in various colors to help you stand out from competitors.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether corporate events or birthday parties, go ahead and promote your various services and menus on your website. Additionally, include testimonials from your clients to show how happy they are with your services.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Catering &amp; Events template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>A creatively designed template that uses vibrant colors</li><li>All templates are well planned out and easy to use</li><li>Showcase the catering services for various events and menus as well</li><li>Include client testimonials on the homepage</li><li>Fully responsive and customizable design</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:89:\"A perfectly designed template for building a catering and events-related business website\";s:5:\"pages\";a:5:{s:8:\"id-49244\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/12/catering-services-04-home.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/12/catering-services-04-home.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/catering-services-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/catering-services-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49242\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/12/catering-services-04-about.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/12/catering-services-04-about.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/catering-services-04/wp-json/wp/v2/pages/229\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/catering-services-04/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49245\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/12/catering-services-04-services.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/12/catering-services-04-services.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/catering-services-04/wp-json/wp/v2/pages/275\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/catering-services-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49246\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/12/catering-services-04-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/12/catering-services-04-testimonials.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/catering-services-04/wp-json/wp/v2/pages/315\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/catering-services-04/testimonials/\";s:15:\"astra-sites-tag\";a:2:{i:432;s:6:\"review\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49243\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/12/catering-services-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/12/catering-services-04-contact.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/catering-services-04/wp-json/wp/v2/pages/343\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/catering-services-04/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-49260\";a:22:{s:5:\"title\";s:12:\"Music School\";s:2:\"id\";i:49260;s:12:\"publish-date\";i:1607708423;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/12/music-school-04-home-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/12/music-school-04-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/12/music-school-04-home-1.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/music-school-04\";s:20:\"astra-site-parent-id\";i:1794;s:15:\"astra-sites-tag\";a:8:{i:339;s:6:\"artist\";i:1797;s:12:\"drama-school\";i:1795;s:13:\"music-academy\";i:1796;s:14:\"musical-school\";i:969;s:8:\"musician\";i:1572;s:9:\"performer\";i:1571;s:6:\"singer\";i:1573;s:8:\"vocalist\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:6:{i:2802;s:6:\"artist\";i:2772;s:9:\"education\";i:2781;s:5:\"music\";i:2771;s:8:\"one-page\";i:2782;s:6:\"school\";i:2873;s:5:\"tutor\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:3:{i:2486;s:9:\"art-music\";i:2491;s:22:\"educational-institutes\";i:2927;s:8:\"one-page\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1226:\"<!-- wp:paragraph -->\n<p>The Music School Template is an easy-to-use website template that can be customized to sell musical instruments, offer music lessons, and showcase your school\'s campus. Use it as a starting point for your website by adding your content and photos of the music teachers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template is not only designed for musicians but also offers a great option for people who want to learn how to play an instrument.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Music School template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Build a music school website using our inspiring Music School template</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Accept online applications of prospective students</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>A fully compatible template that allows you to offer and manage online courses</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Sell musical instruments online using a WooCommerce-ready template</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Customizable and page-ready template</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:88:\"Perfect template for any aspiring musician to offer courses and sell musical instruments\";s:5:\"pages\";a:1:{s:8:\"id-49261\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/12/music-school-04-home-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/12/music-school-04-home-1.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/music-school-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/music-school-04/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:399;s:8:\"one-page\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48348\";a:22:{s:5:\"title\";s:8:\"Mountain\";s:2:\"id\";i:48348;s:12:\"publish-date\";i:1603907454;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/10/mountain-08-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/mountain-08-1-600x1463.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/mountain-08-1-400x975.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/mountain-08\";s:20:\"astra-site-parent-id\";i:1724;s:15:\"astra-sites-tag\";a:4:{i:692;s:8:\"business\";i:1525;s:8:\"mountain\";i:1526;s:13:\"multi-purpose\";i:535;s:6:\"nature\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2500;s:12:\"multipurpose\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-48349\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/mountain-08-about-2.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/mountain-08-about-2-600x742.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/mountain-08/wp-json/wp/v2/pages/218\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/mountain-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48350\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/mountain-08-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/mountain-08-contact-2-600x832.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/mountain-08/wp-json/wp/v2/pages/220\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/mountain-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48351\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/10/mountain-08-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/mountain-08-1-600x1463.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/mountain-08/wp-json/wp/v2/pages/217\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/mountain-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48352\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/mountain-08-services-2.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/mountain-08-services-2-600x1322.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/mountain-08/wp-json/wp/v2/pages/219\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/mountain-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-51520\";a:22:{s:5:\"title\";s:8:\"Aquarium\";s:2:\"id\";i:51520;s:12:\"publish-date\";i:1617304809;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/04/aquarium-04-home.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/04/aquarium-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/04/aquarium-04-home.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/aquarium-04\";s:20:\"astra-site-parent-id\";i:1930;s:15:\"astra-sites-tag\";a:5:{i:1932;s:8:\"aquarium\";i:1935;s:4:\"fish\";i:1933;s:13:\"marine-museum\";i:1934;s:4:\"tank\";i:1936;s:13:\"water-species\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:2:{i:2777;s:8:\"business\";i:2784;s:5:\"event\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2498;s:12:\"hotel-travel\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1092:\"<!-- wp:paragraph -->\n<p>The Aquarium is an awe-inspiring, beautifully crafted website template perfect for promoting an aquarium. The sea blue color template instantaneously sets the tone of a deep sea diving experience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template is perfect for showcasing your aquarium\'s daily schedule, booking a virtual guided tour, and showcasing all the sea animals on your website. Additionally, an impressive gallery page helps visitors understand the species on display at the aquarium.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Aquarium template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Awe-inspiring design tailor-made for an aquarium</li><li>The package includes templates for highlighting the animal species, among other things</li><li>Include a virtual guided tour helping visitors visualize the aquarium from the comfort of their doorstep</li><li>Allow visitors to book tickets online through your website</li><li>The template looks great on all mobile devices as well</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:87:\"Perfect template for showcasing aquatic plants and animals on an aquarium-based website\";s:5:\"pages\";a:5:{s:8:\"id-51524\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/04/aquarium-04-gallery.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/04/aquarium-04-gallery.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/aquarium-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/aquarium-04/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51525\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/04/aquarium-04-home.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/04/aquarium-04-home.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/aquarium-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/aquarium-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51521\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/04/aquarium-04-about.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/04/aquarium-04-about.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/aquarium-04/wp-json/wp/v2/pages/564\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/aquarium-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51522\";a:12:{s:5:\"title\";s:7:\"Animals\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/04/aquarium-04-animals.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/04/aquarium-04-animals.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/aquarium-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/aquarium-04/animals/\";s:15:\"astra-sites-tag\";a:1:{i:1931;s:7:\"animals\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51523\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/04/aquarium-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/04/aquarium-04-contact.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/aquarium-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/aquarium-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-57346\";a:22:{s:5:\"title\";s:16:\"Fashion Designer\";s:2:\"id\";i:57346;s:12:\"publish-date\";i:1630000976;s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/08/fashion-designer-boutique-02-home-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/08/fashion-designer-boutique-02-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/08/fashion-designer-boutique-02-home-1.jpg\";s:14:\"astra-site-url\";s:47:\"//websitedemos.net/fashion-designer-boutique-02\";s:20:\"astra-site-parent-id\";i:2325;s:15:\"astra-sites-tag\";a:20:{i:2105;s:8:\"boutique\";i:2418;s:8:\"commerce\";i:2350;s:21:\"designer-cloths-store\";i:496;s:9:\"ecommerce\";i:2419;s:9:\"eshopping\";i:2327;s:16:\"fashion-designer\";i:2349;s:25:\"fashion-designer-boutique\";i:2351;s:26:\"fashion-designer-portfolio\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:444;s:9:\"portfolio\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:5:{i:2790;s:14:\"beauty-fashion\";i:2777;s:8:\"business\";i:2769;s:9:\"ecommerce\";i:2858;s:16:\"fashion-clothing\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2495;s:9:\"ecommerce\";i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:5;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1370:\"<!-- wp:paragraph -->\n<p>Want to make a fashion website but don\'t know where to start? Our Fashion Designer template is the perfect place for you. Our template is the ideal home for your fashion designer business with a sleek and sophisticated design.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Promote your clothing or accessories with our modern web design that includes client testimonials and photos from happy customers. Plus, we\'ve included deals and offers to help you get your product noticed by potential customers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Fashion Designer template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Launch your fashion designer store using our classy website template</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Sell accessories, tops, bottoms, dresses, and more on your online store</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Showcase products based on the latest collections, new arrivals, best sellers, and more</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Well integrated with WooCommerce allowing you to set up and sell immediately&nbsp;</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Customize and tweak every element of your store to suit your website needs</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:83:\"Classy and sophisticated design that’s perfect for anyone in the fashion industry\";s:5:\"pages\";a:5:{s:8:\"id-57347\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2021/08/fashion-designer-boutique-02-about-1.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2021/08/fashion-designer-boutique-02-about-1.jpg\";s:18:\"astra-page-api-url\";s:77:\"https://websitedemos.net/fashion-designer-boutique-02/wp-json/wp/v2/pages/397\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/fashion-designer-boutique-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57348\";a:12:{s:5:\"title\";s:11:\"Collections\";s:18:\"featured-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2021/08/fashion-designer-boutique-02-collections-1.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2021/08/fashion-designer-boutique-02-collections-1.jpg\";s:18:\"astra-page-api-url\";s:77:\"https://websitedemos.net/fashion-designer-boutique-02/wp-json/wp/v2/pages/541\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:60:\"//websitedemos.net/fashion-designer-boutique-02/collections/\";s:15:\"astra-sites-tag\";a:1:{i:596;s:10:\"collection\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57349\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2021/08/fashion-designer-boutique-02-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2021/08/fashion-designer-boutique-02-contact-1.jpg\";s:18:\"astra-page-api-url\";s:77:\"https://websitedemos.net/fashion-designer-boutique-02/wp-json/wp/v2/pages/500\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:56:\"//websitedemos.net/fashion-designer-boutique-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-57351\";a:12:{s:5:\"title\";s:12:\"New Arrivals\";s:18:\"featured-image-url\";s:99:\"https://websitedemos.net/wp-content/uploads/2021/08/fashion-designer-boutique-02-new-arrivals-1.jpg\";s:19:\"thumbnail-image-url\";s:99:\"https://websitedemos.net/wp-content/uploads/2021/08/fashion-designer-boutique-02-new-arrivals-1.jpg\";s:18:\"astra-page-api-url\";s:77:\"https://websitedemos.net/fashion-designer-boutique-02/wp-json/wp/v2/pages/677\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:61:\"//websitedemos.net/fashion-designer-boutique-02/new-arrivals/\";s:15:\"astra-sites-tag\";a:1:{i:2326;s:11:\"new-arrival\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57350\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/08/fashion-designer-boutique-02-home-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/08/fashion-designer-boutique-02-home-1.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/fashion-designer-boutique-02/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/fashion-designer-boutique-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:57346;s:26:\"related-gutenberg-template\";i:58561;}s:8:\"id-53589\";a:22:{s:5:\"title\";s:24:\"Beer Launch Landing Page\";s:2:\"id\";i:53589;s:12:\"publish-date\";i:1620419986;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/beer-launch-02.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/beer-launch-02.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/beer-launch-02.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/beer-launch-04\";s:20:\"astra-site-parent-id\";i:1959;s:15:\"astra-sites-tag\";a:7:{i:1962;s:4:\"beer\";i:2016;s:16:\"beer-launch-page\";i:635;s:7:\"brewery\";i:1965;s:5:\"drink\";i:1964;s:5:\"lager\";i:850;s:12:\"landing-page\";i:399;s:8:\"one-page\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2863;s:12:\"landing-page\";i:2771;s:8:\"one-page\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2927;s:8:\"one-page\";i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1004:\"<!-- wp:paragraph -->\n<p>The Beer Launch Landing Page template is a bright, happy template with a bright yellow header with a strong presence. It’s a modern design with unusual fonts that help the homepage stand out, ideal for new brewers or breweries.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The rest of the design includes relevant elements such as a timeline, product section, calls to action, a blog area and social media integrations. It’s a very effective design that encourages you to read more and engage further.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Beer Launch Landing Page template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Colorful web template for brewers, breweries and drinks companies</li><li>Unusual header font helps it stand out</li><li>Bright colors and high quality images add to the appeal</li><li>Well-designed product section for drinks</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"Bright, happy web template ideal for brewers, breweries and artisan drinks companies\";s:5:\"pages\";a:1:{s:8:\"id-53590\";a:12:{s:5:\"title\";s:12:\"Landing Page\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/beer-launch-02.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/beer-launch-02.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/beer-launch-04/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/beer-launch-04/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:850;s:12:\"landing-page\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-51427\";a:22:{s:5:\"title\";s:12:\"Tech Startup\";s:2:\"id\";i:51427;s:12:\"publish-date\";i:1617132367;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/03/tech-startup-02-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/03/tech-startup-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/03/tech-startup-02-home.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/tech-startup-02\";s:20:\"astra-site-parent-id\";i:1885;s:15:\"astra-sites-tag\";a:7:{i:1761;s:11:\"application\";i:745;s:12:\"organization\";i:1762;s:16:\"software-company\";i:1760;s:13:\"software-firm\";i:1665;s:7:\"startup\";i:1759;s:13:\"tech-business\";i:1763;s:12:\"tech-startup\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:5:{i:2787;s:11:\"gym-fitness\";i:2863;s:12:\"landing-page\";i:2881;s:10:\"mobile-app\";i:2779;s:16:\"software-company\";i:2817;s:10:\"technology\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1002:\"<!-- wp:paragraph -->\n<p>The Tech Startup template is a flat, modern design with bright colors, bold fonts and plenty of whitespace. It’s a great layout with fullscreen header setting out your stall and a simple navigation area with a bright download button.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The homepage is light, easygoing but also interesting. You’re encouraged to scroll down to learn more and presented with customizable content areas to outline your products or services and convert those visitors into customers. It’s a very well designed theme!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Tech Startup template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Well-designed flat theme suitable for any type of business</li><li>Excellent choice of colors and fonts</li><li>Great layout with borderless sections</li><li>Customizable content areas throughout</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:78:\"Well-designed flat theme with lovely colors, suitable for any type of business\";s:5:\"pages\";a:4:{s:8:\"id-47711\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/03/tech-startup-02-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/03/tech-startup-02-home.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/tech-startup-02/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/tech-startup-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47709\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/03/tech-startup-02-about.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/03/tech-startup-02-about.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/tech-startup-02/wp-json/wp/v2/pages/92\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/tech-startup-02/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47710\";a:12:{s:5:\"title\";s:8:\"Features\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/03/tech-startup-02-features.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/03/tech-startup-02-features.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/tech-startup-02/wp-json/wp/v2/pages/132\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/tech-startup-02/features/\";s:15:\"astra-sites-tag\";a:1:{i:453;s:8:\"features\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47712\";a:12:{s:5:\"title\";s:5:\"Plans\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/03/tech-startup-02-plans.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/03/tech-startup-02-plans.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/tech-startup-02/wp-json/wp/v2/pages/173\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/tech-startup-02/plans/\";s:15:\"astra-sites-tag\";a:2:{i:1663;s:4:\"plan\";i:585;s:7:\"pricing\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:51427;s:26:\"related-gutenberg-template\";i:48671;}s:8:\"id-49287\";a:22:{s:5:\"title\";s:10:\"Food Truck\";s:2:\"id\";i:49287;s:12:\"publish-date\";i:1607968453;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/12/food-truck-04-new.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/12/food-truck-04-new-600x3140.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/12/food-truck-04-new-400x2093.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/food-truck-04\";s:20:\"astra-site-parent-id\";i:1806;s:15:\"astra-sites-tag\";a:3:{i:1808;s:10:\"food-truck\";i:1810;s:17:\"ice-cream-truck-2\";i:1809;s:15:\"ice-cream-truck\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:5:{i:2777;s:8:\"business\";i:2785;s:4:\"food\";i:2876;s:13:\"food-ordering\";i:2771;s:8:\"one-page\";i:2776;s:10:\"restaurant\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2927;s:8:\"one-page\";i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1321:\"<!-- wp:paragraph -->\n<p>The Food Truck template is an awesome spectacle. It’s a fullscreen design with a lovely green color and a high quality image of a food truck front and center. With an attractive menu section, product highlight area and a timeline, it’s everything you need.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design is superb, with modern fonts that stand out from the background color. The homepage includes relevant sections for a food business including a very attractive menu section, a scheduler for opening, map and a short biography to tell your story. It’s the only template you would ever need!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Food Truck template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Colorful template that’s perfect for food trucks and food businesses</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fullscreen design that works on any screen size</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Attractive menu areas really stand out</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Customizable content sections throughout</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:88:\"Colorful template with awesome design that’s ideal for food trucks and food businesses\";s:5:\"pages\";a:1:{s:8:\"id-49288\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/12/food-truck-04-new.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/12/food-truck-04-new-600x3140.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/food-truck-04/wp-json/wp/v2/pages/4\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/food-truck-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-49449\";a:22:{s:5:\"title\";s:7:\"Vlogger\";s:2:\"id\";i:49449;s:12:\"publish-date\";i:1608733132;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/12/vlogger-02-home.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/12/vlogger-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/12/vlogger-02-home.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/vlogger-02\";s:20:\"astra-site-parent-id\";i:1836;s:15:\"astra-sites-tag\";a:8:{i:1840;s:9:\"cameraman\";i:1841;s:15:\"cinematographer\";i:1842;s:10:\"film-maker\";i:399;s:8:\"one-page\";i:1718;s:7:\"onepage\";i:1839;s:13:\"video-creator\";i:1837;s:7:\"vlogger\";i:1838;s:8:\"youtuber\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2810;s:9:\"freelance\";i:2771;s:8:\"one-page\";i:2770;s:8:\"personal\";i:2801;s:5:\"video\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:4:{i:2497;s:4:\"blog\";i:2927;s:8:\"one-page\";i:2488;s:9:\"portfolio\";i:2926;s:5:\"video\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:992:\"<!-- wp:paragraph -->\n<p>The Vlogger template uses a compelling portfolio layout that could be easily customized for any creative. It uses a full width header image with bold header and modern light fonts. It’s a very engaging start to what is an excellent design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The homepage includes flexible content areas outlining the contents, biography, social media links, videos, timeline and a contact form. Some great colors, well-chosen fonts and subtle graphics elevates this template well above the norm.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Vlogger template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Compelling portfolio template ideal for vloggers and creatives</li><li>Areas for biography, timeline and portfolio</li><li>Well-chosen fonts complement strong images</li><li>Customizable content areas throughout</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:78:\"Fresh, compelling website template ideal for vloggers and any type of creative\";s:5:\"pages\";a:1:{s:8:\"id-49450\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/12/vlogger-02-home.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/12/vlogger-02-home.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/vlogger-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/vlogger-02/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:399;s:8:\"one-page\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-51409\";a:22:{s:5:\"title\";s:7:\"Webinar\";s:2:\"id\";i:51409;s:12:\"publish-date\";i:1617130542;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/03/webinar-02-home.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/03/webinar-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/03/webinar-02-home.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/webinar-02\";s:20:\"astra-site-parent-id\";i:1883;s:15:\"astra-sites-tag\";a:3:{i:850;s:12:\"landing-page\";i:1892;s:7:\"webinar\";i:1894;s:25:\"webinar-registration-page\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:7:{i:2777;s:8:\"business\";i:2811;s:10:\"conference\";i:2784;s:5:\"event\";i:2863;s:12:\"landing-page\";i:2771;s:8:\"one-page\";i:2801;s:5:\"video\";i:2870;s:4:\"vlog\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2489;s:16:\"event-invitation\";i:2927;s:8:\"one-page\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1264:\"<!-- wp:paragraph -->\n<p>The Webinar template is a light and welcoming landing page ideal for seminars, webinars and other types of presentation or meeting. It’s a light, modern design with the who, what, when and where above the fold and space for everything else beneath.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The page uses a reassuring blue color but can be customized with any color, font and layout. It’s fully responsive and compatible with leading page builders, so you can personalize the Webinar template however you like. It’s a well-designed theme ideal for many types of landing pages!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Webinar template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Well-designed webinar landing page template</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Modern design with lots of whitespace</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Can be fully customized to suit any brand</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Key information is all above the fold</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fully compatible with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:74:\"Modern Webinar landing page template with all the characteristics you need\";s:5:\"pages\";a:1:{s:8:\"id-51410\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/03/webinar-02-home.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/03/webinar-02-home.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/webinar-02/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/webinar-02/\";s:15:\"astra-sites-tag\";a:2:{i:850;s:12:\"landing-page\";i:1892;s:7:\"webinar\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-51312\";a:22:{s:5:\"title\";s:26:\"Injury and Accident Lawyer\";s:2:\"id\";i:51312;s:12:\"publish-date\";i:1616781589;s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/03/injury-accident-lawyer-02-home.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/03/injury-accident-lawyer-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/03/injury-accident-lawyer-02-home.jpg\";s:14:\"astra-site-url\";s:44:\"//websitedemos.net/injury-accident-lawyer-02\";s:20:\"astra-site-parent-id\";i:1861;s:15:\"astra-sites-tag\";a:4:{i:1869;s:16:\"accident-lawyers\";i:1867;s:14:\"injury-lawyers\";i:1870;s:11:\"lawyer-firm\";i:1868;s:7:\"lawyers\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2824;s:8:\"law-firm\";i:2770;s:8:\"personal\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2482;s:3:\"law\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1024:\"<!-- wp:paragraph -->\n<p>The Injury and Accident Lawyer template is a sober business template that’s perfect for law firms, lawyers and the legal industry. It uses light and dark design with a strong contrast color to build authority and trust.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design uses a standard business layout with full width header before unfolding into a white background with borderless content areas. A combination of text and strong imagery helps you tell your story and engage your audience before converting them with the attractive contact form.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Injury and Accident Lawyer template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Sober, authoritative web template for lawyers and law firms</li><li>Business layout with flexible content areas</li><li>Good use of colors, fonts and whitespace</li><li>Customizable content areas</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:80:\"Authoritative web template for lawyers and law firms to showcase their expertise\";s:5:\"pages\";a:6:{s:8:\"id-51317\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/03/injury-accident-lawyer-02-home.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/03/injury-accident-lawyer-02-home.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/injury-accident-lawyer-02/wp-json/wp/v2/pages/19\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/injury-accident-lawyer-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51313\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/03/injury-accident-lawyer-02-about.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/03/injury-accident-lawyer-02-about.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/injury-accident-lawyer-02/wp-json/wp/v2/pages/393\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/injury-accident-lawyer-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51314\";a:12:{s:5:\"title\";s:9:\"Attorneys\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/03/injury-accident-lawyer-02-attorneys.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/03/injury-accident-lawyer-02-attorneys.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/injury-accident-lawyer-02/wp-json/wp/v2/pages/517\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/injury-accident-lawyer-02/attorneys/\";s:15:\"astra-sites-tag\";a:2:{i:912;s:9:\"attorneys\";i:486;s:4:\"team\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51315\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/03/injury-accident-lawyer-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/03/injury-accident-lawyer-02-contact.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/injury-accident-lawyer-02/wp-json/wp/v2/pages/1261\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/injury-accident-lawyer-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-51318\";a:12:{s:5:\"title\";s:14:\"Practice Areas\";s:18:\"featured-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2021/03/injury-accident-lawyer-02-practice-areas.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2021/03/injury-accident-lawyer-02-practice-areas.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/injury-accident-lawyer-02/wp-json/wp/v2/pages/606\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:60:\"//websitedemos.net/injury-accident-lawyer-02/practice-areas/\";s:15:\"astra-sites-tag\";a:2:{i:1863;s:14:\"practice-areas\";i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51319\";a:12:{s:5:\"title\";s:7:\"Results\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/03/injury-accident-lawyer-02-results.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/03/injury-accident-lawyer-02-results.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/injury-accident-lawyer-02/wp-json/wp/v2/pages/1002\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/injury-accident-lawyer-02/results/\";s:15:\"astra-sites-tag\";a:1:{i:1864;s:7:\"results\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:51312;s:26:\"related-gutenberg-template\";i:56573;}s:8:\"id-56573\";a:22:{s:5:\"title\";s:28:\"Injury and Accidental Lawyer\";s:2:\"id\";i:56573;s:12:\"publish-date\";i:1624912486;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-600x2475.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-400x1650.jpg\";s:14:\"astra-site-url\";s:44:\"//websitedemos.net/injury-accident-lawyer-08\";s:20:\"astra-site-parent-id\";i:2241;s:15:\"astra-sites-tag\";a:4:{i:1869;s:16:\"accident-lawyers\";i:1867;s:14:\"injury-lawyers\";i:1870;s:11:\"lawyer-firm\";i:1868;s:7:\"lawyers\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2482;s:3:\"law\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-56574\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-about.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-about-600x2370.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/injury-accident-lawyer-08/wp-json/wp/v2/pages/1526\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/injury-accident-lawyer-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56575\";a:12:{s:5:\"title\";s:9:\"Attorneys\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-attorneys.jpg\";s:19:\"thumbnail-image-url\";s:100:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-attorneys-600x1888.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/injury-accident-lawyer-08/wp-json/wp/v2/pages/1539\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/injury-accident-lawyer-08/attorneys/\";s:15:\"astra-sites-tag\";a:1:{i:912;s:9:\"attorneys\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56576\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-contact-600x967.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/injury-accident-lawyer-08/wp-json/wp/v2/pages/1547\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/injury-accident-lawyer-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56577\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-600x2475.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/injury-accident-lawyer-08/wp-json/wp/v2/pages/1503\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/injury-accident-lawyer-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56578\";a:12:{s:5:\"title\";s:14:\"Practice Areas\";s:18:\"featured-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-practice-area.jpg\";s:19:\"thumbnail-image-url\";s:104:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-practice-area-600x2755.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/injury-accident-lawyer-08/wp-json/wp/v2/pages/1541\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:60:\"//websitedemos.net/injury-accident-lawyer-08/practice-areas/\";s:15:\"astra-sites-tag\";a:1:{i:1863;s:14:\"practice-areas\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56579\";a:12:{s:5:\"title\";s:7:\"Results\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-results.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-results-600x1712.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/injury-accident-lawyer-08/wp-json/wp/v2/pages/1543\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/injury-accident-lawyer-08/results/\";s:15:\"astra-sites-tag\";a:1:{i:1864;s:7:\"results\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-51486\";a:22:{s:5:\"title\";s:12:\"Water Sports\";s:2:\"id\";i:51486;s:12:\"publish-date\";i:1617304815;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/03/water-sports-04.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/03/water-sports-04.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/03/water-sports-04.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/water-sports-04\";s:20:\"astra-site-parent-id\";i:1912;s:15:\"astra-sites-tag\";a:11:{i:544;s:9:\"adventure\";i:1918;s:5:\"beach\";i:1917;s:12:\"beach-sports\";i:1921;s:7:\"sailing\";i:546;s:6:\"sports\";i:1919;s:13:\"summer-sports\";i:1914;s:7:\"surfing\";i:1920;s:9:\"vacations\";i:1916;s:5:\"water\";i:1915;s:9:\"water-ski\";i:1913;s:12:\"water-sports\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:2:{i:2777;s:8:\"business\";i:2826;s:6:\"sports\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2498;s:12:\"hotel-travel\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:939:\"<!-- wp:paragraph -->\n<p>The Water Sports template is light, bright and energetic, just like the watersports it represents. It’s an instantly engaging template with fullscreen header on the homepage that opens out into a white background and borderless content areas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s a contemporary design with modern fonts, high quality images, customizable content areas and attractive header and footer. While designed for watersports, it could be easily customized to suit many types of business.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Water Sports template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Energetic website template for multiple uses</li><li>Borderless content areas are a highlight</li><li>Bright colors and modern fonts</li><li>Infinitely customizable</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:72:\"Energetic web template that could be any website for any conceivable use\";s:5:\"pages\";a:5:{s:8:\"id-51489\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/water-sports-04-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/water-sports-04-contact-us.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/water-sports-04/wp-json/wp/v2/pages/812\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/water-sports-04/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-51488\";a:12:{s:5:\"title\";s:10:\"Activities\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/water-sports-04-activities.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/water-sports-04-activities.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/water-sports-04/wp-json/wp/v2/pages/599\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/water-sports-04/activities/\";s:15:\"astra-sites-tag\";a:3:{i:1922;s:10:\"activities\";i:1569;s:6:\"events\";i:546;s:6:\"sports\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51490\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/03/water-sports-04.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/03/water-sports-04.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/water-sports-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/water-sports-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51491\";a:12:{s:5:\"title\";s:11:\"Testimonial\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/water-sports-04-testimonial.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/water-sports-04-testimonial.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/water-sports-04/wp-json/wp/v2/pages/672\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/water-sports-04/testimonial/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51487\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/03/water-sports-04-about.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/03/water-sports-04-about.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/water-sports-04/wp-json/wp/v2/pages/420\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/water-sports-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-49322\";a:22:{s:5:\"title\";s:16:\"Marketing Agency\";s:2:\"id\";i:49322;s:12:\"publish-date\";i:1608637925;s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/12/marketing-agency-02-home.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/12/marketing-agency-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/12/marketing-agency-02-home.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/marketing-agency-02\";s:20:\"astra-site-parent-id\";i:1812;s:15:\"astra-sites-tag\";a:12:{i:1587;s:18:\"advertising-agency\";i:2232;s:19:\"advertising-company\";i:2229;s:16:\"advertising-firm\";i:663;s:6:\"agency\";i:979;s:7:\"company\";i:1588;s:16:\"marketing-agency\";i:2233;s:17:\"marketing-company\";i:2228;s:14:\"marketing-firm\";i:2230;s:12:\"press-agency\";i:2227;s:14:\"promotion-firm\";i:2231;s:14:\"publicity-firm\";i:2234;s:18:\"publicity-services\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2812;s:14:\"digital-agency\";i:2796;s:17:\"digital-marketing\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:892:\"<!-- wp:paragraph -->\n<p>The Marketing Agency template uses dark design to great effect. It’s bold, colorful and designed to attract attention. Ideal for digital businesses, freelancers and creative agencies.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template uses a boxed design with smart hover effects, customizable content areas, modern fonts, a portfolio, product showcase, case study section and client area. All within a clever, multi-layered design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Marketing Agency template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Dark design that works amazingly well</li><li>Bold contrast colors for extra impact</li><li>Lots of relevant content areas with hover effects</li><li>Memorable for all the right reasons</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:66:\"Dark design with contemporary elements ideal for creative agencies\";s:5:\"pages\";a:5:{s:8:\"id-49323\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/12/marketing-agency-02-about-us-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/12/marketing-agency-02-about-us-1.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/marketing-agency-02/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/marketing-agency-02/about-us/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49324\";a:12:{s:5:\"title\";s:12:\"Case Studies\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/12/marketing-agency-02-case-studies-1.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/12/marketing-agency-02-case-studies-1.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/marketing-agency-02/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/marketing-agency-02/case-studies/\";s:15:\"astra-sites-tag\";a:1:{i:780;s:12:\"case-studies\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49325\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/12/marketing-agency-02-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/12/marketing-agency-02-contact-1.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/marketing-agency-02/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/marketing-agency-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-49327\";a:12:{s:5:\"title\";s:10:\"What We Do\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/12/marketing-agency-02-what-we-do-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/12/marketing-agency-02-what-we-do-1.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/marketing-agency-02/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/marketing-agency-02/what-we-do/\";s:15:\"astra-sites-tag\";a:3:{i:1605;s:12:\"our-services\";i:628;s:10:\"what-we-do\";i:1542;s:13:\"what-we-offer\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49326\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/12/marketing-agency-02-home.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/12/marketing-agency-02-home.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/marketing-agency-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/marketing-agency-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-58078\";a:22:{s:5:\"title\";s:21:\"Beauty Products Store\";s:2:\"id\";i:58078;s:12:\"publish-date\";i:1632223081;s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/09/beauty-products-store-02-home.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/09/beauty-products-store-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/09/beauty-products-store-02-home.jpg\";s:14:\"astra-site-url\";s:43:\"//websitedemos.net/beauty-products-store-04\";s:20:\"astra-site-parent-id\";i:2374;s:15:\"astra-sites-tag\";a:18:{i:2385;s:20:\"beauty-products-shop\";i:2384;s:21:\"beauty-products-store\";i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2419;s:9:\"eshopping\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:4:{i:2790;s:14:\"beauty-fashion\";i:2777;s:8:\"business\";i:2769;s:9:\"ecommerce\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:5;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1002:\"<!-- wp:paragraph -->\n<p>The Beauty Products Store template is a very welcoming design thanks to soft colors and a high quality header. It’s a light design with shaded background, exceptional images and borderless content areas, providing a very contemporary feel.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes lots of areas to showcase products, special offers, featured products and everything a typical online store would have on the homepage. Category and product pages are equally attractive and fully compatible with WooCommerce.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Beauty Products Store template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Welcoming eCommerce store design with lovely feel</li><li>Calm colors and high quality images throughout</li><li>Lots of product and category areas built-in</li><li>Fully compatible with WooCommerce</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:63:\"Welcoming eCommerce website designed to sell anything to anyone\";s:5:\"pages\";a:3:{s:8:\"id-58080\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/09/beauty-products-store-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/09/beauty-products-store-02-contact.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/beauty-products-store-04/wp-json/wp/v2/pages/20\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/beauty-products-store-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-58081\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/09/beauty-products-store-02-home.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/09/beauty-products-store-02-home.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/beauty-products-store-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/beauty-products-store-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-58079\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/09/beauty-products-store-02-about.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/09/beauty-products-store-02-about.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/beauty-products-store-04/wp-json/wp/v2/pages/18\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/beauty-products-store-04/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(210,'astra-sites-and-pages-page-16','a:15:{s:8:\"id-49385\";a:22:{s:5:\"title\";s:18:\"Calligraphy Artist\";s:2:\"id\";i:49385;s:12:\"publish-date\";i:1608714981;s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/12/calligraphy-artist-02-home.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/12/calligraphy-artist-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/12/calligraphy-artist-02-home.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/calligraphy-artist-02\";s:20:\"astra-site-parent-id\";i:1819;s:15:\"astra-sites-tag\";a:8:{i:1820;s:11:\"calligraphy\";i:1826;s:10:\"characters\";i:1824;s:11:\"chirography\";i:1821;s:11:\"handwriting\";i:1825;s:8:\"pencraft\";i:1823;s:6:\"script\";i:1827;s:5:\"style\";i:1822;s:7:\"writing\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2802;s:6:\"artist\";i:2810;s:9:\"freelance\";i:2770;s:8:\"personal\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:922:\"<!-- wp:paragraph -->\n<p>The Calligraphy Artist template is a descriptive design with handwritten fonts and a full screen design. It’s largely monochrome, with colors provided by images to make them stand out.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s a very elegant design with a biography section, timeline, portfolio and all the ingredients you need to promote your skills and experience. It’s useful as a business website or personal portfolio, whatever you might need.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Calligraphy Artist template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Elegant design with handwritten fonts</li><li>Monochrome design allows images to stand out</li><li>Nice layout with plenty of whitespace</li><li>Works as business website or personal portfolio</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:69:\"Creative web template with calm design ideal for artists of all kinds\";s:5:\"pages\";a:5:{s:8:\"id-49386\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/12/calligraphy-artist-02-about-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/12/calligraphy-artist-02-about-1.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/calligraphy-artist-02/wp-json/wp/v2/pages/301\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/calligraphy-artist-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49390\";a:12:{s:5:\"title\";s:5:\"Works\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/12/calligraphy-artist-02-work.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/12/calligraphy-artist-02-work.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/calligraphy-artist-02/wp-json/wp/v2/pages/181\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/calligraphy-artist-02/works/\";s:15:\"astra-sites-tag\";a:1:{i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49389\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/12/calligraphy-artist-02-expertise.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/12/calligraphy-artist-02-expertise.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/calligraphy-artist-02/wp-json/wp/v2/pages/253\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/calligraphy-artist-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49387\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/12/calligraphy-artist-02-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/12/calligraphy-artist-02-contact-1.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/calligraphy-artist-02/wp-json/wp/v2/pages/350\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/calligraphy-artist-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-49388\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/12/calligraphy-artist-02-home.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/12/calligraphy-artist-02-home.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/calligraphy-artist-02/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/calligraphy-artist-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-49291\";a:22:{s:5:\"title\";s:14:\"BBQ Food Truck\";s:2:\"id\";i:49291;s:12:\"publish-date\";i:1607968465;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/12/bbq-food-truck-04.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/12/bbq-food-truck-04.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/12/bbq-food-truck-04.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/bbq-food-truck-04\";s:20:\"astra-site-parent-id\";i:1807;s:15:\"astra-sites-tag\";a:3:{i:1808;s:10:\"food-truck\";i:1810;s:17:\"ice-cream-truck-2\";i:1809;s:15:\"ice-cream-truck\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:5:{i:2777;s:8:\"business\";i:2785;s:4:\"food\";i:2876;s:13:\"food-ordering\";i:2771;s:8:\"one-page\";i:2776;s:10:\"restaurant\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2927;s:8:\"one-page\";i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:966:\"<!-- wp:paragraph -->\n<p>The BBQ Food Truck template is bright, colorful and instantly engaging. It’s a fullscreen template with a huge header image with food truck front and center and descriptive headline. The rest of the homepage includes a menu, schedule and other useful elements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template as a whole is modern and vibrant, ideal for portraying a food truck or food business in the best light. It’s flexible, fully responsive and able to deliver a pro quality website with minimal effort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the BBQ Food Truck template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Vibrant and colorful with instant engagement</li><li>Includes attractive menu section and schedule</li><li>Fantastic imagery throughout</li><li>Customizable layout and content areas</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:66:\"Vibrant, colorful web template for food trucks and food businesses\";s:5:\"pages\";a:1:{s:8:\"id-49292\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/12/bbq-food-truck-04.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/12/bbq-food-truck-04.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/bbq-food-truck-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/bbq-food-truck-04/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:1718;s:7:\"onepage\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-49316\";a:22:{s:5:\"title\";s:19:\"Musical Instruments\";s:2:\"id\";i:49316;s:12:\"publish-date\";i:1608714983;s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/12/musical-instrument-maker-02-home.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/12/musical-instrument-maker-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/12/musical-instrument-maker-02-home.jpg\";s:14:\"astra-site-url\";s:46:\"//websitedemos.net/musical-instrument-maker-02\";s:20:\"astra-site-parent-id\";i:1811;s:15:\"astra-sites-tag\";a:6:{i:2248;s:12:\"guitar-maker\";i:2249;s:15:\"instrumentalist\";i:407;s:5:\"music\";i:2250;s:18:\"music-craftsperson\";i:2246;s:16:\"music-instrument\";i:1814;s:24:\"musical-instrument-maker\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2802;s:6:\"artist\";i:2777;s:8:\"business\";i:2781;s:5:\"music\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2486;s:9:\"art-music\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:995:\"<!-- wp:paragraph -->\n<p>The Musical Instruments template could be perfect for instrument makers, musicians, bands and anyone involved in the music industry. It’s a light theme with lots of whitespace, an engaging header with image, video and audio elements, product areas and a range of flexible content areas throughout.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is also the opportunity to integrate with WooCommerce and sell directly from your website, ideal for selling records, instruments and anything you care to sell.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Musical Instruments template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Light theme with great balance and plenty of whitespace</li><li>Supports video and audio</li><li>Flexible content areas you can customize with ease</li><li>Integrate with WooCommerce to sell direct from your website</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:72:\"Light web template for musicians, instrument makers and music businesses\";s:5:\"pages\";a:5:{s:8:\"id-49317\";a:12:{s:5:\"title\";s:7:\"Artists\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/12/musical-instrument-maker-02-artists.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/12/musical-instrument-maker-02-artists.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/musical-instrument-maker-02/wp-json/wp/v2/pages/405\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/musical-instrument-maker-02/artists/\";s:15:\"astra-sites-tag\";a:1:{i:339;s:6:\"artist\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49318\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/12/musical-instrument-maker-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/12/musical-instrument-maker-02-contact.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/musical-instrument-maker-02/wp-json/wp/v2/pages/760\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/musical-instrument-maker-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-49319\";a:12:{s:5:\"title\";s:7:\"Guitars\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/12/musical-instrument-maker-02-guitars.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/12/musical-instrument-maker-02-guitars.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/musical-instrument-maker-02/wp-json/wp/v2/pages/338\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/musical-instrument-maker-02/guitars/\";s:15:\"astra-sites-tag\";a:2:{i:1815;s:7:\"guitars\";i:540;s:8:\"products\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49320\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/12/musical-instrument-maker-02-home.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/12/musical-instrument-maker-02-home.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/musical-instrument-maker-02/wp-json/wp/v2/pages/4\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/musical-instrument-maker-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49321\";a:12:{s:5:\"title\";s:9:\"Our Story\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/12/musical-instrument-maker-02-about.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/12/musical-instrument-maker-02-about.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/musical-instrument-maker-02/wp-json/wp/v2/pages/612\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:57:\"//websitedemos.net/musical-instrument-maker-02/our-story/\";s:15:\"astra-sites-tag\";a:2:{i:455;s:8:\"about-us\";i:905;s:9:\"our-story\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:49316;s:26:\"related-gutenberg-template\";i:56632;}s:8:\"id-56632\";a:22:{s:5:\"title\";s:19:\"Musical Instruments\";s:2:\"id\";i:56632;s:12:\"publish-date\";i:1624912490;s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-home.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-home.jpg\";s:14:\"astra-site-url\";s:46:\"//websitedemos.net/musical-instrument-maker-08\";s:20:\"astra-site-parent-id\";i:2245;s:15:\"astra-sites-tag\";a:6:{i:2248;s:12:\"guitar-maker\";i:2249;s:15:\"instrumentalist\";i:407;s:5:\"music\";i:2250;s:18:\"music-craftsperson\";i:2246;s:16:\"music-instrument\";i:1814;s:24:\"musical-instrument-maker\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2802;s:6:\"artist\";i:2777;s:8:\"business\";i:2781;s:5:\"music\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2486;s:9:\"art-music\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-56633\";a:12:{s:5:\"title\";s:7:\"Artists\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-artists.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-artists.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/musical-instrument-maker-08/wp-json/wp/v2/pages/984\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/musical-instrument-maker-08/artists/\";s:15:\"astra-sites-tag\";a:1:{i:339;s:6:\"artist\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56634\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-contact.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/musical-instrument-maker-08/wp-json/wp/v2/pages/988\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/musical-instrument-maker-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56635\";a:12:{s:5:\"title\";s:7:\"Guitars\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-guitars.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-guitars.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/musical-instrument-maker-08/wp-json/wp/v2/pages/982\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/musical-instrument-maker-08/guitars/\";s:15:\"astra-sites-tag\";a:1:{i:1815;s:7:\"guitars\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56636\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-home.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-home.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/musical-instrument-maker-08/wp-json/wp/v2/pages/980\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/musical-instrument-maker-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56637\";a:12:{s:5:\"title\";s:9:\"Our Story\";s:18:\"featured-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-our-story.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-our-story.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/musical-instrument-maker-08/wp-json/wp/v2/pages/986\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:57:\"//websitedemos.net/musical-instrument-maker-08/our-story/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:905;s:9:\"our-story\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55844\";a:22:{s:5:\"title\";s:18:\"Real Estate Agency\";s:2:\"id\";i:55844;s:12:\"publish-date\";i:1627060163;s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/07/real-estate-agency-04-homepage-02.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/07/real-estate-agency-04-homepage-02.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/07/real-estate-agency-04-homepage-02.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/real-estate-agency-04\";s:20:\"astra-site-parent-id\";i:2221;s:15:\"astra-sites-tag\";a:7:{i:2311;s:19:\"construction-agency\";i:2088;s:20:\"construction-company\";i:2313;s:16:\"property-rentals\";i:485;s:11:\"real-estate\";i:2310;s:18:\"real-estate-agency\";i:2314;s:22:\"real-estate-developers\";i:2312;s:14:\"sales-property\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2836;s:12:\"construction\";i:2832;s:8:\"property\";i:2778;s:11:\"real-estate\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1033:\"<!-- wp:paragraph -->\n<p>The Real Estate Agency template is an upmarket design ideal for architects, real estate, property management and other uses. It’s a full screen template with lots of whitespace and strong fonts and images. Ideal for the industry.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The homepage includes lots of content areas to outline your services and a featured listing section to showcase properties, it also includes a contact form, testimonials section and clear navigation. Everything you see can be easily customized to fit your exact needs too!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Real Estate Agency template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Upmarket design ideal for architects, real estate and property management</li><li>Superb layout with plenty of whitespace</li><li>Featured properties section</li><li>Customizable content areas throughout the template</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:77:\"Upmarket web design ideal for architects, real estate and property management\";s:5:\"pages\";a:7:{s:8:\"id-55845\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/07/real-estate-agency-04-about.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/07/real-estate-agency-04-about.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/real-estate-agency-04/wp-json/wp/v2/pages/23\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/real-estate-agency-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55846\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/07/real-estate-agency-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/07/real-estate-agency-04-contact.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/real-estate-agency-04/wp-json/wp/v2/pages/34\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/real-estate-agency-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55847\";a:12:{s:5:\"title\";s:17:\"Exclusive Listing\";s:18:\"featured-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2021/07/real-estate-agency-04-exclusive-listing.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2021/07/real-estate-agency-04-exclusive-listing.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/real-estate-agency-04/wp-json/wp/v2/pages/120\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:59:\"//websitedemos.net/real-estate-agency-04/exclusive-listing/\";s:15:\"astra-sites-tag\";a:1:{i:2304;s:17:\"exclusive-listing\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55848\";a:12:{s:5:\"title\";s:16:\"Exclusive Rental\";s:18:\"featured-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2021/07/real-estate-agency-04-exclusive-rental.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2021/07/real-estate-agency-04-exclusive-rental.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/real-estate-agency-04/wp-json/wp/v2/pages/122\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:58:\"//websitedemos.net/real-estate-agency-04/exclusive-rental/\";s:15:\"astra-sites-tag\";a:1:{i:2305;s:16:\"exclusive-rental\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55849\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/07/real-estate-agency-04-homepage-02.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/07/real-estate-agency-04-homepage-02.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/real-estate-agency-04/wp-json/wp/v2/pages/37\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/real-estate-agency-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55850\";a:12:{s:5:\"title\";s:9:\"Locations\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/07/real-estate-agency-04-locations.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/07/real-estate-agency-04-locations.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/real-estate-agency-04/wp-json/wp/v2/pages/111\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/real-estate-agency-04/neighborhoods/\";s:15:\"astra-sites-tag\";a:2:{i:2306;s:9:\"locations\";i:2307;s:13:\"nearby-places\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55851\";a:12:{s:5:\"title\";s:16:\"Luxury Buildings\";s:18:\"featured-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2021/07/real-estate-agency-04-luxury-buildings.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2021/07/real-estate-agency-04-luxury-buildings.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/real-estate-agency-04/wp-json/wp/v2/pages/124\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:58:\"//websitedemos.net/real-estate-agency-04/luxury-buildings/\";s:15:\"astra-sites-tag\";a:1:{i:2308;s:16:\"luxury-buildings\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18882\";a:22:{s:5:\"title\";s:20:\"Deeplight Restaurant\";s:2:\"id\";i:18882;s:12:\"publish-date\";i:1536651360;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-04-home-1.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-04-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-04-home-1.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/restaurant-04\";s:20:\"astra-site-parent-id\";i:113;s:15:\"astra-sites-tag\";a:10:{i:562;s:6:\"bistro\";i:972;s:4:\"club\";i:560;s:7:\"cuisine\";i:561;s:6:\"eatery\";i:336;s:4:\"food\";i:350;s:5:\"hotel\";i:559;s:6:\"outlet\";i:335;s:10:\"restaurant\";i:970;s:6:\"restro\";i:971;s:10:\"restro-bar\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2785;s:4:\"food\";i:2876;s:13:\"food-ordering\";i:2776;s:10:\"restaurant\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:988:\"<!-- wp:paragraph -->\n<p>The Deeplight Restaurant template is a cool, contemporary design with a full screen image, central navigation and a subtle arrow directing you down. Further down the homepage, things lighten up with a white background and lots of image options.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design includes lots of options for content, a menu section, testimonials, booking option and contact details. Everything a food business would want from a page. There are also relevant extra pages suitable for the niche.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Deeplight Restaurant template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Contemporary design with modern touches throughout</li><li>Sections for menus, images and testimonials</li><li>Subtle graphic encourages you to scroll down</li><li>Extra pages relevant to food businesses</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:78:\"Contemporary website template ideal for cafes, restaurants and food businesses\";s:5:\"pages\";a:6:{s:8:\"id-23049\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-04-home-1.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-04-home-1.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/restaurant-04/wp-json/wp/v2/pages/34\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/restaurant-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23050\";a:12:{s:5:\"title\";s:4:\"Menu\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-04-menu-1.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-04-menu-1.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/restaurant-04/wp-json/wp/v2/pages/35\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/restaurant-04/menu/\";s:15:\"astra-sites-tag\";a:1:{i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23045\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-04-about-2.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-04-about-2.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/restaurant-04/wp-json/wp/v2/pages/36\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/restaurant-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23048\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-04-gallery.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-04-gallery.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/restaurant-04/wp-json/wp/v2/pages/37\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/restaurant-04/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23051\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-04-testimonials-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-04-testimonials-1.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/restaurant-04/wp-json/wp/v2/pages/38\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/restaurant-04/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23047\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-04-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-04-contact-1.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/restaurant-04/wp-json/wp/v2/pages/39\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/restaurant-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:19058;s:26:\"related-elementor-template\";i:18882;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-19058\";a:22:{s:5:\"title\";s:20:\"Deeplight Restaurant\";s:2:\"id\";i:19058;s:12:\"publish-date\";i:1536648815;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-03-home-1.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-03-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-03-home-1.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/restaurant-03\";s:20:\"astra-site-parent-id\";i:114;s:15:\"astra-sites-tag\";a:10:{i:562;s:6:\"bistro\";i:972;s:4:\"club\";i:560;s:7:\"cuisine\";i:561;s:6:\"eatery\";i:336;s:4:\"food\";i:350;s:5:\"hotel\";i:559;s:6:\"outlet\";i:335;s:10:\"restaurant\";i:970;s:6:\"restro\";i:971;s:10:\"restro-bar\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-23063\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-03-home-1.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-03-home-1.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/restaurant-03/wp-json/wp/v2/pages/34\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/restaurant-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23064\";a:12:{s:5:\"title\";s:4:\"Menu\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-03-menu.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-03-menu.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/restaurant-03/wp-json/wp/v2/pages/35\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/restaurant-03/menu/\";s:15:\"astra-sites-tag\";a:1:{i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23059\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-03-about.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-03-about.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/restaurant-03/wp-json/wp/v2/pages/36\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/restaurant-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23062\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-03-gallery-1.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-03-gallery-1.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/restaurant-03/wp-json/wp/v2/pages/37\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/restaurant-03/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23065\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-03-reviews.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-03-reviews.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/restaurant-03/wp-json/wp/v2/pages/38\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/restaurant-03/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23061\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-03-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-03-contact-1.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/restaurant-03/wp-json/wp/v2/pages/39\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/restaurant-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21081\";a:22:{s:5:\"title\";s:20:\"Deeplight Restaurant\";s:2:\"id\";i:21081;s:12:\"publish-date\";i:1552457750;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-06-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-06-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-06-home.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/restaurant-06\";s:20:\"astra-site-parent-id\";i:158;s:15:\"astra-sites-tag\";a:10:{i:562;s:6:\"bistro\";i:972;s:4:\"club\";i:560;s:7:\"cuisine\";i:561;s:6:\"eatery\";i:336;s:4:\"food\";i:350;s:5:\"hotel\";i:559;s:6:\"outlet\";i:335;s:10:\"restaurant\";i:970;s:6:\"restro\";i:971;s:10:\"restro-bar\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-23510\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-06-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-06-home.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/restaurant-06/wp-json/wp/v2/pages/143\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/restaurant-06/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23511\";a:12:{s:5:\"title\";s:4:\"Menu\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-menu.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-menu.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/restaurant-06/wp-json/wp/v2/pages/190\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/restaurant-06/menu/\";s:15:\"astra-sites-tag\";a:1:{i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23507\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-about.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-about.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/restaurant-06/wp-json/wp/v2/pages/201\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/restaurant-06/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23509\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-gallery.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-gallery.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/restaurant-06/wp-json/wp/v2/pages/208\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/restaurant-06/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23512\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-testimonials.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/restaurant-06/wp-json/wp/v2/pages/215\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/restaurant-06/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23508\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-contact.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/restaurant-contact.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/restaurant-06/wp-json/wp/v2/pages/220\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/restaurant-06/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-51452\";a:22:{s:5:\"title\";s:14:\"Theatre Artist\";s:2:\"id\";i:51452;s:12:\"publish-date\";i:1617304821;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/03/theatre-artist-02.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/03/theatre-artist-02.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/03/theatre-artist-02.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/theatre-artist-02\";s:20:\"astra-site-parent-id\";i:1904;s:15:\"astra-sites-tag\";a:5:{i:1906;s:5:\"actor\";i:339;s:6:\"artist\";i:1572;s:9:\"performer\";i:444;s:9:\"portfolio\";i:1905;s:14:\"theatre-artist\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2802;s:6:\"artist\";i:2784;s:5:\"event\";i:2770;s:8:\"personal\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1013:\"<!-- wp:paragraph -->\n<p>The Theater Artist template is a dark design with an elegant feel thanks to gold contrast color. The design has a full screen image and simple navigation that gives an upscale look while the rest of the homepage includes everything you might need to promote yourself or your business.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While configured for an actor, you can see how it could work for musicians, bands or other businesses. It’s easy to customize and allows you to change everything you see on the page using a drag and drop page builder.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Theater Artist template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Elegant design ideal as a business website or portfolio</li><li>Attractive dark theme with gold contrast color</li><li>Lots of product and service areas</li><li>Useful timeline element on the homepage</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:70:\"Upscale web template with dark design and gold elements that stand out\";s:5:\"pages\";a:4:{s:8:\"id-51453\";a:12:{s:5:\"title\";s:9:\"Biography\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/theatre-artist-02-biography.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/theatre-artist-02-biography.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/theatre-artist-02/wp-json/wp/v2/pages/394\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/theatre-artist-02/biography/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:1566;s:9:\"biography\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51454\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/03/theatre-artist-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/03/theatre-artist-02-contact.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/theatre-artist-02/wp-json/wp/v2/pages/512\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/theatre-artist-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-51455\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/03/theatre-artist-02.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/03/theatre-artist-02.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/theatre-artist-02/wp-json/wp/v2/pages/19\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/theatre-artist-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51456\";a:12:{s:5:\"title\";s:10:\"Repertoire\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/03/theatre-artist-02-repertoire.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/03/theatre-artist-02-repertoire.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/theatre-artist-02/wp-json/wp/v2/pages/447\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/theatre-artist-02/repertoire/\";s:15:\"astra-sites-tag\";a:2:{i:444;s:9:\"portfolio\";i:1907;s:10:\"repertoire\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47138\";a:22:{s:5:\"title\";s:23:\"Event Management Agency\";s:2:\"id\";i:47138;s:12:\"publish-date\";i:1597226669;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/08/event-management-02.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/08/event-management-02.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/08/event-management-02.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/event-management-04\";s:20:\"astra-site-parent-id\";i:1609;s:15:\"astra-sites-tag\";a:4:{i:663;s:6:\"agency\";i:1611;s:16:\"corporate-events\";i:1612;s:12:\"event-agency\";i:1610;s:16:\"event-management\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2784;s:5:\"event\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1049:\"<!-- wp:paragraph -->\n<p>The Event Management Agency template is a business website with a professional feel. It’s engaging and includes options for a video header as well as images to show off the events you manage. It’s a very modern design with instant appeal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The homepage includes lots of content areas to share products and services, a portfolio area to show off previous events, a testimonial area and optional blog and event sections. Everything can be fully customized so you can build your pages however you like.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Event Management Agency template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Professional business template ideal for event management companies</li><li>Lots of content areas for products and services</li><li>Supports video and audio headers</li><li>Attractive portfolio section to showcase previous events</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:80:\"Professional web template ideal for businesses that like to show as well as tell\";s:5:\"pages\";a:5:{s:8:\"id-47141\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/08/event-management-02.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/08/event-management-02.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/event-management-04/wp-json/wp/v2/pages/19\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/event-management-04/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47143\";a:12:{s:5:\"title\";s:5:\"Works\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/08/event-management-02-works.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/08/event-management-02-works.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/event-management-04/wp-json/wp/v2/pages/167\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/event-management-04/works/\";s:15:\"astra-sites-tag\";a:3:{i:444;s:9:\"portfolio\";i:1613;s:8:\"projects\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47142\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/08/event-management-02-services.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/08/event-management-02-services.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/event-management-04/wp-json/wp/v2/pages/206\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/event-management-04/services/\";s:15:\"astra-sites-tag\";a:2:{i:1605;s:12:\"our-services\";i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47139\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/08/event-management-02-about-us.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/08/event-management-02-about-us.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/event-management-04/wp-json/wp/v2/pages/128\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/event-management-04/about-us/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47140\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/08/event-management-02-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/08/event-management-02-contact-us.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/event-management-04/wp-json/wp/v2/pages/224\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/event-management-04/contact-us/\";s:15:\"astra-sites-tag\";a:4:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";i:896;s:13:\"get-connected\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47815\";a:22:{s:5:\"title\";s:14:\"Online Courses\";s:2:\"id\";i:47815;s:12:\"publish-date\";i:1602850916;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-02-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-02-home.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/online-courses-02\";s:20:\"astra-site-parent-id\";i:1676;s:15:\"astra-sites-tag\";a:5:{i:462;s:7:\"courses\";i:468;s:9:\"elearning\";i:467;s:9:\"learndash\";i:466;s:14:\"online-courses\";i:975;s:15:\"online-learning\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:5:{i:2825;s:8:\"coaching\";i:2772;s:9:\"education\";i:2835;s:9:\"elearning\";i:2880;s:10:\"membership\";i:2827;s:13:\"online-course\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:3;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:5;a:3:{s:4:\"slug\";s:13:\"presto-player\";s:4:\"init\";s:31:\"presto-player/presto-player.php\";s:4:\"name\";s:13:\"Presto Player\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1082:\"<!-- wp:paragraph -->\n<p>The Online Courses template uses reassuring colors and plenty of whitespace to build authority immediately. It’s ideal for schools, colleges, universities and online learning. Built to convert and provide everything you need to deliver eLearning courses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template has a relaxed feel, with light colors, attractive course boxes and course pages, lots of banners and graphics to communicate and convert, as well as build confidence in students. It’s an excellent option for eLearning and is fully compatible with popular learning management systems.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Online Courses template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Reassuring website template ideal for building trust</li><li>Attractive course elements and course pages</li><li>Built to convert and sell as well as build authority</li><li>Supports popular learning management systems</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:85:\"Reassuring web template ideal for schools, colleges, universities and online learning\";s:5:\"pages\";a:6:{s:8:\"id-47819\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-02-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-02-home.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/online-courses-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/online-courses-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47817\";a:12:{s:5:\"title\";s:11:\"All Courses\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-02-courses.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-02-courses.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/online-courses-02/wp-json/wp/v2/pages/476\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/online-courses-02/all-courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47816\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-02-about.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-02-about.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/online-courses-02/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/online-courses-02/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47820\";a:12:{s:5:\"title\";s:11:\"Instructors\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-02-instructors-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-02-instructors-1.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/online-courses-02/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/online-courses-02/instructors/\";s:15:\"astra-sites-tag\";a:1:{i:1677;s:11:\"instructors\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47821\";a:12:{s:5:\"title\";s:17:\"Pricing &amp; FAQ\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-02-pricing.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-02-pricing.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/online-courses-02/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/online-courses-02/pricing-faq/\";s:15:\"astra-sites-tag\";a:2:{i:426;s:3:\"faq\";i:585;s:7:\"pricing\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47818\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-02-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-02-contact-1.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/online-courses-02/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/online-courses-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:48985;s:26:\"related-elementor-template\";i:47815;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48985\";a:22:{s:5:\"title\";s:14:\"Online Courses\";s:2:\"id\";i:48985;s:12:\"publish-date\";i:1606840880;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/12/online-courses-01-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/12/online-courses-01-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/12/online-courses-01-home.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/online-courses-01\";s:20:\"astra-site-parent-id\";i:1767;s:15:\"astra-sites-tag\";a:5:{i:462;s:7:\"courses\";i:468;s:9:\"elearning\";i:467;s:9:\"learndash\";i:466;s:14:\"online-courses\";i:975;s:15:\"online-learning\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:3;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:4;a:3:{s:4:\"slug\";s:13:\"presto-player\";s:4:\"init\";s:31:\"presto-player/presto-player.php\";s:4:\"name\";s:13:\"Presto Player\";}i:5;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-48986\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/12/online-courses-01-about.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/12/online-courses-01-about.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/online-courses-01/wp-json/wp/v2/pages/738\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/online-courses-01/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-48987\";a:12:{s:5:\"title\";s:11:\"All Courses\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/12/online-courses-01-course.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/12/online-courses-01-course.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/online-courses-01/wp-json/wp/v2/pages/737\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/online-courses-01/all-courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-48988\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/12/online-courses-01-contact.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/12/online-courses-01-contact.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/online-courses-01/wp-json/wp/v2/pages/741\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/online-courses-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48989\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/12/online-courses-01-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/12/online-courses-01-home.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/online-courses-01/wp-json/wp/v2/pages/736\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/online-courses-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-48990\";a:12:{s:5:\"title\";s:11:\"Instructors\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/12/online-courses-01-instructors.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/12/online-courses-01-instructors.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/online-courses-01/wp-json/wp/v2/pages/739\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/online-courses-01/instructors/\";s:15:\"astra-sites-tag\";a:1:{i:1677;s:11:\"instructors\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-48991\";a:12:{s:5:\"title\";s:18:\"Pricing &#038; FAQ\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/12/online-courses-01-pricing.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/12/online-courses-01-pricing.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/online-courses-01/wp-json/wp/v2/pages/740\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/online-courses-01/pricing-faq/\";s:15:\"astra-sites-tag\";a:1:{i:585;s:7:\"pricing\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-51405\";a:22:{s:5:\"title\";s:15:\"Child Care Blog\";s:2:\"id\";i:51405;s:12:\"publish-date\";i:1617130819;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/03/childcare-blog-02-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/03/childcare-blog-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/03/childcare-blog-02-home.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/childcare-blog-02\";s:20:\"astra-site-parent-id\";i:1882;s:15:\"astra-sites-tag\";a:5:{i:480;s:4:\"blog\";i:1652;s:7:\"blogger\";i:1897;s:15:\"child-care-blog\";i:1896;s:17:\"child-care-expert\";i:1547;s:10:\"influencer\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:37;s:4:\"blog\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2828;s:4:\"blog\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1013:\"<!-- wp:paragraph -->\n<p>The Child Care Blog template is a great option for sharing your expertise, using as a childcare business website or for becoming the next Mumsnet. It’s a light, engaging design with fullscreen header and a genuine, welcoming feel.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes flexible content areas with areas for images, a biography, your latest posts, products and services, testimonials and a signup form. Extra pages reflect the niche and can be easily customized to suit your particular needs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Child Care Blog template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Professional blog template ideal for childcare or similar niches</li><li>Light and engaging design with a genuine feel</li><li>Flexible content areas you can customize to suit</li><li>Supplementary pages ideal for the industry</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:72:\"Light and engaging web template for childminders and the childcare niche\";s:5:\"pages\";a:2:{s:8:\"id-51406\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/03/childcare-blog-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/03/childcare-blog-02-contact.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/childcare-blog-02/wp-json/wp/v2/pages/468\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/childcare-blog-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-51407\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/03/childcare-blog-02-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/03/childcare-blog-02-home.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/childcare-blog-02/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/childcare-blog-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47745\";a:22:{s:5:\"title\";s:25:\"Online Programming Course\";s:2:\"id\";i:47745;s:12:\"publish-date\";i:1602788588;s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/online-coding-course-02-home.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/online-coding-course-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/online-coding-course-02-home.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/online-coding-course-02\";s:20:\"astra-site-parent-id\";i:1671;s:15:\"astra-sites-tag\";a:7:{i:462;s:7:\"courses\";i:469;s:7:\"ecourse\";i:468;s:9:\"elearning\";i:467;s:9:\"learndash\";i:466;s:14:\"online-courses\";i:975;s:15:\"online-learning\";i:1673;s:18:\"programming-course\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:5:{i:2825;s:8:\"coaching\";i:2772;s:9:\"education\";i:2835;s:9:\"elearning\";i:2880;s:10:\"membership\";i:2827;s:13:\"online-course\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:3;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:5;a:3:{s:4:\"slug\";s:13:\"presto-player\";s:4:\"init\";s:31:\"presto-player/presto-player.php\";s:4:\"name\";s:13:\"Presto Player\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1064:\"<!-- wp:paragraph -->\n<p>The Online Programming Course template is ideal for schools, colleges, universities or online learning. It’s a light design with bold colors that reassure visitors as soon as they arrive, ready for them to explore the rest of your website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes a very attractive homepage with course outline areas and a selection of course pages to add more detail. The template is fully compatible with most learning management systems and WooCommerce, so you’re all set to offer courses for free or for money.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Online Programming Course template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Light website template with strong colors for learning</li><li>Compatible with learning management systems</li><li>Compatible with WooCommerce for paid courses</li><li>Ideal for schools, colleges, universities or online learning</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:72:\"Light online course website that welcomes you in and converts you easily\";s:5:\"pages\";a:4:{s:8:\"id-47749\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/online-coding-course-02-home.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/online-coding-course-02-home.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/online-coding-course-02/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/online-coding-course-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47747\";a:12:{s:5:\"title\";s:11:\"All Courses\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/online-coding-course-02-all-courses.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/online-coding-course-02-all-courses.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/online-coding-course-02/wp-json/wp/v2/pages/179\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/online-coding-course-02/all-courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47746\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/online-coding-course-02-about.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/online-coding-course-02-about.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/online-coding-course-02/wp-json/wp/v2/pages/249\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/online-coding-course-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47748\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/online-coding-course-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/online-coding-course-02-contact.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/online-coding-course-02/wp-json/wp/v2/pages/332\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/online-coding-course-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:48719;s:26:\"related-elementor-template\";i:47745;s:26:\"related-gutenberg-template\";i:47896;}s:8:\"id-48719\";a:22:{s:5:\"title\";s:25:\"Online Programming Course\";s:2:\"id\";i:48719;s:12:\"publish-date\";i:1605548862;s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/11/online-coding-course-01-wip-home.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/11/online-coding-course-01-wip-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/11/online-coding-course-01-wip-home.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/online-coding-course-01\";s:20:\"astra-site-parent-id\";i:1765;s:15:\"astra-sites-tag\";a:7:{i:462;s:7:\"courses\";i:469;s:7:\"ecourse\";i:468;s:9:\"elearning\";i:467;s:9:\"learndash\";i:466;s:14:\"online-courses\";i:975;s:15:\"online-learning\";i:1673;s:18:\"programming-course\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:3;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:4;a:3:{s:4:\"slug\";s:13:\"presto-player\";s:4:\"init\";s:31:\"presto-player/presto-player.php\";s:4:\"name\";s:13:\"Presto Player\";}i:5;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-48720\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/11/online-coding-course-01-wip-about.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/11/online-coding-course-01-wip-about.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/online-coding-course-01/wp-json/wp/v2/pages/506\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/online-coding-course-01/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-48721\";a:12:{s:5:\"title\";s:11:\"All Courses\";s:18:\"featured-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/11/online-coding-course-01-wip-all-courses.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/11/online-coding-course-01-wip-all-courses.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/online-coding-course-01/wp-json/wp/v2/pages/508\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/online-coding-course-01/all-courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-48722\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/11/online-coding-course-01-wip-contact.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/11/online-coding-course-01-wip-contact.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/online-coding-course-01/wp-json/wp/v2/pages/510\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/online-coding-course-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48723\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/11/online-coding-course-01-wip-home.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/11/online-coding-course-01-wip-home.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/online-coding-course-01/wp-json/wp/v2/pages/512\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/online-coding-course-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(211,'astra-sites-and-pages-page-17','a:15:{s:8:\"id-48026\";a:22:{s:5:\"title\";s:13:\"Online Course\";s:2:\"id\";i:48026;s:12:\"publish-date\";i:1603830103;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-1-600x2031.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-1-400x1354.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/online-courses-08\";s:20:\"astra-site-parent-id\";i:1694;s:15:\"astra-sites-tag\";a:6:{i:462;s:7:\"courses\";i:468;s:9:\"elearning\";i:467;s:9:\"learndash\";i:460;s:8:\"learning\";i:466;s:14:\"online-courses\";i:975;s:15:\"online-learning\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:13:\"presto-player\";s:4:\"init\";s:31:\"presto-player/presto-player.php\";s:4:\"name\";s:13:\"Presto Player\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-48030\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-1-600x2031.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/online-courses-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/online-courses-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48028\";a:12:{s:5:\"title\";s:11:\"All Courses\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-all-courses-1.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-all-courses-1-600x936.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/online-courses-08/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/online-courses-08/all-courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48027\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-about-us-1.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-about-us-1-600x1431.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/online-courses-08/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/online-courses-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48031\";a:12:{s:5:\"title\";s:11:\"Instructors\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-instructors-1.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-instructors-1-600x1306.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/online-courses-08/wp-json/wp/v2/pages/18\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/online-courses-08/instructors/\";s:15:\"astra-sites-tag\";a:1:{i:1677;s:11:\"instructors\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48032\";a:12:{s:5:\"title\";s:18:\"Pricing &#038; FAQ\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-pricing-and-faq.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-pricing-and-faq-600x1417.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/online-courses-08/wp-json/wp/v2/pages/20\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/online-courses-08/pricing-faq/\";s:15:\"astra-sites-tag\";a:1:{i:585;s:7:\"pricing\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48029\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-contact-1-600x978.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/online-courses-08/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/online-courses-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55936\";a:22:{s:5:\"title\";s:12:\"Media Agency\";s:2:\"id\";i:55936;s:12:\"publish-date\";i:1624472955;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/08/media-agency-04-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/08/media-agency-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/08/media-agency-04-home.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/media-agency-04\";s:20:\"astra-site-parent-id\";i:2236;s:15:\"astra-sites-tag\";a:13:{i:1587;s:18:\"advertising-agency\";i:2232;s:19:\"advertising-company\";i:2229;s:16:\"advertising-firm\";i:663;s:6:\"agency\";i:979;s:7:\"company\";i:1588;s:16:\"marketing-agency\";i:2233;s:17:\"marketing-company\";i:2228;s:14:\"marketing-firm\";i:2237;s:12:\"media-agency\";i:2230;s:12:\"press-agency\";i:2227;s:14:\"promotion-firm\";i:2231;s:14:\"publicity-firm\";i:2234;s:18:\"publicity-services\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2812;s:14:\"digital-agency\";i:2796;s:17:\"digital-marketing\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:926:\"<!-- wp:paragraph -->\n<p>The Media Agency template is a stylish dark design with bold colors and exactly the kind of impact a media agency would want to make. It’s a well-designed web template with strong imagery, bold content boxes and a well-chosen font.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes typical content areas and supplementary pages you would need along with the flexibility to change anything you see on the page using a page builder. It’s an excellent option for any agency!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Media Agency template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Stylish dark design that makes an impact</li><li>Well-chosen colors and fonts</li><li>Prominent product and service sections</li><li>Cutting edge design ideal for the niche</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:78:\"Stylish dark website template ideal for freelancers, media or digital agencies\";s:5:\"pages\";a:5:{s:8:\"id-47003\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/08/media-agency-04-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/08/media-agency-04-home.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/media-agency-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/media-agency-04/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47001\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/08/media-agency-04-about.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/08/media-agency-04-about.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/media-agency-04/wp-json/wp/v2/pages/53\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/media-agency-04/about/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47005\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/08/media-agency-04-services.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/08/media-agency-04-services.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/media-agency-04/wp-json/wp/v2/pages/57\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/media-agency-04/services/\";s:15:\"astra-sites-tag\";a:3:{i:425;s:8:\"services\";i:628;s:10:\"what-we-do\";i:1542;s:13:\"what-we-offer\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47004\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/08/media-agency-04-portfolio.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/08/media-agency-04-portfolio.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/media-agency-04/wp-json/wp/v2/pages/55\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/media-agency-04/works/\";s:15:\"astra-sites-tag\";a:1:{i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47002\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/08/media-agency-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/08/media-agency-04-contact.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/media-agency-04/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/media-agency-04/contact/\";s:15:\"astra-sites-tag\";a:4:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";i:896;s:13:\"get-connected\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21574\";a:22:{s:5:\"title\";s:10:\"Life Coach\";s:2:\"id\";i:21574;s:12:\"publish-date\";i:1555388906;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/04/life-coach-sara-john-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/04/life-coach-sara-john-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/04/life-coach-sara-john-1.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/life-coach-sara-john\";s:20:\"astra-site-parent-id\";i:91;s:15:\"astra-sites-tag\";a:5:{i:610;s:8:\"coaching\";i:608;s:8:\"guidance\";i:612;s:10:\"life-coach\";i:609;s:9:\"motivator\";i:611;s:16:\"self-improvement\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:6:{i:2839;s:13:\"author-writer\";i:2814;s:9:\"bookstore\";i:2825;s:8:\"coaching\";i:2769;s:9:\"ecommerce\";i:2874;s:10:\"life-coach\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:3;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1276:\"<!-- wp:paragraph -->\n<p>The Life Coach template is a simple, effective design that enables your content to take center stage. It’s a welcoming template with a static image header with headline and clear content and service areas down the page to help tell your story.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template offers a range of flexible elements and pages you can customize to your particular needs without losing the overall appeal. The theme works seamlessly with WooCommerce and includes a product page so you can sell merch as soon as you launch.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Life Coach template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Effective design ideal for life coaches and the wellness niche</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Flexible pages and content areas can be easily personalized</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Integrates with WooCommerce for selling online</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Great use of images, content areas and layout</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:78:\"Effective web design that can be fully customized for life coaches or wellness\";s:5:\"pages\";a:5:{s:8:\"id-22854\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/04/life-coach-sara-john-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/04/life-coach-sara-john-1.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/life-coach-sara-john/wp-json/wp/v2/pages/340\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/life-coach-sara-john/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-22850\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/life-coach-sara-john-about-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/life-coach-sara-john-about-1.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/life-coach-sara-john/wp-json/wp/v2/pages/621\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/life-coach-sara-john/about/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-22855\";a:12:{s:5:\"title\";s:12:\"Work With Me\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2019/07/life-coach-sara-john-work-with-me-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2019/07/life-coach-sara-john-work-with-me-1.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/life-coach-sara-john/wp-json/wp/v2/pages/622\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/life-coach-sara-john/work-with-me/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-22852\";a:12:{s:5:\"title\";s:5:\"Books\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/life-coach-sara-john-books-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/life-coach-sara-john-books-1.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/life-coach-sara-john/wp-json/wp/v2/pages/342\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/life-coach-sara-john/books/\";s:15:\"astra-sites-tag\";a:1:{i:727;s:4:\"book\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-22853\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/life-coach-sara-john-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/life-coach-sara-john-contact-1.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/life-coach-sara-john/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/life-coach-sara-john/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:51341;s:26:\"related-gutenberg-template\";i:48149;}s:8:\"id-47529\";a:22:{s:5:\"title\";s:16:\"Roofing Services\";s:2:\"id\";i:47529;s:12:\"publish-date\";i:1600948285;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/09/roofing-services-02.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/09/roofing-services-02.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/09/roofing-services-02.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/roofing-services-02\";s:20:\"astra-site-parent-id\";i:1628;s:15:\"astra-sites-tag\";a:6:{i:1630;s:18:\"commercial-roofing\";i:1629;s:19:\"residential-roofing\";i:1634;s:17:\"roof-installation\";i:1633;s:11:\"roof-repair\";i:1631;s:16:\"roof-replacement\";i:1632;s:16:\"roofing-services\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2795;s:12:\"architecture\";i:2777;s:8:\"business\";i:2818;s:7:\"roofing\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2477;s:13:\"home-services\";i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1025:\"<!-- wp:paragraph -->\n<p>The Roofing Services web template is a bright and breezy business design that welcomes you with open arms. It opens with a fullscreen image with bright colors and white headline that sets the scene perfectly. It could be used for literally any type of business.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design is light and easy to use, with modern fonts, lots of whitespace, a contact form front and center, creative product and service section and supplementary pages. It’s a very composed design that inspires confidence, ideal for business use.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Roofing Services template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Bright and breezy design suitable for many types of business</li><li>Excellent layout with customizable content areas</li><li>Contact form front and center</li><li>Supplementary pages ideal for business</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:80:\"Bright and breezy web template suitable for almost any business you can think of\";s:5:\"pages\";a:5:{s:8:\"id-47532\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/09/roofing-services-02.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/09/roofing-services-02.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/roofing-services-02/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/roofing-services-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47530\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/09/roofing-services-02-about-us.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/09/roofing-services-02-about-us.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/roofing-services-02/wp-json/wp/v2/pages/119\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/roofing-services-02/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47534\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/09/roofing-services-02-services-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/09/roofing-services-02-services-1.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/roofing-services-02/wp-json/wp/v2/pages/147\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/roofing-services-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47533\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/09/oofing-services-02-projects.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/09/oofing-services-02-projects.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/roofing-services-02/wp-json/wp/v2/pages/162\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/roofing-services-02/projects/\";s:15:\"astra-sites-tag\";a:1:{i:1613;s:8:\"projects\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47531\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/09/roofing-services-02-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/09/roofing-services-02-contact-us.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/roofing-services-02/wp-json/wp/v2/pages/169\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/roofing-services-02/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:47529;s:26:\"related-gutenberg-template\";i:48648;}s:8:\"id-48648\";a:22:{s:5:\"title\";s:16:\"Roofing Services\";s:2:\"id\";i:48648;s:12:\"publish-date\";i:1603984605;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08-600x2864.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08-400x1909.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/roofing-services-08\";s:20:\"astra-site-parent-id\";i:1754;s:15:\"astra-sites-tag\";a:5:{i:1630;s:18:\"commercial-roofing\";i:1629;s:19:\"residential-roofing\";i:1633;s:11:\"roof-repair\";i:1631;s:16:\"roof-replacement\";i:1632;s:16:\"roofing-services\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2795;s:12:\"architecture\";i:2777;s:8:\"business\";i:2818;s:7:\"roofing\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:2:{i:2477;s:13:\"home-services\";i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48651\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08-600x2864.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/roofing-services-08/wp-json/wp/v2/pages/296\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/roofing-services-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48649\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08-about-us-600x2103.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/roofing-services-08/wp-json/wp/v2/pages/297\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/roofing-services-08/about-us/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48653\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08-services-1-600x2432.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/roofing-services-08/wp-json/wp/v2/pages/298\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/roofing-services-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48652\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08-projects-1.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08-projects-1-600x1716.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/roofing-services-08/wp-json/wp/v2/pages/299\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/roofing-services-08/projects/\";s:15:\"astra-sites-tag\";a:3:{i:444;s:9:\"portfolio\";i:1613;s:8:\"projects\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48650\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08-contact-us-600x1170.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/roofing-services-08/wp-json/wp/v2/pages/300\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/roofing-services-08/contact-us/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-57190\";a:22:{s:5:\"title\";s:12:\"Luxury Hotel\";s:2:\"id\";i:57190;s:12:\"publish-date\";i:1627060454;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/07/luxury-hotel-04-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/07/luxury-hotel-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/07/luxury-hotel-04-home.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/luxury-hotel-04\";s:20:\"astra-site-parent-id\";i:2282;s:15:\"astra-sites-tag\";a:9:{i:2073;s:13:\"accommodation\";i:1534;s:3:\"bnb\";i:2078;s:14:\"business-hotel\";i:350;s:5:\"hotel\";i:2082;s:12:\"luxury-hotel\";i:2197;s:16:\"luxury-residence\";i:714;s:6:\"resort\";i:430;s:7:\"tourism\";i:427;s:6:\"travel\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2785;s:4:\"food\";i:2788;s:9:\"hotel-bnb\";i:2775;s:14:\"travel-tourism\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2498;s:12:\"hotel-travel\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1056:\"<!-- wp:paragraph -->\n<p>The Luxury Hotel template uses a dark design and gold color to create a feeling of elegance and luxury. It includes an attractive slider to paint the picture of a lifestyle and a parallax effect with hotel images as the background. All designed to help sell rooms.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes typical content areas for a hotel including for rooms, amenities, dining and more. Each can be fully customized to suit your particular hotel, as can the portfolio, blog area and individual room and amenity pages. It’s the only hotel template you need!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Luxury Hotel template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Elegant website template ideal for luxury hotels</li><li>Dark and gold colors create an exclusive feel</li><li>Lots of opportunities for images to help sell</li><li>Relevant content areas and pages for hotels</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:73:\"Elegant web template ideal for luxury hotels, travel and big ticket items\";s:5:\"pages\";a:6:{s:8:\"id-57195\";a:12:{s:5:\"title\";s:26:\"Facilities &amp; Amenities\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/07/luxury-hotel-04-facilities.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/07/luxury-hotel-04-facilities.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/luxury-hotel-04/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:57:\"//websitedemos.net/luxury-hotel-04/fascilities-amenities/\";s:15:\"astra-sites-tag\";a:2:{i:777;s:9:\"amenities\";i:1599;s:10:\"facilities\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57191\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/07/luxury-hotel-04-about.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/07/luxury-hotel-04-about.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/luxury-hotel-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/luxury-hotel-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57192\";a:12:{s:5:\"title\";s:13:\"Accommodation\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/07/luxury-hotel-04-accomodation.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/07/luxury-hotel-04-accomodation.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/luxury-hotel-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/luxury-hotel-04/accommodation/\";s:15:\"astra-sites-tag\";a:1:{i:2073;s:13:\"accommodation\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57193\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/07/luxury-hotel-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/07/luxury-hotel-04-contact.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/luxury-hotel-04/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/luxury-hotel-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-57194\";a:12:{s:5:\"title\";s:6:\"Dining\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/07/luxury-hotel-04-dining.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/07/luxury-hotel-04-dining.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/luxury-hotel-04/wp-json/wp/v2/pages/1121\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/luxury-hotel-04/dining/\";s:15:\"astra-sites-tag\";a:1:{i:1798;s:6:\"dining\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57196\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/07/luxury-hotel-04-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/07/luxury-hotel-04-home.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/luxury-hotel-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/luxury-hotel-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47896\";a:22:{s:5:\"title\";s:25:\"Online Programming Course\";s:2:\"id\";i:47896;s:12:\"publish-date\";i:1603825611;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/online-programming-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/online-programming-08-600x2335.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/online-programming-08-400x1557.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/online-coding-course-08\";s:20:\"astra-site-parent-id\";i:1681;s:15:\"astra-sites-tag\";a:7:{i:462;s:7:\"courses\";i:469;s:7:\"ecourse\";i:468;s:9:\"elearning\";i:467;s:9:\"learndash\";i:466;s:14:\"online-courses\";i:975;s:15:\"online-learning\";i:1673;s:18:\"programming-course\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:2;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:3;a:3:{s:4:\"slug\";s:13:\"presto-player\";s:4:\"init\";s:31:\"presto-player/presto-player.php\";s:4:\"name\";s:13:\"Presto Player\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-47900\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/online-programming-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/online-programming-08-600x2335.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/online-coding-course-08/wp-json/wp/v2/pages/523\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/online-coding-course-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47898\";a:12:{s:5:\"title\";s:11:\"All Courses\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/online-programming-08-courses.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/online-programming-08-courses-600x1348.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/online-coding-course-08/wp-json/wp/v2/pages/519\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/online-coding-course-08/all-courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47897\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/online-programming-08-about.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/online-programming-08-about-600x1986.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/online-coding-course-08/wp-json/wp/v2/pages/517\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/online-coding-course-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47899\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/online-programming-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/online-programming-08-contact-600x1047.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/online-coding-course-08/wp-json/wp/v2/pages/521\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/online-coding-course-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47585\";a:22:{s:5:\"title\";s:20:\"Freelance Copywriter\";s:2:\"id\";i:47585;s:12:\"publish-date\";i:1600960953;s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/09/freelance-copywriter-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/09/freelance-copywriter-02-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/09/freelance-copywriter-02-homepage.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/freelance-copywriter-02\";s:20:\"astra-site-parent-id\";i:1647;s:15:\"astra-sites-tag\";a:8:{i:1652;s:7:\"blogger\";i:1654;s:15:\"content-creator\";i:1649;s:14:\"content-writer\";i:1650;s:10:\"copywriter\";i:1648;s:20:\"freelance-copywriter\";i:669;s:10:\"freelancer\";i:1651;s:8:\"marketer\";i:1653;s:19:\"web-content-creator\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2839;s:13:\"author-writer\";i:2810;s:9:\"freelance\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1032:\"<!-- wp:paragraph -->\n<p>The Freelance Copywriter template works as a business website or online resume depending on how you configure it. It’s a relaxed design with lots of white space and calm complementing colors.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design includes plenty of opportunities to highlight skills and experience as well as products and services. There’s an engaging call to action, milestone and awards section, a portfolio page, testimonials page and an attractive contact page. Everything the budding freelancer needs to grow their business.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Freelance Copywriter template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Configurable resume or business website for freelancers</li><li>Easygoing design with calm colors and whitespace</li><li>Lots of customizable content areas</li><li>Portfolio page already designed and ready to go</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:72:\"Adaptable web template ideal for freelancer and small business promotion\";s:5:\"pages\";a:4:{s:8:\"id-47587\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/09/freelance-copywriter-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/09/freelance-copywriter-02-homepage.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/freelance-copywriter-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/freelance-copywriter-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47589\";a:12:{s:5:\"title\";s:4:\"Work\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/09/freelance-copywriter-02-work.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/09/freelance-copywriter-02-work.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/freelance-copywriter-02/wp-json/wp/v2/pages/99\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/freelance-copywriter-02/work/\";s:15:\"astra-sites-tag\";a:3:{i:444;s:9:\"portfolio\";i:425;s:8:\"services\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47588\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/09/freelance-copywriter-02-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/09/freelance-copywriter-02-testimonials.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/freelance-copywriter-02/wp-json/wp/v2/pages/135\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:56:\"//websitedemos.net/freelance-copywriter-02/testimonials/\";s:15:\"astra-sites-tag\";a:2:{i:1615;s:7:\"reviews\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47586\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/09/freelance-copywriter-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/09/freelance-copywriter-02-contact.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/freelance-copywriter-02/wp-json/wp/v2/pages/158\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/freelance-copywriter-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48149\";a:22:{s:5:\"title\";s:10:\"Life Coach\";s:2:\"id\";i:48149;s:12:\"publish-date\";i:1603893471;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08-600x1518.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08-400x1012.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/life-coach-sara-john-08\";s:20:\"astra-site-parent-id\";i:1704;s:15:\"astra-sites-tag\";a:5:{i:610;s:8:\"coaching\";i:608;s:8:\"guidance\";i:612;s:10:\"life-coach\";i:609;s:9:\"motivator\";i:611;s:16:\"self-improvement\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:6:{i:2839;s:13:\"author-writer\";i:2814;s:9:\"bookstore\";i:2825;s:8:\"coaching\";i:2769;s:9:\"ecommerce\";i:2874;s:10:\"life-coach\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:1;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:3;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}i:4;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48171\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08-about-4.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08-about-4-600x1199.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/life-coach-sara-john-08/wp-json/wp/v2/pages/1368\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/life-coach-sara-john-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48172\";a:12:{s:5:\"title\";s:5:\"Books\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08-books-2.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08-books-2-600x1382.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/life-coach-sara-john-08/wp-json/wp/v2/pages/1370\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/life-coach-sara-john-08/books/\";s:15:\"astra-sites-tag\";a:1:{i:727;s:4:\"book\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48173\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08-contact-2-600x738.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/life-coach-sara-john-08/wp-json/wp/v2/pages/1372\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/life-coach-sara-john-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48174\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08-600x1518.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/life-coach-sara-john-08/wp-json/wp/v2/pages/1376\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/life-coach-sara-john-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48175\";a:12:{s:5:\"title\";s:12:\"Work With Me\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08-work-with-me.jpg\";s:19:\"thumbnail-image-url\";s:101:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08-work-with-me-600x1249.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/life-coach-sara-john-08/wp-json/wp/v2/pages/1374\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:56:\"//websitedemos.net/life-coach-sara-john-08/work-with-me/\";s:15:\"astra-sites-tag\";a:1:{i:784;s:12:\"work-with-me\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-51415\";a:22:{s:5:\"title\";s:22:\"Pharmaceutical Company\";s:2:\"id\";i:51415;s:12:\"publish-date\";i:1617130217;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/03/pharmaceutical-02-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/03/pharmaceutical-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/03/pharmaceutical-02-home.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/pharmaceutical-02\";s:20:\"astra-site-parent-id\";i:1884;s:15:\"astra-sites-tag\";a:4:{i:1888;s:6:\"pharma\";i:1890;s:14:\"pharma-company\";i:1891;s:22:\"pharmaceutical-company\";i:1889;s:15:\"pharmaceuticals\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2834;s:10:\"healthcare\";i:2841;s:14:\"medical-clinic\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2474;s:13:\"manufacturing\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1102:\"<!-- wp:paragraph -->\n<p>The Pharmaceutical Company template has a light, inclusive feel that uses colors related to the medical feel to inspire confidence and communicate meaning. Modern fonts, animations and quality images combine with customizable content areas to tell your story.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes lots of space on the homepage to outline products and services and supplementary pages to expand and convert visitors. The overall look and feel of the template is positive and reassuring, just what pharmaceutical companies or the medical profession needs to communicate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Pharmaceutical Company template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Reassuring website design ideal for pharma or the medical field</li><li>Includes lots of content areas for products and services</li><li>Lots of whitespace helps your message stand out</li><li>Supplementary pages ideal for the niche</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"Reassuring website design with some nice touches, ideal for pharmaceutical companies\";s:5:\"pages\";a:5:{s:8:\"id-51416\";a:12:{s:5:\"title\";s:7:\"Company\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/03/pharmaceutical-02-company.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/03/pharmaceutical-02-company.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/pharmaceutical-02/wp-json/wp/v2/pages/357\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/pharmaceutical-02/company/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:979;s:7:\"company\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51417\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/03/pharmaceutical-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/03/pharmaceutical-02-contact.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/pharmaceutical-02/wp-json/wp/v2/pages/771\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/pharmaceutical-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-51418\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/03/pharmaceutical-02-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/03/pharmaceutical-02-home.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/pharmaceutical-02/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/pharmaceutical-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51419\";a:12:{s:5:\"title\";s:8:\"Products\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/pharmaceutical-02-products.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/pharmaceutical-02-products.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/pharmaceutical-02/wp-json/wp/v2/pages/458\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/pharmaceutical-02/products/\";s:15:\"astra-sites-tag\";a:1:{i:540;s:8:\"products\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51420\";a:12:{s:5:\"title\";s:26:\"Research &amp; Development\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/pharmaceutical-02-research.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/pharmaceutical-02-research.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/pharmaceutical-02/wp-json/wp/v2/pages/611\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:62:\"//websitedemos.net/pharmaceutical-02/research-and-development/\";s:15:\"astra-sites-tag\";a:2:{i:1887;s:7:\"process\";i:1886;s:8:\"research\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-51578\";a:22:{s:5:\"title\";s:13:\"Family Lawyer\";s:2:\"id\";i:51578;s:12:\"publish-date\";i:1617821337;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/04/family-lawyer-02-home.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/04/family-lawyer-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/04/family-lawyer-02-home.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/family-lawyer-02\";s:20:\"astra-site-parent-id\";i:1941;s:15:\"astra-sites-tag\";a:5:{i:912;s:9:\"attorneys\";i:1943;s:14:\"divorce-lawyer\";i:1942;s:13:\"family-lawyer\";i:706;s:6:\"lawyer\";i:1870;s:11:\"lawyer-firm\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2824;s:8:\"law-firm\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2482;s:3:\"law\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1072:\"<!-- wp:paragraph -->\n<p>The Family Lawyer template is a sober design ideal for an industry like the law. It remains approachable and welcoming though, thanks to friendly fonts and a nice contrast color. The overall design helps create authority and trust, two things a lawyer needs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes a simple header with a background image and opens up into a white background with borderless content areas to show products, services and specialties. Everything can be customized to suit your business with minimal effort to create something truly unique.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Family Lawyer template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Modern design that helps build trust and authority</li><li>Customizable homepage so you can showcase your services</li><li>Borderless content areas make the page flow seamlessly</li><li>Extra pages ideal for the legal profession</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:71:\"Modern business web template ideal for lawyers and the legal profession\";s:5:\"pages\";a:4:{s:8:\"id-51579\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/04/family-lawyer-02-about-us.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/04/family-lawyer-02-about-us.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/family-lawyer-02/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/family-lawyer-02/about-us/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:912;s:9:\"attorneys\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51580\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/04/family-lawyer-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/04/family-lawyer-02-contact.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/family-lawyer-02/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/family-lawyer-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-51581\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/04/family-lawyer-02-home.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/04/family-lawyer-02-home.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/family-lawyer-02/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/family-lawyer-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-51582\";a:12:{s:5:\"title\";s:14:\"Practice Areas\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/04/family-lawyer-02-practice-areas.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/04/family-lawyer-02-practice-areas.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/family-lawyer-02/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/family-lawyer-02/practice-areas/\";s:15:\"astra-sites-tag\";a:2:{i:707;s:13:\"practice-area\";i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-57319\";a:22:{s:5:\"title\";s:10:\"Book Store\";s:2:\"id\";i:57319;s:12:\"publish-date\";i:1629996901;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/08/book-store-02-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/08/book-store-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/08/book-store-02-home.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/book-store-02\";s:20:\"astra-site-parent-id\";i:2319;s:15:\"astra-sites-tag\";a:8:{i:724;s:6:\"author\";i:2355;s:17:\"author-book-store\";i:2354;s:16:\"author-portfolio\";i:2353;s:11:\"book-writer\";i:2352;s:11:\"books-store\";i:496;s:9:\"ecommerce\";i:383;s:12:\"online-store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2839;s:13:\"author-writer\";i:2814;s:9:\"bookstore\";i:2769;s:9:\"ecommerce\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:3;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1254:\"<!-- wp:paragraph -->\n<p>The Book Store website template is a focused template designed for small books stores or authors who want to sell directly to the public. It’s a relaxed design with the header section set up to showcase your latest publication.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template integrates seamlessly with WooCommerce so you can sell digital downloads or physical books from the site. There are customizable content areas throughout and a range of calls to action, image options, testimonials and review options to include if you want.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Book Store template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Relaxed design that lets products shine</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Optional extra sections for books and categories</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fully compatible with WooCommerce for direct sales</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Customizable sections and pages for any type of store</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:78:\"Relaxed web template ideal for book stores and authors who want to sell direct\";s:5:\"pages\";a:4:{s:8:\"id-57336\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/08/book-store-02-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/08/book-store-02-contact-1.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/book-store-02/wp-json/wp/v2/pages/354\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/book-store-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-57334\";a:12:{s:5:\"title\";s:12:\"About Author\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/08/book-store-02-biography-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/08/book-store-02-biography-1.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/book-store-02/wp-json/wp/v2/pages/293\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/book-store-02/biography/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:1566;s:9:\"biography\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57335\";a:12:{s:5:\"title\";s:5:\"Books\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/08/book-store-02-books.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/08/book-store-02-books.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/book-store-02/wp-json/wp/v2/pages/587\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/book-store-02/books/\";s:15:\"astra-sites-tag\";a:1:{i:1740;s:5:\"books\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57337\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/08/book-store-02-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/08/book-store-02-home.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/book-store-02/wp-json/wp/v2/pages/28\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/book-store-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47838\";a:22:{s:5:\"title\";s:22:\"Online Cooking Courses\";s:2:\"id\";i:47838;s:12:\"publish-date\";i:1602871358;s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-02.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-02.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-02.jpg\";s:14:\"astra-site-url\";s:43:\"//websitedemos.net/online-cooking-course-02\";s:20:\"astra-site-parent-id\";i:1678;s:15:\"astra-sites-tag\";a:6:{i:1679;s:14:\"cooking-course\";i:468;s:9:\"elearning\";i:467;s:9:\"learndash\";i:719;s:15:\"online-coaching\";i:466;s:14:\"online-courses\";i:975;s:15:\"online-learning\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:5:{i:2835;s:9:\"elearning\";i:2785;s:4:\"food\";i:2880;s:10:\"membership\";i:2827;s:13:\"online-course\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:2;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:13:\"presto-player\";s:4:\"init\";s:31:\"presto-player/presto-player.php\";s:4:\"name\";s:13:\"Presto Player\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1042:\"<!-- wp:paragraph -->\n<p>The Online Cooking Courses template makes an instant impact thanks to a colorful header with a strong image and headline. It’s an engaging design that unfolds into a light, white page with lots of options to outline courses and use imagery to sell.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is an LMS website template that will be compatible with leading learning management systems to help you set up your courses quickly and easily. Course pages are equally well designed and include everything you need to attract new students.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Online Cooking Courses template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Impactful design with bright colors and strong imagery</li><li>Light content areas designed for courses</li><li>Course pages include basic outline all ready to customize</li><li>Includes enrolment button for quick and easy signups</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:80:\"Vibrant online learning template designed to help make learning fun for everyone\";s:5:\"pages\";a:4:{s:8:\"id-47842\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-02.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-02.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/online-cooking-course-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/online-cooking-course-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47840\";a:12:{s:5:\"title\";s:11:\"All Courses\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-02-all-courses.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-02-all-courses.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/online-cooking-course-02/wp-json/wp/v2/pages/351\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:56:\"//websitedemos.net/online-cooking-course-02/all-courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47839\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-02-about.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-02-about.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/online-cooking-course-02/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/online-cooking-course-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47841\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-02-contact.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/online-cooking-course-02/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/online-cooking-course-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-45894\";a:22:{s:5:\"title\";s:31:\"Courier &amp; Delivery Services\";s:2:\"id\";i:45894;s:12:\"publish-date\";i:1590081799;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/courier-04-home.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/courier-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/courier-04-home.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/courier-04\";s:20:\"astra-site-parent-id\";i:1492;s:15:\"astra-sites-tag\";a:7:{i:1498;s:6:\"bearer\";i:1493;s:7:\"carrier\";i:1494;s:7:\"courier\";i:1497;s:8:\"delivery\";i:1495;s:7:\"express\";i:1500;s:8:\"messager\";i:1496;s:6:\"parcel\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2854;s:7:\"courier\";i:2831;s:7:\"service\";i:2806;s:14:\"transportation\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2473;s:9:\"transport\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1052:\"<!-- wp:paragraph -->\n<p>The Courier &amp; Delivery Services template is ideal for couriers, moving firms, delivery services and anyone involved in moving things from A to B. It’s a bright, welcoming design with a bold header, attractive graphics and a strong headline.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There’s also a booking form above the fold so visitors can engage instantly. The template includes all the sections you would expect in a business website like this. It’s communicative, responsive and includes lots of product and services sections to showcase your offer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Courier &amp; Delivery Services template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Bright and colorful web template ideal for couriers and delivery services</li><li>Warm welcome as soon as it loads</li><li>Booking form front and center</li><li>Customizable content sections on every page</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:82:\"Bright and colorful web template ideal for couriers and a wide range of businesses\";s:5:\"pages\";a:6:{s:8:\"id-45897\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/courier-04-home.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/03/courier-04-home.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/courier-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/courier-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-45899\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/06/courier-04-services.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/06/courier-04-services.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/courier-04/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/courier-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-45895\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/03/courier-04-about.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/03/courier-04-about.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/courier-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/courier-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-45898\";a:12:{s:5:\"title\";s:6:\"Prices\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/03/courier-04-prices.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/03/courier-04-prices.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/courier-04/wp-json/wp/v2/pages/23\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/courier-04/prices/\";s:15:\"astra-sites-tag\";a:1:{i:815;s:5:\"price\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-45900\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/03/courier-04-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/03/courier-04-testimonials.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/courier-04/wp-json/wp/v2/pages/21\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/courier-04/testimonials/\";s:15:\"astra-sites-tag\";a:2:{i:432;s:6:\"review\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-45896\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/03/courier-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/03/courier-04-contact.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/courier-04/wp-json/wp/v2/pages/19\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/courier-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:45924;s:26:\"related-elementor-template\";i:45894;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-45924\";a:22:{s:5:\"title\";s:31:\"Courier &amp; Delivery Services\";s:2:\"id\";i:45924;s:12:\"publish-date\";i:1590081799;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/06/courier-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/06/courier-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/06/courier-03-homepage.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/courier-03\";s:20:\"astra-site-parent-id\";i:1501;s:15:\"astra-sites-tag\";a:7:{i:1498;s:6:\"bearer\";i:1493;s:7:\"carrier\";i:1494;s:7:\"courier\";i:1497;s:8:\"delivery\";i:1495;s:7:\"express\";i:1500;s:8:\"messager\";i:1496;s:6:\"parcel\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2473;s:9:\"transport\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-45927\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/06/courier-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/06/courier-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/courier-03/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/courier-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45929\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/06/courier-03-services.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/06/courier-03-services.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/courier-03/wp-json/wp/v2/pages/231\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/courier-03/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45925\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/06/courier-03-about.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/06/courier-03-about.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/courier-03/wp-json/wp/v2/pages/233\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/courier-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45928\";a:12:{s:5:\"title\";s:6:\"Prices\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/06/courier-03-prices.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/06/courier-03-prices.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/courier-03/wp-json/wp/v2/pages/235\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/courier-03/prices/\";s:15:\"astra-sites-tag\";a:1:{i:815;s:5:\"price\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45930\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/06/courier-03-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/06/courier-03-testimonials.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/courier-03/wp-json/wp/v2/pages/237\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/courier-03/testimonials/\";s:15:\"astra-sites-tag\";a:2:{i:432;s:6:\"review\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45926\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/06/courier-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/06/courier-03-contact.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/courier-03/wp-json/wp/v2/pages/239\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/courier-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no');
INSERT INTO `wpjv_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (212,'astra-sites-and-pages-page-18','a:15:{s:8:\"id-49406\";a:22:{s:5:\"title\";s:27:\"Freelance Voice-over Artist\";s:2:\"id\";i:49406;s:12:\"publish-date\";i:1616088047;s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/03/voiceover-artist-02-home.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/03/voiceover-artist-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/03/voiceover-artist-02-home.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/voiceover-artist-02\";s:20:\"astra-site-parent-id\";i:1828;s:15:\"astra-sites-tag\";a:7:{i:1908;s:14:\"dubbing-artist\";i:669;s:10:\"freelancer\";i:969;s:8:\"musician\";i:1834;s:16:\"recording-artist\";i:1571;s:6:\"singer\";i:1510;s:6:\"studio\";i:1833;s:17:\"voice-over-artist\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2802;s:6:\"artist\";i:2777;s:8:\"business\";i:2810;s:9:\"freelance\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:999:\"<!-- wp:paragraph -->\n<p>The Freelance Voice-over Artist template could work as a resume or portfolio for musicians and many other professions. It’s a light modern design with strong images, calm colors and very modern fonts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template has been configured for musicians but would work for anyone with a little customization. It has flexible content areas with space for images, text, audio or video clips, a biography, testimonials and social media integration. Everything you need to promote yourself.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Freelance Voice-over Artist template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Modern business theme that works as a portfolio or resume</li><li>Calm colors and contemporary fonts</li><li>Great use of images, content areas and layout</li><li>Supports images, audio and video</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:83:\"Contemporary website template that’s perfect for freelance artists and performers\";s:5:\"pages\";a:5:{s:8:\"id-49407\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/03/voiceover-artist-02-about.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/03/voiceover-artist-02-about.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/voiceover-artist-02/wp-json/wp/v2/pages/180\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/voiceover-artist-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49408\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/voiceover-artist-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/voiceover-artist-02-contact.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/voiceover-artist-02/wp-json/wp/v2/pages/400\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/voiceover-artist-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-49409\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/03/voiceover-artist-02-home.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/03/voiceover-artist-02-home.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/voiceover-artist-02/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/voiceover-artist-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49410\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/03/voiceover-artist-02-services.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/03/voiceover-artist-02-services.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/voiceover-artist-02/wp-json/wp/v2/pages/270\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/voiceover-artist-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49411\";a:12:{s:5:\"title\";s:6:\"Studio\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/voiceover-artist-02-studio.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/voiceover-artist-02-studio.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/voiceover-artist-02/wp-json/wp/v2/pages/309\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/voiceover-artist-02/studio/\";s:15:\"astra-sites-tag\";a:2:{i:1510;s:6:\"studio\";i:691;s:10:\"work-place\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47672\";a:22:{s:5:\"title\";s:15:\"Diagnostics Lab\";s:2:\"id\";i:47672;s:12:\"publish-date\";i:1603984733;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08-600x3865.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08-400x2577.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/diagnostics-lab-08\";s:20:\"astra-site-parent-id\";i:1657;s:15:\"astra-sites-tag\";a:4:{i:1637;s:18:\"clinical-diagnosis\";i:1636;s:9:\"diagnosis\";i:1640;s:10:\"laboratory\";i:1638;s:4:\"test\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2834;s:10:\"healthcare\";i:2841;s:14:\"medical-clinic\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2490;s:10:\"healthcare\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-47675\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08-600x3865.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/diagnostics-lab-08/wp-json/wp/v2/pages/242\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/diagnostics-lab-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47673\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08-about-us-600x1665.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/diagnostics-lab-08/wp-json/wp/v2/pages/247\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/diagnostics-lab-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47676\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08-services.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08-services-600x1566.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/diagnostics-lab-08/wp-json/wp/v2/pages/252\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/diagnostics-lab-08/services/\";s:15:\"astra-sites-tag\";a:2:{i:425;s:8:\"services\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47677\";a:12:{s:5:\"title\";s:11:\"Testimonial\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08-testimonial.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08-testimonial-600x1606.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/diagnostics-lab-08/wp-json/wp/v2/pages/254\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/diagnostics-lab-08/testimonial/\";s:15:\"astra-sites-tag\";a:2:{i:1615;s:7:\"reviews\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47674\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08-contact-us-600x1026.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/diagnostics-lab-08/wp-json/wp/v2/pages/256\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/diagnostics-lab-08/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-49217\";a:22:{s:5:\"title\";s:11:\"Piano Tutor\";s:2:\"id\";i:49217;s:12:\"publish-date\";i:1607943895;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/12/piano-tutor-02-home.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/12/piano-tutor-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/12/piano-tutor-02-home.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/piano-tutor-02\";s:20:\"astra-site-parent-id\";i:1780;s:15:\"astra-sites-tag\";a:7:{i:1786;s:5:\"forte\";i:407;s:5:\"music\";i:1782;s:5:\"piano\";i:1784;s:15:\"piano-institute\";i:1783;s:13:\"piano-lessons\";i:1785;s:14:\"piano-programs\";i:1781;s:8:\"tutorial\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2772;s:9:\"education\";i:2781;s:5:\"music\";i:2873;s:5:\"tutor\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2486;s:9:\"art-music\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:980:\"<!-- wp:paragraph -->\n<p>The Piano Tutor template communicates its purpose immediately with a thoughtful image and header. The homepage opens out into a light, informative design with areas for courses, specializations, a biography, service area and testimonials, everything a piano teacher might need.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template uses high quality images throughout to help tell your story, along with flexible content areas, an enrolment form, relevant extra pages and an attractive content page.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Piano Tutor template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Communicative web template for piano tutors and teachers</li><li>Well-designed layout with music elements everywhere</li><li>Flexible content areas with some nice effects</li><li>Relevant extra pages ideal for tutors</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:76:\"Communicative website template designed for teachers, tutors and instructors\";s:5:\"pages\";a:5:{s:8:\"id-49220\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/12/piano-tutor-02-home.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/12/piano-tutor-02-home.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/piano-tutor-02/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/piano-tutor-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49218\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/12/piano-tutor-02-about-us.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/12/piano-tutor-02-about-us.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/piano-tutor-02/wp-json/wp/v2/pages/164\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/piano-tutor-02/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49221\";a:12:{s:5:\"title\";s:8:\"Programs\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/12/piano-tutor-02-programs.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/12/piano-tutor-02-programs.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/piano-tutor-02/wp-json/wp/v2/pages/228\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/piano-tutor-02/programs/\";s:15:\"astra-sites-tag\";a:1:{i:989;s:8:\"programs\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49222\";a:12:{s:5:\"title\";s:11:\"Testimonial\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/12/piano-tutor-02-testimonial.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/12/piano-tutor-02-testimonial.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/piano-tutor-02/wp-json/wp/v2/pages/278\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/piano-tutor-02/testimonial/\";s:15:\"astra-sites-tag\";a:2:{i:432;s:6:\"review\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49219\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/12/piano-tutor-02-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/12/piano-tutor-02-contact-us.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/piano-tutor-02/wp-json/wp/v2/pages/312\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/piano-tutor-02/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21592\";a:22:{s:5:\"title\";s:19:\"Custom Printing Pro\";s:2:\"id\";i:21592;s:12:\"publish-date\";i:1555478369;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/04/custom-printing-04.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/04/custom-printing-04.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/04/custom-printing-04.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/custom-printing-04\";s:20:\"astra-site-parent-id\";i:67;s:15:\"astra-sites-tag\";a:20:{i:2418;s:8:\"commerce\";i:400;s:15:\"custom-printing\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2419;s:9:\"eshopping\";i:881;s:12:\"mug-printing\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:967;s:13:\"product-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:405;s:16:\"t-shirt-printing\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2769;s:9:\"ecommerce\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:7:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:3;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:4;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:5;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:6;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1054:\"<!-- wp:paragraph -->\n<p>The Custom Printing Pro template is designed for eCommerce and is fully compatible with WooCommerce. It’s a modern flat design with strong imagery and fonts that help create instant engagement. It’s a powerful theme designed to sell.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes a gray background with bold colors, attractive images and lots of opportunities to sell your products. It’s a well-designed template with minimal navigation with cart, bold calls to action and lots of opportunities to showcase products, special offers and anything else you might need to feature.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Custom Printing Pro template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Elevated eCommerce design with a modern appeal</li><li>Fully compatible with WooCommerce</li><li>Lots of product and category areas</li><li>Special offer and calls to action sections</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:71:\"Elevated eCommerce template with modern touches ideal for online stores\";s:5:\"pages\";a:3:{s:8:\"id-36096\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/04/custom-printing-04.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/04/custom-printing-04.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/custom-printing-04/wp-json/wp/v2/pages/95\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/custom-printing-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22180\";a:12:{s:5:\"title\";s:9:\"About HDX\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/04/custom-printing-04-about-hdx.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/04/custom-printing-04-about-hdx.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/custom-printing-04/wp-json/wp/v2/pages/96\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/custom-printing-04/about-hdx/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22183\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/04/custom-printing-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/04/custom-printing-04-contact.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/custom-printing-04/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/custom-printing-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47547\";a:22:{s:5:\"title\";s:15:\"Diagnostics Lab\";s:2:\"id\";i:47547;s:12:\"publish-date\";i:1600971205;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/09/diagnostics-lab-04.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/09/diagnostics-lab-04.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/09/diagnostics-lab-04.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/diagnostics-lab-02\";s:20:\"astra-site-parent-id\";i:1635;s:15:\"astra-sites-tag\";a:5:{i:1637;s:18:\"clinical-diagnosis\";i:1636;s:9:\"diagnosis\";i:1640;s:10:\"laboratory\";i:1638;s:4:\"test\";i:1639;s:8:\"workshop\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2834;s:10:\"healthcare\";i:2841;s:14:\"medical-clinic\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2490;s:10:\"healthcare\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1039:\"<!-- wp:paragraph -->\n<p>The Diagnostics Lab template proves you don’t have to be cold to be clinical. It’s a professional design with reassuring blue and green colors on a light background. It’s a boxed layout with flexible content areas and engaging elements.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The theme as a whole communicates well, with those colors, modern fonts, lots of whitespace, areas for images, graphics, icons and calls to action. There are also a range of complementing pages that reflect the core design while answering the core brief of this kind of niche.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Diagnostics Lab template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Modern web template ideal for medicine, clinics or hospitals</li><li>Reassuring colors and fonts</li><li>Great use of light backgrounds, bold colors and images</li><li>Relevant supplementary pages for the niche</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"Well-designed website template ideal for clinics, hospitals, doctors and medicine\";s:5:\"pages\";a:5:{s:8:\"id-47550\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/09/diagnostics-lab-04.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/09/diagnostics-lab-04.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/diagnostics-lab-02/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/diagnostics-lab-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47548\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/09/diagnostics-lab-02-about-us.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/09/diagnostics-lab-02-about-us.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/diagnostics-lab-02/wp-json/wp/v2/pages/134\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/diagnostics-lab-02/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47551\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/09/diagnostics-lab-02-services.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/09/diagnostics-lab-02-services.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/diagnostics-lab-02/wp-json/wp/v2/pages/157\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/diagnostics-lab-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47552\";a:12:{s:5:\"title\";s:11:\"Testimonial\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/09/diagnostics-lab-02-testimonial.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/09/diagnostics-lab-02-testimonial.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/diagnostics-lab-02/wp-json/wp/v2/pages/170\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/diagnostics-lab-02/testimonial/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47549\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/09/diagnostics-lab-04-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/09/diagnostics-lab-04-contact-us.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/diagnostics-lab-02/wp-json/wp/v2/pages/183\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/diagnostics-lab-02/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:47547;s:26:\"related-gutenberg-template\";i:47672;}s:8:\"id-48061\";a:22:{s:5:\"title\";s:21:\"Online Cooking Course\";s:2:\"id\";i:48061;s:12:\"publish-date\";i:1603831834;s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-08-2.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-08-2-600x1445.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-08-2-400x963.jpg\";s:14:\"astra-site-url\";s:43:\"//websitedemos.net/online-cooking-course-08\";s:20:\"astra-site-parent-id\";i:1696;s:15:\"astra-sites-tag\";a:6:{i:1679;s:14:\"cooking-course\";i:468;s:9:\"elearning\";i:467;s:9:\"learndash\";i:719;s:15:\"online-coaching\";i:466;s:14:\"online-courses\";i:975;s:15:\"online-learning\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:5:{i:2835;s:9:\"elearning\";i:2785;s:4:\"food\";i:2880;s:10:\"membership\";i:2827;s:13:\"online-course\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:2;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-48065\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-08-2.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-08-2-600x1445.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/online-cooking-course-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/online-cooking-course-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48063\";a:12:{s:5:\"title\";s:11:\"All Courses\";s:18:\"featured-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-08-all-courses-2.jpg\";s:19:\"thumbnail-image-url\";s:103:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-08-all-courses-2-600x1153.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/online-cooking-course-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:56:\"//websitedemos.net/online-cooking-course-08/all-courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48062\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-08-about-2.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-08-about-2-600x1190.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/online-cooking-course-08/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/online-cooking-course-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48064\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-08-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-08-contact-2-600x859.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/online-cooking-course-08/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/online-cooking-course-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21821\";a:22:{s:5:\"title\";s:15:\"Custom Printing\";s:2:\"id\";i:21821;s:12:\"publish-date\";i:1556523458;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/10/custom-printing-03-home-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/10/custom-printing-03-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/10/custom-printing-03-home-1.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/custom-printing-03\";s:20:\"astra-site-parent-id\";i:318;s:15:\"astra-sites-tag\";a:20:{i:2418;s:8:\"commerce\";i:400;s:15:\"custom-printing\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2419;s:9:\"eshopping\";i:881;s:12:\"mug-printing\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:967;s:13:\"product-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:405;s:16:\"t-shirt-printing\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:8:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:9:\"cartflows\";s:4:\"init\";s:23:\"cartflows/cartflows.php\";s:4:\"name\";s:9:\"CartFlows\";}i:3;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:4;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:5;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:6;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:7;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-34081\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/10/custom-printing-03-home-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/10/custom-printing-03-home-1.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/custom-printing-03/wp-json/wp/v2/pages/95\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/custom-printing-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-26341\";a:12:{s:5:\"title\";s:9:\"About HDX\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/10/custom-printing-03-about.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/10/custom-printing-03-about.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/custom-printing-03/wp-json/wp/v2/pages/96\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/custom-printing-03/about-hdx/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-26344\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/10/custom-printing-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/10/custom-printing-03-contact.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/custom-printing-03/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/custom-printing-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47023\";a:22:{s:5:\"title\";s:21:\"Women Empowerment NGO\";s:2:\"id\";i:47023;s:12:\"publish-date\";i:1596836442;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/08/women-empowerment-02.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/08/women-empowerment-02.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/08/women-empowerment-02.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/women-empowerment-02\";s:20:\"astra-site-parent-id\";i:1590;s:15:\"astra-sites-tag\";a:2:{i:1592;s:3:\"ngo\";i:1591;s:17:\"women-empowerment\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:5:{i:2786;s:17:\"charity-nonprofit\";i:2872;s:19:\"donation-fundraiser\";i:2784;s:5:\"event\";i:2821;s:14:\"feminine-girly\";i:2871;s:3:\"ngo\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2492;s:10:\"non-profit\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1010:\"<!-- wp:paragraph -->\n<p>The Women Empowerment NGO template delivers a pleasant feel as soon as it loads. It opens with a fullscreen image header with soft colors and modest headline before flowing into an alternating light and dark homepage.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design uses soft colors and fonts throughout to create somewhere you want to spend time. With a range of flexible content areas, lots of space to tell your story and relevant calls to action, including a donation element, this is the ideal theme for nonprofits.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Women Empowerment NGO template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Pleasant, welcoming website template for nonprofits</li><li>Soft colors and fonts make you feel wanted</li><li>Alternating light and dark areas with parallax effects</li><li>Donation and calls to action elements</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:72:\"Pleasant web template designed for good causes, nonprofits and charities\";s:5:\"pages\";a:6:{s:8:\"id-47028\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/08/women-empowerment-02.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/08/women-empowerment-02.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/women-empowerment-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/women-empowerment-02/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47024\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/08/women-empowerment-02-about-us.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/08/women-empowerment-02-about-us.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/women-empowerment-02/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/women-empowerment-02/about-us/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47029\";a:12:{s:5:\"title\";s:10:\"What We Do\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/08/women-empowerment-02-what-we-do.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/08/women-empowerment-02-what-we-do.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/women-empowerment-02/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/women-empowerment-02/what-we-do/\";s:15:\"astra-sites-tag\";a:1:{i:628;s:10:\"what-we-do\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47026\";a:12:{s:5:\"title\";s:6:\"Events\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/08/women-empowerment-02-events.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/08/women-empowerment-02-events.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/women-empowerment-02/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/women-empowerment-02/events/\";s:15:\"astra-sites-tag\";a:2:{i:1569;s:6:\"events\";i:989;s:8:\"programs\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47027\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/08/women-empowerment-02-gallery.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/08/women-empowerment-02-gallery.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/women-empowerment-02/wp-json/wp/v2/pages/18\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/women-empowerment-02/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47025\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/08/women-empowerment-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/08/women-empowerment-02-contact.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/women-empowerment-02/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/women-empowerment-02/contact/\";s:15:\"astra-sites-tag\";a:4:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";i:896;s:13:\"get-connected\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:47023;s:26:\"related-gutenberg-template\";i:64787;}s:8:\"id-48447\";a:22:{s:5:\"title\";s:21:\"Women Empowerment NGO\";s:2:\"id\";i:48447;s:12:\"publish-date\";i:1603927254;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-1-600x3142.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-1-400x2094.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/women-empowerment-08\";s:20:\"astra-site-parent-id\";i:1735;s:15:\"astra-sites-tag\";a:3:{i:625;s:7:\"charity\";i:1592;s:3:\"ngo\";i:1591;s:17:\"women-empowerment\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:39;s:4:\"free\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:5:{i:2786;s:17:\"charity-nonprofit\";i:2872;s:19:\"donation-fundraiser\";i:2784;s:5:\"event\";i:2821;s:14:\"feminine-girly\";i:2871;s:3:\"ngo\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2492;s:10:\"non-profit\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-48448\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-about-us-1.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-about-us-1-600x2417.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/women-empowerment-08/wp-json/wp/v2/pages/357\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/women-empowerment-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48449\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-contact-1-600x1616.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/women-empowerment-08/wp-json/wp/v2/pages/442\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/women-empowerment-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48450\";a:12:{s:5:\"title\";s:6:\"Events\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-events-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-events-1-600x1711.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/women-empowerment-08/wp-json/wp/v2/pages/418\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/women-empowerment-08/events/\";s:15:\"astra-sites-tag\";a:1:{i:409;s:5:\"event\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48451\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-gallery-1.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-gallery-1-600x1590.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/women-empowerment-08/wp-json/wp/v2/pages/426\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/women-empowerment-08/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48452\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-1-600x3142.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/women-empowerment-08/wp-json/wp/v2/pages/297\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/women-empowerment-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48453\";a:12:{s:5:\"title\";s:10:\"What We Do\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-what-we-do-1.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-what-we-do-1-600x2048.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/women-empowerment-08/wp-json/wp/v2/pages/403\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/women-empowerment-08/what-we-do/\";s:15:\"astra-sites-tag\";a:1:{i:628;s:10:\"what-we-do\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-46688\";a:22:{s:5:\"title\";s:21:\"Inspirational Speaker\";s:2:\"id\";i:46688;s:12:\"publish-date\";i:1595356079;s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/06/inspirational-speaker-03-home.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/06/inspirational-speaker-03-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/06/inspirational-speaker-03-home.jpg\";s:14:\"astra-site-url\";s:43:\"//websitedemos.net/inspirational-speaker-04\";s:20:\"astra-site-parent-id\";i:1550;s:15:\"astra-sites-tag\";a:6:{i:1548;s:9:\"encourage\";i:1549;s:10:\"enthusiasm\";i:1547;s:10:\"influencer\";i:1546;s:11:\"inspiration\";i:1545;s:21:\"inspirational-speaker\";i:609;s:9:\"motivator\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2825;s:8:\"coaching\";i:2821;s:14:\"feminine-girly\";i:2827;s:13:\"online-course\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:958:\"<!-- wp:paragraph -->\n<p>The Inspirational Speaker template is a light, welcoming design with a pastel palette and soft fonts. It creates a feeling of calm as soon as it loads, drawing you in and making you want to learn more, ideal for growing or engaging with your audience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The theme uses a standard business layout with product and service sections, a biography area, a timeline for events, client testimonials and an attractive contact form to book appointments. It’s such a nice design!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Inspirational Speaker template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Calm website design with a warm welcome</li><li>Lots of flexible content areas to tell your story</li><li>Pastel color palette with complementing elements</li><li>Soft fonts</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:76:\"Calm web design that makes you feel welcome, ideal for speakers and wellness\";s:5:\"pages\";a:5:{s:8:\"id-46693\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/06/inspirational-speaker-03-home.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/06/inspirational-speaker-03-home.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/inspirational-speaker-04/wp-json/wp/v2/pages/27\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/inspirational-speaker-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-46689\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/06/inspirational-speaker-03-about.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/06/inspirational-speaker-03-about.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/inspirational-speaker-04/wp-json/wp/v2/pages/223\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/inspirational-speaker-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46691\";a:12:{s:5:\"title\";s:7:\"Courses\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/06/inspirational-speaker-03-courses.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/06/inspirational-speaker-03-courses.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/inspirational-speaker-04/wp-json/wp/v2/pages/228\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/inspirational-speaker-04/courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46692\";a:12:{s:5:\"title\";s:6:\"Events\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/06/inspirational-speaker-03-events.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/06/inspirational-speaker-03-events.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/inspirational-speaker-04/wp-json/wp/v2/pages/230\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/inspirational-speaker-04/events/\";s:15:\"astra-sites-tag\";a:1:{i:409;s:5:\"event\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46690\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/06/inspirational-speaker-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/06/inspirational-speaker-03-contact.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/inspirational-speaker-04/wp-json/wp/v2/pages/226\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/inspirational-speaker-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-46941\";a:22:{s:5:\"title\";s:8:\"Musician\";s:2:\"id\";i:46941;s:12:\"publish-date\";i:1596730045;s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/08/musician-02.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/08/musician-02.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/08/musician-02.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/musician-02\";s:20:\"astra-site-parent-id\";i:1564;s:15:\"astra-sites-tag\";a:5:{i:339;s:6:\"artist\";i:969;s:8:\"musician\";i:1572;s:9:\"performer\";i:1571;s:6:\"singer\";i:1573;s:8:\"vocalist\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:5:{i:2777;s:8:\"business\";i:2869;s:2:\"dj\";i:2781;s:5:\"music\";i:2868;s:15:\"musician-singer\";i:2829;s:7:\"podcast\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2486;s:9:\"art-music\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1092:\"<!-- wp:paragraph -->\n<p>The Musician website template is a dark design with bold red colorway that instantly engages. It uses a shaded image background overlaid with a parallax effect to communicate, along with a biography, tour date section, latest released and lots of opportunity to engage with your fans.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design is bold and will definitely stand out. Everything is customizable though, so if black and red don’t work, you can choose any color. Extra pages all reflect the core design and add more opportunities to tell your story and engage, along with a contract page to make it as easy as possible.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Musician template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Impactful dark design with bold color</li><li>Parallax effect with shaded image background</li><li>Artist-related elements such as tour dates and latest releases</li><li>Extra pages relevant to musicians</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:69:\"Dark modern web template ideal for promoting bands, DJs and musicians\";s:5:\"pages\";a:6:{s:8:\"id-46947\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/08/musician-02.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/08/musician-02.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/musician-02/wp-json/wp/v2/pages/167\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/musician-02/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46943\";a:12:{s:5:\"title\";s:9:\"Biography\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/08/musician-02-biography.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/08/musician-02-biography.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/musician-02/wp-json/wp/v2/pages/294\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/musician-02/biography/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:1566;s:9:\"biography\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46944\";a:12:{s:5:\"title\";s:8:\"Concerts\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/08/musician-02-concerts.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/08/musician-02-concerts.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/musician-02/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/musician-02/concerts/\";s:15:\"astra-sites-tag\";a:3:{i:1567;s:8:\"concerts\";i:1569;s:6:\"events\";i:1568;s:5:\"shows\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46942\";a:12:{s:5:\"title\";s:6:\"Albums\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/08/musician-02-albums.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/08/musician-02-albums.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/musician-02/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/musician-02/albums/\";s:15:\"astra-sites-tag\";a:3:{i:1565;s:6:\"albums\";i:763;s:11:\"discography\";i:407;s:5:\"music\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46946\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/08/musician-02-gallery.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/08/musician-02-gallery.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/musician-02/wp-json/wp/v2/pages/19\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/musician-02/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46945\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/08/musician-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/08/musician-02-contact.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/musician-02/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/musician-02/contact/\";s:15:\"astra-sites-tag\";a:4:{i:415;s:7:\"contact\";i:1009;s:10:\"contact-me\";i:896;s:13:\"get-connected\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:46941;s:26:\"related-gutenberg-template\";i:48611;}s:8:\"id-48611\";a:22:{s:5:\"title\";s:8:\"Musician\";s:2:\"id\";i:48611;s:12:\"publish-date\";i:1603984612;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-1-600x2594.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-1-400x1729.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/musician-08\";s:20:\"astra-site-parent-id\";i:1752;s:15:\"astra-sites-tag\";a:5:{i:339;s:6:\"artist\";i:969;s:8:\"musician\";i:1572;s:9:\"performer\";i:1571;s:6:\"singer\";i:1573;s:8:\"vocalist\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2486;s:9:\"art-music\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-48612\";a:12:{s:5:\"title\";s:6:\"Albums\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-albums-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-albums-1-600x1455.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/musician-08/wp-json/wp/v2/pages/437\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/musician-08/albums/\";s:15:\"astra-sites-tag\";a:2:{i:1565;s:6:\"albums\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48617\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-1-600x2594.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/musician-08/wp-json/wp/v2/pages/296\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/musician-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48613\";a:12:{s:5:\"title\";s:9:\"Biography\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-biography-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-biography-1-600x1374.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/musician-08/wp-json/wp/v2/pages/408\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/musician-08/biography/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:1566;s:9:\"biography\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48614\";a:12:{s:5:\"title\";s:8:\"Concerts\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-concerts-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-concerts-1-600x1007.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/musician-08/wp-json/wp/v2/pages/432\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/musician-08/concerts/\";s:15:\"astra-sites-tag\";a:1:{i:755;s:7:\"concert\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48616\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-gallery-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-gallery-1-600x1131.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/musician-08/wp-json/wp/v2/pages/443\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/musician-08/gallery/\";s:15:\"astra-sites-tag\";a:2:{i:461;s:7:\"gallery\";i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48615\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-contact-1-600x827.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/musician-08/wp-json/wp/v2/pages/451\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/musician-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55517\";a:22:{s:5:\"title\";s:18:\"Portfolio &amp; CV\";s:2:\"id\";i:55517;s:12:\"publish-date\";i:1622060981;s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-02.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-02.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-02.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/portfolio-02\";s:20:\"astra-site-parent-id\";i:2149;s:15:\"astra-sites-tag\";a:6:{i:2151;s:16:\"curriculum-vitae\";i:2150;s:2:\"cv\";i:1903;s:16:\"personal-website\";i:444;s:9:\"portfolio\";i:2153;s:6:\"resume\";i:2152;s:12:\"work-profile\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:39;s:4:\"free\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:4:{i:2810;s:9:\"freelance\";i:2770;s:8:\"personal\";i:2768;s:9:\"portfolio\";i:2783;s:6:\"resume\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1096:\"<!-- wp:paragraph -->\n<p>The Portfolio &amp; CV website template is the perfect way to showcase yourself and your skills to potential employers. It has a professional design with calm colors, modern fonts and lots of content areas to show off your skills and experience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes flexible content areas you can customize to your particular skills and showcase them in the best way possible. The template includes skills graphics and a timeline to easily communicate key still and experience. There’s also an attractive portfolio and contact page to help seal the deal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Portfolio &amp; CV template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Professional portfolio website with CV elements</li><li>Calm, competent design to showcase skills and experience</li><li>Image-based portfolio, ideal for showcasing previous work</li><li>Graphical skills and timeline elements</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:71:\"Professional web template with portfolio and CV perfect for job seekers\";s:5:\"pages\";a:5:{s:8:\"id-55518\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-02-about.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-02-about.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/portfolio-02/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/portfolio-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55519\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-02-contact.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/portfolio-02/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/portfolio-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55520\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-02.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-02.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/portfolio-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/portfolio-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55521\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-02-portfolio.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-02-portfolio.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/portfolio-02/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/portfolio-02/portfolio/\";s:15:\"astra-sites-tag\";a:2:{i:444;s:9:\"portfolio\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55522\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-02-services.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-02-services.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/portfolio-02/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/portfolio-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:55517;s:26:\"related-gutenberg-template\";i:55511;}s:8:\"id-55511\";a:22:{s:5:\"title\";s:19:\"Portfolio &#038; CV\";s:2:\"id\";i:55511;s:12:\"publish-date\";i:1622061009;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-1.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-1-600x2690.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-1-400x1793.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/portfolio-08\";s:20:\"astra-site-parent-id\";i:2148;s:15:\"astra-sites-tag\";a:6:{i:2151;s:16:\"curriculum-vitae\";i:2150;s:2:\"cv\";i:1903;s:16:\"personal-website\";i:444;s:9:\"portfolio\";i:2153;s:6:\"resume\";i:2152;s:12:\"work-profile\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:39;s:4:\"free\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-55512\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-about-1-600x1828.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/portfolio-08/wp-json/wp/v2/pages/345\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/portfolio-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55513\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-contact-1-600x896.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/portfolio-08/wp-json/wp/v2/pages/375\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/portfolio-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55514\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-1.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-1-600x2690.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/portfolio-08/wp-json/wp/v2/pages/298\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/portfolio-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55515\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-portfolio-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-portfolio-1-600x1826.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/portfolio-08/wp-json/wp/v2/pages/366\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/portfolio-08/portfolio/\";s:15:\"astra-sites-tag\";a:2:{i:444;s:9:\"portfolio\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55516\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-services-1-600x1165.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/portfolio-08/wp-json/wp/v2/pages/359\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/portfolio-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48671\";a:22:{s:5:\"title\";s:12:\"Tech Startup\";s:2:\"id\";i:48671;s:12:\"publish-date\";i:1603984602;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/10/tech-startup-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/tech-startup-08-600x2357.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/tech-startup-08-400x1571.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/tech-startup-08\";s:20:\"astra-site-parent-id\";i:1758;s:15:\"astra-sites-tag\";a:7:{i:1761;s:11:\"application\";i:745;s:12:\"organization\";i:1762;s:16:\"software-company\";i:1760;s:13:\"software-firm\";i:1665;s:7:\"startup\";i:1759;s:13:\"tech-business\";i:1763;s:12:\"tech-startup\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-48672\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/tech-startup-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/tech-startup-08-about-us-600x2175.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/tech-startup-08/wp-json/wp/v2/pages/248\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/tech-startup-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48673\";a:12:{s:5:\"title\";s:8:\"Features\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/tech-startup-08-features-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/tech-startup-08-features-1-600x2647.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/tech-startup-08/wp-json/wp/v2/pages/249\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/tech-startup-08/features/\";s:15:\"astra-sites-tag\";a:1:{i:453;s:8:\"features\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48674\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/10/tech-startup-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/tech-startup-08-600x2357.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/tech-startup-08/wp-json/wp/v2/pages/247\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/tech-startup-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48675\";a:12:{s:5:\"title\";s:4:\"Plan\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/tech-startup-08-plan-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/tech-startup-08-plan-1-600x1310.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/tech-startup-08/wp-json/wp/v2/pages/250\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/tech-startup-08/plan/\";s:15:\"astra-sites-tag\";a:2:{i:1663;s:4:\"plan\";i:585;s:7:\"pricing\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(213,'astra-sites-and-pages-page-19','a:15:{s:8:\"id-49795\";a:22:{s:5:\"title\";s:18:\"Learn Oil Painting\";s:2:\"id\";i:49795;s:12:\"publish-date\";i:1612553999;s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-oil-painting-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-oil-painting-02-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-oil-painting-02-homepage.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/learn-oil-painting-02\";s:20:\"astra-site-parent-id\";i:1851;s:15:\"astra-sites-tag\";a:4:{i:462;s:7:\"courses\";i:467;s:9:\"learndash\";i:975;s:15:\"online-learning\";i:720;s:9:\"tutorials\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:7:{i:2802;s:6:\"artist\";i:2825;s:8:\"coaching\";i:2835;s:9:\"elearning\";i:2880;s:10:\"membership\";i:2827;s:13:\"online-course\";i:2770;s:8:\"personal\";i:2873;s:5:\"tutor\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:2;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:13:\"presto-player\";s:4:\"init\";s:31:\"presto-player/presto-player.php\";s:4:\"name\";s:13:\"Presto Player\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:938:\"<!-- wp:paragraph -->\n<p>The Learn Oil Painting template is built ready for eLearning. While art is the subject here, it could easily be customized to suit any niche. It’s an informative website with great colors, a mix of elegant fonts and some powerful imagery.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes an attractive block effect with lots of space for content and images. It has areas to outline courses, attractive course pages, a testimonials section and a selection of supplementary pages ideal for eLearning.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Learn Oil Painting template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Informative design ideal for eLearning</li><li>Great use of colors and fonts</li><li>Course pages already made</li><li>Flexible content areas throughout</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:67:\"Informative web template for online courses or eLearning businesses\";s:5:\"pages\";a:4:{s:8:\"id-49796\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-oil-painting-02-about.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-oil-painting-02-about.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/learn-oil-painting-02/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/learn-oil-painting-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49797\";a:12:{s:5:\"title\";s:7:\"Classes\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-oil-painting-02-classes.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-oil-painting-02-classes.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/learn-oil-painting-02/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/learn-oil-painting-02/classes/\";s:15:\"astra-sites-tag\";a:1:{i:557;s:7:\"classes\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49798\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-oil-painting-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-oil-painting-02-contact.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/learn-oil-painting-02/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/learn-oil-painting-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-49799\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-oil-painting-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/02/learn-oil-painting-02-homepage.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/learn-oil-painting-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/learn-oil-painting-02/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47565\";a:22:{s:5:\"title\";s:28:\"Hairdressers and Hair Salons\";s:2:\"id\";i:47565;s:12:\"publish-date\";i:1600968683;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/09/hair-salon-04-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/09/hair-salon-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/09/hair-salon-04-home.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/hair-salon-04\";s:20:\"astra-site-parent-id\";i:1641;s:15:\"astra-sites-tag\";a:7:{i:474;s:8:\"grooming\";i:477;s:9:\"hair-care\";i:1645;s:8:\"hair-cut\";i:1642;s:10:\"hair-salon\";i:1644;s:12:\"hair-styling\";i:1646;s:23:\"professional-hair-salon\";i:1643;s:7:\"styling\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2790;s:14:\"beauty-fashion\";i:2777;s:8:\"business\";i:2890;s:15:\"makeup-cosmetic\";i:2837;s:5:\"salon\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2479;s:6:\"beauty\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1067:\"<!-- wp:paragraph -->\n<p>The Hairdresser and Hair Salon template uses fullscreen design to maximum effect, ideal for the hair and beauty niche. The homepage opens with a fullscreen image with bold headline and complementing colors before opening into attractive content areas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The colors have been well-chosen, with complementing colors throughout that create a luxury vibe without being too much. A selection of flexible content areas throughout, spaces for videos, a service list, testimonials and a booking form should be everything a hair salon needs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Hairdresser and Hair Salon template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Luxurious design with some very attractive elements</li><li>Fullscreen design that works perfectly on large and small screens</li><li>Space for product and service lists on homepage</li><li>Engaging images throughout</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:75:\"Luxurious website template that could work for hairdressers and hair salons\";s:5:\"pages\";a:5:{s:8:\"id-47567\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/09/hair-salon-04-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/09/hair-salon-04-home.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/hair-salon-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/hair-salon-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47569\";a:12:{s:5:\"title\";s:6:\"Salons\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/09/hair-salon-04-salon.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/09/hair-salon-04-salon.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/hair-salon-04/wp-json/wp/v2/pages/247\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/hair-salon-04/salons/\";s:15:\"astra-sites-tag\";a:3:{i:352;s:5:\"about\";i:905;s:9:\"our-story\";i:650;s:5:\"salon\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47570\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/09/hair-salon-04-services.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/09/hair-salon-04-services.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/hair-salon-04/wp-json/wp/v2/pages/290\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/hair-salon-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47568\";a:12:{s:5:\"title\";s:7:\"Reviews\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/09/hair-salon-04-reviews.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/09/hair-salon-04-reviews.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/hair-salon-04/wp-json/wp/v2/pages/317\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/hair-salon-04/reviews/\";s:15:\"astra-sites-tag\";a:2:{i:1615;s:7:\"reviews\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47566\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/09/hair-salon-04-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/09/hair-salon-04-contact-us.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/hair-salon-04/wp-json/wp/v2/pages/340\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/hair-salon-04/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-54423\";a:22:{s:5:\"title\";s:11:\"Coffee Shop\";s:2:\"id\";i:54423;s:12:\"publish-date\";i:1621457260;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/coffee-shop-02.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/coffee-shop-02.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/coffee-shop-02.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/coffee-shop-02\";s:20:\"astra-site-parent-id\";i:2031;s:15:\"astra-sites-tag\";a:10:{i:693;s:4:\"cafe\";i:2042;s:8:\"cafe-bar\";i:1527;s:9:\"cafeteria\";i:2043;s:12:\"coffee-house\";i:1575;s:11:\"coffee-shop\";i:399;s:8:\"one-page\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:335;s:10:\"restaurant\";i:2041;s:9:\"snack-bar\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2785;s:4:\"food\";i:2771;s:8:\"one-page\";i:2776;s:10:\"restaurant\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2927;s:8:\"one-page\";i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:969:\"<!-- wp:paragraph -->\n<p>The Coffee Shop template is a smart modern design with a fullscreen image on the homepage that instantly communicates what the page is about. The rest of the design opens into alternating image and white backgrounds featuring content and product areas ideal for coffee shops.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The rest of the template has a similarly pleasing design with customizable content areas, lots of space for images, a menu, testimonials and all the other elements a business website needs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Coffee Shop template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Smart modern design ideal for cafes and coffee shops</li><li>Great balance of color, images and whitespace</li><li>Simple but effective extra pages</li><li>Can work with WooCommerce for online sales</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:73:\"Modern coffee shop template ideal for cafes, bistros and other businesses\";s:5:\"pages\";a:1:{s:8:\"id-54424\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/coffee-shop-02.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/coffee-shop-02.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/coffee-shop-02/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/coffee-shop-02/\";s:15:\"astra-sites-tag\";a:3:{i:423;s:4:\"home\";i:399;s:8:\"one-page\";i:463;s:11:\"single-page\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:49457;s:26:\"related-gutenberg-template\";i:54442;}s:8:\"id-46285\";a:22:{s:5:\"title\";s:15:\"Moving Services\";s:2:\"id\";i:46285;s:12:\"publish-date\";i:1590081788;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-home.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-home.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/moving-services-04\";s:20:\"astra-site-parent-id\";i:1530;s:15:\"astra-sites-tag\";a:5:{i:1021;s:14:\"local-business\";i:364;s:6:\"movers\";i:365;s:7:\"packers\";i:1535;s:10:\"relocation\";i:366;s:9:\"transport\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2854;s:7:\"courier\";i:2831;s:7:\"service\";i:2806;s:14:\"transportation\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2473;s:9:\"transport\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:947:\"<!-- wp:paragraph -->\n<p>The Moving Services template delivers a bright welcome as soon as it loads. The homepage has a fullscreen header with bright colors, an engaging image and bold headline to make an instant impact.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The rest of the template backs up that impact with vibrant colors, plenty of whitespace, modern fonts and lots of content areas to share your products, services and essential information. There’s also a simple contact form, ready for engagement!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Moving Services template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Impactful fullscreen header with bold image and colors</li><li>Bright and welcoming design draws you in</li><li>Lots of customizable content areas throughout</li><li>Contact form on the homepage</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:76:\"Easygoing website template perfect for movers, moving companies and removals\";s:5:\"pages\";a:6:{s:8:\"id-46289\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-home.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-home.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/moving-services-04/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/moving-services-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-46286\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-about-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-about-1.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/moving-services-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/moving-services-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46290\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-services-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-services-1.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/moving-services-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/moving-services-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46291\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-reviews.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-reviews.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/moving-services-04/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/moving-services-04/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46288\";a:12:{s:5:\"title\";s:11:\"FAQ&#8217;s\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-faq.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-faq.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/moving-services-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/moving-services-04/faqs/\";s:15:\"astra-sites-tag\";a:1:{i:426;s:3:\"faq\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46287\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-contact-1.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/moving-services-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/moving-services-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:46305;s:26:\"related-elementor-template\";i:46285;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-46305\";a:22:{s:5:\"title\";s:15:\"Moving Services\";s:2:\"id\";i:46305;s:12:\"publish-date\";i:1590081787;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-home-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-home-1.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/moving-services-03\";s:20:\"astra-site-parent-id\";i:1531;s:15:\"astra-sites-tag\";a:5:{i:1021;s:14:\"local-business\";i:364;s:6:\"movers\";i:365;s:7:\"packers\";i:1535;s:10:\"relocation\";i:366;s:9:\"transport\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2473;s:9:\"transport\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-46309\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-home-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-home-1.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/moving-services-03/wp-json/wp/v2/pages/232\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/moving-services-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-46306\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-about-2.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-about-2.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/moving-services-03/wp-json/wp/v2/pages/234\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/moving-services-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-46310\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-services-2.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-services-2.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/moving-services-03/wp-json/wp/v2/pages/235\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/moving-services-03/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-46311\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-testimonials-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-testimonials-1.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/moving-services-03/wp-json/wp/v2/pages/236\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/moving-services-03/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-46308\";a:12:{s:5:\"title\";s:11:\"FAQ&#8217;s\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-faq-1.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-faq-1.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/moving-services-03/wp-json/wp/v2/pages/237\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/moving-services-03/faqs/\";s:15:\"astra-sites-tag\";a:1:{i:426;s:3:\"faq\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-46307\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/06/moving-services-04-contact-2.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/moving-services-03/wp-json/wp/v2/pages/238\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/moving-services-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-49412\";a:22:{s:5:\"title\";s:17:\"Bike Modification\";s:2:\"id\";i:49412;s:12:\"publish-date\";i:1608714973;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/12/bike-modification-04.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/12/bike-modification-04.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/12/bike-modification-04.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/bike-modification-04\";s:20:\"astra-site-parent-id\";i:1829;s:15:\"astra-sites-tag\";a:4:{i:1831;s:10:\"automobile\";i:1830;s:17:\"bike-modification\";i:1832;s:12:\"custom-bikes\";i:667;s:11:\"repair-shop\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2800;s:14:\"car-automotive\";i:2777;s:8:\"business\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2475;s:10:\"automotive\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:2;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1209:\"<!-- wp:paragraph -->\n<p>The Bike Modification template is bold. It’s a dark design with a strong green contrast color and full screen image header. It’s not afraid to make a statement and is ideal for the target market.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes lots of content areas to share products and services, some animations, graphics, a gallery and testimonials section, ideal for a business looking to expand its reach. The template also comes with extra pages already designed, ready to promote your business.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Bike Modification template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Bold dark design not afraid to stand out</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Bright contrast color to draw you in</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Excellent content areas ideal for the niche</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Extra pages reflect the homepage design</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:80:\"Daring dark web template ideal for motorcycles, bike customizers and enthusiasts\";s:5:\"pages\";a:6:{s:8:\"id-49413\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/12/bike-modification-04-about-us.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/12/bike-modification-04-about-us.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/bike-modification-04/wp-json/wp/v2/pages/896\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/bike-modification-04/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49414\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/12/bike-modification-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/12/bike-modification-04-contact.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/bike-modification-04/wp-json/wp/v2/pages/782\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/bike-modification-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-49415\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/12/bike-modification-04.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/12/bike-modification-04.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/bike-modification-04/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/bike-modification-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49416\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/12/bike-modification-04-services.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/12/bike-modification-04-services.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/bike-modification-04/wp-json/wp/v2/pages/568\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/bike-modification-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49417\";a:12:{s:5:\"title\";s:11:\"Testimonial\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/12/bike-modification-04-testimonial.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/12/bike-modification-04-testimonial.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/bike-modification-04/wp-json/wp/v2/pages/655\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/bike-modification-04/testimonial/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-49418\";a:12:{s:5:\"title\";s:5:\"Works\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/12/bike-modification-04-works.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/12/bike-modification-04-works.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/bike-modification-04/wp-json/wp/v2/pages/408\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/bike-modification-04/works/\";s:15:\"astra-sites-tag\";a:3:{i:997;s:8:\"our-work\";i:444;s:9:\"portfolio\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-45466\";a:22:{s:5:\"title\";s:16:\"Co-Working Space\";s:2:\"id\";i:45466;s:12:\"publish-date\";i:1584036009;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-04.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-04.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-04.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/co-working-space-04\";s:20:\"astra-site-parent-id\";i:1443;s:15:\"astra-sites-tag\";a:5:{i:692;s:8:\"business\";i:694;s:16:\"co-working-place\";i:695;s:13:\"collaboration\";i:1453;s:15:\"coworking-space\";i:691;s:10:\"work-place\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:1:{i:2777;s:8:\"business\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1021:\"<!-- wp:paragraph -->\n<p>The Co-Working Space website template is cool, contemporary and communicative. Exactly what you need from a business website. It’s colorful, with a full screen header on the homepage and uses modern fonts, shaded backgrounds and nice graphics to elevate the experience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes lots of areas for sharing products and services, a gallery for showcasing the building and amenities and an attractive pricing section. Supplementary pages are all geared around co-working and deliver readymade pages to customize.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Co-Working Space template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Communicative design with a modern touch</li><li>Vibrant colors create engagement</li><li>Flexible content areas to showcase products and services</li><li>Gallery option to show and tell</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:70:\"Contemporary, colorful web template for modern businesses of all kinds\";s:5:\"pages\";a:5:{s:8:\"id-45469\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-04.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-04.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/co-working-space-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/co-working-space-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-45467\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-04-about-us.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-04-about-us.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/co-working-space-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/co-working-space-04/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-45471\";a:12:{s:5:\"title\";s:9:\"Workspace\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-04-workspace.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-04-workspace.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/co-working-space-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/co-working-space-04/workspace/\";s:15:\"astra-sites-tag\";a:2:{i:451;s:4:\"work\";i:1444;s:9:\"workspace\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-45470\";a:12:{s:5:\"title\";s:7:\"Pricing\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-04-pricing-pro.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-04-pricing-pro.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/co-working-space-04/wp-json/wp/v2/pages/20\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/co-working-space-04/pricing/\";s:15:\"astra-sites-tag\";a:1:{i:585;s:7:\"pricing\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-45468\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-04-contact-pro.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-04-contact-pro.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/co-working-space-04/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/co-working-space-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:45483;s:26:\"related-elementor-template\";i:45466;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-45483\";a:22:{s:5:\"title\";s:16:\"Co-Working Space\";s:2:\"id\";i:45483;s:12:\"publish-date\";i:1585154177;s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-03-home.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-03-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-03-home.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/co-working-space-03\";s:20:\"astra-site-parent-id\";i:1445;s:15:\"astra-sites-tag\";a:5:{i:692;s:8:\"business\";i:694;s:16:\"co-working-place\";i:695;s:13:\"collaboration\";i:1453;s:15:\"coworking-space\";i:691;s:10:\"work-place\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-45486\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-03-home.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-03-home.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/co-working-space-03/wp-json/wp/v2/pages/476\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/co-working-space-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45484\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-03-about.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-03-about.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/co-working-space-03/wp-json/wp/v2/pages/478\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/co-working-space-03/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45488\";a:12:{s:5:\"title\";s:9:\"Workspace\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-03-workspace.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-03-workspace.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/co-working-space-03/wp-json/wp/v2/pages/479\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/co-working-space-03/workspace/\";s:15:\"astra-sites-tag\";a:2:{i:451;s:4:\"work\";i:1444;s:9:\"workspace\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45487\";a:12:{s:5:\"title\";s:7:\"Pricing\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-03-pricing.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-03-pricing.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/co-working-space-03/wp-json/wp/v2/pages/480\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/co-working-space-03/pricing/\";s:15:\"astra-sites-tag\";a:1:{i:585;s:7:\"pricing\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45485\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/03/co-working-space-03-contact.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/co-working-space-03/wp-json/wp/v2/pages/481\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/co-working-space-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47052\";a:22:{s:5:\"title\";s:12:\"Elderly Home\";s:2:\"id\";i:47052;s:12:\"publish-date\";i:1597077645;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/08/elderly-care-02.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/08/elderly-care-02.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/08/elderly-care-02.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/elderly-care-02\";s:20:\"astra-site-parent-id\";i:1593;s:15:\"astra-sites-tag\";a:5:{i:1598;s:24:\"assisted-living-facility\";i:1596;s:10:\"elder-home\";i:1595;s:11:\"elders-care\";i:1594;s:12:\"old-age-home\";i:1597;s:15:\"retirement-home\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:1:{i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2872;s:19:\"donation-fundraiser\";i:2834;s:10:\"healthcare\";i:2871;s:3:\"ngo\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2492;s:10:\"non-profit\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1067:\"<!-- wp:paragraph -->\n<p>The Elderly Home template has a friendly feel with a full screen image and calm colors throughout. The homepage opens with a full screen image and contact details front and center before unfolding into a white background with a selection of relevant content areas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template has been aimed at nursing and care homes and uses a number of flexible content areas, graphics and images to tell the story. There’s also a modest parallax effect, some nice animations and information boxes to help engage readers, ideal for any business.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Elderly Home template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Friendly, welcoming feel ideal for the elderly care niche</li><li>Calm colors with a mixture of full page areas and white backgrounds</li><li>Flexible content areas throughout</li><li>Subtle page effects elevate the experience</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:70:\"Friendly and welcoming web template for nursing homes and elderly care\";s:5:\"pages\";a:5:{s:8:\"id-47056\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/08/elderly-care-02.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/08/elderly-care-02.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/elderly-care-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/elderly-care-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47053\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/08/elderly-care-02-about.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/08/elderly-care-02-about.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/elderly-care-02/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/elderly-care-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47057\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/08/elderly-care-02-services.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/08/elderly-care-02-services.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/elderly-care-02/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/elderly-care-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47055\";a:12:{s:5:\"title\";s:10:\"Facilities\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/08/elderly-care-02-facilities.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/08/elderly-care-02-facilities.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/elderly-care-02/wp-json/wp/v2/pages/19\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/elderly-care-02/facilities/\";s:15:\"astra-sites-tag\";a:1:{i:1599;s:10:\"facilities\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47054\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/08/elderly-care-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/08/elderly-care-02-contact.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/elderly-care-02/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/elderly-care-02/contact/\";s:15:\"astra-sites-tag\";a:4:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";i:896;s:13:\"get-connected\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:47052;s:26:\"related-gutenberg-template\";i:48519;}s:8:\"id-48519\";a:22:{s:5:\"title\";s:12:\"Elderly Home\";s:2:\"id\";i:48519;s:12:\"publish-date\";i:1603984628;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08-600x2326.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08-400x1551.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/elderly-care-08\";s:20:\"astra-site-parent-id\";i:1744;s:15:\"astra-sites-tag\";a:5:{i:1598;s:24:\"assisted-living-facility\";i:1596;s:10:\"elder-home\";i:1595;s:11:\"elders-care\";i:1594;s:12:\"old-age-home\";i:1597;s:15:\"retirement-home\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2492;s:10:\"non-profit\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48523\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08-600x2326.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/elderly-care-08/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/elderly-care-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48520\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08-about-1-600x1670.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/elderly-care-08/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/elderly-care-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48524\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08-services-1-600x2083.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/elderly-care-08/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/elderly-care-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48522\";a:12:{s:5:\"title\";s:10:\"Facilities\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08-facilities-1.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08-facilities-1-600x1725.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/elderly-care-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/elderly-care-08/facilities/\";s:15:\"astra-sites-tag\";a:1:{i:1599;s:10:\"facilities\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48521\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08-contact-1-600x1222.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/elderly-care-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/elderly-care-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47084\";a:22:{s:5:\"title\";s:12:\"Horticulture\";s:2:\"id\";i:47084;s:12:\"publish-date\";i:1597154802;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/08/horticulture-02.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/08/horticulture-02.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/08/horticulture-02.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/horticulture-02\";s:20:\"astra-site-parent-id\";i:1600;s:15:\"astra-sites-tag\";a:4:{i:1601;s:11:\"agriculture\";i:1603;s:13:\"farm-products\";i:632;s:7:\"farming\";i:1602;s:12:\"horticulture\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2777;s:8:\"business\";i:2830;s:6:\"nature\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2476;s:9:\"gardening\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1055:\"<!-- wp:paragraph -->\n<p>The Horticulture template uses a standard business layout but elevates it with some great images, green contrast color and a nice layout. It’s a calm design reminiscent of plants and growing and creates an atmosphere you want to indulge in for a little longer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design starts with a full width image before opening out into a white background with flexible content areas to share products and services, tell your story, showcase reviews and anything else you might want. Everything can be customized to suit your particular needs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Horticulture template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Calming website template ideal for the horticulture niche</li><li>Laid back feel with flexible content areas</li><li>Can be easily customized to fit any industry</li><li>Readymade pages for a fully working website</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:70:\"Calming web template ideal for growers, farmers and nursery businesses\";s:5:\"pages\";a:5:{s:8:\"id-47086\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/08/horticulture-02.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/08/horticulture-02.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/horticulture-02/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/horticulture-02/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47087\";a:12:{s:5:\"title\";s:8:\"Our Farm\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/08/horticulture-02-our-farm.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/08/horticulture-02-our-farm.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/horticulture-02/wp-json/wp/v2/pages/92\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/horticulture-02/our-farm/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47088\";a:12:{s:5:\"title\";s:11:\"Our Produce\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/08/horticulture-02-our-produce.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/08/horticulture-02-our-produce.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/horticulture-02/wp-json/wp/v2/pages/119\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/horticulture-02/our-produce/\";s:15:\"astra-sites-tag\";a:3:{i:1606;s:12:\"our-products\";i:1605;s:12:\"our-services\";i:540;s:8:\"products\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47089\";a:12:{s:5:\"title\";s:11:\"Testimonial\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/08/horticulture-02-testimonial.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/08/horticulture-02-testimonial.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/horticulture-02/wp-json/wp/v2/pages/137\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/horticulture-02/testimonial/\";s:15:\"astra-sites-tag\";a:2:{i:432;s:6:\"review\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47085\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/08/horticulture-02-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/08/horticulture-02-contact-us.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/horticulture-02/wp-json/wp/v2/pages/145\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/horticulture-02/contact-us/\";s:15:\"astra-sites-tag\";a:4:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";i:896;s:13:\"get-connected\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:47084;s:26:\"related-gutenberg-template\";i:47723;}s:8:\"id-47723\";a:22:{s:5:\"title\";s:12:\"Horticulture\";s:2:\"id\";i:47723;s:12:\"publish-date\";i:1603821508;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-1-600x2409.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-1-400x1606.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/horticulture-08\";s:20:\"astra-site-parent-id\";i:1669;s:15:\"astra-sites-tag\";a:4:{i:1601;s:11:\"agriculture\";i:1603;s:13:\"farm-products\";i:632;s:7:\"farming\";i:1602;s:12:\"horticulture\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2476;s:9:\"gardening\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-47725\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-1-600x2409.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/horticulture-08/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/horticulture-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47726\";a:12:{s:5:\"title\";s:8:\"Our Farm\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-farm.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-farm-600x2178.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/horticulture-08/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/horticulture-08/our-farm/\";s:15:\"astra-sites-tag\";a:2:{i:1737;s:4:\"farm\";i:1736;s:8:\"our-farm\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47727\";a:12:{s:5:\"title\";s:11:\"Our Produce\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-produce.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-produce-600x1790.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/horticulture-08/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/horticulture-08/our-produce/\";s:15:\"astra-sites-tag\";a:1:{i:1606;s:12:\"our-products\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47728\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-testimonials-1.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-testimonials-1-600x1433.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/horticulture-08/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/horticulture-08/testimonials/\";s:15:\"astra-sites-tag\";a:3:{i:1738;s:9:\"feedbacks\";i:432;s:6:\"review\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47724\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-contact-600x1263.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/horticulture-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/horticulture-08/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-46988\";a:22:{s:5:\"title\";s:7:\"AppPlus\";s:2:\"id\";i:46988;s:12:\"publish-date\";i:1596732885;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/08/app-landing-page-04.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/08/app-landing-page-04.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/08/app-landing-page-04.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/app-landing-page-04\";s:20:\"astra-site-parent-id\";i:1581;s:15:\"astra-sites-tag\";a:4:{i:1583;s:16:\"app-landing-page\";i:423;s:4:\"home\";i:850;s:12:\"landing-page\";i:629;s:20:\"product-landing-page\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2863;s:12:\"landing-page\";i:2881;s:10:\"mobile-app\";i:2771;s:8:\"one-page\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2927;s:8:\"one-page\";i:2499;s:10:\"technology\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1079:\"<!-- wp:paragraph -->\n<p>The AppPlus template uses bold design to create that initial first impression with a modern feel reminiscent of technology such as apps. It’s a full page design with instructive header with bold headline and app store links and alternating pink and purple colorway.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is a strong design and would work amazingly well for tech. The homepage has flexible content areas to tell your story as well as showcase the app. It can work with WooCommerce to sell merch and products and include those app store links for simple downloads.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the AppPlus template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Powerful web template ideal for tech and disruptive businesses</li><li>Full page design keeps your attention throughout</li><li>Flexible content areas to tell stories and promote products</li><li>Create an online store or enable digital downloads</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:77:\"Powerful web template tailor made for tech, apps and modern business websites\";s:5:\"pages\";a:1:{s:8:\"id-46989\";a:12:{s:5:\"title\";s:12:\"Landing Page\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/08/app-landing-page-04.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/08/app-landing-page-04.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/app-landing-page-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/app-landing-page-04/\";s:15:\"astra-sites-tag\";a:3:{i:1582;s:13:\"download-page\";i:850;s:12:\"landing-page\";i:629;s:20:\"product-landing-page\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-45850\";a:22:{s:5:\"title\";s:25:\"School &amp; Kindergarten\";s:2:\"id\";i:45850;s:12:\"publish-date\";i:1586952785;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/04/school-kindergarten-04.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/04/school-kindergarten-04.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/04/school-kindergarten-04.jpg\";s:14:\"astra-site-url\";s:41:\"//websitedemos.net/school-kindergarten-04\";s:20:\"astra-site-parent-id\";i:1487;s:15:\"astra-sites-tag\";a:5:{i:459;s:9:\"education\";i:1490;s:4:\"kids\";i:617;s:12:\"kindergarten\";i:460;s:8:\"learning\";i:456;s:6:\"school\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2772;s:9:\"education\";i:2862;s:22:\"preschool-kindergarten\";i:2782;s:6:\"school\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2491;s:22:\"educational-institutes\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1121:\"<!-- wp:paragraph -->\n<p>The School &amp; Kindergarten website template is a bright and energetic design that reflects its target market. It’s friendly, vibrant and inclusive, exactly what you want to see. Using bold colors, handwritten fonts and attractive graphics, it’s perfect for this niche.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The homepage uses bright colors and simple content areas with a few great images to tell the story. It includes areas for classes, testimonials, a gallery, FAQs and contact form, all the things you want to see on a business website. It’s perfect for the learning industry!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the School &amp; Kindergarten template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Bright, energetic design ideal for the target market</li><li>Full page design with colorful backgrounds and attractive fonts</li><li>Flexible content areas configured to be instantly useful for the niche</li><li>Extra pages all reflect the core design</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:76:\"Bright and energetic web template ideal for early learning and kindergartens\";s:5:\"pages\";a:6:{s:8:\"id-45854\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/04/school-kindergarten-04.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/04/school-kindergarten-04.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/school-kindergarten-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/school-kindergarten-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-45851\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/03/school-kindergarten-03-wip-about-us.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/03/school-kindergarten-03-wip-about-us.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/school-kindergarten-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/school-kindergarten-04/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-45855\";a:12:{s:5:\"title\";s:11:\"Parent Info\";s:18:\"featured-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/03/school-kindergarten-03-wip-parent-info.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/03/school-kindergarten-03-wip-parent-info.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/school-kindergarten-04/wp-json/wp/v2/pages/20\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/school-kindergarten-04/parent-info/\";s:15:\"astra-sites-tag\";a:2:{i:1489;s:11:\"information\";i:1488;s:6:\"parent\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-45852\";a:12:{s:5:\"title\";s:7:\"Classes\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/03/school-kindergarten-03-wip-classes.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/03/school-kindergarten-03-wip-classes.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/school-kindergarten-04/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/school-kindergarten-04/classes/\";s:15:\"astra-sites-tag\";a:1:{i:557;s:7:\"classes\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-45856\";a:12:{s:5:\"title\";s:7:\"Reviews\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/03/school-kindergarten-03-wip-review.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/03/school-kindergarten-03-wip-review.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/school-kindergarten-04/wp-json/wp/v2/pages/18\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/school-kindergarten-04/reviews/\";s:15:\"astra-sites-tag\";a:2:{i:432;s:6:\"review\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-45853\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/03/school-kindergarten-03-wip-contact.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/03/school-kindergarten-03-wip-contact.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/school-kindergarten-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/school-kindergarten-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:45870;s:26:\"related-elementor-template\";i:45850;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-45870\";a:22:{s:5:\"title\";s:25:\"School &amp; Kindergarten\";s:2:\"id\";i:45870;s:12:\"publish-date\";i:1586952772;s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/03/school-kindergarten-03-home.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/03/school-kindergarten-03-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/03/school-kindergarten-03-home.jpg\";s:14:\"astra-site-url\";s:41:\"//websitedemos.net/school-kindergarten-03\";s:20:\"astra-site-parent-id\";i:1491;s:15:\"astra-sites-tag\";a:5:{i:459;s:9:\"education\";i:1490;s:4:\"kids\";i:617;s:12:\"kindergarten\";i:460;s:8:\"learning\";i:456;s:6:\"school\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2491;s:22:\"educational-institutes\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-45874\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/03/school-kindergarten-03-home.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/03/school-kindergarten-03-home.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/school-kindergarten-03/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/school-kindergarten-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45871\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/03/school-kindergarten-03-wip-about-us.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/03/school-kindergarten-03-wip-about-us.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/school-kindergarten-03/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/school-kindergarten-03/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45872\";a:12:{s:5:\"title\";s:7:\"Classes\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/03/school-kindergarten-03-wip-classes.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/03/school-kindergarten-03-wip-classes.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/school-kindergarten-03/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/school-kindergarten-03/classes/\";s:15:\"astra-sites-tag\";a:1:{i:557;s:7:\"classes\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45875\";a:12:{s:5:\"title\";s:11:\"Parent Info\";s:18:\"featured-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/03/school-kindergarten-03-wip-parent-info.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/03/school-kindergarten-03-wip-parent-info.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/school-kindergarten-03/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/school-kindergarten-03/parent-info/\";s:15:\"astra-sites-tag\";a:2:{i:1489;s:11:\"information\";i:1488;s:6:\"parent\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45876\";a:12:{s:5:\"title\";s:6:\"Review\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/03/school-kindergarten-03-wip-review.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/03/school-kindergarten-03-wip-review.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/school-kindergarten-03/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/school-kindergarten-03/review/\";s:15:\"astra-sites-tag\";a:1:{i:432;s:6:\"review\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45873\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/03/school-kindergarten-03-wip-contact.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/03/school-kindergarten-03-wip-contact.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/school-kindergarten-03/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/school-kindergarten-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(214,'astra-sites-and-pages-page-20','a:15:{s:8:\"id-45584\";a:22:{s:5:\"title\";s:9:\"Cake Shop\";s:2:\"id\";i:45584;s:12:\"publish-date\";i:1590081789;s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-04.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-04.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-04.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/cake-shop-04\";s:20:\"astra-site-parent-id\";i:1452;s:15:\"astra-sites-tag\";a:4:{i:758;s:6:\"bakery\";i:1527;s:9:\"cafeteria\";i:1528;s:9:\"cake-shop\";i:733;s:4:\"shop\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2804;s:11:\"cafe-bakery\";i:2877;s:9:\"cake-shop\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2478;s:17:\"local-storefronts\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1070:\"<!-- wp:paragraph -->\n<p>The Cake Shop template is an attractive design with full page graphics and a relaxed gray background and red contrast color. It opens strong with a slideshow of cakes before opening into a product showcase via parallax effects. It’s an exceptional template!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design includes a mix of colored and image backgrounds to create a feeling of kitchen or bakery overlaid by images and content areas to showcase cakes and tell your story.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Cake Shop template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Exceptional design with some lovely touches</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full page layout with a mixture of backgrounds</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Parallax effect is particularly useful</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:71:\"Exceptional web design for cakes, bakeries and confectionery businesses\";s:5:\"pages\";a:5:{s:8:\"id-45588\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-04.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-04.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/cake-shop-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/cake-shop-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-45585\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-04-about.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-04-about.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/cake-shop-04/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/cake-shop-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-45586\";a:12:{s:5:\"title\";s:5:\"Cakes\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-04-cakes.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-04-cakes.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/cake-shop-04/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/cake-shop-04/cakes/\";s:15:\"astra-sites-tag\";a:1:{i:783;s:4:\"cake\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-45589\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-04-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-04-testimonials.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/cake-shop-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/cake-shop-04/testimonials/\";s:15:\"astra-sites-tag\";a:2:{i:432;s:6:\"review\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-45587\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-04-contact.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/cake-shop-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/cake-shop-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:46271;s:26:\"related-elementor-template\";i:45584;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-46271\";a:22:{s:5:\"title\";s:9:\"Cake Shop\";s:2:\"id\";i:46271;s:12:\"publish-date\";i:1590081789;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-03-home.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-03-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-03-home.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/cake-shop-03\";s:20:\"astra-site-parent-id\";i:1529;s:15:\"astra-sites-tag\";a:5:{i:758;s:6:\"bakery\";i:1527;s:9:\"cafeteria\";i:783;s:4:\"cake\";i:1528;s:9:\"cake-shop\";i:733;s:4:\"shop\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2478;s:17:\"local-storefronts\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-46275\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-03-home.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-03-home.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/cake-shop-03/wp-json/wp/v2/pages/284\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/cake-shop-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-46272\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-03-about.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-03-about.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/cake-shop-03/wp-json/wp/v2/pages/285\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/cake-shop-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-46273\";a:12:{s:5:\"title\";s:5:\"Cakes\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-03-cakes.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-03-cakes.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/cake-shop-03/wp-json/wp/v2/pages/286\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/cake-shop-03/cakes/\";s:15:\"astra-sites-tag\";a:1:{i:783;s:4:\"cake\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-46276\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-03-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-03-testimonials.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/cake-shop-03/wp-json/wp/v2/pages/287\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/cake-shop-03/testimonials/\";s:15:\"astra-sites-tag\";a:2:{i:432;s:6:\"review\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-46274\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/06/cake-shop-03-contact.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/cake-shop-03/wp-json/wp/v2/pages/288\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/cake-shop-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-22058\";a:22:{s:5:\"title\";s:13:\"Travel Agency\";s:2:\"id\";i:22058;s:12:\"publish-date\";i:1560489916;s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/06/id-22058-travel-agency-resize.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/06/id-22058-travel-agency-resize.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/06/id-22058-travel-agency-resize.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/tourism-04\";s:20:\"astra-site-parent-id\";i:68;s:15:\"astra-sites-tag\";a:6:{i:979;s:7:\"company\";i:812;s:6:\"office\";i:430;s:7:\"tourism\";i:431;s:13:\"tours-travels\";i:427;s:6:\"travel\";i:428;s:13:\"travel-agency\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2831;s:7:\"service\";i:2775;s:14:\"travel-tourism\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2498;s:12:\"hotel-travel\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1020:\"<!-- wp:paragraph -->\n<p>The Travel Agency template is a bright and breezy design ideal for the travel niche. The homepage has an instantly engaging header with travel-related sections before opening into a light page with tropical colors and lots of content areas to promote your travel business.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template uses a mixture of fonts and images to create atmosphere while also keeping things light with whitespace. It’s a lovely blend of strong design and relaxation that makes pages a pleasure to browse, ideal for an industry like travel.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Travel Agency template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Bright and breezy design for travel websites</li><li>Strong header makes an instant impact</li><li>Color and font choices elevate the overall design</li><li>Extra pages are equally well-designed</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:80:\"Bright, engaging website template with travel and travel businesses at its heart\";s:5:\"pages\";a:5:{s:8:\"id-39869\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/06/id-22203-travel-agency-home-resize.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/06/id-22203-travel-agency-home-resize.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/tourism-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/tourism-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-39867\";a:12:{s:5:\"title\";s:8:\"About us\";s:18:\"featured-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2019/06/id-22200-travel-agency-about-us-resize.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2019/06/id-22200-travel-agency-about-us-resize.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/tourism-04/wp-json/wp/v2/pages/23\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/tourism-04/about-us/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-39871\";a:12:{s:5:\"title\";s:5:\"Tours\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2019/06/id-22205-travel-agency-tours-resize.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2019/06/id-22205-travel-agency-tours-resize.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/tourism-04/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/tourism-04/tours/\";s:15:\"astra-sites-tag\";a:2:{i:424;s:7:\"project\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-39870\";a:12:{s:5:\"title\";s:7:\"Reviews\";s:18:\"featured-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2019/06/id-22204-travel-agency-reviews-resize.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2019/06/id-22204-travel-agency-reviews-resize.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/tourism-04/wp-json/wp/v2/pages/25\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/tourism-04/reviews/\";s:15:\"astra-sites-tag\";a:2:{i:432;s:6:\"review\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-39868\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/06/tourism-04-contact-revised-1200.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/06/tourism-04-contact-revised-1200.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/tourism-04/wp-json/wp/v2/pages/27\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/tourism-04/contact/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:22091;s:26:\"related-elementor-template\";i:22058;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-22091\";a:22:{s:5:\"title\";s:13:\"Travel Agency\";s:2:\"id\";i:22091;s:12:\"publish-date\";i:1561001708;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/tourism-03-home.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/tourism-03-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/tourism-03-home.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/tourism-03\";s:20:\"astra-site-parent-id\";i:92;s:15:\"astra-sites-tag\";a:5:{i:979;s:7:\"company\";i:812;s:6:\"office\";i:430;s:7:\"tourism\";i:427;s:6:\"travel\";i:428;s:13:\"travel-agency\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2498;s:12:\"hotel-travel\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-22859\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/tourism-03-home.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/tourism-03-home.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/tourism-03/wp-json/wp/v2/pages/200\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/tourism-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-22856\";a:12:{s:5:\"title\";s:8:\"About us\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/tourism-03-about.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/tourism-03-about.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/tourism-03/wp-json/wp/v2/pages/23\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/tourism-03/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-22861\";a:12:{s:5:\"title\";s:5:\"Tours\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/tourism-03-tours.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/tourism-03-tours.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/tourism-03/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/tourism-03/tours/\";s:15:\"astra-sites-tag\";a:1:{i:770;s:4:\"tour\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-22860\";a:12:{s:5:\"title\";s:7:\"Reviews\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/tourism-03-reviews.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/tourism-03-reviews.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/tourism-03/wp-json/wp/v2/pages/25\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/tourism-03/reviews/\";s:15:\"astra-sites-tag\";a:1:{i:432;s:6:\"review\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-22857\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/tourism-03-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/tourism-03-contact-1.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/tourism-03/wp-json/wp/v2/pages/27\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/tourism-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47181\";a:22:{s:5:\"title\";s:16:\"Consultants Firm\";s:2:\"id\";i:47181;s:12:\"publish-date\";i:1597262009;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/08/consultant-firm-04.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/08/consultant-firm-04.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/08/consultant-firm-04.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/consultant-firm-04\";s:20:\"astra-site-parent-id\";i:1618;s:15:\"astra-sites-tag\";a:2:{i:1620;s:19:\"business-consultant\";i:1621;s:10:\"consultant\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2823;s:10:\"accounting\";i:2777;s:8:\"business\";i:2794;s:10:\"consulting\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1028:\"<!-- wp:paragraph -->\n<p>The Consultants Firm template manages to be both serious and engaging at the same time. A combination of bold colors, smart graphics, hover effects and modern fonts creates a professional feel that’s still accessible, ideal for any business.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes a bold header with strong colors before opening out into a lighter page. Subtle effects, nice graphics, a mix of dark and light backgrounds and composed design creates a professional feel without being too overbearing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Consultants Firm template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Modern design ideal for any type of consultant or business website</li><li>Bold colors and features make an impact</li><li>Subtle effects throughout the homepage adds a touch of class</li><li>Relevant additional pages already created</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:80:\"Modern website template for consultant firms and any type of consulting business\";s:5:\"pages\";a:6:{s:8:\"id-47185\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/08/consultant-firm-04.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/08/consultant-firm-04.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/consultant-firm-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/consultant-firm-04/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47182\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/08/consultant-firm-04-about.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/08/consultant-firm-04-about.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/consultant-firm-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/consultant-firm-04/about/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47186\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/08/consultant-firm-04-services.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/08/consultant-firm-04-services.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/consultant-firm-04/wp-json/wp/v2/pages/18\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/consultant-firm-04/services/\";s:15:\"astra-sites-tag\";a:2:{i:1605;s:12:\"our-services\";i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47183\";a:12:{s:5:\"title\";s:12:\"Case Studies\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/08/consultant-firm-04-case-studies.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/08/consultant-firm-04-case-studies.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/consultant-firm-04/wp-json/wp/v2/pages/21\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/consultant-firm-04/case-studies/\";s:15:\"astra-sites-tag\";a:1:{i:780;s:12:\"case-studies\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47187\";a:12:{s:5:\"title\";s:4:\"Team\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/08/consultant-firm-04-team.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/08/consultant-firm-04-team.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/consultant-firm-04/wp-json/wp/v2/pages/24\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/consultant-firm-04/team/\";s:15:\"astra-sites-tag\";a:2:{i:996;s:8:\"our-team\";i:486;s:4:\"team\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-47184\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/08/consultant-firm-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/08/consultant-firm-04-contact.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/consultant-firm-04/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/consultant-firm-04/contact/\";s:15:\"astra-sites-tag\";a:4:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";i:896;s:13:\"get-connected\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-46967\";a:22:{s:5:\"title\";s:4:\"Cafe\";s:2:\"id\";i:46967;s:12:\"publish-date\";i:1596731285;s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/08/cafe-04.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/08/cafe-04.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/08/cafe-04.jpg\";s:14:\"astra-site-url\";s:26:\"//websitedemos.net/cafe-04\";s:20:\"astra-site-parent-id\";i:1574;s:15:\"astra-sites-tag\";a:5:{i:693;s:4:\"cafe\";i:1576;s:17:\"casual-restaurant\";i:1575;s:11:\"coffee-shop\";i:1577;s:13:\"confectionery\";i:335;s:10:\"restaurant\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2804;s:11:\"cafe-bakery\";i:2785;s:4:\"food\";i:2776;s:10:\"restaurant\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:974:\"<!-- wp:paragraph -->\n<p>The Café template has a combination of contemporary and heritage feel we associate with coffee shops and cafes. It’s bright and breezy, with a shaded image in the header and lots of whitespace and content areas on all pages.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes some well-designed graphics, a smart parallax effect on the homepage and flexible content areas to tell your story and showcase your products and services. There’s everything a café or coffee shop needs to get online right here.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Café template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Combination contemporary and heritage design</li><li>Reflects the look and feel of a café or coffee shop</li><li>Neat parallax effect on the homepage</li><li>Relevant extra pages already built</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:72:\"Refined café and coffee shop web template to promote your food business\";s:5:\"pages\";a:6:{s:8:\"id-46971\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/08/cafe-04.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2020/08/cafe-04.jpg\";s:18:\"astra-page-api-url\";s:54:\"https://websitedemos.net/cafe-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:27:\"//websitedemos.net/cafe-04/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46968\";a:12:{s:5:\"title\";s:8:\"About us\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/08/cafe-04-about-us.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/08/cafe-04-about-us.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/cafe-04/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/cafe-04/about-us/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46973\";a:12:{s:5:\"title\";s:13:\"What We Offer\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/08/cafe-04-what-we-offer.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/08/cafe-04-what-we-offer.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/cafe-04/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/cafe-04/what-we-offer/\";s:15:\"astra-sites-tag\";a:1:{i:1542;s:13:\"what-we-offer\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46972\";a:12:{s:5:\"title\";s:8:\"Our Menu\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/08/cafe-04-our-menu.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/08/cafe-04-our-menu.jpg\";s:18:\"astra-page-api-url\";s:54:\"https://websitedemos.net/cafe-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/cafe-04/our-menu/\";s:15:\"astra-sites-tag\";a:4:{i:336;s:4:\"food\";i:1579;s:9:\"food-menu\";i:565;s:4:\"menu\";i:1578;s:8:\"our-menu\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46970\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/08/cafe-04-gallery.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/08/cafe-04-gallery.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/cafe-04/wp-json/wp/v2/pages/18\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/cafe-04/gallery/\";s:15:\"astra-sites-tag\";a:2:{i:461;s:7:\"gallery\";i:1580;s:6:\"photos\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46969\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/08/cafe-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/08/cafe-04-contact.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/cafe-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/cafe-04/contact/\";s:15:\"astra-sites-tag\";a:4:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";i:896;s:13:\"get-connected\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55408\";a:22:{s:5:\"title\";s:6:\"School\";s:2:\"id\";i:55408;s:12:\"publish-date\";i:1622059860;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/05/school-02-home-1.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/05/school-02-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/05/school-02-home-1.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/school-02\";s:20:\"astra-site-parent-id\";i:2109;s:15:\"astra-sites-tag\";a:10:{i:2154;s:9:\"academics\";i:610;s:8:\"coaching\";i:2156;s:7:\"daycare\";i:459;s:9:\"education\";i:2158;s:8:\"educator\";i:2155;s:11:\"high-school\";i:617;s:12:\"kindergarten\";i:2157;s:9:\"preschool\";i:456;s:6:\"school\";i:458;s:10:\"university\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:39;s:4:\"free\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:4:{i:2840;s:18:\"college-university\";i:2772;s:9:\"education\";i:2862;s:22:\"preschool-kindergarten\";i:2782;s:6:\"school\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2491;s:22:\"educational-institutes\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1011:\"<!-- wp:paragraph -->\n<p>The School template provides everything you need to build an engaging website for schools, colleges, universities and all kinds of learning institutions. It’s a modern light design with a full screen header on the homepage and content areas throughout.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The pages include lots of content areas that can include images, graphics, audio and video and help portray your school in the best light. The extra pages reflect the core design and provide the information parents and future students need to engage.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the School template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Template designed specifically for learning</li><li>Lots of flexible content areas on every page</li><li>Calm white and blue colors provide reassurance</li><li>Relevant extra pages for schools and colleges</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:77:\"Welcoming web template ideal for schools, colleges, universities and learning\";s:5:\"pages\";a:5:{s:8:\"id-55412\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/school-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/school-02-contact.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/school-02/wp-json/wp/v2/pages/155\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/school-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55409\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/school-02-about-1.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/school-02-about-1.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/school-02/wp-json/wp/v2/pages/152\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/school-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55410\";a:12:{s:5:\"title\";s:9:\"Academics\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/school-02-academics-1.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/school-02-academics-1.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/school-02/wp-json/wp/v2/pages/153\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/school-02/academics/\";s:15:\"astra-sites-tag\";a:1:{i:2110;s:7:\"academy\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55411\";a:12:{s:5:\"title\";s:10:\"Activities\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/school-02-activities-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/school-02-activities-1.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/school-02/wp-json/wp/v2/pages/154\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/school-02/activities/\";s:15:\"astra-sites-tag\";a:1:{i:1922;s:10:\"activities\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55413\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/05/school-02-home-1.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/05/school-02-home-1.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/school-02/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/school-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:55408;s:26:\"related-gutenberg-template\";i:55500;}s:8:\"id-55500\";a:22:{s:5:\"title\";s:6:\"School\";s:2:\"id\";i:55500;s:12:\"publish-date\";i:1622059216;s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08-600x2968.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08-400x1978.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/school-08\";s:20:\"astra-site-parent-id\";i:2147;s:15:\"astra-sites-tag\";a:10:{i:2154;s:9:\"academics\";i:610;s:8:\"coaching\";i:2156;s:7:\"daycare\";i:459;s:9:\"education\";i:2158;s:8:\"educator\";i:2155;s:11:\"high-school\";i:617;s:12:\"kindergarten\";i:2157;s:9:\"preschool\";i:456;s:6:\"school\";i:458;s:10:\"university\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:39;s:4:\"free\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:4:{i:2840;s:18:\"college-university\";i:2772;s:9:\"education\";i:2862;s:22:\"preschool-kindergarten\";i:2782;s:6:\"school\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2491;s:22:\"educational-institutes\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-55504\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08-contact-1-600x615.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/school-08/wp-json/wp/v2/pages/117\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/school-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55501\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08-about-1-600x1294.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/school-08/wp-json/wp/v2/pages/62\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/school-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55502\";a:12:{s:5:\"title\";s:9:\"Academics\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08academics.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08academics-600x1776.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/school-08/wp-json/wp/v2/pages/79\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/school-08/academics/\";s:15:\"astra-sites-tag\";a:1:{i:2114;s:8:\"academic\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55503\";a:12:{s:5:\"title\";s:10:\"Activities\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08-activities-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08-activities-1-600x1121.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/school-08/wp-json/wp/v2/pages/102\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/school-08/activities/\";s:15:\"astra-sites-tag\";a:1:{i:1922;s:10:\"activities\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55505\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08-600x2968.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/school-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/school-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-57385\";a:22:{s:5:\"title\";s:9:\"Gift Shop\";s:2:\"id\";i:57385;s:12:\"publish-date\";i:1630001335;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/08/gift-shop-04-home-1.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/08/gift-shop-04-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/08/gift-shop-04-home-1.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/gift-shop-04\";s:20:\"astra-site-parent-id\";i:2334;s:15:\"astra-sites-tag\";a:20:{i:2418;s:8:\"commerce\";i:2348;s:20:\"corporate-gift-store\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2419;s:9:\"eshopping\";i:404;s:9:\"gift-shop\";i:401;s:10:\"gift-store\";i:2347;s:17:\"online-gift-store\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:2346;s:18:\"personalised-gifts\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2769;s:9:\"ecommerce\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:3;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:4;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1253:\"<!-- wp:paragraph -->\n<p>The Gift Shop template is a light, bright and welcoming website template ideal for gift shops, sweet shops, confectioners and anyone who wants to portray a vibrant personality. The design is colorful, engaging and provides lots of opportunities to promote your products.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Gift Shop template includes impactful headers and calls to action, lots of space to showcase product categories and individual products and highlight special offers. It integrates seamlessly with WooCommerce too, so building your store is a breeze!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Gift Shop template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Colorful website template for online stores</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lots of areas for products and special offers</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lots of whitespace as relief from the color</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Product and category pages included</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:73:\"Colorful web template ideal for selling fun items, online stores and more\";s:5:\"pages\";a:3:{s:8:\"id-57386\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/08/gift-shop-04-about.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/08/gift-shop-04-about.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/gift-shop-04/wp-json/wp/v2/pages/20\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/gift-shop-04/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-57387\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/08/gift-shop-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/08/gift-shop-04-contact.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/gift-shop-04/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/gift-shop-04/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-57388\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/08/gift-shop-04-home-1.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/08/gift-shop-04-home-1.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/gift-shop-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/gift-shop-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-46704\";a:22:{s:5:\"title\";s:13:\"e-Book Author\";s:2:\"id\";i:46704;s:12:\"publish-date\";i:1595355691;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/07/ebook-author-02-home-page.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/07/ebook-author-02-home-page.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/07/ebook-author-02-home-page.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/ebook-author-02\";s:20:\"astra-site-parent-id\";i:1551;s:15:\"astra-sites-tag\";a:4:{i:724;s:6:\"author\";i:727;s:4:\"book\";i:748;s:5:\"ebook\";i:725;s:6:\"writer\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2839;s:13:\"author-writer\";i:2814;s:9:\"bookstore\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1015:\"<!-- wp:paragraph -->\n<p>The eBook Author template is a calm, composed website template with a large area above the fold to promote your latest book. There are more opportunities promote your work further down the page as well as individual pages for books and any other publications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template has been well-designed and keeps things light and accessible, with a professional air. There is a lot of whitespace with plenty of content areas for you to tell your story and share your work. It’s an excellent template for promotion.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the eBook Author template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Well-designed template for publishers and authors</li><li>Nice layout with whitespace and content areas</li><li>Attractive header for your latest book</li><li>Extra pages and sections for other books</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:70:\"Well-designed web template for promoting books, authors and publishers\";s:5:\"pages\";a:5:{s:8:\"id-46709\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/07/ebook-author-02-home-page.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/07/ebook-author-02-home-page.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/ebook-author-02/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/ebook-author-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46705\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/07/ebook-author-02-about.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/07/ebook-author-02-about.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/ebook-author-02/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/ebook-author-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46707\";a:12:{s:5:\"title\";s:7:\"e-Books\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/07/ebook-author-02-e-books.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/07/ebook-author-02-e-books.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/ebook-author-02/wp-json/wp/v2/pages/18\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/ebook-author-02/e-books/\";s:15:\"astra-sites-tag\";a:2:{i:727;s:4:\"book\";i:748;s:5:\"ebook\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46708\";a:12:{s:5:\"title\";s:6:\"Events\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/07/ebook-author-02-events.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/07/ebook-author-02-events.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/ebook-author-02/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/ebook-author-02/events/\";s:15:\"astra-sites-tag\";a:1:{i:409;s:5:\"event\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46706\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/07/ebook-author-02-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/07/ebook-author-02-contact-1.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/ebook-author-02/wp-json/wp/v2/pages/20\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/ebook-author-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:46704;s:26:\"related-gutenberg-template\";i:48472;}s:8:\"id-48472\";a:22:{s:5:\"title\";s:13:\"e-book Author\";s:2:\"id\";i:48472;s:12:\"publish-date\";i:1603931209;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-1-600x2338.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-1-400x1558.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/ebook-author-08\";s:20:\"astra-site-parent-id\";i:1739;s:15:\"astra-sites-tag\";a:4:{i:724;s:6:\"author\";i:727;s:4:\"book\";i:748;s:5:\"ebook\";i:725;s:6:\"writer\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48473\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-about-1-600x1605.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/ebook-author-08/wp-json/wp/v2/pages/252\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/ebook-author-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48474\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-contact-1-600x724.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/ebook-author-08/wp-json/wp/v2/pages/258\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/ebook-author-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48475\";a:12:{s:5:\"title\";s:7:\"e-Books\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-ebooks.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-ebooks-600x1344.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/ebook-author-08/wp-json/wp/v2/pages/254\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/ebook-author-08/e-books/\";s:15:\"astra-sites-tag\";a:2:{i:1740;s:5:\"books\";i:748;s:5:\"ebook\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48476\";a:12:{s:5:\"title\";s:6:\"Events\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-events-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-events-1-600x1355.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/ebook-author-08/wp-json/wp/v2/pages/256\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/ebook-author-08/events/\";s:15:\"astra-sites-tag\";a:1:{i:1569;s:6:\"events\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48477\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-1-600x2338.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/ebook-author-08/wp-json/wp/v2/pages/250\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/ebook-author-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-45725\";a:22:{s:5:\"title\";s:15:\"Cosmetics Store\";s:2:\"id\";i:45725;s:12:\"publish-date\";i:1585306131;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/03/cosmetics-store-01-home.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/03/cosmetics-store-01-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/03/cosmetics-store-01-home.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/cosmetics-store-01\";s:20:\"astra-site-parent-id\";i:1469;s:15:\"astra-sites-tag\";a:7:{i:1023;s:6:\"beauty\";i:1465;s:15:\"beauty-products\";i:1466;s:17:\"cosmetic-products\";i:1464;s:14:\"cosmetic-store\";i:1463;s:9:\"cosmetics\";i:496;s:9:\"ecommerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:5;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-45728\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/03/cosmetics-store-01-home.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/03/cosmetics-store-01-home.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/cosmetics-store-01/wp-json/wp/v2/pages/38\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/cosmetics-store-01/\";s:15:\"astra-sites-tag\";a:3:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";i:1467;s:14:\"store-homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-45729\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/03/cosmetics-store-01-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/03/cosmetics-store-01-testimonials.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/cosmetics-store-01/wp-json/wp/v2/pages/31\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/cosmetics-store-01/testimonials/\";s:15:\"astra-sites-tag\";a:2:{i:1468;s:15:\"product-reviews\";i:432;s:6:\"review\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-45726\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/03/cosmetics-store-01-about.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/03/cosmetics-store-01-about.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/cosmetics-store-01/wp-json/wp/v2/pages/29\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/cosmetics-store-01/about/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-45727\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/03/cosmetics-store-01-contact.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/03/cosmetics-store-01-contact.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/cosmetics-store-01/wp-json/wp/v2/pages/30\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/cosmetics-store-01/contact/\";s:15:\"astra-sites-tag\";a:3:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-19494\";a:22:{s:5:\"title\";s:14:\"BBQ Restaurant\";s:2:\"id\";i:19494;s:12:\"publish-date\";i:1538655023;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/06/the-bbq-steaks-place.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/06/the-bbq-steaks-place.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/06/the-bbq-steaks-place.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/bbq-restaurant-02\";s:20:\"astra-site-parent-id\";i:66;s:15:\"astra-sites-tag\";a:11:{i:566;s:14:\"bbq-restaurant\";i:562;s:6:\"bistro\";i:972;s:4:\"club\";i:560;s:7:\"cuisine\";i:561;s:6:\"eatery\";i:336;s:4:\"food\";i:350;s:5:\"hotel\";i:559;s:6:\"outlet\";i:335;s:10:\"restaurant\";i:970;s:6:\"restro\";i:971;s:10:\"restro-bar\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2785;s:4:\"food\";i:2876;s:13:\"food-ordering\";i:2776;s:10:\"restaurant\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1013:\"<!-- wp:paragraph -->\n<p>The BBQ Restaurant template makes an instant impact with a video header overlaid with sympathetic fonts. It sets the scene immediately and is backed up by a great color scheme, mix of serif and sans serif fonts and plenty of content areas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The entire website template has been well thought-out, with lots of space for images, a menu, graphics, descriptions and a booking form. Both the menu and contact pages are particularly good, which should help increase the number of bookings you get.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the BBQ Restaurant template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Striking video header sets the scene instantly</li><li>Lots of relevant content areas including menu and booking</li><li>Great mix of colors and fonts</li><li>Attractive extra pages relevant to the restaurant niche</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:72:\"Impactful web template for restaurants, eateries and new food businesses\";s:5:\"pages\";a:4:{s:8:\"id-22165\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/06/the-bbq-steaks-place.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/06/the-bbq-steaks-place.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/bbq-restaurant-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/bbq-restaurant-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-22162\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/06/the-bbq-restaurant-about-page.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/06/the-bbq-restaurant-about-page.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/bbq-restaurant-02/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/bbq-restaurant-02/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-22166\";a:12:{s:5:\"title\";s:4:\"Menu\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/06/the-bbq-restaurant-menu-page.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/06/the-bbq-restaurant-menu-page.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/bbq-restaurant-02/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/bbq-restaurant-02/menu/\";s:15:\"astra-sites-tag\";a:1:{i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-22164\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/06/bbq-restaurant-contact-screenshot.png\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/06/bbq-restaurant-contact-screenshot.png\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/bbq-restaurant-02/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/bbq-restaurant-02/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:19579;s:26:\"related-elementor-template\";i:19494;s:26:\"related-gutenberg-template\";i:47979;}s:8:\"id-19579\";a:22:{s:5:\"title\";s:14:\"BBQ Restaurant\";s:2:\"id\";i:19579;s:12:\"publish-date\";i:1540186022;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/bbq-restaurant-01-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/bbq-restaurant-01-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/bbq-restaurant-01-home.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/bbq-restaurant-01\";s:20:\"astra-site-parent-id\";i:84;s:15:\"astra-sites-tag\";a:11:{i:566;s:14:\"bbq-restaurant\";i:562;s:6:\"bistro\";i:972;s:4:\"club\";i:560;s:7:\"cuisine\";i:561;s:6:\"eatery\";i:336;s:4:\"food\";i:350;s:5:\"hotel\";i:559;s:6:\"outlet\";i:335;s:10:\"restaurant\";i:970;s:6:\"restro\";i:971;s:10:\"restro-bar\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-22694\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/bbq-restaurant-01-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/bbq-restaurant-01-home.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/bbq-restaurant-01/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/bbq-restaurant-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-22691\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/bbq-restaurant-01-about.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/bbq-restaurant-01-about.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/bbq-restaurant-01/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/bbq-restaurant-01/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-22695\";a:12:{s:5:\"title\";s:4:\"Menu\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/bbq-restaurant-01-menu.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/bbq-restaurant-01-menu.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/bbq-restaurant-01/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/bbq-restaurant-01/menu/\";s:15:\"astra-sites-tag\";a:1:{i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-22693\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/bbq-restaurant-01-contact.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/bbq-restaurant-01-contact.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/bbq-restaurant-01/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/bbq-restaurant-01/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47979\";a:22:{s:5:\"title\";s:14:\"BBQ Restaurant\";s:2:\"id\";i:47979;s:12:\"publish-date\";i:1603828775;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/bbq-restaurant-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/bbq-restaurant-08-600x2555.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/bbq-restaurant-08-400x1703.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/bbq-restaurant-08\";s:20:\"astra-site-parent-id\";i:1690;s:15:\"astra-sites-tag\";a:10:{i:566;s:14:\"bbq-restaurant\";i:562;s:6:\"bistro\";i:972;s:4:\"club\";i:560;s:7:\"cuisine\";i:561;s:6:\"eatery\";i:336;s:4:\"food\";i:350;s:5:\"hotel\";i:559;s:6:\"outlet\";i:335;s:10:\"restaurant\";i:970;s:6:\"restro\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-47982\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/bbq-restaurant-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/bbq-restaurant-08-600x2555.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/bbq-restaurant-08/wp-json/wp/v2/pages/531\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/bbq-restaurant-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47980\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/bbq-restaurant-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/bbq-restaurant-08-about-us-600x2062.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/bbq-restaurant-08/wp-json/wp/v2/pages/533\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/bbq-restaurant-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47983\";a:12:{s:5:\"title\";s:4:\"Menu\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/bbq-restaurant-08-menu-2.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/bbq-restaurant-08-menu-2-600x1886.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/bbq-restaurant-08/wp-json/wp/v2/pages/535\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/bbq-restaurant-08/menu/\";s:15:\"astra-sites-tag\";a:2:{i:1579;s:9:\"food-menu\";i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47981\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/bbq-restaurant-08-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/bbq-restaurant-08-contact-us-600x1571.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/bbq-restaurant-08/wp-json/wp/v2/pages/537\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/bbq-restaurant-08/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(215,'astra-sites-and-pages-page-21','a:15:{s:8:\"id-21828\";a:22:{s:5:\"title\";s:12:\"Health Coach\";s:2:\"id\";i:21828;s:12:\"publish-date\";i:1557135032;s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/05/susan-burns-health-coach-home.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/05/susan-burns-health-coach-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/05/susan-burns-health-coach-home.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/health-coach-04\";s:20:\"astra-site-parent-id\";i:88;s:15:\"astra-sites-tag\";a:9:{i:480;s:4:\"blog\";i:516;s:4:\"diet\";i:521;s:12:\"fitness-blog\";i:336;s:4:\"food\";i:518;s:12:\"health-coach\";i:517;s:14:\"healthy-eating\";i:519;s:14:\"healthy-living\";i:520;s:9:\"nutrition\";i:1020;s:8:\"personal\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:37;s:4:\"blog\";}s:29:\"astra-sites-template-category\";a:7:{i:2828;s:4:\"blog\";i:2825;s:8:\"coaching\";i:2787;s:11:\"gym-fitness\";i:2875;s:12:\"health-coach\";i:2834;s:10:\"healthcare\";i:2770;s:8:\"personal\";i:2808;s:4:\"yoga\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:29:\"Ultimate Addons for Gutenberg\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1039:\"<!-- wp:paragraph -->\n<p>The Health Coach template has a fantastic design with bright colors, an illustrative header image, bright contrast color and plenty of whitespace around content areas. It’s ideal for fitness, health, wellness and associated businesses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The homepage is instantly engaging, with clear messaging, attractive graphics and elements designed for health coaches. Everything can be tweaked for other fitness or wellness businesses using a drag and drop page builder. It’s too good a template not to use!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Health Coach template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Fantastic design with engaging colors and fonts</li><li>Designed around the health and wellness niche</li><li>Lots of content areas on the homepage and supplementary pages</li><li>Complementing colors for calls to action and graphics</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:76:\"Vibrant health and wellness template that engages instantly and draws you in\";s:5:\"pages\";a:4:{s:8:\"id-22740\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/05/susan-burns-health-coach-home.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/05/susan-burns-health-coach-home.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/health-coach-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/health-coach-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-22741\";a:12:{s:5:\"title\";s:8:\"My Story\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/health-coach-mystory.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/health-coach-mystory.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/health-coach-04/wp-json/wp/v2/pages/4\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/health-coach-04/my-story/\";s:15:\"astra-sites-tag\";a:3:{i:352;s:5:\"about\";i:905;s:9:\"our-story\";i:767;s:5:\"story\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22738\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/health-coach-04-blog-page.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/health-coach-04-blog-page.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/health-coach-04/wp-json/wp/v2/pages/152\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/health-coach-04/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:29:\"Ultimate Addons for Gutenberg\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-22739\";a:12:{s:5:\"title\";s:11:\"Get Started\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/health-coach-susan-contact-page.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/health-coach-susan-contact-page.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/health-coach-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/health-coach-04/get-started/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:766;s:11:\"get-started\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}}s:19:\"related-bb-template\";i:44066;s:26:\"related-elementor-template\";i:21828;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-44066\";a:22:{s:5:\"title\";s:12:\"Health Coach\";s:2:\"id\";i:44066;s:12:\"publish-date\";i:1584363116;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/03/health-coach-03-home-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/03/health-coach-03-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/03/health-coach-03-home-1.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/health-coach-03\";s:20:\"astra-site-parent-id\";i:1420;s:15:\"astra-sites-tag\";a:7:{i:516;s:4:\"diet\";i:521;s:12:\"fitness-blog\";i:336;s:4:\"food\";i:518;s:12:\"health-coach\";i:517;s:14:\"healthy-eating\";i:519;s:14:\"healthy-living\";i:520;s:9:\"nutrition\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:37;s:4:\"blog\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:2:{i:2483;s:15:\"expert-services\";i:2480;s:16:\"fitness-wellness\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:29:\"Ultimate Addons for Gutenberg\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-45544\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/03/health-coach-03-home-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/03/health-coach-03-home-1.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/health-coach-03/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/health-coach-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-45545\";a:12:{s:5:\"title\";s:8:\"My Story\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/03/health-coach-03-about-1.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/03/health-coach-03-about-1.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/health-coach-03/wp-json/wp/v2/pages/465\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/health-coach-03/my-story/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45542\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/03/health-coach-03-blog-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/03/health-coach-03-blog-1.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/health-coach-03/wp-json/wp/v2/pages/327\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/health-coach-03/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:29:\"Ultimate Addons for Gutenberg\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-45543\";a:12:{s:5:\"title\";s:11:\"Get Started\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/03/health-coach-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/03/health-coach-03-contact.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/health-coach-03/wp-json/wp/v2/pages/410\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/health-coach-03/get-started/\";s:15:\"astra-sites-tag\";a:2:{i:766;s:11:\"get-started\";i:585;s:7:\"pricing\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18191\";a:22:{s:5:\"title\";s:10:\"Plant Shop\";s:2:\"id\";i:18191;s:12:\"publish-date\";i:1516691505;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2018/01/plant-shop-grow-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2018/01/plant-shop-grow-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2018/01/plant-shop-grow-home.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/plant-shop-04\";s:20:\"astra-site-parent-id\";i:263;s:15:\"astra-sites-tag\";a:16:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2419;s:9:\"eshopping\";i:399;s:8:\"one-page\";i:2422;s:13:\"online-market\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:497;s:11:\"plant-store\";i:495;s:6:\"plants\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2769;s:9:\"ecommerce\";i:2830;s:6:\"nature\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:3;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:4;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:5;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:988:\"<!-- wp:paragraph -->\n<p>The Plant Shop template has an authentic feel reminiscent of a nursery, florist or store that sells plants. The homepage opens with a large image of a houseplant, with a simple headline and call to action.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The rest of the page showcases your products using calm colors, a simple layout and lots of images to show as well as tell. It’s an effective store template that integrates with WooCommerce to deliver an easy to use store that actively encourages people to browse and buy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Plant Shop template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Attractive eCommerce store template for plants</li><li>Modern design with plenty of customization options</li><li>Effective product and category listing sections</li><li>Conversion-oriented product pages</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:78:\"Conversion-oriented eCommerce template for plant stores and nursery businesses\";s:5:\"pages\";a:1:{s:8:\"id-39975\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2018/01/plant-shop-grow-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2018/01/plant-shop-grow-home.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/plant-shop-04/wp-json/wp/v2/pages/238\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/plant-shop-04/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:399;s:8:\"one-page\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18166\";a:22:{s:5:\"title\";s:10:\"Plant Shop\";s:2:\"id\";i:18166;s:12:\"publish-date\";i:1516691491;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/plant-shop-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/plant-shop-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/plant-shop-03-homepage.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/plant-shop-03\";s:20:\"astra-site-parent-id\";i:266;s:15:\"astra-sites-tag\";a:15:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2419;s:9:\"eshopping\";i:2422;s:13:\"online-market\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:497;s:11:\"plant-store\";i:495;s:6:\"plants\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:3;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:4;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-24758\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/plant-shop-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/plant-shop-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/plant-shop-03/wp-json/wp/v2/pages/4\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/plant-shop-03/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:399;s:8:\"one-page\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-43398\";a:22:{s:5:\"title\";s:10:\"Plant Shop\";s:2:\"id\";i:43398;s:12:\"publish-date\";i:1581008140;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/plant-shop-04-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/plant-shop-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/plant-shop-04-home.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/plant-shop-06\";s:20:\"astra-site-parent-id\";i:1413;s:15:\"astra-sites-tag\";a:16:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2419;s:9:\"eshopping\";i:399;s:8:\"one-page\";i:2422;s:13:\"online-market\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:497;s:11:\"plant-store\";i:495;s:6:\"plants\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-43399\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/plant-shop-04-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/plant-shop-04-home.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/plant-shop-06/wp-json/wp/v2/pages/310\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/plant-shop-06/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:399;s:8:\"one-page\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-46009\";a:22:{s:5:\"title\";s:7:\"Painter\";s:2:\"id\";i:46009;s:12:\"publish-date\";i:1586952856;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-04-home.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-04-home.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/painter-04\";s:20:\"astra-site-parent-id\";i:1508;s:15:\"astra-sites-tag\";a:7:{i:597;s:3:\"art\";i:1511;s:7:\"artisan\";i:339;s:6:\"artist\";i:1513;s:5:\"craft\";i:1514;s:6:\"dauber\";i:614;s:7:\"painter\";i:1512;s:8:\"painting\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2802;s:6:\"artist\";i:2770;s:8:\"personal\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:992:\"<!-- wp:paragraph -->\n<p>The Painter template is a bright, engaging design that opens with a large header, handwritten and modern fonts and lots of bright images. It’s a very creative web template that fits the artist and painter niche perfectly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes alternating colored and light backgrounds with textured images, bright contrast colors and flowing layout. Complementary pages all reflect the core design, with different colors to indicate different purposes while looking and feeling similar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Painter template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Bright, colorful design perfect for painters and artists</li><li>Flowing layout that encourages you to explore</li><li>Strong images to help showcase your work</li><li>Extra pages including a portfolio</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:80:\"Colorful website template for artists, creatives and painters to show their work\";s:5:\"pages\";a:5:{s:8:\"id-46013\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-04-home.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-04-home.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/painter-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/painter-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46010\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-about-page-04.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-about-page-04.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/painter-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/painter-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46011\";a:12:{s:5:\"title\";s:8:\"Artworks\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-04-artworks.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-04-artworks.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/painter-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/painter-04/artworks/\";s:15:\"astra-sites-tag\";a:2:{i:597;s:3:\"art\";i:1509;s:7:\"artwork\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46014\";a:12:{s:5:\"title\";s:6:\"Studio\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-04-studio.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-04-studio.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/painter-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/painter-04/studio/\";s:15:\"astra-sites-tag\";a:1:{i:1510;s:6:\"studio\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46012\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-04-contact.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/painter-04/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/painter-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:46026;s:26:\"related-elementor-template\";i:46009;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-46026\";a:22:{s:5:\"title\";s:7:\"Painter\";s:2:\"id\";i:46026;s:12:\"publish-date\";i:1586952849;s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-03.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-03.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-03.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/painter-03\";s:20:\"astra-site-parent-id\";i:1515;s:15:\"astra-sites-tag\";a:7:{i:597;s:3:\"art\";i:1511;s:7:\"artisan\";i:339;s:6:\"artist\";i:1513;s:5:\"craft\";i:1514;s:6:\"dauber\";i:614;s:7:\"painter\";i:1512;s:8:\"painting\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-46030\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-03.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-03.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/painter-03/wp-json/wp/v2/pages/232\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/painter-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-46027\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-about-page-04.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-about-page-04.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/painter-03/wp-json/wp/v2/pages/218\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/painter-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-46028\";a:12:{s:5:\"title\";s:8:\"Artworks\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-03-artworks.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-03-artworks.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/painter-03/wp-json/wp/v2/pages/219\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/painter-03/artworks/\";s:15:\"astra-sites-tag\";a:1:{i:1509;s:7:\"artwork\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-46031\";a:12:{s:5:\"title\";s:6:\"Studio\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-03-studio.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-03-studio.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/painter-03/wp-json/wp/v2/pages/220\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/painter-03/studio/\";s:15:\"astra-sites-tag\";a:1:{i:1510;s:6:\"studio\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-46029\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/04/painter-03-contact.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/painter-03/wp-json/wp/v2/pages/221\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/painter-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-19540\";a:22:{s:5:\"title\";s:15:\"Yoga Instructor\";s:2:\"id\";i:19540;s:12:\"publish-date\";i:1540964155;s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2018/10/yoga-instructor-sarah-homepage.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2018/10/yoga-instructor-sarah-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2018/10/yoga-instructor-sarah-homepage.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/yoga-instructor-02\";s:20:\"astra-site-parent-id\";i:105;s:15:\"astra-sites-tag\";a:7:{i:499;s:7:\"fitness\";i:976;s:14:\"gym-instructor\";i:849;s:11:\"health-yoga\";i:1020;s:8:\"personal\";i:395;s:15:\"yoga-instructor\";i:397;s:11:\"yoga-studio\";i:398;s:12:\"yoga-trainer\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2787;s:11:\"gym-fitness\";i:2770;s:8:\"personal\";i:2808;s:4:\"yoga\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2480;s:16:\"fitness-wellness\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:982:\"<!-- wp:paragraph -->\n<p>The Yoga Instructor template is a light, accessible design with a relaxed feel ideal for the wellness niche. It has a light fullscreen image with a yoga pose and engaging headline text. The rest of the design uses plenty of whitespace and a nice pink contrast color.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The page uses lovely graphics to showcase services and includes flexible content areas where you can share your passion and engage your audience with storytelling. All backed up by subtle calls to action and an attractive contact page.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Yoga Instructor template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Relaxed design that works for the yoga niche</li><li>Light layout with plenty of whitespace</li><li>Flexible content areas</li><li>Contact form included with the template</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:76:\"Relaxed web template ideal for yoga instructors and wellness business owners\";s:5:\"pages\";a:5:{s:8:\"id-22967\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2018/10/yoga-instructor-sarah-homepage.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2018/10/yoga-instructor-sarah-homepage.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/yoga-instructor-02/wp-json/wp/v2/pages/4\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/yoga-instructor-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-22963\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/yoga-instructor-sarah-about-page.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/yoga-instructor-sarah-about-page.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/yoga-instructor-02/wp-json/wp/v2/pages/34\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/yoga-instructor-02/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-22965\";a:12:{s:5:\"title\";s:7:\"Classes\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/yoga-instructor-class-page.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/yoga-instructor-class-page.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/yoga-instructor-02/wp-json/wp/v2/pages/35\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/yoga-instructor-02/classes/\";s:15:\"astra-sites-tag\";a:1:{i:557;s:7:\"classes\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-22968\";a:12:{s:5:\"title\";s:12:\"Publications\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/yoga-instructor-publication.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/yoga-instructor-publication.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/yoga-instructor-02/wp-json/wp/v2/pages/81\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/yoga-instructor-02/publications/\";s:15:\"astra-sites-tag\";a:1:{i:558;s:11:\"publication\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-22966\";a:12:{s:5:\"title\";s:7:\"Get Fit\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/yoga-instructor-getfit-page.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/yoga-instructor-getfit-page.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/yoga-instructor-02/wp-json/wp/v2/pages/94\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/yoga-instructor-02/get-fit/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:19629;s:26:\"related-elementor-template\";i:19540;s:26:\"related-gutenberg-template\";i:48631;}s:8:\"id-19629\";a:22:{s:5:\"title\";s:15:\"Yoga Instructor\";s:2:\"id\";i:19629;s:12:\"publish-date\";i:1540964157;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/yoga-instructor-01-home-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/yoga-instructor-01-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/yoga-instructor-01-home-1.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/yoga-instructor-01\";s:20:\"astra-site-parent-id\";i:107;s:15:\"astra-sites-tag\";a:5:{i:499;s:7:\"fitness\";i:976;s:14:\"gym-instructor\";i:395;s:15:\"yoga-instructor\";i:397;s:11:\"yoga-studio\";i:398;s:12:\"yoga-trainer\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2480;s:16:\"fitness-wellness\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-22987\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/yoga-instructor-01.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/yoga-instructor-01.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/yoga-instructor-01/wp-json/wp/v2/pages/137\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/yoga-instructor-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-22980\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/yoga-instructor-01-about-me-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/yoga-instructor-01-about-me-1.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/yoga-instructor-01/wp-json/wp/v2/pages/34\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/yoga-instructor-01/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-22985\";a:12:{s:5:\"title\";s:7:\"Classes\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/yoga-instructor-01-classes-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/yoga-instructor-01-classes-1.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/yoga-instructor-01/wp-json/wp/v2/pages/35\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/yoga-instructor-01/classes/\";s:15:\"astra-sites-tag\";a:1:{i:557;s:7:\"classes\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-22988\";a:12:{s:5:\"title\";s:12:\"Publications\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/yoga-instructor-01-publications-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/yoga-instructor-01-publications-1.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/yoga-instructor-01/wp-json/wp/v2/pages/81\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/yoga-instructor-01/publications/\";s:15:\"astra-sites-tag\";a:1:{i:558;s:11:\"publication\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-22986\";a:12:{s:5:\"title\";s:7:\"Get Fit\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/yoga-instructor-01-get-fit-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/yoga-instructor-01-get-fit-1.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/yoga-instructor-01/wp-json/wp/v2/pages/94\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/yoga-instructor-01/get-fit/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:769;s:7:\"get-fit\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48631\";a:22:{s:5:\"title\";s:15:\"Yoga Instructor\";s:2:\"id\";i:48631;s:12:\"publish-date\";i:1603984609;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08-600x2239.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08-400x1493.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/yoga-instructor-08\";s:20:\"astra-site-parent-id\";i:1753;s:15:\"astra-sites-tag\";a:7:{i:499;s:7:\"fitness\";i:976;s:14:\"gym-instructor\";i:849;s:11:\"health-yoga\";i:1020;s:8:\"personal\";i:395;s:15:\"yoga-instructor\";i:397;s:11:\"yoga-studio\";i:398;s:12:\"yoga-trainer\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2787;s:11:\"gym-fitness\";i:2770;s:8:\"personal\";i:2808;s:4:\"yoga\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2480;s:16:\"fitness-wellness\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48635\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08-600x2239.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/yoga-instructor-08/wp-json/wp/v2/pages/51\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/yoga-instructor-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48632\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08-about-me-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08-about-me-1-600x1297.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/yoga-instructor-08/wp-json/wp/v2/pages/52\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/yoga-instructor-08/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48633\";a:12:{s:5:\"title\";s:7:\"Classes\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08-classes-1.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08-classes-1-600x1746.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/yoga-instructor-08/wp-json/wp/v2/pages/53\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/yoga-instructor-08/classes/\";s:15:\"astra-sites-tag\";a:1:{i:557;s:7:\"classes\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48636\";a:12:{s:5:\"title\";s:12:\"Publications\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08-publications-1.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08-publications-1-600x1082.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/yoga-instructor-08/wp-json/wp/v2/pages/54\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/yoga-instructor-08/publications/\";s:15:\"astra-sites-tag\";a:1:{i:558;s:11:\"publication\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48634\";a:12:{s:5:\"title\";s:7:\"Get Fit\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08-get-fit-1.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08-get-fit-1-600x1079.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/yoga-instructor-08/wp-json/wp/v2/pages/55\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/yoga-instructor-08/get-fit/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-49936\";a:22:{s:5:\"title\";s:11:\"Recipe Blog\";s:2:\"id\";i:49936;s:12:\"publish-date\";i:1614595588;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/03/recipe-blog-08-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/03/recipe-blog-08-1-600x1623.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/03/recipe-blog-08-1-400x1082.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/recipe-blog-08\";s:20:\"astra-site-parent-id\";i:1858;s:15:\"astra-sites-tag\";a:5:{i:792;s:7:\"cooking\";i:787;s:6:\"dinner\";i:336;s:4:\"food\";i:793;s:11:\"food-making\";i:788;s:5:\"snack\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:37;s:4:\"blog\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2828;s:4:\"blog\";i:2785;s:4:\"food\";i:2770;s:8:\"personal\";i:2776;s:10:\"restaurant\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-49940\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/03/recipe-blog-08-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/03/recipe-blog-08-1-600x1623.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/recipe-blog-08/wp-json/wp/v2/pages/1055\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/recipe-blog-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-49937\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/03/recipe-blog-08-about-me-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/03/recipe-blog-08-about-me-1-600x897.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/recipe-blog-08/wp-json/wp/v2/pages/1071\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/recipe-blog-08/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:1007;s:8:\"about-me\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-49938\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/03/recipe-blog-08-blog-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/03/recipe-blog-08-blog-1-600x1429.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/recipe-blog-08/wp-json/wp/v2/pages/1067\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/recipe-blog-08/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-49939\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/03/recipe-blog-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/03/recipe-blog-08-contact-1-600x758.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/recipe-blog-08/wp-json/wp/v2/pages/1074\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/recipe-blog-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-39906\";a:22:{s:5:\"title\";s:6:\"Church\";s:2:\"id\";i:39906;s:12:\"publish-date\";i:1579633611;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/church-04-home.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/church-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/church-04-home.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/church-04\";s:20:\"astra-site-parent-id\";i:1199;s:15:\"astra-sites-tag\";a:5:{i:897;s:15:\"catholic-church\";i:625;s:7:\"charity\";i:893;s:6:\"church\";i:898;s:16:\"community-church\";i:735;s:6:\"donate\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:5:{i:2786;s:17:\"charity-nonprofit\";i:2789;s:6:\"church\";i:2864;s:9:\"community\";i:2872;s:19:\"donation-fundraiser\";i:2784;s:5:\"event\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2492;s:10:\"non-profit\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:4:\"give\";s:4:\"init\";s:13:\"give/give.php\";s:4:\"name\";s:22:\"Give - Donation Plugin\";}i:3;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:937:\"<!-- wp:paragraph -->\n<p>The Church website template has a serene feel while portraying the seriousness of the subject in a welcoming manner. The template opens with a full screen image and strong headlines and call to action.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The rest of the theme has a lighter feel and more open layout with images, content areas, offset sections and feature spaces. The extra pages are all relevant to the niche and provide lots of opportunities to continue spreading the good word.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Church template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Serene design with lots of modern touches</li><li>Offset layout creates engagement and feels open</li><li>Lots of content areas for spreading the word</li><li>Extra pages relevant to the niche</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"Welcoming church web template that’s open and inclusive to help spread the word\";s:5:\"pages\";a:11:{s:8:\"id-57915\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/church-04/wp-json/wp/v2/pages/2050\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/church-04/donor-dashboard-4/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-57916\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/church-04/wp-json/wp/v2/pages/2041\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/church-04/donor-dashboard/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-57917\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/church-04/wp-json/wp/v2/pages/2044\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/church-04/donor-dashboard-2/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-57918\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/church-04/wp-json/wp/v2/pages/2047\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/church-04/donor-dashboard-3/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-39912\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/church-04-home.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/church-04-home.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/church-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/church-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-39907\";a:12:{s:5:\"title\";s:8:\"About us\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/church-04-about-us-1.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/church-04-about-us-1.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/church-04/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/church-04/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-39910\";a:12:{s:5:\"title\";s:13:\"Get connected\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/church-04-get-connected.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/church-04-get-connected.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/church-04/wp-json/wp/v2/pages/18\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/church-04/get-connected/\";s:15:\"astra-sites-tag\";a:1:{i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-39913\";a:12:{s:5:\"title\";s:7:\"Sermons\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/church-04-sermons.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/church-04-sermons.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/church-04/wp-json/wp/v2/pages/20\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/church-04/sermons/\";s:15:\"astra-sites-tag\";a:1:{i:892;s:7:\"sermons\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-39909\";a:12:{s:5:\"title\";s:6:\"Events\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/church-04-events.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/church-04-events.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/church-04/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/church-04/events/\";s:15:\"astra-sites-tag\";a:1:{i:409;s:5:\"event\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-39908\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/church-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/church-04-contact.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/church-04/wp-json/wp/v2/pages/26\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/church-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-39911\";a:12:{s:5:\"title\";s:4:\"Give\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/church-04-give.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/church-04-give.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/church-04/wp-json/wp/v2/pages/24\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/church-04/give/\";s:15:\"astra-sites-tag\";a:2:{i:735;s:6:\"donate\";i:1015;s:4:\"give\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:4:\"give\";s:4:\"init\";s:13:\"give/give.php\";s:4:\"name\";s:22:\"Give - Donation Plugin\";}i:2;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}}s:19:\"related-bb-template\";i:44450;s:26:\"related-elementor-template\";i:39906;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-44450\";a:22:{s:5:\"title\";s:6:\"Church\";s:2:\"id\";i:44450;s:12:\"publish-date\";i:1586540158;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/04/church-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/04/church-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/04/church-03-homepage.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/church-03\";s:20:\"astra-site-parent-id\";i:1428;s:15:\"astra-sites-tag\";a:5:{i:897;s:15:\"catholic-church\";i:625;s:7:\"charity\";i:893;s:6:\"church\";i:898;s:16:\"community-church\";i:735;s:6:\"donate\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2492;s:10:\"non-profit\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:3;a:3:{s:4:\"slug\";s:4:\"give\";s:4:\"init\";s:13:\"give/give.php\";s:4:\"name\";s:22:\"Give - Donation Plugin\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:8:{s:8:\"id-57928\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/church-03/wp-json/wp/v2/pages/2034\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/church-03/donor-dashboard/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-44457\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/04/church-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/04/church-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/church-03/wp-json/wp/v2/pages/307\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/church-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-44451\";a:12:{s:5:\"title\";s:8:\"About us\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/04/church-03-about-us.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/04/church-03-about-us.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/church-03/wp-json/wp/v2/pages/308\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/church-03/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-44455\";a:12:{s:5:\"title\";s:13:\"Get connected\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/04/church-03-get-connected.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/04/church-03-get-connected.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/church-03/wp-json/wp/v2/pages/309\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/church-03/get-connected/\";s:15:\"astra-sites-tag\";a:1:{i:896;s:13:\"get-connected\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-44458\";a:12:{s:5:\"title\";s:7:\"Sermons\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/04/church-03-sermons.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/04/church-03-sermons.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/church-03/wp-json/wp/v2/pages/310\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/church-03/sermons/\";s:15:\"astra-sites-tag\";a:1:{i:892;s:7:\"sermons\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-44454\";a:12:{s:5:\"title\";s:6:\"Events\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/04/church-03-events.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/04/church-03-events.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/church-03/wp-json/wp/v2/pages/311\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/church-03/events/\";s:15:\"astra-sites-tag\";a:1:{i:409;s:5:\"event\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-44453\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/04/church-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/04/church-03-contact.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/church-03/wp-json/wp/v2/pages/313\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/church-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-44456\";a:12:{s:5:\"title\";s:4:\"Give\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/04/church-03-give.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/04/church-03-give.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/church-03/wp-json/wp/v2/pages/312\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/church-03/give/\";s:15:\"astra-sites-tag\";a:2:{i:735;s:6:\"donate\";i:1015;s:4:\"give\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:4:\"give\";s:4:\"init\";s:13:\"give/give.php\";s:4:\"name\";s:22:\"Give - Donation Plugin\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-45643\";a:22:{s:5:\"title\";s:15:\"Cosmetics Store\";s:2:\"id\";i:45643;s:12:\"publish-date\";i:1585296959;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/04/cosmetic-store-homepage.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/04/cosmetic-store-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/04/cosmetic-store-homepage.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/cosmetics-store-02\";s:20:\"astra-site-parent-id\";i:1461;s:15:\"astra-sites-tag\";a:6:{i:1465;s:15:\"beauty-products\";i:1466;s:17:\"cosmetic-products\";i:1464;s:14:\"cosmetic-store\";i:1463;s:9:\"cosmetics\";i:496;s:9:\"ecommerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2790;s:14:\"beauty-fashion\";i:2777;s:8:\"business\";i:2769;s:9:\"ecommerce\";i:2890;s:15:\"makeup-cosmetic\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1180:\"<!-- wp:paragraph -->\n<p>The Cosmetics Store template is ideal for eCommerce websites. It has an engaging full screen image where you can showcase your latest products and minimalist store areas further down the page along with featured products and promotion areas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is a minimal design with some powerful features, modern fonts, some nice images and graphical touches, minimal navigation with shopping cart and category pages. Everything you need to launch your online store!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Cosmetics Store template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Minimalist eCommerce template with some nice touches</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Great use of images and fonts</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Borderless content areas keep the flow</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Category and product pages included</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:77:\"Minimalist eCommerce template that could be used for any type of online store\";s:5:\"pages\";a:4:{s:8:\"id-46041\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/04/cosmetic-store-homepage.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/04/cosmetic-store-homepage.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/cosmetics-store-02/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/cosmetics-store-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-46042\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/04/cosmetics-store-01-testimonialspage.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/04/cosmetics-store-01-testimonialspage.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/cosmetics-store-02/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/cosmetics-store-02/testimonials/\";s:15:\"astra-sites-tag\";a:2:{i:432;s:6:\"review\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-46039\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/04/cosmetics-store-01-aboutpage.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/04/cosmetics-store-01-aboutpage.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/cosmetics-store-02/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/cosmetics-store-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-46040\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/04/cosmetics-store-01-contactpage.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/04/cosmetics-store-01-contactpage.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/cosmetics-store-02/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/cosmetics-store-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:45725;s:26:\"related-elementor-template\";i:45643;s:26:\"related-gutenberg-template\";i:48591;}s:8:\"id-48591\";a:22:{s:5:\"title\";s:15:\"Cosmetics Store\";s:2:\"id\";i:48591;s:12:\"publish-date\";i:1603984615;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/cosmetics-store-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/cosmetics-store-08-600x2401.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/cosmetics-store-08-400x1601.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/cosmetics-store-08\";s:20:\"astra-site-parent-id\";i:1748;s:15:\"astra-sites-tag\";a:7:{i:1023;s:6:\"beauty\";i:1465;s:15:\"beauty-products\";i:1466;s:17:\"cosmetic-products\";i:1464;s:14:\"cosmetic-store\";i:1463;s:9:\"cosmetics\";i:496;s:9:\"ecommerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:4;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-48594\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/cosmetics-store-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/cosmetics-store-08-600x2401.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/cosmetics-store-08/wp-json/wp/v2/pages/542\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/cosmetics-store-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48592\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/cosmetics-store-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/cosmetics-store-08-about-1-600x1218.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/cosmetics-store-08/wp-json/wp/v2/pages/545\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/cosmetics-store-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48595\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/cosmetics-store-08-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2020/10/cosmetics-store-08-testimonials-600x1164.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/cosmetics-store-08/wp-json/wp/v2/pages/544\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/cosmetics-store-08/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48593\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/cosmetics-store-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/cosmetics-store-08-contact-1-600x1187.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/cosmetics-store-08/wp-json/wp/v2/pages/546\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/cosmetics-store-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(216,'astra-sites-and-pages-page-22','a:15:{s:8:\"id-45577\";a:22:{s:5:\"title\";s:18:\"Wedding Invitation\";s:2:\"id\";i:45577;s:12:\"publish-date\";i:1584542585;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/03/wedding-invitation-04.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/03/wedding-invitation-04.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/03/wedding-invitation-04.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/wedding-invitation-04\";s:20:\"astra-site-parent-id\";i:1451;s:15:\"astra-sites-tag\";a:3:{i:699;s:10:\"invitation\";i:697;s:7:\"wedding\";i:1457;s:18:\"wedding-invitation\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:3:{i:2784;s:5:\"event\";i:2771;s:8:\"one-page\";i:2792;s:7:\"wedding\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2489;s:16:\"event-invitation\";i:2927;s:8:\"one-page\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:941:\"<!-- wp:paragraph -->\n<p>The Wedding Invitation template is a romantic one-page design with a modern twist. It opens with an inset video of the happy couple before unfolding to outline the what, where and when of the wedding.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Even though it’s a one-page web template with a limited goal, the design makes it seem so much more. The combination of flower graphics, fonts and colors help create that happy feeling you want to invoke for a wedding.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Wedding Invitation template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Romantic one-page template with genuine appeal</li><li>Inset video can showcase the happy couple or venue</li><li>Great mix of colors, graphics and fonts</li><li>Can be fully customized in every way possible</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"Romantic one-page wedding invitation template for happy couples and wedding planners\";s:5:\"pages\";a:1:{s:8:\"id-45578\";a:12:{s:5:\"title\";s:18:\"Wedding Invitation\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/03/wedding-invitation-04.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/03/wedding-invitation-04.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/wedding-invitation-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/wedding-invitation-04/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:699;s:10:\"invitation\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:45592;s:26:\"related-elementor-template\";i:58999;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-45592\";a:22:{s:5:\"title\";s:18:\"Wedding Invitation\";s:2:\"id\";i:45592;s:12:\"publish-date\";i:1585155322;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/03/wedding-invitation-04.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/03/wedding-invitation-04.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/03/wedding-invitation-04.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/wedding-invitation-03\";s:20:\"astra-site-parent-id\";i:1456;s:15:\"astra-sites-tag\";a:3:{i:699;s:10:\"invitation\";i:697;s:7:\"wedding\";i:1457;s:18:\"wedding-invitation\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2489;s:16:\"event-invitation\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-45593\";a:12:{s:5:\"title\";s:18:\"Wedding Invitation\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/03/wedding-invitation-04.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/03/wedding-invitation-04.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/wedding-invitation-03/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/wedding-invitation-03/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:699;s:10:\"invitation\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-38795\";a:22:{s:5:\"title\";s:8:\"Law Firm\";s:2:\"id\";i:38795;s:12:\"publish-date\";i:1579110787;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-03-home.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-03-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-03-home.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/law-firm-03\";s:20:\"astra-site-parent-id\";i:1132;s:15:\"astra-sites-tag\";a:8:{i:704;s:13:\"corporate-law\";i:701;s:12:\"criminal-law\";i:703;s:11:\"enforcement\";i:916;s:3:\"law\";i:702;s:8:\"law-firm\";i:998;s:10:\"law-office\";i:706;s:6:\"lawyer\";i:778;s:5:\"legal\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2482;s:3:\"law\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-38799\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-03-home.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-03-home.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/law-firm-03/wp-json/wp/v2/pages/334\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/law-firm-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38796\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-03-about.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-03-about.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/law-firm-03/wp-json/wp/v2/pages/335\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/law-firm-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38800\";a:12:{s:5:\"title\";s:14:\"Practice Areas\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-03-practice-areas.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-03-practice-areas.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/law-firm-03/wp-json/wp/v2/pages/336\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/law-firm-03/practice-areas/\";s:15:\"astra-sites-tag\";a:1:{i:707;s:13:\"practice-area\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38797\";a:12:{s:5:\"title\";s:9:\"Attorneys\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-03-attorneys.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-03-attorneys.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/law-firm-03/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/law-firm-03/attorneys/\";s:15:\"astra-sites-tag\";a:1:{i:912;s:9:\"attorneys\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38798\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-03-contact.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/law-firm-03/wp-json/wp/v2/pages/337\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/law-firm-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-38787\";a:22:{s:5:\"title\";s:8:\"Law Firm\";s:2:\"id\";i:38787;s:12:\"publish-date\";i:1579110690;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-home-page.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-home-page.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-home-page.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/law-firm-04\";s:20:\"astra-site-parent-id\";i:1131;s:15:\"astra-sites-tag\";a:8:{i:704;s:13:\"corporate-law\";i:701;s:12:\"criminal-law\";i:703;s:11:\"enforcement\";i:702;s:8:\"law-firm\";i:998;s:10:\"law-office\";i:706;s:6:\"lawyer\";i:778;s:5:\"legal\";i:917;s:10:\"legal-firm\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:2:{i:2777;s:8:\"business\";i:2824;s:8:\"law-firm\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2482;s:3:\"law\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:961:\"<!-- wp:paragraph -->\n<p>The Law Firm template is a corporate-style design with the gravity and authority you would expect from the niche. It still remains welcoming and accessible, but combines the atmosphere you would expect from the law.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design uses fullscreen header with simple navigation and a calm contrast color for calls to action. The rest of the template has a light feel with lots of content areas to share your services, expertise, testimonials and to tell your story.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Law Firm template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Welcoming with the gravity expected of a law firm</li><li>Calm contrast color works very well</li><li>Lots of content areas for services and expertise</li><li>Supplementary pages ideal for the niche</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:79:\"Corporate web design ideal for law firms and lawyers wanting to build authority\";s:5:\"pages\";a:5:{s:8:\"id-38791\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-home-page.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-home-page.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/law-firm-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/law-firm-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-38788\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-04-about-page.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-04-about-page.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/law-firm-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/law-firm-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-38792\";a:12:{s:5:\"title\";s:14:\"Practice Areas\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-04-practice-areas-page.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-04-practice-areas-page.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/law-firm-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/law-firm-04/practice-areas/\";s:15:\"astra-sites-tag\";a:1:{i:707;s:13:\"practice-area\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-38789\";a:12:{s:5:\"title\";s:9:\"Attorneys\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-04-attorneys-page.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-04-attorneys-page.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/law-firm-04/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/law-firm-04/attorneys/\";s:15:\"astra-sites-tag\";a:1:{i:912;s:9:\"attorneys\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-38790\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-04-contact-page.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/01/law-firm-04-contact-page.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/law-firm-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/law-firm-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:38795;s:26:\"related-elementor-template\";i:38787;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-38757\";a:22:{s:5:\"title\";s:12:\"Nutritionist\";s:2:\"id\";i:38757;s:12:\"publish-date\";i:1579110029;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-homepage.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-homepage.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/nutritionist-02\";s:20:\"astra-site-parent-id\";i:1129;s:15:\"astra-sites-tag\";a:5:{i:516;s:4:\"diet\";i:753;s:9:\"dietitian\";i:336;s:4:\"food\";i:991;s:7:\"healthy\";i:754;s:12:\"nutritionist\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:6:{i:2828;s:4:\"blog\";i:2825;s:8:\"coaching\";i:2794;s:10:\"consulting\";i:2785;s:4:\"food\";i:2875;s:12:\"health-coach\";i:2834;s:10:\"healthcare\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2480;s:16:\"fitness-wellness\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:29:\"Ultimate Addons for Gutenberg\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1009:\"<!-- wp:paragraph -->\n<p>The Nutritionist template is a creative business template that could be customized to suit any niche, including this one. With an open design and a combination of light and dark areas, borderless content areas and that green contrast color, it’s a real winner.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The homepage is effective, with a call to action in the header, lots of content areas to showcase products and services, share class schedules, offer videos and downloads and feature your latest blog posts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Nutritionist template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Modern business website template ideal for a range of niches</li><li>Strong header with image and calls to action</li><li>Borderless content area provides an open feel</li><li>Lots of opportunities to customize to your specific needs</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:77:\"Well-designed web template for nutritionists that could be tweaked to any use\";s:5:\"pages\";a:6:{s:8:\"id-38761\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-homepage.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-homepage.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/nutritionist-02/wp-json/wp/v2/pages/97\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/nutritionist-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-38758\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-about-page.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-about-page.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/nutritionist-02/wp-json/wp/v2/pages/141\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/nutritionist-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-38762\";a:12:{s:5:\"title\";s:8:\"Programs\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-program-page.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-program-page.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/nutritionist-02/wp-json/wp/v2/pages/145\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/nutritionist-02/programs/\";s:15:\"astra-sites-tag\";a:2:{i:989;s:8:\"programs\";i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-38763\";a:12:{s:5:\"title\";s:15:\"Success Stories\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-success-stories.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-success-stories.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/nutritionist-02/wp-json/wp/v2/pages/304\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/nutritionist-02/success-stories/\";s:15:\"astra-sites-tag\";a:2:{i:990;s:15:\"success-stories\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-38759\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/nutrionist-blog.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/nutrionist-blog.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/nutritionist-02/wp-json/wp/v2/pages/307\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/nutritionist-02/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:29:\"Ultimate Addons for Gutenberg\";}}}s:8:\"id-38760\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/nutrionist-contact.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/nutrionist-contact.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/nutritionist-02/wp-json/wp/v2/pages/143\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/nutritionist-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:38771;s:26:\"related-elementor-template\";i:38757;s:26:\"related-gutenberg-template\";i:48318;}s:8:\"id-38771\";a:22:{s:5:\"title\";s:12:\"Nutritionist\";s:2:\"id\";i:38771;s:12:\"publish-date\";i:1579110114;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-01-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-01-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-01-home.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/nutritionist-01\";s:20:\"astra-site-parent-id\";i:1130;s:15:\"astra-sites-tag\";a:5:{i:516;s:4:\"diet\";i:753;s:9:\"dietitian\";i:336;s:4:\"food\";i:991;s:7:\"healthy\";i:754;s:12:\"nutritionist\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2480;s:16:\"fitness-wellness\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:29:\"Ultimate Addons for Gutenberg\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-38775\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-01-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-01-home.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/nutritionist-01/wp-json/wp/v2/pages/97\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/nutritionist-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-38772\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-01-about.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-01-about.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/nutritionist-01/wp-json/wp/v2/pages/141\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/nutritionist-01/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-38776\";a:12:{s:5:\"title\";s:8:\"Programs\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-01-programms.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-01-programms.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/nutritionist-01/wp-json/wp/v2/pages/145\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/nutritionist-01/programs/\";s:15:\"astra-sites-tag\";a:1:{i:989;s:8:\"programs\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-38777\";a:12:{s:5:\"title\";s:15:\"Success Stories\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-01-success-stories.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-01-success-stories.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/nutritionist-01/wp-json/wp/v2/pages/304\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/nutritionist-01/success-stories/\";s:15:\"astra-sites-tag\";a:1:{i:990;s:15:\"success-stories\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-38773\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-01-blog.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-01-blog.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/nutritionist-01/wp-json/wp/v2/pages/307\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/nutritionist-01/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:29:\"Ultimate Addons for Gutenberg\";}}}s:8:\"id-38774\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-01-contact.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/nutritionist-01-contact.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/nutritionist-01/wp-json/wp/v2/pages/143\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/nutritionist-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48318\";a:22:{s:5:\"title\";s:12:\"Nutritionist\";s:2:\"id\";i:48318;s:12:\"publish-date\";i:1603908961;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-600x2730.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-400x1820.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/nutritionist-08\";s:20:\"astra-site-parent-id\";i:1722;s:15:\"astra-sites-tag\";a:6:{i:753;s:9:\"dietitian\";i:1726;s:15:\"nutrition-coach\";i:1727;s:18:\"nutrition-coaching\";i:1725;s:17:\"nutrition-trainer\";i:754;s:12:\"nutritionist\";i:1454;s:16:\"personal-trainer\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2480;s:16:\"fitness-wellness\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-69529\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-blog.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-blog-600x1061.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/nutritionist-08/wp-json/wp/v2/pages/728\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/nutritionist-08/blog/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48321\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-600x2730.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/nutritionist-08/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/nutritionist-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48319\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-about-1-600x1230.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/nutritionist-08/wp-json/wp/v2/pages/134\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/nutritionist-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:0:{}}s:8:\"id-48322\";a:12:{s:5:\"title\";s:8:\"Programs\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-programs.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-programs-600x1480.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/nutritionist-08/wp-json/wp/v2/pages/164\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/nutritionist-08/programs/\";s:15:\"astra-sites-tag\";a:1:{i:989;s:8:\"programs\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48323\";a:12:{s:5:\"title\";s:15:\"Success Stories\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-success-stories-1.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-success-stories-1-600x942.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/nutritionist-08/wp-json/wp/v2/pages/180\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/nutritionist-08/success-stories/\";s:15:\"astra-sites-tag\";a:3:{i:432;s:6:\"review\";i:990;s:15:\"success-stories\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48320\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-contact-1-600x808.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/nutritionist-08/wp-json/wp/v2/pages/196\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/nutritionist-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-49726\";a:22:{s:5:\"title\";s:12:\"Entrepreneur\";s:2:\"id\";i:49726;s:12:\"publish-date\";i:1612274657;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/02/entrepreneur-08.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/02/entrepreneur-08.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/02/entrepreneur-08.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/entrepreneur-08\";s:20:\"astra-site-parent-id\";i:1847;s:15:\"astra-sites-tag\";a:7:{i:795;s:10:\"contractor\";i:1848;s:12:\"entrepreneur\";i:796;s:9:\"executive\";i:801;s:7:\"founder\";i:798;s:7:\"manager\";i:799;s:9:\"organizer\";i:804;s:8:\"promoter\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:29:\"Ultimate Addons for Gutenberg\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-49727\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/02/entrepreneur-08-about-me.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/02/entrepreneur-08-about-me.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/entrepreneur-08/wp-json/wp/v2/pages/25265\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/entrepreneur-08/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:1007;s:8:\"about-me\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:0:{}}s:8:\"id-49728\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/02/entrepreneur-08-blog.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/02/entrepreneur-08-blog.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/entrepreneur-08/wp-json/wp/v2/pages/25266\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/entrepreneur-08/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:0:{}}s:8:\"id-49729\";a:12:{s:5:\"title\";s:10:\"Contact Me\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/02/entrepreneur-08-contact-me.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/02/entrepreneur-08-contact-me.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/entrepreneur-08/wp-json/wp/v2/pages/25267\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/entrepreneur-08/contact-me/\";s:15:\"astra-sites-tag\";a:1:{i:1009;s:10:\"contact-me\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-49730\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/02/entrepreneur-08.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/02/entrepreneur-08.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/entrepreneur-08/wp-json/wp/v2/pages/25264\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/entrepreneur-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:0:{}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-38716\";a:22:{s:5:\"title\";s:10:\"Life Guide\";s:2:\"id\";i:38716;s:12:\"publish-date\";i:1579108927;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/life-coach-homepage.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/life-coach-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/life-coach-homepage.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/life-coach-04\";s:20:\"astra-site-parent-id\";i:1122;s:15:\"astra-sites-tag\";a:6:{i:610;s:8:\"coaching\";i:1123;s:11:\"councelling\";i:608;s:8:\"guidance\";i:612;s:10:\"life-coach\";i:609;s:9:\"motivator\";i:1018;s:18:\"self-improvement-2\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:5:{i:2825;s:8:\"coaching\";i:2794;s:10:\"consulting\";i:2874;s:10:\"life-coach\";i:2770;s:8:\"personal\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:962:\"<!-- wp:paragraph -->\n<p>The Life Guide template is a captivating design ideal for life coaches, counsellors and other experts. It opens will a fullscreen image and bold headline and expands into a white, welcoming homepage that beckons you in.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s exactly the kind of design that works for this niche, inclusive, accessible and relaxing. The subtle putty color helps with that, as do the simple graphics and page layouts. It’s an excellent design ideal for the industry.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Life Guide template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Well-designed template for life coaches, counsellors and professionals</li><li>Informal, relaxing feel</li><li>Great balance of colors, fonts and whitespace</li><li>Flexible content areas to tell your story</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:76:\"Captivating web design that creates reassurance and welcome in equal measure\";s:5:\"pages\";a:4:{s:8:\"id-38721\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/life-coach-homepage.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/life-coach-homepage.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/life-coach-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/life-coach-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-38717\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/life-coach-about-page.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/life-coach-about-page.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/life-coach-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/life-coach-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-38719\";a:12:{s:5:\"title\";s:8:\"Coaching\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/01/life-coach-coaching-page.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/01/life-coach-coaching-page.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/life-coach-04/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/life-coach-04/coaching/\";s:15:\"astra-sites-tag\";a:2:{i:610;s:8:\"coaching\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-38720\";a:12:{s:5:\"title\";s:10:\"Contact Me\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/life-coach-contact-page.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/life-coach-contact-page.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/life-coach-04/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/life-coach-04/contact-me/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:38710;s:26:\"related-elementor-template\";i:38716;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-38710\";a:22:{s:5:\"title\";s:10:\"Life Guide\";s:2:\"id\";i:38710;s:12:\"publish-date\";i:1579108625;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/life-coach-03-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/life-coach-03-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/life-coach-03-home.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/life-coach-03\";s:20:\"astra-site-parent-id\";i:1121;s:15:\"astra-sites-tag\";a:5:{i:610;s:8:\"coaching\";i:608;s:8:\"guidance\";i:612;s:10:\"life-coach\";i:609;s:9:\"motivator\";i:611;s:16:\"self-improvement\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-38714\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/life-coach-03-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/life-coach-03-home.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/life-coach-03/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/life-coach-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38711\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/life-coach-03-about.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/life-coach-03-about.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/life-coach-03/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/life-coach-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38712\";a:12:{s:5:\"title\";s:8:\"Coaching\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/01/life-coach-03-services.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/01/life-coach-03-services.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/life-coach-03/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/life-coach-03/coaching/\";s:15:\"astra-sites-tag\";a:2:{i:557;s:7:\"classes\";i:610;s:8:\"coaching\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38713\";a:12:{s:5:\"title\";s:10:\"Contact Me\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/life-coach-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/life-coach-03-contact.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/life-coach-03/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/life-coach-03/contact-me/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-38704\";a:22:{s:5:\"title\";s:15:\"Furniture Store\";s:2:\"id\";i:38704;s:12:\"publish-date\";i:1579108220;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/01/furniture-decore-homepage.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/01/furniture-decore-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/01/furniture-decore-homepage.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/furniture-store-04\";s:20:\"astra-site-parent-id\";i:1120;s:15:\"astra-sites-tag\";a:16:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:524;s:9:\"furniture\";i:856;s:15:\"furniture-store\";i:436;s:8:\"interior\";i:2357;s:22:\"online-furniture-store\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2769;s:9:\"ecommerce\";i:2879;s:9:\"furniture\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:4;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1208:\"<!-- wp:paragraph -->\n<p>The Furniture Store template utilizes classic design with a Scandi twist to deliver an eCommerce template that’s as current as it gets. It includes subtle colors, lots of whitespace and images that fit seamlessly into the overall feel.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template has a minimal look while including everything a store needs, product showcases, special offer sections, featured product areas and a shopping cart in the header. It’s all here!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Furniture Store template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Classically designed template with a Scandi twist</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Minimalist layout that lets product images stand out</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Relaxed design ideal for a wide range of online stores</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Attractive category and product pages to help you sell</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:75:\"Classically designed eCommerce template perfect for selling anything online\";s:5:\"pages\";a:2:{s:8:\"id-38706\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/01/furniture-decore-homepage.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/01/furniture-decore-homepage.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/furniture-store-04/wp-json/wp/v2/pages/19\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/furniture-store-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-38705\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/furniture-store-about-page.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/furniture-store-about-page.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/furniture-store-04/wp-json/wp/v2/pages/26\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/furniture-store-04/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";i:38696;s:26:\"related-elementor-template\";i:38704;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-38696\";a:22:{s:5:\"title\";s:15:\"Furniture Store\";s:2:\"id\";i:38696;s:12:\"publish-date\";i:1579108013;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/furniture-store-03.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/furniture-store-03.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/furniture-store-03.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/furniture-store-03\";s:20:\"astra-site-parent-id\";i:1119;s:15:\"astra-sites-tag\";a:16:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:524;s:9:\"furniture\";i:856;s:15:\"furniture-store\";i:436;s:8:\"interior\";i:2357;s:22:\"online-furniture-store\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:3;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:4;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:5;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:2:{s:8:\"id-38698\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/furniture-store-03.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/furniture-store-03.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/furniture-store-03/wp-json/wp/v2/pages/19\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/furniture-store-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38697\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/01/furniture-store-03-about-us.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/01/furniture-store-03-about-us.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/furniture-store-03/wp-json/wp/v2/pages/26\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/furniture-store-03/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-38673\";a:22:{s:5:\"title\";s:17:\"Architecture Firm\";s:2:\"id\";i:38673;s:12:\"publish-date\";i:1579107353;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-home-page.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-home-page.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-home-page.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/architects-04\";s:20:\"astra-site-parent-id\";i:1118;s:15:\"astra-sites-tag\";a:5:{i:435;s:12:\"architecture\";i:436;s:8:\"interior\";i:434;s:15:\"interior-design\";i:422;s:11:\"landscaping\";i:437;s:6:\"zoning\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2795;s:12:\"architecture\";i:2777;s:8:\"business\";i:2793;s:15:\"interior-design\";i:2852;s:11:\"landscaping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";}i:2;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:932:\"<!-- wp:paragraph -->\n<p>The Architecture Firm template has a stylish feel with light grayscale design, borderless content areas and some nice black and white images. It’s exactly the kind of feel you would expect from this niche.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template uses an understated header image with a smooth parallax effect. The rest of the homepage includes a great layout with subtle content areas and contemporary fonts to create a feeling of calm competence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Architecture Firm template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Stylish grayscale design with monochrome images</li><li>Non-linear layout ideal for creative industries</li><li>Contemporary fonts add extra lift</li><li>Welcome pops of color on supplementary pages</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:77:\"Stylish grayscale web template that shows great taste, perfect for architects\";s:5:\"pages\";a:6:{s:8:\"id-38677\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-home-page.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-home-page.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/architects-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/architects-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-38674\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-04-about.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-04-about.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/architects-04/wp-json/wp/v2/pages/70\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/architects-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-38679\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-04-services.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-04-services.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/architects-04/wp-json/wp/v2/pages/71\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/architects-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-38678\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-project-page.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-project-page.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/architects-04/wp-json/wp/v2/pages/72\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/architects-04/projects/\";s:15:\"astra-sites-tag\";a:2:{i:424;s:7:\"project\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-38675\";a:12:{s:5:\"title\";s:7:\"Clients\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-client-page.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-client-page.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/architects-04/wp-json/wp/v2/pages/73\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/architects-04/clients/\";s:15:\"astra-sites-tag\";a:1:{i:450;s:7:\"clients\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-38676\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-04-contact.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/architects-04/wp-json/wp/v2/pages/74\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/architects-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:38661;s:26:\"related-elementor-template\";i:38673;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-38661\";a:22:{s:5:\"title\";s:17:\"Architecture Firm\";s:2:\"id\";i:38661;s:12:\"publish-date\";i:1579107125;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-03.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-03.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-03.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/architects-03\";s:20:\"astra-site-parent-id\";i:1117;s:15:\"astra-sites-tag\";a:8:{i:435;s:12:\"architecture\";i:979;s:7:\"company\";i:436;s:8:\"interior\";i:434;s:15:\"interior-design\";i:981;s:17:\"interior-designer\";i:422;s:11:\"landscaping\";i:812;s:6:\"office\";i:437;s:6:\"zoning\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-38665\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-03.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-03.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/architects-03/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/architects-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38662\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-03-about-1.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-03-about-1.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/architects-03/wp-json/wp/v2/pages/70\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/architects-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38667\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-03-services-1.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-03-services-1.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/architects-03/wp-json/wp/v2/pages/71\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/architects-03/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38666\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-03-projects-1.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-03-projects-1.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/architects-03/wp-json/wp/v2/pages/72\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/architects-03/projects/\";s:15:\"astra-sites-tag\";a:1:{i:424;s:7:\"project\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38663\";a:12:{s:5:\"title\";s:7:\"Clients\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-03-clients-1.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-03-clients-1.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/architects-03/wp-json/wp/v2/pages/73\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/architects-03/clients/\";s:15:\"astra-sites-tag\";a:1:{i:450;s:7:\"clients\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38664\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-03-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/architects-03-contact-1.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/architects-03/wp-json/wp/v2/pages/74\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/architects-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-38619\";a:22:{s:5:\"title\";s:6:\"Winery\";s:2:\"id\";i:38619;s:12:\"publish-date\";i:1579106727;s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-04-homepage-screenshot.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-04-homepage-screenshot.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-04-homepage-screenshot.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/winery-04\";s:20:\"astra-site-parent-id\";i:1115;s:15:\"astra-sites-tag\";a:4:{i:635;s:7:\"brewery\";i:632;s:7:\"farming\";i:1019;s:14:\"wine-prouction\";i:633;s:6:\"winery\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:2:{i:2777;s:8:\"business\";i:2813;s:6:\"winery\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2474;s:13:\"manufacturing\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:948:\"<!-- wp:paragraph -->\n<p>The Winery template makes its case immediately with a high quality image in the header. The rest of the homepage combines dark, light and a red contrast color to create that feeling of luxury you’re looking for.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template has a superb layout with plenty of opportunities to tell your story, share products and services and communicate with your audience. The supplementary pages are equally attractive, helping to keep a coherent feel throughout.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Winery template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Design makes an instant impact with that header</li><li>Innovative layout with interesting content areas</li><li>Great mix of dark, light and colors</li><li>Supplementary pages ideal for the niche</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:80:\"Classy web template that sets the scene for vineyards, vintners and wine sellers\";s:5:\"pages\";a:5:{s:8:\"id-38623\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-04-homepage-screenshot.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-04-homepage-screenshot.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/winery-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/winery-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-38624\";a:12:{s:5:\"title\";s:9:\"Our Story\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-04-our-story-screenshot.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-04-our-story-screenshot.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/winery-04/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/winery-04/our-story/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:905;s:9:\"our-story\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-38622\";a:12:{s:5:\"title\";s:10:\"Experience\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-04-experience-screenshot.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-04-experience-screenshot.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/winery-04/wp-json/wp/v2/pages/24\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/winery-04/experience/\";s:15:\"astra-sites-tag\";a:3:{i:636;s:10:\"experience\";i:444;s:9:\"portfolio\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-38621\";a:12:{s:5:\"title\";s:6:\"Events\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-04-events-screenshot.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-04-events-screenshot.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/winery-04/wp-json/wp/v2/pages/26\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/winery-04/events/\";s:15:\"astra-sites-tag\";a:1:{i:409;s:5:\"event\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-38620\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-04-contact-page.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-04-contact-page.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/winery-04/wp-json/wp/v2/pages/30\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/winery-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";i:38629;s:26:\"related-elementor-template\";i:38619;s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(217,'astra-sites-and-pages-page-23','a:15:{s:8:\"id-38629\";a:22:{s:5:\"title\";s:6:\"Winery\";s:2:\"id\";i:38629;s:12:\"publish-date\";i:1579106213;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-03-homepage.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/winery-03\";s:20:\"astra-site-parent-id\";i:1116;s:15:\"astra-sites-tag\";a:4:{i:635;s:7:\"brewery\";i:632;s:7:\"farming\";i:634;s:15:\"wine-production\";i:633;s:6:\"winery\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2474;s:13:\"manufacturing\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-38633\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/winery-03/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/winery-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38634\";a:12:{s:5:\"title\";s:9:\"Our Story\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-03-our-story.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-03-our-story.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/winery-03/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/winery-03/our-story/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:767;s:5:\"story\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38632\";a:12:{s:5:\"title\";s:10:\"Experience\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-03-experience.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-03-experience.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/winery-03/wp-json/wp/v2/pages/24\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/winery-03/experience/\";s:15:\"astra-sites-tag\";a:1:{i:636;s:10:\"experience\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38631\";a:12:{s:5:\"title\";s:6:\"Events\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-03-events.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-03-events.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/winery-03/wp-json/wp/v2/pages/26\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/winery-03/events/\";s:15:\"astra-sites-tag\";a:1:{i:409;s:5:\"event\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38630\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/winery-03-contact.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/winery-03/wp-json/wp/v2/pages/30\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/winery-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-38590\";a:22:{s:5:\"title\";s:24:\"Personal Fitness Trainer\";s:2:\"id\";i:38590;s:12:\"publish-date\";i:1579104172;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/fitness-trainer-02-home.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/fitness-trainer-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/fitness-trainer-02-home.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/fitness-trainer-02\";s:20:\"astra-site-parent-id\";i:1108;s:15:\"astra-sites-tag\";a:8:{i:1109;s:7:\"exercse\";i:499;s:7:\"fitness\";i:505;s:15:\"fitness-trainer\";i:506;s:19:\"functional-training\";i:500;s:3:\"gym\";i:504;s:11:\"gym-trainer\";i:503;s:7:\"trainer\";i:501;s:8:\"work-out\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2787;s:11:\"gym-fitness\";i:2771;s:8:\"one-page\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2480;s:16:\"fitness-wellness\";i:2927;s:8:\"one-page\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:984:\"<!-- wp:paragraph -->\n<p>The Personal Fitness Trainer website template is a well-balanced design with dark and light areas, a subtle but effective parallax effect and some very modern fonts. It’s a well-designed template that avoids the usual masculine design for something much more universal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template has a strong introduction with header and image and bold contrast color. The rest of the homepage includes areas for storytelling, products, services and other content as required.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Personal Fitness Trainer template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Well-balanced fitness theme with universal appeal</li><li>Dark, light and red are a great combination</li><li>Subtle but effective parallax effect</li><li>Readymade pages relevant to the fitness niche</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:82:\"Well-balanced web design with universal appeal ideal for fitness trainers and gyms\";s:5:\"pages\";a:1:{s:8:\"id-38591\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/fitness-trainer-02-home.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/fitness-trainer-02-home.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/fitness-trainer-02/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/fitness-trainer-02/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:399;s:8:\"one-page\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:38573;s:26:\"related-elementor-template\";i:38590;s:26:\"related-gutenberg-template\";i:48076;}s:8:\"id-38573\";a:22:{s:5:\"title\";s:24:\"Personal Fitness Trainer\";s:2:\"id\";i:38573;s:12:\"publish-date\";i:1579104023;s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/01/fitness-trainer-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/01/fitness-trainer-01-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/01/fitness-trainer-01-homepage.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/fitness-trainer-01\";s:20:\"astra-site-parent-id\";i:1107;s:15:\"astra-sites-tag\";a:10:{i:502;s:8:\"exercise\";i:499;s:7:\"fitness\";i:505;s:15:\"fitness-trainer\";i:506;s:19:\"functional-training\";i:500;s:3:\"gym\";i:504;s:11:\"gym-trainer\";i:399;s:8:\"one-page\";i:463;s:11:\"single-page\";i:503;s:7:\"trainer\";i:501;s:8:\"work-out\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2480;s:16:\"fitness-wellness\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-38574\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/01/fitness-trainer-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/01/fitness-trainer-01-homepage.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/fitness-trainer-01/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/fitness-trainer-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48076\";a:22:{s:5:\"title\";s:24:\"Personal Fitness Trainer\";s:2:\"id\";i:48076;s:12:\"publish-date\";i:1603893488;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/fitness-trainer-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/fitness-trainer-08-600x3142.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/fitness-trainer-08-400x2094.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/fitness-trainer-08\";s:20:\"astra-site-parent-id\";i:1697;s:15:\"astra-sites-tag\";a:9:{i:502;s:8:\"exercise\";i:499;s:7:\"fitness\";i:506;s:19:\"functional-training\";i:500;s:3:\"gym\";i:504;s:11:\"gym-trainer\";i:399;s:8:\"one-page\";i:463;s:11:\"single-page\";i:503;s:7:\"trainer\";i:501;s:8:\"work-out\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2480;s:16:\"fitness-wellness\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-48077\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/fitness-trainer-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/fitness-trainer-08-600x3142.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/fitness-trainer-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/fitness-trainer-08/\";s:15:\"astra-sites-tag\";a:3:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";i:463;s:11:\"single-page\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-38563\";a:22:{s:5:\"title\";s:6:\"Artist\";s:2:\"id\";i:38563;s:12:\"publish-date\";i:1579100483;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-feb-20-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-feb-20-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-feb-20-home.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/artist-04\";s:20:\"astra-site-parent-id\";i:1106;s:15:\"astra-sites-tag\";a:4:{i:597;s:3:\"art\";i:339;s:6:\"artist\";i:595;s:10:\"exhibition\";i:614;s:7:\"painter\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2802;s:6:\"artist\";i:2770;s:8:\"personal\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:944:\"<!-- wp:paragraph -->\n<p>The Artist template tells your story through framed images within a compelling dark and light layout. It’s a well-balanced design with comfortable fonts, great contrast colors and those images front and center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template has a flowing layout that showcases your creations alongside modest content areas to add context. Each piece can have its own page or link to the readymade portfolio page that comes with this template.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Artist template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Absorbing template ideal for artists and visual creatives</li><li>Dark and light theme with contrasting colors</li><li>Allows your art or imagery to stand proud</li><li>Readymade portfolio page with attractive layout</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:71:\"Absorbing web template that’s ideal for artists, and visual creatives\";s:5:\"pages\";a:4:{s:8:\"id-38566\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-feb-20-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-feb-20-home.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/artist-04/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/artist-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-38567\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-feb-20-portfolio.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-feb-20-portfolio.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/artist-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/artist-04/portfolio/\";s:15:\"astra-sites-tag\";a:2:{i:444;s:9:\"portfolio\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-38564\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-feb-20-about.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-feb-20-about.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/artist-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/artist-04/about/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:1007;s:8:\"about-me\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-38565\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-feb-20-contact.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-feb-20-contact.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/artist-04/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/artist-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}}s:19:\"related-bb-template\";i:38554;s:26:\"related-elementor-template\";i:38563;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-38554\";a:22:{s:5:\"title\";s:6:\"Artist\";s:2:\"id\";i:38554;s:12:\"publish-date\";i:1579099739;s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-03.jpg\";s:19:\"thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-03.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-03.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/artist-03\";s:20:\"astra-site-parent-id\";i:1105;s:15:\"astra-sites-tag\";a:4:{i:597;s:3:\"art\";i:339;s:6:\"artist\";i:595;s:10:\"exhibition\";i:614;s:7:\"painter\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-38557\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-03.jpg\";s:19:\"thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-03.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/artist-03/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/artist-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38558\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-03-portfolio.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-03-portfolio.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/artist-03/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/artist-03/portfolio/\";s:15:\"astra-sites-tag\";a:1:{i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38555\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-03-about.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-03-about.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/artist-03/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/artist-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38556\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-feb-20-contact.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/artist-03/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/artist-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-22000\";a:22:{s:5:\"title\";s:15:\"Fitness Trainer\";s:2:\"id\";i:22000;s:12:\"publish-date\";i:1559805744;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-trainer-03.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-trainer-03.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-trainer-03.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/fitness-trainer-03\";s:20:\"astra-site-parent-id\";i:93;s:15:\"astra-sites-tag\";a:11:{i:502;s:8:\"exercise\";i:499;s:7:\"fitness\";i:505;s:15:\"fitness-trainer\";i:506;s:19:\"functional-training\";i:500;s:3:\"gym\";i:976;s:14:\"gym-instructor\";i:504;s:11:\"gym-trainer\";i:399;s:8:\"one-page\";i:463;s:11:\"single-page\";i:503;s:7:\"trainer\";i:501;s:8:\"work-out\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-22875\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-trainer-03.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-trainer-03.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/fitness-trainer-03/wp-json/wp/v2/pages/99\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/fitness-trainer-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21904\";a:22:{s:5:\"title\";s:15:\"Fitness Trainer\";s:2:\"id\";i:21904;s:12:\"publish-date\";i:1557396062;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/05/image-21904-432-resized.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/05/image-21904-432-resized.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/05/image-21904-432-resized.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/fitness-trainer-04\";s:20:\"astra-site-parent-id\";i:103;s:15:\"astra-sites-tag\";a:13:{i:845;s:4:\"blue\";i:502;s:8:\"exercise\";i:499;s:7:\"fitness\";i:505;s:15:\"fitness-trainer\";i:506;s:19:\"functional-training\";i:500;s:3:\"gym\";i:976;s:14:\"gym-instructor\";i:504;s:11:\"gym-trainer\";i:399;s:8:\"one-page\";i:1020;s:8:\"personal\";i:463;s:11:\"single-page\";i:503;s:7:\"trainer\";i:501;s:8:\"work-out\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2787;s:11:\"gym-fitness\";i:2771;s:8:\"one-page\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2480;s:16:\"fitness-wellness\";i:2927;s:8:\"one-page\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:965:\"<!-- wp:paragraph -->\n<p>The Fitness Trainer template is a bold, colorful design with impactful fullscreen image overlaid by an engaging blue and green colorway. It combines the physical attributes a fitness trainer wants to communicate without being too masculine.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The inclusion of those colors along with contemporary fonts keeps the design accessible. Down the page, distinct sections divide the page and provide plenty of opportunity to communicate and engage your audience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Fitness Trainer template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Appealing design with great use of color and imagery</li><li>Shaded images work particularly well</li><li>Communicates meaning without being too masculine</li><li>Extra pages ideal for the fitness niche</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:80:\"Appealing website template with great colors ideal for gyms and fitness trainers\";s:5:\"pages\";a:1:{s:8:\"id-22949\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/06/id-22000-fitness-trainer-resize.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/06/id-22000-fitness-trainer-resize.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/fitness-trainer-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/fitness-trainer-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:22000;s:26:\"related-elementor-template\";i:21904;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-38528\";a:22:{s:5:\"title\";s:17:\"Wedding Organizer\";s:2:\"id\";i:38528;s:12:\"publish-date\";i:1579099197;s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-homepage.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-homepage.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/wedding-organizer-04\";s:20:\"astra-site-parent-id\";i:1103;s:15:\"astra-sites-tag\";a:6:{i:698;s:10:\"engagement\";i:717;s:13:\"event-planner\";i:699;s:10:\"invitation\";i:697;s:7:\"wedding\";i:716;s:15:\"wedding-planner\";i:512;s:13:\"wedding-shoot\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2784;s:5:\"event\";i:2768;s:9:\"portfolio\";i:2792;s:7:\"wedding\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2489;s:16:\"event-invitation\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:958:\"<!-- wp:paragraph -->\n<p>The Wedding Organizer template has a romantic feel that’s balanced with a business layout to combine the two things visitors want to see. It’s light, welcoming and charming in equal measure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template uses a combination of content and imagery that helps paint the picture of the perfect wedding, while promoting your products and services. It’s an exceptional template that should make conversion easy!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Wedding Organizer template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Romantic website design ideal for the wedding niche</li><li>Uses plenty of imagery and nice layout to engage</li><li>Includes lots of opportunity to showcase products and services</li><li>Readymade pages are ideal for the wedding niche</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"Romantic website design that’s designed to convert, ideal for the wedding industry\";s:5:\"pages\";a:6:{s:8:\"id-38532\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-homepage.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-homepage.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/wedding-organizer-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/wedding-organizer-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-38529\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-about-page.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-about-page.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/wedding-organizer-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/wedding-organizer-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-38533\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-services-page.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-services-page.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/wedding-organizer-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/wedding-organizer-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-38531\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-org-feb-20-gallery.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-org-feb-20-gallery.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/wedding-organizer-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/wedding-organizer-04/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-38534\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-testimonials-page.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-testimonials-page.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/wedding-organizer-04/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/wedding-organizer-04/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-38530\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-org-feb-20-contact.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-org-feb-20-contact.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/wedding-organizer-04/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/wedding-organizer-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:38513;s:26:\"related-elementor-template\";i:38528;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-38513\";a:22:{s:5:\"title\";s:17:\"Wedding Organizer\";s:2:\"id\";i:38513;s:12:\"publish-date\";i:1579099020;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-03.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-03.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-03.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/wedding-organizer-03\";s:20:\"astra-site-parent-id\";i:1102;s:15:\"astra-sites-tag\";a:5:{i:698;s:10:\"engagement\";i:717;s:13:\"event-planner\";i:699;s:10:\"invitation\";i:697;s:7:\"wedding\";i:716;s:15:\"wedding-planner\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:2:{i:2489;s:16:\"event-invitation\";i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:3;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-38517\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-03.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-03.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/wedding-organizer-03/wp-json/wp/v2/pages/223\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/wedding-organizer-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38514\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-03-about.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-03-about.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/wedding-organizer-03/wp-json/wp/v2/pages/224\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/wedding-organizer-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38518\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-03-services.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-03-services.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/wedding-organizer-03/wp-json/wp/v2/pages/225\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/wedding-organizer-03/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38516\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-03-gallery.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-03-gallery.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/wedding-organizer-03/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/wedding-organizer-03/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38519\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-03-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-03-testimonials.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/wedding-organizer-03/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/wedding-organizer-03/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38515\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/01/wedding-organizer-03-contact.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/wedding-organizer-03/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/wedding-organizer-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-56689\";a:22:{s:5:\"title\";s:20:\"Chartered Accountant\";s:2:\"id\";i:56689;s:12:\"publish-date\";i:1625667840;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2019/07/accountant-02.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2019/07/accountant-02.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2019/07/accountant-02.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/accountant-02\";s:20:\"astra-site-parent-id\";i:2253;s:15:\"astra-sites-tag\";a:3:{i:447;s:10:\"accountant\";i:449;s:20:\"chartered-accountant\";i:2254;s:22:\"finance-and-accounting\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:5:{i:2823;s:10:\"accounting\";i:2805;s:7:\"finance\";i:2866;s:9:\"insurance\";i:2770;s:8:\"personal\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2481;s:15:\"finance-service\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1181:\"<!-- wp:paragraph -->\n<p>The Chartered Accountant template avoids the usual seriousness of the niche while building the authority it needs using modern design and a bright blue color.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template reflects a calm competence we would want from an accountant without being too sober. There is plenty of whitespace and flexible content areas to cover products, services and expertise while creating an inclusive vibe that draws you in.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Chartered Accountant template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Bold blue color makes a statement without overbearing</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Design communicated competence without being too serious</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lots of opportunities to showcase products and services</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Readymade pages covering most needs</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"Well-designed web template with fetching colors ideal for any business or profession\";s:5:\"pages\";a:0:{}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:56689;s:26:\"related-gutenberg-template\";i:56682;}s:8:\"id-56682\";a:22:{s:5:\"title\";s:20:\"Chartered Accountant\";s:2:\"id\";i:56682;s:12:\"publish-date\";i:1614963624;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-600x2501.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-400x1667.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/accountant-08\";s:20:\"astra-site-parent-id\";i:2252;s:15:\"astra-sites-tag\";a:3:{i:447;s:10:\"accountant\";i:449;s:20:\"chartered-accountant\";i:2254;s:22:\"finance-and-accounting\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2481;s:15:\"finance-service\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-56683\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-about.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-about-600x1203.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/accountant-08/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/accountant-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56684\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-contact-600x975.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/accountant-08/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/accountant-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56685\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-600x2501.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/accountant-08/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/accountant-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56686\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-services.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-services-600x1364.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/accountant-08/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/accountant-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56687\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-testimonials-600x1326.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/accountant-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/accountant-08/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56688\";a:12:{s:5:\"title\";s:13:\"Why Choose Me\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-why-choose-me.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-why-choose-me-600x1040.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/accountant-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/accountant-08/why-choose-me/\";s:15:\"astra-sites-tag\";a:3:{i:453;s:8:\"features\";i:760;s:13:\"why-choose-us\";i:852;s:6:\"why-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-38488\";a:22:{s:5:\"title\";s:17:\"Massage Therapist\";s:2:\"id\";i:38488;s:12:\"publish-date\";i:1579094291;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-spa-homepage.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-spa-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-spa-homepage.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/massage-therapist-04\";s:20:\"astra-site-parent-id\";i:1101;s:15:\"astra-sites-tag\";a:7:{i:532;s:11:\"acupressure\";i:528;s:7:\"massage\";i:527;s:17:\"massage-therapist\";i:529;s:13:\"physiotherapy\";i:531;s:11:\"reflexology\";i:533;s:10:\"relaxation\";i:530;s:3:\"spa\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2822;s:15:\"massage-therapy\";i:2856;s:3:\"spa\";i:2833;s:20:\"therapy-psychologist\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2479;s:6:\"beauty\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:899:\"<!-- wp:paragraph -->\n<p>The Massage Therapist template has that serene feel you want to evoke in future clients alongside the information you need to provide to convert them into customers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template is a relaxed mix of purple and white that creates engagement as well as a feeling of luxury. There’s lots of whitespace and a strong product section in the center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Massage Therapist template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Nice color combination creates the feeling of a lifestyle</li><li>Attractive service section in the center of the page</li><li>Additional pages ideal for massage therapists</li><li>Flexible content areas to add or change what’s already there</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:80:\"Relaxed, modern website template ideal for massage therapists and spa businesses\";s:5:\"pages\";a:5:{s:8:\"id-38491\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-spa-homepage.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-spa-homepage.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/massage-therapist-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/massage-therapist-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-38489\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-spa-about-page.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-spa-about-page.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/massage-therapist-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/massage-therapist-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-38492\";a:12:{s:5:\"title\";s:8:\"Massages\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-spa-massgaes-page.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-spa-massgaes-page.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/massage-therapist-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/massage-therapist-04/massages/\";s:15:\"astra-sites-tag\";a:2:{i:528;s:7:\"massage\";i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-38493\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-spa-testimonials-page.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-spa-testimonials-page.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/massage-therapist-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/massage-therapist-04/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-38490\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-spa-contact-page.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-spa-contact-page.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/massage-therapist-04/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/massage-therapist-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:38429;s:26:\"related-elementor-template\";i:38488;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-38449\";a:22:{s:5:\"title\";s:18:\"Personal Dietitian\";s:2:\"id\";i:38449;s:12:\"publish-date\";i:1579091446;s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/01/dietitian-03.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/01/dietitian-03.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/01/dietitian-03.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/dietitian-03\";s:20:\"astra-site-parent-id\";i:1100;s:15:\"astra-sites-tag\";a:3:{i:753;s:9:\"dietitian\";i:336;s:4:\"food\";i:754;s:12:\"nutritionist\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:2:{i:37;s:4:\"blog\";i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2480;s:16:\"fitness-wellness\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:29:\"Ultimate Addons for Gutenberg\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-38453\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/01/dietitian-03.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/01/dietitian-03.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/dietitian-03/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/dietitian-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38450\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/dietitian-03-about.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/dietitian-03-about.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/dietitian-03/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/dietitian-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38454\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/dietitian-03-services.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/dietitian-03-services.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/dietitian-03/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/dietitian-03/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38451\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/dietitian-03-blog.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/dietitian-03-blog.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/dietitian-03/wp-json/wp/v2/pages/995\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/dietitian-03/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:29:\"Ultimate Addons for Gutenberg\";}}}s:8:\"id-38452\";a:12:{s:5:\"title\";s:10:\"Contact Me\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/dietitian-03-contact-me.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/dietitian-03-contact-me.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/dietitian-03/wp-json/wp/v2/pages/19\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/dietitian-03/contact-me/\";s:15:\"astra-sites-tag\";a:1:{i:1009;s:10:\"contact-me\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-38429\";a:22:{s:5:\"title\";s:17:\"Massage Therapist\";s:2:\"id\";i:38429;s:12:\"publish-date\";i:1579090737;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-therapist-03.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-therapist-03.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-therapist-03.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/massage-therapist-03\";s:20:\"astra-site-parent-id\";i:1099;s:15:\"astra-sites-tag\";a:7:{i:532;s:11:\"acupressure\";i:528;s:7:\"massage\";i:527;s:17:\"massage-therapist\";i:622;s:13:\"psychotherapy\";i:531;s:11:\"reflexology\";i:533;s:10:\"relaxation\";i:530;s:3:\"spa\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2479;s:6:\"beauty\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-38432\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-therapist-03.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-therapist-03.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/massage-therapist-03/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/massage-therapist-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38430\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-therapist-03-about.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-therapist-03-about.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/massage-therapist-03/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/massage-therapist-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38433\";a:12:{s:5:\"title\";s:8:\"Massages\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-therapist-03-massages.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-therapist-03-massages.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/massage-therapist-03/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/massage-therapist-03/massages/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38434\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-therapist-03-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-therapist-03-testimonials.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/massage-therapist-03/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/massage-therapist-03/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-38431\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-therapist-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/01/massage-therapist-03-contact.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/massage-therapist-03/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/massage-therapist-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(218,'astra-sites-and-pages-page-24','a:15:{s:8:\"id-38418\";a:22:{s:5:\"title\";s:18:\"Personal Dietitian\";s:2:\"id\";i:38418;s:12:\"publish-date\";i:1579090429;s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/01/personal-dietitian-homepage.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/01/personal-dietitian-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/01/personal-dietitian-homepage.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/dietitian-04\";s:20:\"astra-site-parent-id\";i:1098;s:15:\"astra-sites-tag\";a:3:{i:753;s:9:\"dietitian\";i:336;s:4:\"food\";i:754;s:12:\"nutritionist\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:2:{i:37;s:4:\"blog\";i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2794;s:10:\"consulting\";i:2785;s:4:\"food\";i:2834;s:10:\"healthcare\";i:2833;s:20:\"therapy-psychologist\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2480;s:16:\"fitness-wellness\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:29:\"Ultimate Addons for Gutenberg\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1036:\"<!-- wp:paragraph -->\n<p>The Personal Dietitian template is a stylish design that uses a green color to provide reassurance alongside whitespace and alternating dark and light backgrounds. It’s a simple and very effective look.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes all the essential ingredients a dietitian or nutritionist would want to share including products, services, recipes, consultation information and calls to action. There’s also a readymade blog section for you to engage further.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Personal Dietitian template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Composed design ideal for dietitians or nutritionists</li><li>Includes areas to share products, services, consultations and more</li><li>Readymade blog page so you can begin communicating with your audience</li><li>Attractive contact form to help consultation signups</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:76:\"Composed website template ideal for dietitians, nutritionists or consultants\";s:5:\"pages\";a:5:{s:8:\"id-38422\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/01/personal-dietitian-homepage.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/01/personal-dietitian-homepage.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/dietitian-04/wp-json/wp/v2/pages/450\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/dietitian-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-38419\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/01/personal-dietitian-about-page.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/01/personal-dietitian-about-page.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/dietitian-04/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/dietitian-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-38423\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/01/personal-dietitian-services-page.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/01/personal-dietitian-services-page.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/dietitian-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/dietitian-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-38420\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/personal-dietitian-blog.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/personal-dietitian-blog.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/dietitian-04/wp-json/wp/v2/pages/995\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/dietitian-04/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:29:\"Ultimate Addons for Gutenberg\";}}}s:8:\"id-38421\";a:12:{s:5:\"title\";s:10:\"Contact Me\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/personal-dietitian-contact.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/personal-dietitian-contact.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/dietitian-04/wp-json/wp/v2/pages/19\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/dietitian-04/contact-me/\";s:15:\"astra-sites-tag\";a:1:{i:1009;s:10:\"contact-me\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:38449;s:26:\"related-elementor-template\";i:38418;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-34226\";a:22:{s:5:\"title\";s:12:\"Photographer\";s:2:\"id\";i:34226;s:12:\"publish-date\";i:1571855974;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/10/photographer-04-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/10/photographer-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/10/photographer-04-home.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/photographer-04\";s:20:\"astra-site-parent-id\";i:1006;s:15:\"astra-sites-tag\";a:7:{i:513;s:6:\"camera\";i:515;s:4:\"lens\";i:511;s:12:\"photographer\";i:509;s:11:\"photography\";i:1022;s:12:\"professional\";i:514;s:11:\"videography\";i:512;s:13:\"wedding-shoot\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2770;s:8:\"personal\";i:2773;s:11:\"photography\";i:2768;s:9:\"portfolio\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2485;s:11:\"photography\";i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:937:\"<!-- wp:paragraph -->\n<p>The Photographer website template opens in an exceptional way with an awesome graphic and headline. Scroll through the parallax effects to access content areas where you can tell your story and outline your products and services.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is a very creative template with plenty of white space to offset strong imagery and lots of opportunities to promote your work and engage the audience with some high quality images and graphics.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Photographer template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Awesome introduction thanks to that graphical header</li><li>Nice parallax effect that adds a touch of style</li><li>Great fonts used throughout the template</li><li>Lots of opportunities to use images</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:83:\"Creative web template that’s ideal for painters, photographers and visual artists\";s:5:\"pages\";a:5:{s:8:\"id-34229\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/10/photographer-04-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/10/photographer-04-home.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/photographer-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/photographer-04/\";s:15:\"astra-sites-tag\";a:3:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";i:1008;s:21:\"photographer-homepage\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-34227\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/10/photographer-04-about-1.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/10/photographer-04-about-1.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/photographer-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/photographer-04/about/\";s:15:\"astra-sites-tag\";a:3:{i:352;s:5:\"about\";i:1007;s:8:\"about-me\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-34231\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/10/photographer-04-services.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/10/photographer-04-services.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/photographer-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/photographer-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-34230\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/10/photographer-04-portfolio-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/10/photographer-04-portfolio-1.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/photographer-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/photographer-04/portfolio/\";s:15:\"astra-sites-tag\";a:2:{i:444;s:9:\"portfolio\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-34228\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/10/photographer-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/10/photographer-04-contact.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/photographer-04/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/photographer-04/contact/\";s:15:\"astra-sites-tag\";a:3:{i:415;s:7:\"contact\";i:1009;s:10:\"contact-me\";i:454;s:10:\"contact-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-34326\";a:22:{s:5:\"title\";s:14:\"Animal Welfare\";s:2:\"id\";i:34326;s:12:\"publish-date\";i:1573127791;s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/03/animal-welfare-home-page.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/03/animal-welfare-home-page.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/03/animal-welfare-home-page.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/animal-welfare-02\";s:20:\"astra-site-parent-id\";i:1011;s:15:\"astra-sites-tag\";a:7:{i:625;s:7:\"charity\";i:735;s:6:\"donate\";i:1013;s:8:\"donation\";i:624;s:10:\"foundation\";i:1482;s:6:\"givewp\";i:745;s:12:\"organization\";i:1012;s:7:\"welfare\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:39;s:4:\"free\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:3:{i:2786;s:17:\"charity-nonprofit\";i:2872;s:19:\"donation-fundraiser\";i:2830;s:6:\"nature\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2492;s:10:\"non-profit\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:4:\"give\";s:4:\"init\";s:13:\"give/give.php\";s:4:\"name\";s:22:\"Give - Donation Plugin\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1003:\"<!-- wp:paragraph -->\n<p>The Animal Welfare template uses a bold full screen shaded image and contrasting colors to make an impact. The image sets the scene perfectly while the white and orange fonts ensure your message is heard loud and clear.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The overall design lightens up after that header, with a light, bright feel that encourages you to explore. Flexible content areas and extra pages provide the opportunity to state your case, tell your story and encourage giving.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Animal Welfare template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Impactful design with bold full screen header section</li><li>Contrasting dark and white with orange colors work well</li><li>Example pages are all relevant to charities and nonprofits</li><li>Attractive contact page with engagement opportunities</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:80:\"Impactful web template with strong introduction and all the ingredients you need\";s:5:\"pages\";a:9:{s:8:\"id-57929\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-02/wp-json/wp/v2/pages/1611\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/animal-welfare-02/donor-dashboard/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-57930\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-02/wp-json/wp/v2/pages/1619\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/animal-welfare-02/donor-dashboard-2/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-57931\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-02/wp-json/wp/v2/pages/1623\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/animal-welfare-02/donor-dashboard-3/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-57932\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-02/wp-json/wp/v2/pages/1626\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/animal-welfare-02/donor-dashboard-4/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-43720\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/03/animal-welfare-home-page.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/03/animal-welfare-home-page.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/animal-welfare-02/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/animal-welfare-02/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-43718\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/03/animal-welfare-02-about-us.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/03/animal-welfare-02-about-us.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/animal-welfare-02/wp-json/wp/v2/pages/138\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/animal-welfare-02/about-us/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-43721\";a:12:{s:5:\"title\";s:17:\"See All Campaigns\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/03/animals-welfare-campaigns-page.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/03/animals-welfare-campaigns-page.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/animal-welfare-02/wp-json/wp/v2/pages/290\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/animal-welfare-02/see-all-campaigns/\";s:15:\"astra-sites-tag\";a:5:{i:1479;s:9:\"campaigns\";i:625;s:7:\"charity\";i:735;s:6:\"donate\";i:1015;s:4:\"give\";i:1482;s:6:\"givewp\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:4:\"give\";s:4:\"init\";s:13:\"give/give.php\";s:4:\"name\";s:22:\"Give - Donation Plugin\";}}}s:8:\"id-43722\";a:12:{s:5:\"title\";s:17:\"Star Contributors\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/03/animal-welfare-contributor-page.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/03/animal-welfare-contributor-page.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/animal-welfare-02/wp-json/wp/v2/pages/386\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/animal-welfare-02/star-contributors/\";s:15:\"astra-sites-tag\";a:3:{i:1480;s:6:\"donors\";i:1482;s:6:\"givewp\";i:1481;s:11:\"star-donors\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:4:\"give\";s:4:\"init\";s:13:\"give/give.php\";s:4:\"name\";s:22:\"Give - Donation Plugin\";}}}s:8:\"id-43719\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/03/animal-welfare-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/03/animal-welfare-02-contact.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/animal-welfare-02/wp-json/wp/v2/pages/139\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/animal-welfare-02/contact/\";s:15:\"astra-sites-tag\";a:5:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";i:896;s:13:\"get-connected\";i:377;s:12:\"get-in-touch\";i:1483;s:12:\"get-involved\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:34326;s:26:\"related-gutenberg-template\";i:48490;}s:8:\"id-48490\";a:22:{s:5:\"title\";s:14:\"Animal Welfare\";s:2:\"id\";i:48490;s:12:\"publish-date\";i:1603984632;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08-600x2724.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08-400x1816.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/animal-welfare-08\";s:20:\"astra-site-parent-id\";i:1741;s:15:\"astra-sites-tag\";a:7:{i:625;s:7:\"charity\";i:735;s:6:\"donate\";i:1013;s:8:\"donation\";i:624;s:10:\"foundation\";i:1482;s:6:\"givewp\";i:745;s:12:\"organization\";i:1012;s:7:\"welfare\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:39;s:4:\"free\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2492;s:10:\"non-profit\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:4:\"give\";s:4:\"init\";s:13:\"give/give.php\";s:4:\"name\";s:22:\"Give - Donation Plugin\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:3;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:13:{s:8:\"id-57933\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1485\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/animal-welfare-08/donor-dashboard/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-57934\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1486\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/animal-welfare-08/donor-dashboard-2/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-57935\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1488\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/animal-welfare-08/donor-dashboard-3/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-57936\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1489\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:57:\"//websitedemos.net/animal-welfare-08/donor-dashboard-3-5/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-57937\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1490\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:57:\"//websitedemos.net/animal-welfare-08/donor-dashboard-3-4/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-57938\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1491\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:57:\"//websitedemos.net/animal-welfare-08/donor-dashboard-3-3/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-57939\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1492\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:57:\"//websitedemos.net/animal-welfare-08/donor-dashboard-3-2/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-57940\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1493\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/animal-welfare-08/donor-dashboard-4/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-48493\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08-600x2724.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1026\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/animal-welfare-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48491\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08-about-1-600x1695.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1027\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/animal-welfare-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48494\";a:12:{s:5:\"title\";s:17:\"See All Campaigns\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08-see-all-campaigns.jpg\";s:19:\"thumbnail-image-url\";s:100:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08-see-all-campaigns-600x1711.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1028\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/animal-welfare-08/see-all-campaigns/\";s:15:\"astra-sites-tag\";a:1:{i:1479;s:9:\"campaigns\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:4:\"give\";s:4:\"init\";s:13:\"give/give.php\";s:4:\"name\";s:22:\"Give - Donation Plugin\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48495\";a:12:{s:5:\"title\";s:17:\"Star Contributors\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08-star-contributor.jpg\";s:19:\"thumbnail-image-url\";s:99:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08-star-contributor-600x1625.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1029\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/animal-welfare-08/star-contributors/\";s:15:\"astra-sites-tag\";a:2:{i:1014;s:10:\"contribute\";i:1481;s:11:\"star-donors\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:4:\"give\";s:4:\"init\";s:13:\"give/give.php\";s:4:\"name\";s:22:\"Give - Donation Plugin\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48492\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08-contact-1-600x1230.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1030\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/animal-welfare-08/contact/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-33461\";a:22:{s:5:\"title\";s:14:\"Dentist Clinic\";s:2:\"id\";i:33461;s:12:\"publish-date\";i:1569935725;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/10/dental-clinic-homepage.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/10/dental-clinic-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/10/dental-clinic-homepage.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/dentist-02\";s:20:\"astra-site-parent-id\";i:986;s:15:\"astra-sites-tag\";a:8:{i:623;s:7:\"dentist\";i:601;s:6:\"doctor\";i:604;s:10:\"healthcare\";i:605;s:8:\"hospital\";i:399;s:8:\"one-page\";i:1022;s:12:\"professional\";i:463;s:11:\"single-page\";i:607;s:9:\"treatment\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:6:{i:2799;s:7:\"dentist\";i:2867;s:6:\"doctor\";i:2834;s:10:\"healthcare\";i:2780;s:8:\"hospital\";i:2841;s:14:\"medical-clinic\";i:2771;s:8:\"one-page\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2490;s:10:\"healthcare\";i:2927;s:8:\"one-page\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1197:\"<!-- wp:paragraph -->\n<p>The Dentist Clinic website template is a clean, modern design with reassuring colors and fonts and a contact form front and center. The blue and green are classic medical colors and combine well with the white.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The rest of the design provides areas to tell your story, outline products and services and patient testimonials. There are also attractive calls to action throughout, everything you need to build a website for a practice.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Dentist Clinic template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Uses colors we automatically relate to medicine</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Excellent layout with lots of content areas and whitespace</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Includes common content areas a dentist would require</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Attractive calls to action throughout</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:72:\"Well-designed template ideal for dentists, clinics and medical practices\";s:5:\"pages\";a:1:{s:8:\"id-52344\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/10/dental-clinic-homepage.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/10/dental-clinic-homepage.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/dentist-02/wp-json/wp/v2/pages/384\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/dentist-02/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:463;s:11:\"single-page\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:33461;s:26:\"related-gutenberg-template\";i:48442;}s:8:\"id-48442\";a:22:{s:5:\"title\";s:14:\"Dentist Clinic\";s:2:\"id\";i:48442;s:12:\"publish-date\";i:1603913248;s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/10/dentist-08-1.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/dentist-08-1-600x2480.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/dentist-08-1-400x1653.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/dentist-08\";s:20:\"astra-site-parent-id\";i:1733;s:15:\"astra-sites-tag\";a:3:{i:338;s:6:\"dental\";i:623;s:7:\"dentist\";i:1734;s:14:\"dentist-clinic\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2490;s:10:\"healthcare\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-48443\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/10/dentist-08-1.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/dentist-08-1-600x2480.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/dentist-08/wp-json/wp/v2/pages/409\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/dentist-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-31976\";a:22:{s:5:\"title\";s:12:\"Pet Services\";s:2:\"id\";i:31976;s:12:\"publish-date\";i:1568715864;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/09/pet-sitting-01.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/09/pet-sitting-01.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/09/pet-sitting-01.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/pet-sitting-01\";s:20:\"astra-site-parent-id\";i:909;s:15:\"astra-sites-tag\";a:7:{i:974;s:3:\"cat\";i:376;s:12:\"dog-training\";i:375;s:11:\"dog-walking\";i:374;s:8:\"pet-care\";i:372;s:11:\"pet-minding\";i:371;s:11:\"pet-sitting\";i:373;s:12:\"pet-training\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2472;s:4:\"pets\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-31980\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/09/pet-sitting-01.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/09/pet-sitting-01.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/pet-sitting-01/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/pet-sitting-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-31977\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/09/pet-sitting-01-about-us.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/09/pet-sitting-01-about-us.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/pet-sitting-01/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/pet-sitting-01/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-31981\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/09/pet-sitting-01-services.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/09/pet-sitting-01-services.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/pet-sitting-01/wp-json/wp/v2/pages/18\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/pet-sitting-01/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-31979\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/09/pet-sitting-01-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/09/pet-sitting-01-contact-us.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/pet-sitting-01/wp-json/wp/v2/pages/20\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/pet-sitting-01/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47862\";a:22:{s:5:\"title\";s:11:\"Pet Sitting\";s:2:\"id\";i:47862;s:12:\"publish-date\";i:1603821511;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-sitting-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-sitting-08-600x2415.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-sitting-08-400x1610.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/pet-sitting-08\";s:20:\"astra-site-parent-id\";i:1680;s:15:\"astra-sites-tag\";a:5:{i:374;s:8:\"pet-care\";i:372;s:11:\"pet-minding\";i:371;s:11:\"pet-sitting\";i:373;s:12:\"pet-training\";i:1687;s:11:\"pet-walking\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2472;s:4:\"pets\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-47864\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-sitting-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-sitting-08-600x2415.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/pet-sitting-08/wp-json/wp/v2/pages/506\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/pet-sitting-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47866\";a:12:{s:5:\"title\";s:10:\"Who We Are\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-sitting-08-who-we-are.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-sitting-08-who-we-are-600x2193.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/pet-sitting-08/wp-json/wp/v2/pages/508\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/pet-sitting-08/who-we-are/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47865\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-sitting-08-services.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-sitting-08-services-600x2250.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/pet-sitting-08/wp-json/wp/v2/pages/509\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/pet-sitting-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47863\";a:12:{s:5:\"title\";s:12:\"Get In Touch\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-sitting-08-get-in-touch.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-sitting-08-get-in-touch-600x1036.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/pet-sitting-08/wp-json/wp/v2/pages/510\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/pet-sitting-08/get-in-touch/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-28824\";a:22:{s:5:\"title\";s:10:\"Fly Movers\";s:2:\"id\";i:28824;s:12:\"publish-date\";i:1565114013;s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-03-homepage.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/movers-packers-03\";s:20:\"astra-site-parent-id\";i:363;s:15:\"astra-sites-tag\";a:3:{i:364;s:6:\"movers\";i:365;s:7:\"packers\";i:366;s:9:\"transport\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2473;s:9:\"transport\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-28828\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/movers-packers-03/wp-json/wp/v2/pages/124\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/movers-packers-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-28825\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-03-about-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-03-about-1.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/movers-packers-03/wp-json/wp/v2/pages/69\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/movers-packers-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-28829\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-03-services-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-03-services-1.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/movers-packers-03/wp-json/wp/v2/pages/125\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/movers-packers-03/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-28830\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-03-testimonials-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-03-testimonials-1.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/movers-packers-03/wp-json/wp/v2/pages/75\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/movers-packers-03/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-28827\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-03-faq-1.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-03-faq-1.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/movers-packers-03/wp-json/wp/v2/pages/73\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/movers-packers-03/faq/\";s:15:\"astra-sites-tag\";a:1:{i:426;s:3:\"faq\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-28826\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-03-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-03-contact-2.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/movers-packers-03/wp-json/wp/v2/pages/71\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/movers-packers-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-28407\";a:22:{s:5:\"title\";s:12:\"Tow Services\";s:2:\"id\";i:28407;s:12:\"publish-date\";i:1564752014;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/08/tow-services-03-home01.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/08/tow-services-03-home01.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/08/tow-services-03-home01.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/tow-services-03\";s:20:\"astra-site-parent-id\";i:358;s:15:\"astra-sites-tag\";a:3:{i:555;s:15:\"car-tow-service\";i:554;s:18:\"emergency-services\";i:556;s:12:\"tow-services\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2473;s:9:\"transport\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-28411\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/08/tow-services-03-home01.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/08/tow-services-03-home01.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/tow-services-03/wp-json/wp/v2/pages/287\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/tow-services-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-28408\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/08/tow-services-03-about01.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/08/tow-services-03-about01.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/tow-services-03/wp-json/wp/v2/pages/288\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/tow-services-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-28412\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/08/tow-services-03-services-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/08/tow-services-03-services-1.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/tow-services-03/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/tow-services-03/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-28413\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/08/tow-services-03-testimonials-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/08/tow-services-03-testimonials-1.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/tow-services-03/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/tow-services-03/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-28410\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/08/tow-services-03-faq-1.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/08/tow-services-03-faq-1.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/tow-services-03/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/tow-services-03/faq/\";s:15:\"astra-sites-tag\";a:1:{i:426;s:3:\"faq\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-28409\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/08/tow-services-03-contact01.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/08/tow-services-03-contact01.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/tow-services-03/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/tow-services-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-22675\";a:22:{s:5:\"title\";s:12:\"Pet Services\";s:2:\"id\";i:22675;s:12:\"publish-date\";i:1562655449;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/pet-sitting-homepage.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/pet-sitting-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/pet-sitting-homepage.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/pet-sitting-02\";s:20:\"astra-site-parent-id\";i:908;s:15:\"astra-sites-tag\";a:8:{i:974;s:3:\"cat\";i:376;s:12:\"dog-training\";i:375;s:11:\"dog-walking\";i:1021;s:14:\"local-business\";i:374;s:8:\"pet-care\";i:372;s:11:\"pet-minding\";i:371;s:11:\"pet-sitting\";i:373;s:12:\"pet-training\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2809;s:10:\"pet-animal\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2472;s:4:\"pets\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:957:\"<!-- wp:paragraph -->\n<p>The Pet Services template uses an emotive image front and center to begin building a relationship with the reader. That is complemented by friendly fonts, approachable colors and a nice feel throughout the template.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design is simple but very effective, with a combination of dark, light and the orange color keeping things light and accessible. There are a range of flexible content areas to help tell your story along with opportunities to accept donations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Pet Services template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Emotive image to being building relationships</li><li>Great use of whitespace on all pages</li><li>Default colors and fonts work well</li><li>Option to accept donations through the website</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"Emotive template that could be used for any type of pet shop or pet services company\";s:5:\"pages\";a:4:{s:8:\"id-22679\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/pet-sitting-homepage.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/pet-sitting-homepage.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/pet-sitting-02/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/pet-sitting-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-22676\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/pet-sitting-aboutpage.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/pet-sitting-aboutpage.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/pet-sitting-02/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/pet-sitting-02/about-us/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-22680\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/pet-sitting-services-page.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/pet-sitting-services-page.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/pet-sitting-02/wp-json/wp/v2/pages/18\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/pet-sitting-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-22678\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/pet-sitting-get-in-touch.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/pet-sitting-get-in-touch.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/pet-sitting-02/wp-json/wp/v2/pages/20\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/pet-sitting-02/contact-us/\";s:15:\"astra-sites-tag\";a:3:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:31976;s:26:\"related-elementor-template\";i:22675;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-22422\";a:22:{s:5:\"title\";s:13:\"Pool Services\";s:2:\"id\";i:22422;s:12:\"publish-date\";i:1562220916;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-home.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/pool-services-03\";s:20:\"astra-site-parent-id\";i:81;s:15:\"astra-sites-tag\";a:3:{i:567;s:16:\"pool-maintenance\";i:569;s:13:\"swimming-pool\";i:570;s:10:\"water-pool\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:7:{s:8:\"id-22427\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-home.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/pool-services-03/wp-json/wp/v2/pages/244\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/pool-services-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-22423\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-about.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-about.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/pool-services-03/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/pool-services-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-22429\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-services.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-services.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/pool-services-03/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/pool-services-03/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-22426\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-gallery.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-gallery.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/pool-services-03/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/pool-services-03/gallery/\";s:15:\"astra-sites-tag\";a:2:{i:461;s:7:\"gallery\";i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-37956\";a:12:{s:5:\"title\";s:7:\"Reviews\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-reviews.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-reviews.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/pool-services-03/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/pool-services-03/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-37955\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-faq.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-faq.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/pool-services-03/wp-json/wp/v2/pages/202\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/pool-services-03/faq/\";s:15:\"astra-sites-tag\";a:1:{i:426;s:3:\"faq\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-22424\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-contact.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-contact.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/pool-services-03/wp-json/wp/v2/pages/245\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/pool-services-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-22129\";a:22:{s:5:\"title\";s:10:\"Shoe Store\";s:2:\"id\";i:22129;s:12:\"publish-date\";i:1561972554;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/shoe-store-home-page.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/shoe-store-home-page.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/shoe-store-home-page.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/shoe-store-04\";s:20:\"astra-site-parent-id\";i:63;s:15:\"astra-sites-tag\";a:20:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2419;s:9:\"eshopping\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:384;s:13:\"running-shoes\";i:382;s:10:\"shoe-store\";i:385;s:5:\"shoes\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:2427;s:12:\"sports-shoes\";i:749;s:5:\"store\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:3:{i:2769;s:9:\"ecommerce\";i:2857;s:15:\"online-shopping\";i:2878;s:5:\"shoes\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:7:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:3;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:4;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:5;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";}i:6;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:994:\"<!-- wp:paragraph -->\n<p>The Shoe Store template engages as soon as you open the page. It’s an eCommerce website template that sets the scene with a full screen image with graphic overlay and then unfolds into a white page with several product areas, a slider, product highlights and more.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The overall design is modern, sleek and set the scene for buying. It has an excellent layout, lots of whitespace and flexible content areas you can customize to suit your exact needs. It would work for any type of store!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Shoe Store template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Engaging eCommerce template designed to sell</li><li>Flexible content and product areas on every page</li><li>Cart in the header for seamless checkout</li><li>Can be customized to suit any type of store</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:73:\"Engaging eCommerce template that can be used for any type of online store\";s:5:\"pages\";a:3:{s:8:\"id-40007\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/shoe-store-home-page.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/shoe-store-home-page.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/shoe-store-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/shoe-store-04/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-40005\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/shoe-store-04-about.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/shoe-store-04-about.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/shoe-store-04/wp-json/wp/v2/pages/152\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/shoe-store-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-40006\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/id-22146-shoe-store-contact-resize.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/id-22146-shoe-store-contact-resize.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/shoe-store-04/wp-json/wp/v2/pages/153\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/shoe-store-04/contact/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}}s:19:\"related-bb-template\";i:22296;s:26:\"related-elementor-template\";i:22129;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-22296\";a:22:{s:5:\"title\";s:10:\"Shoe Store\";s:2:\"id\";i:22296;s:12:\"publish-date\";i:1561972334;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/shoe-store-03-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/shoe-store-03-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/shoe-store-03-home.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/shoe-store-03\";s:20:\"astra-site-parent-id\";i:71;s:15:\"astra-sites-tag\";a:20:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2419;s:9:\"eshopping\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:384;s:13:\"running-shoes\";i:382;s:10:\"shoe-store\";i:385;s:5:\"shoes\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:2427;s:12:\"sports-shoes\";i:749;s:5:\"store\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:4;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-39990\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/shoe-store-03-home-1.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/01/shoe-store-03-home-1.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/shoe-store-03/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/shoe-store-03/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-39988\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/shoe-store-03-about01.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/shoe-store-03-about01.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/shoe-store-03/wp-json/wp/v2/pages/152\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/shoe-store-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-39989\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/shoe-store-03-contact01.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/shoe-store-03-contact01.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/shoe-store-03/wp-json/wp/v2/pages/153\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/shoe-store-03/contact/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-22073\";a:22:{s:5:\"title\";s:15:\"Custom Printing\";s:2:\"id\";i:22073;s:12:\"publish-date\";i:1561631097;s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/10/custom-printing-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/10/custom-printing-02-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/10/custom-printing-02-homepage.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/custom-printing-02\";s:20:\"astra-site-parent-id\";i:70;s:15:\"astra-sites-tag\";a:20:{i:2418;s:8:\"commerce\";i:400;s:15:\"custom-printing\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2419;s:9:\"eshopping\";i:881;s:12:\"mug-printing\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:967;s:13:\"product-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:405;s:16:\"t-shirt-printing\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2769;s:9:\"ecommerce\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:3;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:4;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1161:\"<!-- wp:paragraph -->\n<p>The Custom Printing online is an online store template with an energetic, youthful vibe. It could be ideal for any type of store and could be fully customized with ease thanks to page builder compatibility.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design uses whitespace well and uses imagery to help create that feeling of engagement. There are areas for special offers, featured products and content areas you can use to showcase your products.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Custom Printing template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Youthful eCommerce template with instant appeal</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Uses images and superb layout to create engagement</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Featured product and highlight sections included</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Attractive product and category pages</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:74:\"Youthful eCommerce template designed to sell any kind of product with ease\";s:5:\"pages\";a:3:{s:8:\"id-34067\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/10/custom-printing-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/10/custom-printing-02-homepage.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/custom-printing-02/wp-json/wp/v2/pages/95\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/custom-printing-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-22263\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/06/custom-printing-02-about-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/06/custom-printing-02-about-1.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/custom-printing-02/wp-json/wp/v2/pages/96\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/custom-printing-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-22265\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/06/custom-printing-02-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2019/06/id-22265-custom-printing-contact-resize.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/custom-printing-02/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/custom-printing-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:21821;s:26:\"related-elementor-template\";i:22073;s:26:\"related-gutenberg-template\";i:49095;}}','no'),(241,'astra-sites-and-pages-page-25','a:15:{s:8:\"id-48300\";a:22:{s:5:\"title\";s:15:\"Custom Printing\";s:2:\"id\";i:48300;s:12:\"publish-date\";i:1603905872;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/custom-printing-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/custom-printing-08-600x2002.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/custom-printing-08-400x1335.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/custom-printing-08\";s:20:\"astra-site-parent-id\";i:1719;s:15:\"astra-sites-tag\";a:20:{i:2418;s:8:\"commerce\";i:400;s:15:\"custom-printing\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2419;s:9:\"eshopping\";i:881;s:12:\"mug-printing\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:967;s:13:\"product-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:405;s:16:\"t-shirt-printing\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:3;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:4;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:5;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-48303\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/custom-printing-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/custom-printing-08-600x2002.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/custom-printing-08/wp-json/wp/v2/pages/2089\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/custom-printing-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48301\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/custom-printing-08-about.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/custom-printing-08-about-600x1552.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/custom-printing-08/wp-json/wp/v2/pages/2161\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/custom-printing-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48302\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/custom-printing-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/custom-printing-08-contact-600x554.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/custom-printing-08/wp-json/wp/v2/pages/2162\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/custom-printing-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55450\";a:22:{s:5:\"title\";s:21:\"Professional Services\";s:2:\"id\";i:55450;s:12:\"publish-date\";i:1621891265;s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/professional-services-02-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/professional-services-02-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/professional-services-02-1.jpg\";s:14:\"astra-site-url\";s:43:\"//websitedemos.net/professional-services-02\";s:20:\"astra-site-parent-id\";i:2122;s:15:\"astra-sites-tag\";a:7:{i:2131;s:15:\"accounting-firm\";i:2135;s:17:\"advisory-services\";i:2134;s:8:\"advocate\";i:2133;s:13:\"advocate-firm\";i:2132;s:13:\"auditing-firm\";i:2136;s:17:\"business-coaching\";i:2129;s:21:\"professional-coaching\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2825;s:8:\"coaching\";i:2794;s:10:\"consulting\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:967:\"<!-- wp:paragraph -->\n<p>The Professional Services template is a flexible business template that could be used for any type of website. It uses classic design with light and dark areas, images and a calm yellow contrast color.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes essential content areas for products and services and the ability to add, change or remove anything you see on the page. It’s a very relaxed design that could work for many types of business with minimal effort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Professional Services template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Calm, professional template ideal for any niche</li><li>Classic design with light, dark, images and content</li><li>Create a business website with minimal effort</li><li>Effective contrast color for calls to action</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"Calm web design that includes everything the modern business needs to communicate\";s:5:\"pages\";a:0:{}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:55450;s:26:\"related-gutenberg-template\";i:55455;}s:8:\"id-55455\";a:22:{s:5:\"title\";s:21:\"Professional Services\";s:2:\"id\";i:55455;s:12:\"publish-date\";i:1621891263;s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/professional-services-08-2.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/05/professional-services-08-2-600x1765.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/05/professional-services-08-2-400x1177.jpg\";s:14:\"astra-site-url\";s:43:\"//websitedemos.net/professional-services-08\";s:20:\"astra-site-parent-id\";i:2123;s:15:\"astra-sites-tag\";a:7:{i:2131;s:15:\"accounting-firm\";i:2135;s:17:\"advisory-services\";i:2134;s:8:\"advocate\";i:2133;s:13:\"advocate-firm\";i:2132;s:13:\"auditing-firm\";i:2136;s:17:\"business-coaching\";i:2129;s:21:\"professional-coaching\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-55459\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/05/professional-services-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:100:\"https://websitedemos.net/wp-content/uploads/2021/05/professional-services-08-services-1-600x1034.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/professional-services-08/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/professional-services-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55456\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/05/professional-services-08-about-us-1.jpg\";s:19:\"thumbnail-image-url\";s:100:\"https://websitedemos.net/wp-content/uploads/2021/05/professional-services-08-about-us-1-600x1490.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/professional-services-08/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/professional-services-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55457\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2021/05/professional-services-08-contact-us-1.jpg\";s:19:\"thumbnail-image-url\";s:102:\"https://websitedemos.net/wp-content/uploads/2021/05/professional-services-08-contact-us-1-600x1010.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/professional-services-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/professional-services-08/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55458\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/professional-services-08-2.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/05/professional-services-08-2-600x1765.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/professional-services-08/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/professional-services-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-22137\";a:22:{s:5:\"title\";s:11:\"Yoga Studio\";s:2:\"id\";i:22137;s:12:\"publish-date\";i:1561627601;s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2019/06/yoga-03-page.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2019/06/yoga-03-page.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2019/06/yoga-03-page.jpg\";s:14:\"astra-site-url\";s:26:\"//websitedemos.net/yoga-03\";s:20:\"astra-site-parent-id\";i:65;s:15:\"astra-sites-tag\";a:5:{i:499;s:7:\"fitness\";i:976;s:14:\"gym-instructor\";i:395;s:15:\"yoga-instructor\";i:397;s:11:\"yoga-studio\";i:398;s:12:\"yoga-trainer\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2480;s:16:\"fitness-wellness\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-22140\";a:12:{s:5:\"title\";s:10:\"June Flint\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2019/06/yoga-03-page.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2019/06/yoga-03-page.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/yoga-03/wp-json/wp/v2/pages/47\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:27:\"//websitedemos.net/yoga-03/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-22117\";a:22:{s:5:\"title\";s:10:\"Accountant\";s:2:\"id\";i:22117;s:12:\"publish-date\";i:1561440953;s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-01-page.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-01-page.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-01-page.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/chartered-accountant-01\";s:20:\"astra-site-parent-id\";i:86;s:15:\"astra-sites-tag\";a:4:{i:447;s:10:\"accountant\";i:448;s:10:\"accounting\";i:449;s:20:\"chartered-accountant\";i:446;s:7:\"finance\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2481;s:15:\"finance-service\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-22715\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-01-page.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-01-page.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/chartered-accountant-01/wp-json/wp/v2/pages/126\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/chartered-accountant-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-22713\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-about.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-about.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/chartered-accountant-01/wp-json/wp/v2/pages/127\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/chartered-accountant-01/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-22716\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-services.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-services.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/chartered-accountant-01/wp-json/wp/v2/pages/128\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/chartered-accountant-01/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-22718\";a:12:{s:5:\"title\";s:13:\"Why choose me\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-whychooseme.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-whychooseme.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/chartered-accountant-01/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:57:\"//websitedemos.net/chartered-accountant-01/why-choose-me/\";s:15:\"astra-sites-tag\";a:1:{i:760;s:13:\"why-choose-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-22717\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-01-testimonials-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-01-testimonials-1.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/chartered-accountant-01/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:56:\"//websitedemos.net/chartered-accountant-01/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-22714\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-contact.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-contact.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/chartered-accountant-01/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/chartered-accountant-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-22317\";a:22:{s:5:\"title\";s:12:\"Photographer\";s:2:\"id\";i:22317;s:12:\"publish-date\";i:1561719372;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/06/photographer-08-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/06/photographer-08-1-600x2538.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/06/photographer-08-1-400x1692.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/photographer-08\";s:20:\"astra-site-parent-id\";i:75;s:15:\"astra-sites-tag\";a:9:{i:513;s:6:\"camera\";i:482;s:7:\"fashion\";i:515;s:4:\"lens\";i:510;s:9:\"modelling\";i:511;s:12:\"photographer\";i:509;s:11:\"photography\";i:444;s:9:\"portfolio\";i:514;s:11:\"videography\";i:512;s:13:\"wedding-shoot\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:37;s:4:\"blog\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2770;s:8:\"personal\";i:2773;s:11:\"photography\";i:2768;s:9:\"portfolio\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:2:{i:2485;s:11:\"photography\";i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-22320\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/06/photographer-08-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/06/photographer-08-1-600x2538.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/photographer-08/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/photographer-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-22318\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/06/photographer-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/06/photographer-08-about-1-600x1349.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/photographer-08/wp-json/wp/v2/pages/26\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/photographer-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-22319\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/06/photographer-08-blog-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/06/photographer-08-blog-1-600x961.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/photographer-08/wp-json/wp/v2/pages/267\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/photographer-08/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-22100\";a:22:{s:5:\"title\";s:11:\"Yoga Studio\";s:2:\"id\";i:22100;s:12:\"publish-date\";i:1561091955;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/06/yoga-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/06/yoga-04-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/06/yoga-04-homepage.jpg\";s:14:\"astra-site-url\";s:26:\"//websitedemos.net/yoga-04\";s:20:\"astra-site-parent-id\";i:62;s:15:\"astra-sites-tag\";a:8:{i:499;s:7:\"fitness\";i:976;s:14:\"gym-instructor\";i:399;s:8:\"one-page\";i:1020;s:8:\"personal\";i:463;s:11:\"single-page\";i:395;s:15:\"yoga-instructor\";i:397;s:11:\"yoga-studio\";i:398;s:12:\"yoga-trainer\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2787;s:11:\"gym-fitness\";i:2771;s:8:\"one-page\";i:2770;s:8:\"personal\";i:2808;s:4:\"yoga\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2480;s:16:\"fitness-wellness\";i:2927;s:8:\"one-page\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:924:\"<!-- wp:paragraph -->\n<p>The Yoga Studio web template is as relaxing and embracing as yoga itself. It opens gently with a shaded image and comfortable green colorway before opening up to whitespace and calm graphics.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes essential content areas for yoga studios including product and service areas, awards and qualifications, classes and times and call to action buttons for reservations. You will want for nothing with this template!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Yoga Studio template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Calm and tranquil design ideal for the yoga niche</li><li>Includes essential content areas for yoga studios</li><li>Extra pages all relevant to the niche</li><li>Popup contact form works well</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:76:\"Tranquil website design for yoga teachers, yoga studios and wellness centers\";s:5:\"pages\";a:1:{s:8:\"id-22124\";a:12:{s:5:\"title\";s:10:\"June Flint\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/06/yoga-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/06/yoga-04-homepage.jpg\";s:18:\"astra-page-api-url\";s:54:\"https://websitedemos.net/yoga-04/wp-json/wp/v2/pages/4\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:27:\"//websitedemos.net/yoga-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:22137;s:26:\"related-elementor-template\";i:49236;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-22080\";a:22:{s:5:\"title\";s:11:\"Disc Jockey\";s:2:\"id\";i:22080;s:12:\"publish-date\";i:1560835755;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-04-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-04-homepage.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/disc-jockey-04\";s:20:\"astra-site-parent-id\";i:77;s:15:\"astra-sites-tag\";a:6:{i:408;s:11:\"disk-jockey\";i:406;s:2:\"dj\";i:409;s:5:\"event\";i:407;s:5:\"music\";i:969;s:8:\"musician\";i:1022;s:12:\"professional\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:5:{i:2869;s:2:\"dj\";i:2781;s:5:\"music\";i:2770;s:8:\"personal\";i:2768;s:9:\"portfolio\";i:2801;s:5:\"video\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2486;s:9:\"art-music\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:934:\"<!-- wp:paragraph -->\n<p>The Disc Jockey template is instantly engaging and designed to make an impact. It includes a vibrant video background and coloured overlay with headlines and an area to share the dates of your next show.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The rest of the template uses a compelling design to share who you are, sell your latest releases, promote your shows and generally tell your story. If you’re a performer of any kind, this template has all the features you need.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Disc Jockey template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Engaging muted video background</li><li>Vibrant colors and design</li><li>Includes readymade content areas ideal for the niche</li><li>Fully compatible with WooCommerce or Easy Digital Downloads</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:77:\"Dark, atmospheric template ideal for websites for DJs, performers and artists\";s:5:\"pages\";a:6:{s:8:\"id-22360\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-04-homepage.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/disc-jockey-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/disc-jockey-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22356\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-04-about-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-04-about-1.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/disc-jockey-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/disc-jockey-04/about/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-36386\";a:12:{s:5:\"title\";s:5:\"Shows\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/01/disc-jockey-04-shows-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/01/disc-jockey-04-shows-1.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/disc-jockey-04/wp-json/wp/v2/pages/508\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/disc-jockey-04/shows/\";s:15:\"astra-sites-tag\";a:1:{i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22358\";a:12:{s:5:\"title\";s:11:\"Discography\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-04-discography-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-04-discography-1.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/disc-jockey-04/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/disc-jockey-04/discography/\";s:15:\"astra-sites-tag\";a:2:{i:763;s:11:\"discography\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22359\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-04-gallery-1.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-04-gallery-1.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/disc-jockey-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/disc-jockey-04/gallery/\";s:15:\"astra-sites-tag\";a:3:{i:461;s:7:\"gallery\";i:444;s:9:\"portfolio\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22357\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-04-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-04-contact-1.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/disc-jockey-04/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/disc-jockey-04/contact/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:45510;s:26:\"related-elementor-template\";i:22080;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-45510\";a:22:{s:5:\"title\";s:11:\"Disc Jockey\";s:2:\"id\";i:45510;s:12:\"publish-date\";i:1584123022;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-home.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-home.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/disc-jockey-03\";s:20:\"astra-site-parent-id\";i:1446;s:15:\"astra-sites-tag\";a:4:{i:408;s:11:\"disk-jockey\";i:406;s:2:\"dj\";i:409;s:5:\"event\";i:407;s:5:\"music\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2486;s:9:\"art-music\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-45515\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-home.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-home.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/disc-jockey-03/wp-json/wp/v2/pages/370\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/disc-jockey-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45511\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-about.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-about.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/disc-jockey-03/wp-json/wp/v2/pages/371\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/disc-jockey-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45516\";a:12:{s:5:\"title\";s:5:\"Shows\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/disc-jockey-shows.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/01/disc-jockey-shows.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/disc-jockey-03/wp-json/wp/v2/pages/878\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/disc-jockey-03/shows/\";s:15:\"astra-sites-tag\";a:2:{i:409;s:5:\"event\";i:1447;s:4:\"show\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45513\";a:12:{s:5:\"title\";s:11:\"Discography\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-discography.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-discography.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/disc-jockey-03/wp-json/wp/v2/pages/374\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/disc-jockey-03/discography/\";s:15:\"astra-sites-tag\";a:1:{i:763;s:11:\"discography\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45514\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-gallery.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-gallery.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/disc-jockey-03/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/disc-jockey-03/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45512\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-contact.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/disc-jockey-contact.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/disc-jockey-03/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/disc-jockey-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-22060\";a:22:{s:5:\"title\";s:28:\"Windows &amp; Doors Services\";s:2:\"id\";i:22060;s:12:\"publish-date\";i:1560433290;s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/windows-and-doors-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/windows-and-doors-02-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/windows-and-doors-02-homepage.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/windows-and-doors-02\";s:20:\"astra-site-parent-id\";i:123;s:15:\"astra-sites-tag\";a:7:{i:435;s:12:\"architecture\";i:440;s:5:\"doors\";i:436;s:8:\"interior\";i:1021;s:14:\"local-business\";i:439;s:14:\"local-services\";i:441;s:10:\"technician\";i:438;s:7:\"windows\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2795;s:12:\"architecture\";i:2777;s:8:\"business\";i:2768;s:9:\"portfolio\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1035:\"<!-- wp:paragraph -->\n<p>The Windows &amp; Doors Services template opens with a fullscreen image and inquiry form, ideal for the nature of this business. Alternating dark and light backgrounds divide spaces naturally, providing lots of content areas for you to tell your story.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design is modern and uses complementing colors that create authority and trust, ideal if you’re dealing with big ticket items. The design is infinitely flexible and offers the opportunity to customize everything you see on the page.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Windows &amp; Doors Services template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Modern business website template that creates trust and authority</li><li>Call to action and inquiry form front and center</li><li>Great use of fonts, colors and whitespace</li><li>Supporting pages reflect the core design</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"Business-oriented web template that could be used for any type of modern business\";s:5:\"pages\";a:6:{s:8:\"id-23164\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/windows-and-doors-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/windows-and-doors-02-homepage.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/windows-and-doors-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/windows-and-doors-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-23161\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/windows-and-doors-02-about.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/windows-and-doors-02-about.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/windows-and-doors-02/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/windows-and-doors-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23166\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/windows-and-doors-02-services.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/windows-and-doors-02-services.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/windows-and-doors-02/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/windows-and-doors-02/services/\";s:15:\"astra-sites-tag\";a:2:{i:425;s:8:\"services\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23165\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/windows-and-doors-02-portfolio.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/windows-and-doors-02-portfolio.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/windows-and-doors-02/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/windows-and-doors-02/portfolio/\";s:15:\"astra-sites-tag\";a:1:{i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23163\";a:12:{s:5:\"title\";s:11:\"FAQ&#8217;s\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/windows-and-doors-02-faq.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/windows-and-doors-02-faq.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/windows-and-doors-02/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/windows-and-doors-02/faqs/\";s:15:\"astra-sites-tag\";a:1:{i:426;s:3:\"faq\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23162\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/windows-and-doors-02-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/windows-and-doors-02-contact-1.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/windows-and-doors-02/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/windows-and-doors-02/contact/\";s:15:\"astra-sites-tag\";a:3:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:22060;s:26:\"related-gutenberg-template\";i:48391;}s:8:\"id-48391\";a:22:{s:5:\"title\";s:29:\"Windows &#038; Doors Services\";s:2:\"id\";i:48391;s:12:\"publish-date\";i:1603911926;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-1-600x2034.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-1-400x1356.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/windows-and-doors-08\";s:20:\"astra-site-parent-id\";i:1730;s:15:\"astra-sites-tag\";a:7:{i:435;s:12:\"architecture\";i:440;s:5:\"doors\";i:436;s:8:\"interior\";i:1021;s:14:\"local-business\";i:439;s:14:\"local-services\";i:441;s:10:\"technician\";i:438;s:7:\"windows\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2795;s:12:\"architecture\";i:2777;s:8:\"business\";i:2768;s:9:\"portfolio\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-48395\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-1-600x2034.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/windows-and-doors-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/windows-and-doors-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48392\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-about-1-600x1247.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/windows-and-doors-08/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/windows-and-doors-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48397\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-services-1-600x1696.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/windows-and-doors-08/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/windows-and-doors-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48396\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-portfolio-1.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-portfolio-1-600x1310.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/windows-and-doors-08/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/windows-and-doors-08/portfolio/\";s:15:\"astra-sites-tag\";a:1:{i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48394\";a:12:{s:5:\"title\";s:4:\"FAQs\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-faqs-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-faqs-1-600x810.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/windows-and-doors-08/wp-json/wp/v2/pages/171\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/windows-and-doors-08/faqs/\";s:15:\"astra-sites-tag\";a:1:{i:426;s:3:\"faq\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48393\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-contact-1-600x792.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/windows-and-doors-08/wp-json/wp/v2/pages/180\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/windows-and-doors-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-22044\";a:22:{s:5:\"title\";s:10:\"Accountant\";s:2:\"id\";i:22044;s:12:\"publish-date\";i:1560318958;s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-02-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-02-homepage.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/chartered-accountant-02\";s:20:\"astra-site-parent-id\";i:78;s:15:\"astra-sites-tag\";a:5:{i:447;s:10:\"accountant\";i:448;s:10:\"accounting\";i:449;s:20:\"chartered-accountant\";i:446;s:7:\"finance\";i:1022;s:12:\"professional\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:6:{i:2823;s:10:\"accounting\";i:2777;s:8:\"business\";i:2805;s:7:\"finance\";i:2866;s:9:\"insurance\";i:2770;s:8:\"personal\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2481;s:15:\"finance-service\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1230:\"<!-- wp:paragraph -->\n<p>The Accountant template is a business-like but appealing design that mixes sober design required by the niche with light-hearted graphics to add a little levity. It’s an accomplished design that includes everything a business needs to launch a website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design uses a great mix of colors, a calm layout with plenty of whitespace and subtle background variations to signal changes of intent. It’s a very well designed theme, ideal for all kinds of businesses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Accountant template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Flexible and accessible design for accountants and other businesses</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Graphical elements add a little fun</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>All the important content elements are taken care of</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Supplementary pages reflect the overall design</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:87:\"Interesting design that’s perfect for accountants and all kinds of service businesses\";s:5:\"pages\";a:6:{s:8:\"id-72651\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-02-about.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-02-about.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/chartered-accountant-02/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/chartered-accountant-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-72652\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-02-contact.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/chartered-accountant-02/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/chartered-accountant-02/contact/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-72653\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-02-homepage.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/chartered-accountant-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/chartered-accountant-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-72654\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-02-services.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-02-services.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/chartered-accountant-02/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/chartered-accountant-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-72655\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-02-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-02-testimonials.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/chartered-accountant-02/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:56:\"//websitedemos.net/chartered-accountant-02/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-72656\";a:12:{s:5:\"title\";s:13:\"Why choose me\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-02-choose-me.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/chartered-accountant-02-choose-me.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/chartered-accountant-02/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:57:\"//websitedemos.net/chartered-accountant-02/why-choose-me/\";s:15:\"astra-sites-tag\";a:1:{i:453;s:8:\"features\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";i:22117;s:26:\"related-elementor-template\";i:22044;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-54393\";a:22:{s:5:\"title\";s:21:\"Health &amp; Wellness\";s:2:\"id\";i:54393;s:12:\"publish-date\";i:1621457258;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-02-home.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-02-home.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/health-wellness-02\";s:20:\"astra-site-parent-id\";i:2028;s:15:\"astra-sites-tag\";a:11:{i:337;s:6:\"clinic\";i:338;s:6:\"dental\";i:2047;s:13:\"dental-clinic\";i:601;s:6:\"doctor\";i:2045;s:6:\"health\";i:604;s:10:\"healthcare\";i:603;s:7:\"medical\";i:2046;s:14:\"medical-clinic\";i:621;s:12:\"psychiatrist\";i:2044;s:9:\"therapist\";i:619;s:8:\"wellness\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:5:{i:2799;s:7:\"dentist\";i:2867;s:6:\"doctor\";i:2834;s:10:\"healthcare\";i:2780;s:8:\"hospital\";i:2841;s:14:\"medical-clinic\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2490;s:10:\"healthcare\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1029:\"<!-- wp:paragraph -->\n<p>The Health &amp; Wellness template reflects the clean, crisp feel you would want to see in a dentist or healthcare setting. It’s a modern flat web template with distinct borders, a reassuring blue colorway and modern fonts, ideal for health and wellness.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes lots of content and image sections, service areas, calls to action, testimonials and a simple but effective contact page. Everything you see can be customized to your needs, adding to its appeal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Health &amp; Wellness template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Crisp, clean design that reflects the health and wellness niche</li><li>Customizable business template that could work for any business</li><li>Flexible content and image areas throughout</li><li>Attractive content page designed to convert</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:83:\"Crisp, clean website design that works perfectly for health and wellness businesses\";s:5:\"pages\";a:4:{s:8:\"id-54396\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-02-home.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-02-home.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/health-wellness-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/health-wellness-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-54394\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-02-about.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-02-about.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/health-wellness-02/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/health-wellness-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-54395\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-02-contact.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/health-wellness-02/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/health-wellness-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-54397\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-02-services.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-02-services.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/health-wellness-02/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/health-wellness-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:54393;s:26:\"related-gutenberg-template\";i:54447;}s:8:\"id-34202\";a:22:{s:5:\"title\";s:15:\"Cleaning Agency\";s:2:\"id\";i:34202;s:12:\"publish-date\";i:1558461720;s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/01/cleaning-agency-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/01/cleaning-agency-04-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/01/cleaning-agency-04-homepage.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/cleaning-agency-04\";s:20:\"astra-site-parent-id\";i:1003;s:15:\"astra-sites-tag\";a:4:{i:1000;s:7:\"cleaner\";i:1004;s:15:\"cleaning-agency\";i:679;s:17:\"cleaning-services\";i:1022;s:12:\"professional\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2819;s:8:\"cleaning\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2477;s:13:\"home-services\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:931:\"<!-- wp:paragraph -->\n<p>The Cleaning Agency template instantly engages as soon as it loads thanks to superb color choices and strong imagery. The homepage unfolds with a fun parallax effect to deliver all the essential information you need to communicate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template uses dark and light sections with a bold yellow contrast color for effect. Combined with whitespace and effective imagery and graphics, this design delivers the impact you’re looking for.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Cleaning Agency template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Impactful design with instant engagement</li><li>Strong colors, layout and fonts throughout</li><li>Great use of images throughout the template</li><li>Parallax design makes an impression</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:80:\"Engaging web template ideal for cleaning, cleaners or cleaning service companies\";s:5:\"pages\";a:6:{s:8:\"id-39777\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/01/cleaning-agency-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/01/cleaning-agency-04-homepage.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/cleaning-agency-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/cleaning-agency-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-39775\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/01/cleaning-agency-04-about.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/01/cleaning-agency-04-about.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/cleaning-agency-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/cleaning-agency-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-39779\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/01/cleaning-agency-04-services.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/01/cleaning-agency-04-services.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/cleaning-agency-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/cleaning-agency-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-39780\";a:12:{s:5:\"title\";s:13:\"Why Choose Us\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/01/cleaning-agency-04-why-choose-us.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/01/cleaning-agency-04-why-choose-us.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/cleaning-agency-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/cleaning-agency-04/why-choose-us/\";s:15:\"astra-sites-tag\";a:1:{i:760;s:13:\"why-choose-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-39778\";a:12:{s:5:\"title\";s:7:\"Reviews\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/cleaning-agency-04-reviews.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/cleaning-agency-04-reviews.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/cleaning-agency-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/cleaning-agency-04/reviews/\";s:15:\"astra-sites-tag\";a:2:{i:432;s:6:\"review\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-39776\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/cleaning-agency-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/cleaning-agency-04-contact.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/cleaning-agency-04/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/cleaning-agency-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:44213;s:26:\"related-elementor-template\";i:34202;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-44213\";a:22:{s:5:\"title\";s:15:\"Cleaning Agency\";s:2:\"id\";i:44213;s:12:\"publish-date\";i:1584360283;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/03/cleaning-agency-03-01.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/03/cleaning-agency-03-01.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/03/cleaning-agency-03-01.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/cleaning-agency-03\";s:20:\"astra-site-parent-id\";i:1421;s:15:\"astra-sites-tag\";a:7:{i:680;s:8:\"cleaning\";i:679;s:17:\"cleaning-services\";i:673;s:19:\"commercial-cleaning\";i:674;s:17:\"domestic-cleaning\";i:1407;s:13:\"house-keeping\";i:676;s:11:\"maintenance\";i:677;s:7:\"washing\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2477;s:13:\"home-services\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:12:{s:8:\"id-45532\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/03/cleaning-agency-03-01.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/03/cleaning-agency-03-01.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/cleaning-agency-03/wp-json/wp/v2/pages/258\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/cleaning-agency-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45530\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/03/cleaning-agency-03-about-01.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/03/cleaning-agency-03-about-01.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/cleaning-agency-03/wp-json/wp/v2/pages/259\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/cleaning-agency-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45534\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/03/cleaning-agency-03-services-01.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/03/cleaning-agency-03-services-01.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/cleaning-agency-03/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/cleaning-agency-03/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45535\";a:12:{s:5:\"title\";s:13:\"Why Choose Us\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/03/cleaning-agency-03-why-choose-us-01.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/03/cleaning-agency-03-why-choose-us-01.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/cleaning-agency-03/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/cleaning-agency-03/why-choose-us/\";s:15:\"astra-sites-tag\";a:1:{i:760;s:13:\"why-choose-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45533\";a:12:{s:5:\"title\";s:7:\"Reviews\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/03/cleaning-agency-03-reviews-01.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/03/cleaning-agency-03-reviews-01.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/cleaning-agency-03/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/cleaning-agency-03/reviews/\";s:15:\"astra-sites-tag\";a:1:{i:432;s:6:\"review\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45531\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/03/cleaning-agency-03-contact-01.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/03/cleaning-agency-03-contact-01.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/cleaning-agency-03/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/cleaning-agency-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-44216\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/01/cleaning-agency-04-home-page.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/01/cleaning-agency-04-home-page.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/cleaning-agency-03-wip/wp-json/wp/v2/pages/258\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/cleaning-agency-03-wip/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-44214\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/01/cleaning-agency-04-about-page.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/01/cleaning-agency-04-about-page.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/cleaning-agency-03-wip/wp-json/wp/v2/pages/259\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/cleaning-agency-03-wip/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-44218\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/01/cleaning-agency-04-services-page.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/01/cleaning-agency-04-services-page.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/cleaning-agency-03-wip/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/cleaning-agency-03-wip/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-44219\";a:12:{s:5:\"title\";s:13:\"Why Choose Us\";s:18:\"featured-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/01/cleaning-agency-04-why-choose-us-page.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/01/cleaning-agency-04-why-choose-us-page.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/cleaning-agency-03-wip/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:56:\"//websitedemos.net/cleaning-agency-03-wip/why-choose-us/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:760;s:13:\"why-choose-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-44217\";a:12:{s:5:\"title\";s:7:\"Reviews\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-agency-04-reviews-page.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-agency-04-reviews-page.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/cleaning-agency-03-wip/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/cleaning-agency-03-wip/reviews/\";s:15:\"astra-sites-tag\";a:2:{i:432;s:6:\"review\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-44215\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-agency-04-contact-new.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-agency-04-contact-new.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/cleaning-agency-03-wip/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/cleaning-agency-03-wip/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(219,'astra-sites-fresh-site','no','no'),(257,'astra-sites-batch-is-complete','yes','no'),(223,'astra-sites-last-export-checksums-latest','XySINs3hUOrA','no'),(226,'astra-sites-batch-status-string','All processes are complete','no'),(227,'astra-blocks-batch-status-string','Complete storing data for page 4','no'),(228,'astra-blocks-requests','4','no'),(292,'elementor_active_kit','20','yes'),(293,'elementor_font_display','swap','yes'),(265,'theme_mods_fyoga','a:25:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:3;}s:18:\"custom_css_post_id\";i:-1;s:20:\"fyoga_slider_display\";b:1;s:18:\"fyoga_slide1_image\";s:78:\"https://divyayogamonteregie.org/ca/wp-content/themes/fyoga/images/slider/1.jpg\";s:18:\"fyoga_slide2_image\";s:78:\"https://divyayogamonteregie.org/ca/wp-content/themes/fyoga/images/slider/2.jpg\";s:18:\"fyoga_slide3_image\";s:78:\"https://divyayogamonteregie.org/ca/wp-content/themes/fyoga/images/slider/3.jpg\";s:18:\"fyoga_slide4_image\";s:78:\"https://divyayogamonteregie.org/ca/wp-content/themes/fyoga/images/slider/4.jpg\";s:18:\"fyoga_slide5_image\";s:78:\"https://divyayogamonteregie.org/ca/wp-content/themes/fyoga/images/slider/5.jpg\";s:21:\"fyoga_social_facebook\";s:1:\"#\";s:20:\"fyoga_social_twitter\";s:1:\"#\";s:21:\"fyoga_social_linkedin\";s:0:\"\";s:22:\"fyoga_social_instagram\";s:0:\"\";s:16:\"fyoga_social_rss\";s:0:\"\";s:19:\"fyoga_social_tumblr\";s:0:\"\";s:20:\"fyoga_social_youtube\";s:1:\"#\";s:22:\"fyoga_social_pinterest\";s:0:\"\";s:15:\"fyoga_social_vk\";s:0:\"\";s:19:\"fyoga_social_flickr\";s:0:\"\";s:17:\"fyoga_social_vine\";s:0:\"\";s:11:\"custom_logo\";s:0:\"\";s:16:\"header_textcolor\";s:6:\"000000\";s:16:\"background_color\";s:6:\"ffffff\";s:12:\"header_image\";s:13:\"remove-header\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1684895860;s:4:\"data\";a:5:{s:19:\"wp_inactive_widgets\";a:13:{i:0;s:10:\"calendar-2\";i:1;s:10:\"archives-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:14:\"recent-posts-3\";i:6;s:17:\"recent-comments-2\";i:7;s:7:\"block-8\";i:8;s:7:\"block-2\";i:9;s:7:\"block-3\";i:10;s:7:\"block-4\";i:11;s:7:\"block-5\";i:12;s:7:\"block-6\";}s:19:\"sidebar-widget-area\";a:0:{}s:27:\"footer-column-1-widget-area\";a:0:{}s:27:\"footer-column-2-widget-area\";a:0:{}s:27:\"footer-column-3-widget-area\";a:0:{}}}}','no'),(266,'nav_menu_options','a:1:{s:8:\"auto_add\";a:0:{}}','off'),(1372,'category_children','a:0:{}','yes'),(258,'astra-sites-last-export-checksums','XySINs3hUOrA','no'),(230,'bsf_analytics_installed_time','1682804461','no'),(233,'astra-sites-all-site-categories-and-tags','a:632:{i:0;a:2:{s:2:\"id\";i:2487;s:4:\"name\";s:6:\"Agency\";}i:1;a:2:{s:2:\"id\";s:6:\"2487-0\";s:4:\"name\";s:8:\"creative\";}i:2;a:2:{s:2:\"id\";s:6:\"2487-1\";s:4:\"name\";s:8:\"branding\";}i:3;a:2:{s:2:\"id\";s:6:\"2487-2\";s:4:\"name\";s:6:\"agency\";}i:4;a:2:{s:2:\"id\";s:6:\"2487-3\";s:4:\"name\";s:3:\"web\";}i:5;a:2:{s:2:\"id\";s:6:\"2487-4\";s:4:\"name\";s:6:\"social\";}i:6;a:2:{s:2:\"id\";s:6:\"2487-5\";s:4:\"name\";s:5:\"media\";}i:7;a:2:{s:2:\"id\";s:6:\"2487-6\";s:4:\"name\";s:7:\"graphic\";}i:8;a:2:{s:2:\"id\";s:6:\"2487-7\";s:4:\"name\";s:7:\"digital\";}i:9;a:2:{s:2:\"id\";s:6:\"2487-8\";s:4:\"name\";s:3:\"SEO\";}i:10;a:2:{s:2:\"id\";s:6:\"2487-9\";s:4:\"name\";s:9:\"marketing\";}i:11;a:2:{s:2:\"id\";s:7:\"2487-10\";s:4:\"name\";s:11:\"advertising\";}i:12;a:2:{s:2:\"id\";s:7:\"2487-11\";s:4:\"name\";s:22:\"information technology\";}i:13;a:2:{s:2:\"id\";s:7:\"2487-12\";s:4:\"name\";s:7:\"website\";}i:14;a:2:{s:2:\"id\";s:7:\"2487-13\";s:4:\"name\";s:7:\"startup\";}i:15;a:2:{s:2:\"id\";s:7:\"2487-14\";s:4:\"name\";s:8:\"internet\";}i:16;a:2:{s:2:\"id\";s:7:\"2487-15\";s:4:\"name\";s:8:\"software\";}i:17;a:2:{s:2:\"id\";s:7:\"2487-16\";s:4:\"name\";s:10:\"copywriter\";}i:18;a:2:{s:2:\"id\";s:7:\"2487-17\";s:4:\"name\";s:9:\"animation\";}i:19;a:2:{s:2:\"id\";s:7:\"2487-18\";s:4:\"name\";s:7:\"writing\";}i:20;a:2:{s:2:\"id\";s:7:\"2487-19\";s:4:\"name\";s:6:\"online\";}i:21;a:2:{s:2:\"id\";s:7:\"2487-20\";s:4:\"name\";s:4:\"firm\";}i:22;a:2:{s:2:\"id\";s:7:\"2487-21\";s:4:\"name\";s:8:\"template\";}i:23;a:2:{s:2:\"id\";s:7:\"2487-22\";s:4:\"name\";s:8:\"business\";}i:24;a:2:{s:2:\"id\";s:7:\"2487-23\";s:4:\"name\";s:5:\"Astra\";}i:25;a:2:{s:2:\"id\";s:7:\"2487-24\";s:4:\"name\";s:10:\"consulting\";}i:26;a:2:{s:2:\"id\";s:7:\"2487-25\";s:4:\"name\";s:10:\"consultant\";}i:27;a:2:{s:2:\"id\";s:7:\"2487-26\";s:4:\"name\";s:7:\"company\";}i:28;a:2:{s:2:\"id\";s:7:\"2487-27\";s:4:\"name\";s:6:\"design\";}i:29;a:2:{s:2:\"id\";s:7:\"2487-28\";s:4:\"name\";s:8:\"designer\";}i:30;a:2:{s:2:\"id\";s:7:\"2487-29\";s:4:\"name\";s:6:\"studio\";}i:31;a:2:{s:2:\"id\";s:7:\"2487-30\";s:4:\"name\";s:9:\"developer\";}i:32;a:2:{s:2:\"id\";s:7:\"2487-31\";s:4:\"name\";s:7:\"website\";}i:33;a:2:{s:2:\"id\";s:7:\"2487-32\";s:4:\"name\";s:4:\"logo\";}i:34;a:2:{s:2:\"id\";s:7:\"2487-33\";s:4:\"name\";s:0:\"\";}i:35;a:2:{s:2:\"id\";i:2486;s:4:\"name\";s:11:\"Art & Music\";}i:36;a:2:{s:2:\"id\";s:6:\"2486-0\";s:4:\"name\";s:2:\"DJ\";}i:37;a:2:{s:2:\"id\";s:6:\"2486-1\";s:4:\"name\";s:5:\"Music\";}i:38;a:2:{s:2:\"id\";s:6:\"2486-2\";s:4:\"name\";s:5:\"Album\";}i:39;a:2:{s:2:\"id\";s:6:\"2486-3\";s:4:\"name\";s:6:\"Singer\";}i:40;a:2:{s:2:\"id\";s:6:\"2486-4\";s:4:\"name\";s:4:\"Band\";}i:41;a:2:{s:2:\"id\";s:6:\"2486-5\";s:4:\"name\";s:4:\"Rock\";}i:42;a:2:{s:2:\"id\";s:6:\"2486-6\";s:4:\"name\";s:11:\"Disc Jockey\";}i:43;a:2:{s:2:\"id\";s:6:\"2486-7\";s:4:\"name\";s:6:\"Guitar\";}i:44;a:2:{s:2:\"id\";s:6:\"2486-8\";s:4:\"name\";s:9:\"Voiceover\";}i:45;a:2:{s:2:\"id\";s:6:\"2486-9\";s:4:\"name\";s:8:\"Musician\";}i:46;a:2:{s:2:\"id\";s:7:\"2486-10\";s:4:\"name\";s:8:\"template\";}i:47;a:2:{s:2:\"id\";s:7:\"2486-11\";s:4:\"name\";s:5:\"Astra\";}i:48;a:2:{s:2:\"id\";s:7:\"2486-12\";s:4:\"name\";s:7:\"website\";}i:49;a:2:{s:2:\"id\";s:7:\"2486-13\";s:4:\"name\";s:0:\"\";}i:50;a:2:{s:2:\"id\";i:2475;s:4:\"name\";s:10:\"Automotive\";}i:51;a:2:{s:2:\"id\";s:6:\"2475-0\";s:4:\"name\";s:6:\"garage\";}i:52;a:2:{s:2:\"id\";s:6:\"2475-1\";s:4:\"name\";s:6:\"retail\";}i:53;a:2:{s:2:\"id\";s:6:\"2475-2\";s:4:\"name\";s:4:\"bike\";}i:54;a:2:{s:2:\"id\";s:6:\"2475-3\";s:4:\"name\";s:3:\"car\";}i:55;a:2:{s:2:\"id\";s:6:\"2475-4\";s:4:\"name\";s:9:\"detailing\";}i:56;a:2:{s:2:\"id\";s:6:\"2475-5\";s:4:\"name\";s:7:\"denting\";}i:57;a:2:{s:2:\"id\";s:6:\"2475-6\";s:4:\"name\";s:4:\"wash\";}i:58;a:2:{s:2:\"id\";s:6:\"2475-7\";s:4:\"name\";s:7:\"service\";}i:59;a:2:{s:2:\"id\";s:6:\"2475-8\";s:4:\"name\";s:8:\"services\";}i:60;a:2:{s:2:\"id\";s:6:\"2475-9\";s:4:\"name\";s:8:\"template\";}i:61;a:2:{s:2:\"id\";s:7:\"2475-10\";s:4:\"name\";s:5:\"local\";}i:62;a:2:{s:2:\"id\";s:7:\"2475-11\";s:4:\"name\";s:8:\"business\";}i:63;a:2:{s:2:\"id\";s:7:\"2475-12\";s:4:\"name\";s:5:\"Astra\";}i:64;a:2:{s:2:\"id\";s:7:\"2475-13\";s:4:\"name\";s:4:\"shop\";}i:65;a:2:{s:2:\"id\";s:7:\"2475-14\";s:4:\"name\";s:7:\"company\";}i:66;a:2:{s:2:\"id\";s:7:\"2475-15\";s:4:\"name\";s:6:\"repair\";}i:67;a:2:{s:2:\"id\";s:7:\"2475-16\";s:4:\"name\";s:7:\"website\";}i:68;a:2:{s:2:\"id\";s:7:\"2475-17\";s:4:\"name\";s:0:\"\";}i:69;a:2:{s:2:\"id\";i:2479;s:4:\"name\";s:6:\"Beauty\";}i:70;a:2:{s:2:\"id\";s:6:\"2479-0\";s:4:\"name\";s:10:\"beautician\";}i:71;a:2:{s:2:\"id\";s:6:\"2479-1\";s:4:\"name\";s:7:\"massage\";}i:72;a:2:{s:2:\"id\";s:6:\"2479-2\";s:4:\"name\";s:6:\"beauty\";}i:73;a:2:{s:2:\"id\";s:6:\"2479-3\";s:4:\"name\";s:6:\"parlor\";}i:74;a:2:{s:2:\"id\";s:6:\"2479-4\";s:4:\"name\";s:6:\"saloon\";}i:75;a:2:{s:2:\"id\";s:6:\"2479-5\";s:4:\"name\";s:3:\"spa\";}i:76;a:2:{s:2:\"id\";s:6:\"2479-6\";s:4:\"name\";s:7:\"dresser\";}i:77;a:2:{s:2:\"id\";s:6:\"2479-7\";s:4:\"name\";s:6:\"bridal\";}i:78;a:2:{s:2:\"id\";s:6:\"2479-8\";s:4:\"name\";s:6:\"facial\";}i:79;a:2:{s:2:\"id\";s:6:\"2479-9\";s:4:\"name\";s:4:\"nail\";}i:80;a:2:{s:2:\"id\";s:7:\"2479-10\";s:4:\"name\";s:7:\"stylist\";}i:81;a:2:{s:2:\"id\";s:7:\"2479-11\";s:4:\"name\";s:4:\"skin\";}i:82;a:2:{s:2:\"id\";s:7:\"2479-12\";s:4:\"name\";s:4:\"care\";}i:83;a:2:{s:2:\"id\";s:7:\"2479-13\";s:4:\"name\";s:9:\"cosmetics\";}i:84;a:2:{s:2:\"id\";s:7:\"2479-14\";s:4:\"name\";s:5:\"salon\";}i:85;a:2:{s:2:\"id\";s:7:\"2479-15\";s:4:\"name\";s:6:\"waxing\";}i:86;a:2:{s:2:\"id\";s:7:\"2479-16\";s:4:\"name\";s:6:\"barber\";}i:87;a:2:{s:2:\"id\";s:7:\"2479-17\";s:4:\"name\";s:6:\"makeup\";}i:88;a:2:{s:2:\"id\";s:7:\"2479-18\";s:4:\"name\";s:4:\"hair\";}i:89;a:2:{s:2:\"id\";s:7:\"2479-19\";s:4:\"name\";s:7:\"service\";}i:90;a:2:{s:2:\"id\";s:7:\"2479-20\";s:4:\"name\";s:8:\"services\";}i:91;a:2:{s:2:\"id\";s:7:\"2479-21\";s:4:\"name\";s:8:\"template\";}i:92;a:2:{s:2:\"id\";s:7:\"2479-22\";s:4:\"name\";s:5:\"local\";}i:93;a:2:{s:2:\"id\";s:7:\"2479-23\";s:4:\"name\";s:8:\"business\";}i:94;a:2:{s:2:\"id\";s:7:\"2479-24\";s:4:\"name\";s:5:\"Astra\";}i:95;a:2:{s:2:\"id\";s:7:\"2479-25\";s:4:\"name\";s:7:\"website\";}i:96;a:2:{s:2:\"id\";s:7:\"2479-26\";s:4:\"name\";s:0:\"\";}i:97;a:2:{s:2:\"id\";i:2497;s:4:\"name\";s:4:\"Blog\";}i:98;a:2:{s:2:\"id\";s:6:\"2497-0\";s:4:\"name\";s:7:\"blogger\";}i:99;a:2:{s:2:\"id\";s:6:\"2497-1\";s:4:\"name\";s:4:\"blog\";}i:100;a:2:{s:2:\"id\";s:6:\"2497-2\";s:4:\"name\";s:6:\"author\";}i:101;a:2:{s:2:\"id\";s:6:\"2497-3\";s:4:\"name\";s:4:\"news\";}i:102;a:2:{s:2:\"id\";s:6:\"2497-4\";s:4:\"name\";s:9:\"editorial\";}i:103;a:2:{s:2:\"id\";s:6:\"2497-5\";s:4:\"name\";s:8:\"magazine\";}i:104;a:2:{s:2:\"id\";s:6:\"2497-6\";s:4:\"name\";s:9:\"newspaper\";}i:105;a:2:{s:2:\"id\";s:6:\"2497-7\";s:4:\"name\";s:7:\"vlogger\";}i:106;a:2:{s:2:\"id\";s:6:\"2497-8\";s:4:\"name\";s:8:\"YouTuber\";}i:107;a:2:{s:2:\"id\";s:6:\"2497-9\";s:4:\"name\";s:7:\"podcast\";}i:108;a:2:{s:2:\"id\";s:7:\"2497-10\";s:4:\"name\";s:6:\"online\";}i:109;a:2:{s:2:\"id\";s:7:\"2497-11\";s:4:\"name\";s:8:\"template\";}i:110;a:2:{s:2:\"id\";s:7:\"2497-12\";s:4:\"name\";s:5:\"Astra\";}i:111;a:2:{s:2:\"id\";s:7:\"2497-13\";s:4:\"name\";s:7:\"website\";}i:112;a:2:{s:2:\"id\";s:7:\"2497-14\";s:4:\"name\";s:10:\"influencer\";}i:113;a:2:{s:2:\"id\";s:7:\"2497-15\";s:4:\"name\";s:0:\"\";}i:114;a:2:{s:2:\"id\";i:2495;s:4:\"name\";s:9:\"eCommerce\";}i:115;a:2:{s:2:\"id\";s:6:\"2495-0\";s:4:\"name\";s:11:\"WooCommerce\";}i:116;a:2:{s:2:\"id\";s:6:\"2495-1\";s:4:\"name\";s:10:\"e-commerce\";}i:117;a:2:{s:2:\"id\";s:6:\"2495-2\";s:4:\"name\";s:9:\"eCommerce\";}i:118;a:2:{s:2:\"id\";s:6:\"2495-3\";s:4:\"name\";s:5:\"store\";}i:119;a:2:{s:2:\"id\";s:6:\"2495-4\";s:4:\"name\";s:4:\"shop\";}i:120;a:2:{s:2:\"id\";s:6:\"2495-5\";s:4:\"name\";s:4:\"cart\";}i:121;a:2:{s:2:\"id\";s:6:\"2495-6\";s:4:\"name\";s:8:\"checkout\";}i:122;a:2:{s:2:\"id\";s:6:\"2495-7\";s:4:\"name\";s:8:\"commerce\";}i:123;a:2:{s:2:\"id\";s:6:\"2495-8\";s:4:\"name\";s:12:\"dropshipping\";}i:124;a:2:{s:2:\"id\";s:6:\"2495-9\";s:4:\"name\";s:11:\"fulfillment\";}i:125;a:2:{s:2:\"id\";s:7:\"2495-10\";s:4:\"name\";s:6:\"online\";}i:126;a:2:{s:2:\"id\";s:7:\"2495-11\";s:4:\"name\";s:8:\"template\";}i:127;a:2:{s:2:\"id\";s:7:\"2495-12\";s:4:\"name\";s:5:\"Astra\";}i:128;a:2:{s:2:\"id\";s:7:\"2495-13\";s:4:\"name\";s:7:\"website\";}i:129;a:2:{s:2:\"id\";s:7:\"2495-14\";s:4:\"name\";s:8:\"shopping\";}i:130;a:2:{s:2:\"id\";s:7:\"2495-15\";s:4:\"name\";s:15:\"online shopping\";}i:131;a:2:{s:2:\"id\";i:2491;s:4:\"name\";s:22:\"Educational Institutes\";}i:132;a:2:{s:2:\"id\";s:6:\"2491-0\";s:4:\"name\";s:9:\"education\";}i:133;a:2:{s:2:\"id\";s:6:\"2491-1\";s:4:\"name\";s:7:\"college\";}i:134;a:2:{s:2:\"id\";s:6:\"2491-2\";s:4:\"name\";s:10:\"university\";}i:135;a:2:{s:2:\"id\";s:6:\"2491-3\";s:4:\"name\";s:6:\"course\";}i:136;a:2:{s:2:\"id\";s:6:\"2491-4\";s:4:\"name\";s:7:\"courses\";}i:137;a:2:{s:2:\"id\";s:6:\"2491-5\";s:4:\"name\";s:8:\"learning\";}i:138;a:2:{s:2:\"id\";s:6:\"2491-6\";s:4:\"name\";s:5:\"tutor\";}i:139;a:2:{s:2:\"id\";s:6:\"2491-7\";s:4:\"name\";s:10:\"graduation\";}i:140;a:2:{s:2:\"id\";s:6:\"2491-8\";s:4:\"name\";s:8:\"academic\";}i:141;a:2:{s:2:\"id\";s:6:\"2491-9\";s:4:\"name\";s:7:\"library\";}i:142;a:2:{s:2:\"id\";s:7:\"2491-10\";s:4:\"name\";s:8:\"training\";}i:143;a:2:{s:2:\"id\";s:7:\"2491-11\";s:4:\"name\";s:7:\"academy\";}i:144;a:2:{s:2:\"id\";s:7:\"2491-12\";s:4:\"name\";s:5:\"class\";}i:145;a:2:{s:2:\"id\";s:7:\"2491-13\";s:4:\"name\";s:7:\"classes\";}i:146;a:2:{s:2:\"id\";s:7:\"2491-14\";s:4:\"name\";s:12:\"kindergarten\";}i:147;a:2:{s:2:\"id\";s:7:\"2491-15\";s:4:\"name\";s:9:\"preschool\";}i:148;a:2:{s:2:\"id\";s:7:\"2491-16\";s:4:\"name\";s:6:\"school\";}i:149;a:2:{s:2:\"id\";s:7:\"2491-17\";s:4:\"name\";s:9:\"classroom\";}i:150;a:2:{s:2:\"id\";s:7:\"2491-18\";s:4:\"name\";s:7:\"lecture\";}i:151;a:2:{s:2:\"id\";s:7:\"2491-19\";s:4:\"name\";s:7:\"program\";}i:152;a:2:{s:2:\"id\";s:7:\"2491-20\";s:4:\"name\";s:5:\"learn\";}i:153;a:2:{s:2:\"id\";s:7:\"2491-21\";s:4:\"name\";s:7:\"tutions\";}i:154;a:2:{s:2:\"id\";s:7:\"2491-22\";s:4:\"name\";s:8:\"template\";}i:155;a:2:{s:2:\"id\";s:7:\"2491-23\";s:4:\"name\";s:5:\"Astra\";}i:156;a:2:{s:2:\"id\";s:7:\"2491-24\";s:4:\"name\";s:7:\"website\";}i:157;a:2:{s:2:\"id\";s:7:\"2491-25\";s:4:\"name\";s:0:\"\";}i:158;a:2:{s:2:\"id\";i:2494;s:4:\"name\";s:9:\"eLearning\";}i:159;a:2:{s:2:\"id\";s:6:\"2494-0\";s:4:\"name\";s:8:\"Learning\";}i:160;a:2:{s:2:\"id\";s:6:\"2494-1\";s:4:\"name\";s:8:\"Learning\";}i:161;a:2:{s:2:\"id\";s:6:\"2494-2\";s:4:\"name\";s:10:\"e-Learning\";}i:162;a:2:{s:2:\"id\";s:6:\"2494-3\";s:4:\"name\";s:9:\"LearnDash\";}i:163;a:2:{s:2:\"id\";s:6:\"2494-4\";s:4:\"name\";s:8:\"Template\";}i:164;a:2:{s:2:\"id\";s:6:\"2494-5\";s:4:\"name\";s:7:\"Website\";}i:165;a:2:{s:2:\"id\";s:6:\"2494-6\";s:4:\"name\";s:4:\"Site\";}i:166;a:2:{s:2:\"id\";s:6:\"2494-7\";s:4:\"name\";s:3:\"LMS\";}i:167;a:2:{s:2:\"id\";s:6:\"2494-8\";s:4:\"name\";s:6:\"Course\";}i:168;a:2:{s:2:\"id\";s:6:\"2494-9\";s:4:\"name\";s:7:\"Courses\";}i:169;a:2:{s:2:\"id\";s:7:\"2494-10\";s:4:\"name\";s:9:\"education\";}i:170;a:2:{s:2:\"id\";s:7:\"2494-11\";s:4:\"name\";s:11:\"masterclass\";}i:171;a:2:{s:2:\"id\";s:7:\"2494-12\";s:4:\"name\";s:6:\"online\";}i:172;a:2:{s:2:\"id\";s:7:\"2494-13\";s:4:\"name\";s:8:\"template\";}i:173;a:2:{s:2:\"id\";s:7:\"2494-14\";s:4:\"name\";s:5:\"Astra\";}i:174;a:2:{s:2:\"id\";s:7:\"2494-15\";s:4:\"name\";s:7:\"website\";}i:175;a:2:{s:2:\"id\";s:7:\"2494-16\";s:4:\"name\";s:10:\"membership\";}i:176;a:2:{s:2:\"id\";s:7:\"2494-17\";s:4:\"name\";s:5:\"tutor\";}i:177;a:2:{s:2:\"id\";i:2489;s:4:\"name\";s:16:\"Event Invitation\";}i:178;a:2:{s:2:\"id\";s:6:\"2489-0\";s:4:\"name\";s:5:\"event\";}i:179;a:2:{s:2:\"id\";s:6:\"2489-1\";s:4:\"name\";s:7:\"wedding\";}i:180;a:2:{s:2:\"id\";s:6:\"2489-2\";s:4:\"name\";s:7:\"planner\";}i:181;a:2:{s:2:\"id\";s:6:\"2489-3\";s:4:\"name\";s:8:\"catering\";}i:182;a:2:{s:2:\"id\";s:6:\"2489-4\";s:4:\"name\";s:5:\"party\";}i:183;a:2:{s:2:\"id\";s:6:\"2489-5\";s:4:\"name\";s:8:\"birthday\";}i:184;a:2:{s:2:\"id\";s:6:\"2489-6\";s:4:\"name\";s:11:\"anniversary\";}i:185;a:2:{s:2:\"id\";s:6:\"2489-7\";s:4:\"name\";s:10:\"conference\";}i:186;a:2:{s:2:\"id\";s:6:\"2489-8\";s:4:\"name\";s:6:\"meetup\";}i:187;a:2:{s:2:\"id\";s:6:\"2489-9\";s:4:\"name\";s:7:\"meet up\";}i:188;a:2:{s:2:\"id\";s:7:\"2489-10\";s:4:\"name\";s:9:\"organizer\";}i:189;a:2:{s:2:\"id\";s:7:\"2489-11\";s:4:\"name\";s:7:\"concert\";}i:190;a:2:{s:2:\"id\";s:7:\"2489-12\";s:4:\"name\";s:11:\"celebration\";}i:191;a:2:{s:2:\"id\";s:7:\"2489-13\";s:4:\"name\";s:12:\"celebrations\";}i:192;a:2:{s:2:\"id\";s:7:\"2489-14\";s:4:\"name\";s:5:\"venue\";}i:193;a:2:{s:2:\"id\";s:7:\"2489-15\";s:4:\"name\";s:10:\"invitation\";}i:194;a:2:{s:2:\"id\";s:7:\"2489-16\";s:4:\"name\";s:8:\"template\";}i:195;a:2:{s:2:\"id\";s:7:\"2489-17\";s:4:\"name\";s:5:\"Astra\";}i:196;a:2:{s:2:\"id\";s:7:\"2489-18\";s:4:\"name\";s:7:\"company\";}i:197;a:2:{s:2:\"id\";s:7:\"2489-19\";s:4:\"name\";s:7:\"website\";}i:198;a:2:{s:2:\"id\";s:7:\"2489-20\";s:4:\"name\";s:0:\"\";}i:199;a:2:{s:2:\"id\";i:2483;s:4:\"name\";s:15:\"Expert Services\";}i:200;a:2:{s:2:\"id\";s:6:\"2483-0\";s:4:\"name\";s:8:\"personal\";}i:201;a:2:{s:2:\"id\";s:6:\"2483-1\";s:4:\"name\";s:5:\"coach\";}i:202;a:2:{s:2:\"id\";s:6:\"2483-2\";s:4:\"name\";s:8:\"coaching\";}i:203;a:2:{s:2:\"id\";s:6:\"2483-3\";s:4:\"name\";s:10:\"counseling\";}i:204;a:2:{s:2:\"id\";s:6:\"2483-4\";s:4:\"name\";s:12:\"relationship\";}i:205;a:2:{s:2:\"id\";s:6:\"2483-5\";s:4:\"name\";s:4:\"life\";}i:206;a:2:{s:2:\"id\";s:6:\"2483-6\";s:4:\"name\";s:12:\"motivational\";}i:207;a:2:{s:2:\"id\";s:6:\"2483-7\";s:4:\"name\";s:7:\"speaker\";}i:208;a:2:{s:2:\"id\";s:6:\"2483-8\";s:4:\"name\";s:10:\"influencer\";}i:209;a:2:{s:2:\"id\";s:6:\"2483-9\";s:4:\"name\";s:12:\"entrepreneur\";}i:210;a:2:{s:2:\"id\";s:7:\"2483-10\";s:4:\"name\";s:7:\"service\";}i:211;a:2:{s:2:\"id\";s:7:\"2483-11\";s:4:\"name\";s:8:\"services\";}i:212;a:2:{s:2:\"id\";s:7:\"2483-12\";s:4:\"name\";s:8:\"template\";}i:213;a:2:{s:2:\"id\";s:7:\"2483-13\";s:4:\"name\";s:8:\"business\";}i:214;a:2:{s:2:\"id\";s:7:\"2483-14\";s:4:\"name\";s:5:\"Astra\";}i:215;a:2:{s:2:\"id\";s:7:\"2483-15\";s:4:\"name\";s:10:\"consulting\";}i:216;a:2:{s:2:\"id\";s:7:\"2483-16\";s:4:\"name\";s:10:\"consultant\";}i:217;a:2:{s:2:\"id\";s:7:\"2483-17\";s:4:\"name\";s:7:\"website\";}i:218;a:2:{s:2:\"id\";s:7:\"2483-18\";s:4:\"name\";s:12:\"professional\";}i:219;a:2:{s:2:\"id\";s:7:\"2483-19\";s:4:\"name\";s:21:\"professional services\";}i:220;a:2:{s:2:\"id\";s:7:\"2483-20\";s:4:\"name\";s:0:\"\";}i:221;a:2:{s:2:\"id\";i:2481;s:4:\"name\";s:15:\"Finance Service\";}i:222;a:2:{s:2:\"id\";s:6:\"2481-0\";s:4:\"name\";s:7:\"finance\";}i:223;a:2:{s:2:\"id\";s:6:\"2481-1\";s:4:\"name\";s:9:\"financial\";}i:224;a:2:{s:2:\"id\";s:6:\"2481-2\";s:4:\"name\";s:10:\"investment\";}i:225;a:2:{s:2:\"id\";s:6:\"2481-3\";s:4:\"name\";s:10:\"accountant\";}i:226;a:2:{s:2:\"id\";s:6:\"2481-4\";s:4:\"name\";s:10:\"accounting\";}i:227;a:2:{s:2:\"id\";s:6:\"2481-5\";s:4:\"name\";s:9:\"insurance\";}i:228;a:2:{s:2:\"id\";s:6:\"2481-6\";s:4:\"name\";s:8:\"advisory\";}i:229;a:2:{s:2:\"id\";s:6:\"2481-7\";s:4:\"name\";s:7:\"finance\";}i:230;a:2:{s:2:\"id\";s:6:\"2481-8\";s:4:\"name\";s:9:\"chartered\";}i:231;a:2:{s:2:\"id\";s:6:\"2481-9\";s:4:\"name\";s:3:\"CPA\";}i:232;a:2:{s:2:\"id\";s:7:\"2481-10\";s:4:\"name\";s:9:\"corporate\";}i:233;a:2:{s:2:\"id\";s:7:\"2481-11\";s:4:\"name\";s:3:\"tax\";}i:234;a:2:{s:2:\"id\";s:7:\"2481-12\";s:4:\"name\";s:8:\"advisory\";}i:235;a:2:{s:2:\"id\";s:7:\"2481-13\";s:4:\"name\";s:7:\"banking\";}i:236;a:2:{s:2:\"id\";s:7:\"2481-14\";s:4:\"name\";s:7:\"adviser\";}i:237;a:2:{s:2:\"id\";s:7:\"2481-15\";s:4:\"name\";s:7:\"service\";}i:238;a:2:{s:2:\"id\";s:7:\"2481-16\";s:4:\"name\";s:8:\"services\";}i:239;a:2:{s:2:\"id\";s:7:\"2481-17\";s:4:\"name\";s:8:\"template\";}i:240;a:2:{s:2:\"id\";s:7:\"2481-18\";s:4:\"name\";s:8:\"business\";}i:241;a:2:{s:2:\"id\";s:7:\"2481-19\";s:4:\"name\";s:5:\"Astra\";}i:242;a:2:{s:2:\"id\";s:7:\"2481-20\";s:4:\"name\";s:10:\"consulting\";}i:243;a:2:{s:2:\"id\";s:7:\"2481-21\";s:4:\"name\";s:10:\"consultant\";}i:244;a:2:{s:2:\"id\";s:7:\"2481-22\";s:4:\"name\";s:7:\"company\";}i:245;a:2:{s:2:\"id\";s:7:\"2481-23\";s:4:\"name\";s:7:\"website\";}i:246;a:2:{s:2:\"id\";s:7:\"2481-24\";s:4:\"name\";s:0:\"\";}i:247;a:2:{s:2:\"id\";i:2480;s:4:\"name\";s:18:\"Fitness & Wellness\";}i:248;a:2:{s:2:\"id\";s:6:\"2480-0\";s:4:\"name\";s:7:\"trainer\";}i:249;a:2:{s:2:\"id\";s:6:\"2480-1\";s:4:\"name\";s:10:\"instructor\";}i:250;a:2:{s:2:\"id\";s:6:\"2480-2\";s:4:\"name\";s:9:\"dietitian\";}i:251;a:2:{s:2:\"id\";s:6:\"2480-3\";s:4:\"name\";s:10:\"meditation\";}i:252;a:2:{s:2:\"id\";s:6:\"2480-4\";s:4:\"name\";s:12:\"nutritionist\";}i:253;a:2:{s:2:\"id\";s:6:\"2480-5\";s:4:\"name\";s:4:\"yoga\";}i:254;a:2:{s:2:\"id\";s:6:\"2480-6\";s:4:\"name\";s:7:\"fitness\";}i:255;a:2:{s:2:\"id\";s:6:\"2480-7\";s:4:\"name\";s:3:\"gym\";}i:256;a:2:{s:2:\"id\";s:6:\"2480-8\";s:4:\"name\";s:9:\"gymnasium\";}i:257;a:2:{s:2:\"id\";s:6:\"2480-9\";s:4:\"name\";s:9:\"athletics\";}i:258;a:2:{s:2:\"id\";s:7:\"2480-10\";s:4:\"name\";s:6:\"health\";}i:259;a:2:{s:2:\"id\";s:7:\"2480-11\";s:4:\"name\";s:7:\"service\";}i:260;a:2:{s:2:\"id\";s:7:\"2480-12\";s:4:\"name\";s:8:\"services\";}i:261;a:2:{s:2:\"id\";s:7:\"2480-13\";s:4:\"name\";s:8:\"template\";}i:262;a:2:{s:2:\"id\";s:7:\"2480-14\";s:4:\"name\";s:5:\"local\";}i:263;a:2:{s:2:\"id\";s:7:\"2480-15\";s:4:\"name\";s:8:\"business\";}i:264;a:2:{s:2:\"id\";s:7:\"2480-16\";s:4:\"name\";s:5:\"Astra\";}i:265;a:2:{s:2:\"id\";s:7:\"2480-17\";s:4:\"name\";s:10:\"consulting\";}i:266;a:2:{s:2:\"id\";s:7:\"2480-18\";s:4:\"name\";s:10:\"consultant\";}i:267;a:2:{s:2:\"id\";s:7:\"2480-19\";s:4:\"name\";s:7:\"website\";}i:268;a:2:{s:2:\"id\";s:7:\"2480-20\";s:4:\"name\";s:0:\"\";}i:269;a:2:{s:2:\"id\";i:2476;s:4:\"name\";s:9:\"Gardening\";}i:270;a:2:{s:2:\"id\";s:6:\"2476-0\";s:4:\"name\";s:6:\"garden\";}i:271;a:2:{s:2:\"id\";s:6:\"2476-1\";s:4:\"name\";s:7:\"florist\";}i:272;a:2:{s:2:\"id\";s:6:\"2476-2\";s:4:\"name\";s:8:\"gardener\";}i:273;a:2:{s:2:\"id\";s:6:\"2476-3\";s:4:\"name\";s:9:\"gardening\";}i:274;a:2:{s:2:\"id\";s:6:\"2476-4\";s:4:\"name\";s:9:\"landscape\";}i:275;a:2:{s:2:\"id\";s:6:\"2476-5\";s:4:\"name\";s:11:\"landscaping\";}i:276;a:2:{s:2:\"id\";s:6:\"2476-6\";s:4:\"name\";s:9:\"lawn care\";}i:277;a:2:{s:2:\"id\";s:6:\"2476-7\";s:4:\"name\";s:9:\"botanical\";}i:278;a:2:{s:2:\"id\";s:6:\"2476-8\";s:4:\"name\";s:7:\"service\";}i:279;a:2:{s:2:\"id\";s:6:\"2476-9\";s:4:\"name\";s:8:\"services\";}i:280;a:2:{s:2:\"id\";s:7:\"2476-10\";s:4:\"name\";s:8:\"template\";}i:281;a:2:{s:2:\"id\";s:7:\"2476-11\";s:4:\"name\";s:5:\"local\";}i:282;a:2:{s:2:\"id\";s:7:\"2476-12\";s:4:\"name\";s:8:\"business\";}i:283;a:2:{s:2:\"id\";s:7:\"2476-13\";s:4:\"name\";s:5:\"Astra\";}i:284;a:2:{s:2:\"id\";s:7:\"2476-14\";s:4:\"name\";s:4:\"shop\";}i:285;a:2:{s:2:\"id\";s:7:\"2476-15\";s:4:\"name\";s:7:\"company\";}i:286;a:2:{s:2:\"id\";s:7:\"2476-16\";s:4:\"name\";s:6:\"repair\";}i:287;a:2:{s:2:\"id\";s:7:\"2476-17\";s:4:\"name\";s:7:\"website\";}i:288;a:2:{s:2:\"id\";s:7:\"2476-18\";s:4:\"name\";s:6:\"Flower\";}i:289;a:2:{s:2:\"id\";s:7:\"2476-19\";s:4:\"name\";s:0:\"\";}i:290;a:2:{s:2:\"id\";i:2490;s:4:\"name\";s:10:\"Healthcare\";}i:291;a:2:{s:2:\"id\";s:6:\"2490-0\";s:4:\"name\";s:6:\"dental\";}i:292;a:2:{s:2:\"id\";s:6:\"2490-1\";s:4:\"name\";s:5:\"teeth\";}i:293;a:2:{s:2:\"id\";s:6:\"2490-2\";s:4:\"name\";s:11:\"acupuncture\";}i:294;a:2:{s:2:\"id\";s:6:\"2490-3\";s:4:\"name\";s:9:\"treatment\";}i:295;a:2:{s:2:\"id\";s:6:\"2490-4\";s:4:\"name\";s:7:\"dentist\";}i:296;a:2:{s:2:\"id\";s:6:\"2490-5\";s:4:\"name\";s:8:\"diabetes\";}i:297;a:2:{s:2:\"id\";s:6:\"2490-6\";s:4:\"name\";s:9:\"diagnosis\";}i:298;a:2:{s:2:\"id\";s:6:\"2490-7\";s:4:\"name\";s:6:\"doctor\";}i:299;a:2:{s:2:\"id\";s:6:\"2490-8\";s:4:\"name\";s:3:\"eye\";}i:300;a:2:{s:2:\"id\";s:6:\"2490-9\";s:4:\"name\";s:4:\"care\";}i:301;a:2:{s:2:\"id\";s:7:\"2490-10\";s:4:\"name\";s:12:\"psychologist\";}i:302;a:2:{s:2:\"id\";s:7:\"2490-11\";s:4:\"name\";s:7:\"surgeon\";}i:303;a:2:{s:2:\"id\";s:7:\"2490-12\";s:4:\"name\";s:6:\"health\";}i:304;a:2:{s:2:\"id\";s:7:\"2490-13\";s:4:\"name\";s:11:\"homeopathic\";}i:305;a:2:{s:2:\"id\";s:7:\"2490-14\";s:4:\"name\";s:6:\"mental\";}i:306;a:2:{s:2:\"id\";s:7:\"2490-15\";s:4:\"name\";s:11:\"neurologist\";}i:307;a:2:{s:2:\"id\";s:7:\"2490-16\";s:4:\"name\";s:12:\"orthodontist\";}i:308;a:2:{s:2:\"id\";s:7:\"2490-17\";s:4:\"name\";s:7:\"medical\";}i:309;a:2:{s:2:\"id\";s:7:\"2490-18\";s:4:\"name\";s:12:\"psychiatrist\";}i:310;a:2:{s:2:\"id\";s:7:\"2490-19\";s:4:\"name\";s:12:\"pediatrician\";}i:311;a:2:{s:2:\"id\";s:7:\"2490-20\";s:4:\"name\";s:4:\"skin\";}i:312;a:2:{s:2:\"id\";s:7:\"2490-21\";s:4:\"name\";s:7:\"dentist\";}i:313;a:2:{s:2:\"id\";s:7:\"2490-22\";s:4:\"name\";s:6:\"health\";}i:314;a:2:{s:2:\"id\";s:7:\"2490-23\";s:4:\"name\";s:7:\"medical\";}i:315;a:2:{s:2:\"id\";s:7:\"2490-24\";s:4:\"name\";s:3:\"lab\";}i:316;a:2:{s:2:\"id\";s:7:\"2490-25\";s:4:\"name\";s:8:\"hospital\";}i:317;a:2:{s:2:\"id\";s:7:\"2490-26\";s:4:\"name\";s:9:\"therapist\";}i:318;a:2:{s:2:\"id\";s:7:\"2490-27\";s:4:\"name\";s:8:\"template\";}i:319;a:2:{s:2:\"id\";s:7:\"2490-28\";s:4:\"name\";s:8:\"business\";}i:320;a:2:{s:2:\"id\";s:7:\"2490-29\";s:4:\"name\";s:5:\"Astra\";}i:321;a:2:{s:2:\"id\";s:7:\"2490-30\";s:4:\"name\";s:10:\"consulting\";}i:322;a:2:{s:2:\"id\";s:7:\"2490-31\";s:4:\"name\";s:10:\"consultant\";}i:323;a:2:{s:2:\"id\";s:7:\"2490-32\";s:4:\"name\";s:7:\"website\";}i:324;a:2:{s:2:\"id\";s:7:\"2490-33\";s:4:\"name\";s:0:\"\";}i:325;a:2:{s:2:\"id\";i:2477;s:4:\"name\";s:13:\"Home Services\";}i:326;a:2:{s:2:\"id\";s:6:\"2477-0\";s:4:\"name\";s:8:\"cleaning\";}i:327;a:2:{s:2:\"id\";s:6:\"2477-1\";s:4:\"name\";s:13:\"home cleaning\";}i:328;a:2:{s:2:\"id\";s:6:\"2477-2\";s:4:\"name\";s:15:\"office cleaning\";}i:329;a:2:{s:2:\"id\";s:6:\"2477-3\";s:4:\"name\";s:20:\"residential cleaning\";}i:330;a:2:{s:2:\"id\";s:6:\"2477-4\";s:4:\"name\";s:4:\"maid\";}i:331;a:2:{s:2:\"id\";s:6:\"2477-5\";s:4:\"name\";s:6:\"carpet\";}i:332;a:2:{s:2:\"id\";s:6:\"2477-6\";s:4:\"name\";s:10:\"babysitter\";}i:333;a:2:{s:2:\"id\";s:6:\"2477-7\";s:4:\"name\";s:11:\"babysitting\";}i:334;a:2:{s:2:\"id\";s:6:\"2477-8\";s:4:\"name\";s:7:\"laundry\";}i:335;a:2:{s:2:\"id\";s:6:\"2477-9\";s:4:\"name\";s:4:\"pest\";}i:336;a:2:{s:2:\"id\";s:7:\"2477-10\";s:4:\"name\";s:7:\"painter\";}i:337;a:2:{s:2:\"id\";s:7:\"2477-11\";s:4:\"name\";s:8:\"painting\";}i:338;a:2:{s:2:\"id\";s:7:\"2477-12\";s:4:\"name\";s:14:\"security guard\";}i:339;a:2:{s:2:\"id\";s:7:\"2477-13\";s:4:\"name\";s:7:\"service\";}i:340;a:2:{s:2:\"id\";s:7:\"2477-14\";s:4:\"name\";s:8:\"services\";}i:341;a:2:{s:2:\"id\";s:7:\"2477-15\";s:4:\"name\";s:8:\"template\";}i:342;a:2:{s:2:\"id\";s:7:\"2477-16\";s:4:\"name\";s:5:\"local\";}i:343;a:2:{s:2:\"id\";s:7:\"2477-17\";s:4:\"name\";s:8:\"business\";}i:344;a:2:{s:2:\"id\";s:7:\"2477-18\";s:4:\"name\";s:5:\"Astra\";}i:345;a:2:{s:2:\"id\";s:7:\"2477-19\";s:4:\"name\";s:4:\"shop\";}i:346;a:2:{s:2:\"id\";s:7:\"2477-20\";s:4:\"name\";s:7:\"company\";}i:347;a:2:{s:2:\"id\";s:7:\"2477-21\";s:4:\"name\";s:6:\"repair\";}i:348;a:2:{s:2:\"id\";s:7:\"2477-22\";s:4:\"name\";s:7:\"website\";}i:349;a:2:{s:2:\"id\";s:7:\"2477-23\";s:4:\"name\";s:0:\"\";}i:350;a:2:{s:2:\"id\";i:2498;s:4:\"name\";s:14:\"Hotel & Travel\";}i:351;a:2:{s:2:\"id\";s:6:\"2498-0\";s:4:\"name\";s:3:\"inn\";}i:352;a:2:{s:2:\"id\";s:6:\"2498-1\";s:4:\"name\";s:5:\"motel\";}i:353;a:2:{s:2:\"id\";s:6:\"2498-2\";s:4:\"name\";s:8:\"boarding\";}i:354;a:2:{s:2:\"id\";s:6:\"2498-3\";s:4:\"name\";s:5:\"guest\";}i:355;a:2:{s:2:\"id\";s:6:\"2498-4\";s:4:\"name\";s:5:\"lodge\";}i:356;a:2:{s:2:\"id\";s:6:\"2498-5\";s:4:\"name\";s:17:\"bed and breakfast\";}i:357;a:2:{s:2:\"id\";s:6:\"2498-6\";s:4:\"name\";s:3:\"b&b\";}i:358;a:2:{s:2:\"id\";s:6:\"2498-7\";s:4:\"name\";s:3:\"bnb\";}i:359;a:2:{s:2:\"id\";s:6:\"2498-8\";s:4:\"name\";s:6:\"hostel\";}i:360;a:2:{s:2:\"id\";s:6:\"2498-9\";s:4:\"name\";s:10:\"aparthotel\";}i:361;a:2:{s:2:\"id\";s:7:\"2498-10\";s:4:\"name\";s:6:\"boatel\";}i:362;a:2:{s:2:\"id\";s:7:\"2498-11\";s:4:\"name\";s:13:\"accommodation\";}i:363;a:2:{s:2:\"id\";s:7:\"2498-12\";s:4:\"name\";s:5:\"hotel\";}i:364;a:2:{s:2:\"id\";s:7:\"2498-13\";s:4:\"name\";s:10:\"guesthouse\";}i:365;a:2:{s:2:\"id\";s:7:\"2498-14\";s:4:\"name\";s:8:\"homestay\";}i:366;a:2:{s:2:\"id\";s:7:\"2498-15\";s:4:\"name\";s:6:\"resort\";}i:367;a:2:{s:2:\"id\";s:7:\"2498-16\";s:4:\"name\";s:7:\"camping\";}i:368;a:2:{s:2:\"id\";s:7:\"2498-17\";s:4:\"name\";s:8:\"heritage\";}i:369;a:2:{s:2:\"id\";s:7:\"2498-18\";s:4:\"name\";s:7:\"lodging\";}i:370;a:2:{s:2:\"id\";s:7:\"2498-19\";s:4:\"name\";s:8:\"template\";}i:371;a:2:{s:2:\"id\";s:7:\"2498-20\";s:4:\"name\";s:8:\"business\";}i:372;a:2:{s:2:\"id\";s:7:\"2498-21\";s:4:\"name\";s:5:\"Astra\";}i:373;a:2:{s:2:\"id\";s:7:\"2498-22\";s:4:\"name\";s:7:\"website\";}i:374;a:2:{s:2:\"id\";s:7:\"2498-23\";s:4:\"name\";s:0:\"\";}i:375;a:2:{s:2:\"id\";i:2482;s:4:\"name\";s:3:\"Law\";}i:376;a:2:{s:2:\"id\";s:6:\"2482-0\";s:4:\"name\";s:3:\"law\";}i:377;a:2:{s:2:\"id\";s:6:\"2482-1\";s:4:\"name\";s:6:\"lawyer\";}i:378;a:2:{s:2:\"id\";s:6:\"2482-2\";s:4:\"name\";s:8:\"criminal\";}i:379;a:2:{s:2:\"id\";s:6:\"2482-3\";s:4:\"name\";s:7:\"defense\";}i:380;a:2:{s:2:\"id\";s:6:\"2482-4\";s:4:\"name\";s:7:\"lawyers\";}i:381;a:2:{s:2:\"id\";s:6:\"2482-5\";s:4:\"name\";s:6:\"injury\";}i:382;a:2:{s:2:\"id\";s:6:\"2482-6\";s:4:\"name\";s:11:\"immigration\";}i:383;a:2:{s:2:\"id\";s:6:\"2482-7\";s:4:\"name\";s:12:\"compensation\";}i:384;a:2:{s:2:\"id\";s:6:\"2482-8\";s:4:\"name\";s:10:\"litigation\";}i:385;a:2:{s:2:\"id\";s:6:\"2482-9\";s:4:\"name\";s:5:\"civil\";}i:386;a:2:{s:2:\"id\";s:7:\"2482-10\";s:4:\"name\";s:8:\"advocate\";}i:387;a:2:{s:2:\"id\";s:7:\"2482-11\";s:4:\"name\";s:9:\"counselor\";}i:388;a:2:{s:2:\"id\";s:7:\"2482-12\";s:4:\"name\";s:8:\"accident\";}i:389;a:2:{s:2:\"id\";s:7:\"2482-13\";s:4:\"name\";s:7:\"divorce\";}i:390;a:2:{s:2:\"id\";s:7:\"2482-14\";s:4:\"name\";s:5:\"legal\";}i:391;a:2:{s:2:\"id\";s:7:\"2482-15\";s:4:\"name\";s:9:\"solicitor\";}i:392;a:2:{s:2:\"id\";s:7:\"2482-16\";s:4:\"name\";s:8:\"attorney\";}i:393;a:2:{s:2:\"id\";s:7:\"2482-17\";s:4:\"name\";s:14:\"representative\";}i:394;a:2:{s:2:\"id\";s:7:\"2482-18\";s:4:\"name\";s:10:\"employment\";}i:395;a:2:{s:2:\"id\";s:7:\"2482-19\";s:4:\"name\";s:4:\"firm\";}i:396;a:2:{s:2:\"id\";s:7:\"2482-20\";s:4:\"name\";s:8:\"services\";}i:397;a:2:{s:2:\"id\";s:7:\"2482-21\";s:4:\"name\";s:7:\"service\";}i:398;a:2:{s:2:\"id\";s:7:\"2482-22\";s:4:\"name\";s:8:\"template\";}i:399;a:2:{s:2:\"id\";s:7:\"2482-23\";s:4:\"name\";s:8:\"business\";}i:400;a:2:{s:2:\"id\";s:7:\"2482-24\";s:4:\"name\";s:5:\"Astra\";}i:401;a:2:{s:2:\"id\";s:7:\"2482-25\";s:4:\"name\";s:10:\"consulting\";}i:402;a:2:{s:2:\"id\";s:7:\"2482-26\";s:4:\"name\";s:10:\"consultant\";}i:403;a:2:{s:2:\"id\";s:7:\"2482-27\";s:4:\"name\";s:7:\"website\";}i:404;a:2:{s:2:\"id\";s:7:\"2482-28\";s:4:\"name\";s:0:\"\";}i:405;a:2:{s:2:\"id\";i:3191;s:4:\"name\";s:11:\"Link in Bio\";}i:406;a:2:{s:2:\"id\";s:6:\"3191-0\";s:4:\"name\";s:11:\"Link in Bio\";}i:407;a:2:{s:2:\"id\";s:6:\"3191-1\";s:4:\"name\";s:9:\"Portfolio\";}i:408;a:2:{s:2:\"id\";s:6:\"3191-2\";s:4:\"name\";s:8:\"LinkTree\";}i:409;a:2:{s:2:\"id\";s:6:\"3191-3\";s:4:\"name\";s:2:\"CV\";}i:410;a:2:{s:2:\"id\";s:6:\"3191-4\";s:4:\"name\";s:6:\"Resume\";}i:411;a:2:{s:2:\"id\";s:6:\"3191-5\";s:4:\"name\";s:18:\"Personal Portfolio\";}i:412;a:2:{s:2:\"id\";s:6:\"3191-6\";s:4:\"name\";s:3:\"Bio\";}i:413;a:2:{s:2:\"id\";s:6:\"3191-7\";s:4:\"name\";s:23:\"Social Media Influencer\";}i:414;a:2:{s:2:\"id\";s:6:\"3191-8\";s:4:\"name\";s:10:\"Influencer\";}i:415;a:2:{s:2:\"id\";i:2478;s:4:\"name\";s:17:\"Local Storefronts\";}i:416;a:2:{s:2:\"id\";s:6:\"2478-0\";s:4:\"name\";s:5:\"store\";}i:417;a:2:{s:2:\"id\";s:6:\"2478-1\";s:4:\"name\";s:4:\"shop\";}i:418;a:2:{s:2:\"id\";s:6:\"2478-2\";s:4:\"name\";s:10:\"storefront\";}i:419;a:2:{s:2:\"id\";s:6:\"2478-3\";s:4:\"name\";s:16:\"brick and mortar\";}i:420;a:2:{s:2:\"id\";s:6:\"2478-4\";s:4:\"name\";s:6:\"retail\";}i:421;a:2:{s:2:\"id\";s:6:\"2478-5\";s:4:\"name\";s:12:\"departmental\";}i:422;a:2:{s:2:\"id\";s:6:\"2478-6\";s:4:\"name\";s:9:\"shopfront\";}i:423;a:2:{s:2:\"id\";s:6:\"2478-7\";s:4:\"name\";s:4:\"gift\";}i:424;a:2:{s:2:\"id\";s:6:\"2478-8\";s:4:\"name\";s:10:\"bookstores\";}i:425;a:2:{s:2:\"id\";s:6:\"2478-9\";s:4:\"name\";s:6:\"bakery\";}i:426;a:2:{s:2:\"id\";s:7:\"2478-10\";s:4:\"name\";s:4:\"cake\";}i:427;a:2:{s:2:\"id\";s:7:\"2478-11\";s:4:\"name\";s:4:\"cafe\";}i:428;a:2:{s:2:\"id\";i:2471;s:4:\"name\";s:16:\"Local Technician\";}i:429;a:2:{s:2:\"id\";s:6:\"2471-0\";s:4:\"name\";s:5:\"local\";}i:430;a:2:{s:2:\"id\";s:6:\"2471-1\";s:4:\"name\";s:10:\"technician\";}i:431;a:2:{s:2:\"id\";s:6:\"2471-2\";s:4:\"name\";s:8:\"air duct\";}i:432;a:2:{s:2:\"id\";s:6:\"2471-3\";s:4:\"name\";s:9:\"carpenter\";}i:433;a:2:{s:2:\"id\";s:6:\"2471-4\";s:4:\"name\";s:4:\"CCTV\";}i:434;a:2:{s:2:\"id\";s:6:\"2471-5\";s:4:\"name\";s:11:\"electrician\";}i:435;a:2:{s:2:\"id\";s:6:\"2471-6\";s:4:\"name\";s:9:\"furniture\";}i:436;a:2:{s:2:\"id\";s:6:\"2471-7\";s:4:\"name\";s:8:\"handyman\";}i:437;a:2:{s:2:\"id\";s:6:\"2471-8\";s:4:\"name\";s:10:\"remodeling\";}i:438;a:2:{s:2:\"id\";s:6:\"2471-9\";s:4:\"name\";s:4:\"HVAC\";}i:439;a:2:{s:2:\"id\";s:7:\"2471-10\";s:4:\"name\";s:9:\"locksmith\";}i:440;a:2:{s:2:\"id\";s:7:\"2471-11\";s:4:\"name\";s:7:\"plumber\";}i:441;a:2:{s:2:\"id\";s:7:\"2471-12\";s:4:\"name\";s:8:\"plumbing\";}i:442;a:2:{s:2:\"id\";s:7:\"2471-13\";s:4:\"name\";s:8:\"swimming\";}i:443;a:2:{s:2:\"id\";s:7:\"2471-14\";s:4:\"name\";s:4:\"pool\";}i:444;a:2:{s:2:\"id\";s:7:\"2471-15\";s:4:\"name\";s:7:\"roofing\";}i:445;a:2:{s:2:\"id\";s:7:\"2471-16\";s:4:\"name\";s:6:\"window\";}i:446;a:2:{s:2:\"id\";s:7:\"2471-17\";s:4:\"name\";s:12:\"installation\";}i:447;a:2:{s:2:\"id\";s:7:\"2471-18\";s:4:\"name\";s:11:\"maintenance\";}i:448;a:2:{s:2:\"id\";s:7:\"2471-19\";s:4:\"name\";s:6:\"worker\";}i:449;a:2:{s:2:\"id\";s:7:\"2471-20\";s:4:\"name\";s:8:\"services\";}i:450;a:2:{s:2:\"id\";s:7:\"2471-21\";s:4:\"name\";s:7:\"service\";}i:451;a:2:{s:2:\"id\";s:7:\"2471-22\";s:4:\"name\";s:8:\"template\";}i:452;a:2:{s:2:\"id\";s:7:\"2471-23\";s:4:\"name\";s:8:\"business\";}i:453;a:2:{s:2:\"id\";s:7:\"2471-24\";s:4:\"name\";s:5:\"Astra\";}i:454;a:2:{s:2:\"id\";s:7:\"2471-25\";s:4:\"name\";s:7:\"company\";}i:455;a:2:{s:2:\"id\";s:7:\"2471-26\";s:4:\"name\";s:6:\"repair\";}i:456;a:2:{s:2:\"id\";s:7:\"2471-27\";s:4:\"name\";s:7:\"website\";}i:457;a:2:{s:2:\"id\";s:7:\"2471-28\";s:4:\"name\";s:0:\"\";}i:458;a:2:{s:2:\"id\";i:2474;s:4:\"name\";s:13:\"Manufacturing\";}i:459;a:2:{s:2:\"id\";s:6:\"2474-0\";s:4:\"name\";s:8:\"industry\";}i:460;a:2:{s:2:\"id\";s:6:\"2474-1\";s:4:\"name\";s:23:\"industrial manufacturer\";}i:461;a:2:{s:2:\"id\";s:6:\"2474-2\";s:4:\"name\";s:13:\"manufacturing\";}i:462;a:2:{s:2:\"id\";s:6:\"2474-3\";s:4:\"name\";s:8:\"mechanic\";}i:463;a:2:{s:2:\"id\";s:6:\"2474-4\";s:4:\"name\";s:14:\"pharmaceutical\";}i:464;a:2:{s:2:\"id\";s:6:\"2474-5\";s:4:\"name\";s:8:\"template\";}i:465;a:2:{s:2:\"id\";s:6:\"2474-6\";s:4:\"name\";s:5:\"local\";}i:466;a:2:{s:2:\"id\";s:6:\"2474-7\";s:4:\"name\";s:8:\"business\";}i:467;a:2:{s:2:\"id\";s:6:\"2474-8\";s:4:\"name\";s:5:\"Astra\";}i:468;a:2:{s:2:\"id\";s:6:\"2474-9\";s:4:\"name\";s:7:\"company\";}i:469;a:2:{s:2:\"id\";s:7:\"2474-10\";s:4:\"name\";s:7:\"website\";}i:470;a:2:{s:2:\"id\";s:7:\"2474-11\";s:4:\"name\";s:0:\"\";}i:471;a:2:{s:2:\"id\";i:2500;s:4:\"name\";s:12:\"Multipurpose\";}i:472;a:2:{s:2:\"id\";s:6:\"2500-0\";s:4:\"name\";s:5:\"clean\";}i:473;a:2:{s:2:\"id\";s:6:\"2500-1\";s:4:\"name\";s:7:\"minimal\";}i:474;a:2:{s:2:\"id\";s:6:\"2500-2\";s:4:\"name\";s:12:\"multipurpose\";}i:475;a:2:{s:2:\"id\";s:6:\"2500-3\";s:4:\"name\";s:6:\"simple\";}i:476;a:2:{s:2:\"id\";s:6:\"2500-4\";s:4:\"name\";s:7:\"generic\";}i:477;a:2:{s:2:\"id\";i:2492;s:4:\"name\";s:10:\"Non Profit\";}i:478;a:2:{s:2:\"id\";s:6:\"2492-0\";s:4:\"name\";s:7:\"charity\";}i:479;a:2:{s:2:\"id\";s:6:\"2492-1\";s:4:\"name\";s:12:\"organization\";}i:480;a:2:{s:2:\"id\";s:6:\"2492-2\";s:4:\"name\";s:6:\"church\";}i:481;a:2:{s:2:\"id\";s:6:\"2492-3\";s:4:\"name\";s:9:\"nonprofit\";}i:482;a:2:{s:2:\"id\";s:6:\"2492-4\";s:4:\"name\";s:3:\"NGO\";}i:483;a:2:{s:2:\"id\";s:6:\"2492-5\";s:4:\"name\";s:5:\"event\";}i:484;a:2:{s:2:\"id\";s:6:\"2492-6\";s:4:\"name\";s:12:\"crowdfunding\";}i:485;a:2:{s:2:\"id\";s:6:\"2492-7\";s:4:\"name\";s:8:\"campaign\";}i:486;a:2:{s:2:\"id\";s:6:\"2492-8\";s:4:\"name\";s:10:\"fundraiser\";}i:487;a:2:{s:2:\"id\";s:6:\"2492-9\";s:4:\"name\";s:6:\"donate\";}i:488;a:2:{s:2:\"id\";s:7:\"2492-10\";s:4:\"name\";s:8:\"donation\";}i:489;a:2:{s:2:\"id\";s:7:\"2492-11\";s:4:\"name\";s:9:\"community\";}i:490;a:2:{s:2:\"id\";s:7:\"2492-12\";s:4:\"name\";s:8:\"politics\";}i:491;a:2:{s:2:\"id\";s:7:\"2492-13\";s:4:\"name\";s:10:\"politician\";}i:492;a:2:{s:2:\"id\";s:7:\"2492-14\";s:4:\"name\";s:8:\"template\";}i:493;a:2:{s:2:\"id\";s:7:\"2492-15\";s:4:\"name\";s:5:\"Astra\";}i:494;a:2:{s:2:\"id\";s:7:\"2492-16\";s:4:\"name\";s:7:\"website\";}i:495;a:2:{s:2:\"id\";s:7:\"2492-17\";s:4:\"name\";s:0:\"\";}i:496;a:2:{s:2:\"id\";i:2927;s:4:\"name\";s:8:\"One Page\";}i:497;a:2:{s:2:\"id\";s:6:\"2927-0\";s:4:\"name\";s:7:\"onepage\";}i:498;a:2:{s:2:\"id\";s:6:\"2927-1\";s:4:\"name\";s:8:\"one-page\";}i:499;a:2:{s:2:\"id\";s:6:\"2927-2\";s:4:\"name\";s:11:\"single page\";}i:500;a:2:{s:2:\"id\";s:6:\"2927-3\";s:4:\"name\";s:8:\"one page\";}i:501;a:2:{s:2:\"id\";s:6:\"2927-4\";s:4:\"name\";s:7:\"landing\";}i:502;a:2:{s:2:\"id\";i:2472;s:4:\"name\";s:4:\"Pets\";}i:503;a:2:{s:2:\"id\";s:6:\"2472-0\";s:4:\"name\";s:10:\"dog sitter\";}i:504;a:2:{s:2:\"id\";s:6:\"2472-1\";s:4:\"name\";s:3:\"dog\";}i:505;a:2:{s:2:\"id\";s:6:\"2472-2\";s:4:\"name\";s:7:\"walking\";}i:506;a:2:{s:2:\"id\";s:6:\"2472-3\";s:4:\"name\";s:3:\"pet\";}i:507;a:2:{s:2:\"id\";s:6:\"2472-4\";s:4:\"name\";s:8:\"groomers\";}i:508;a:2:{s:2:\"id\";s:6:\"2472-5\";s:4:\"name\";s:12:\"veterinarian\";}i:509;a:2:{s:2:\"id\";s:6:\"2472-6\";s:4:\"name\";s:3:\"vet\";}i:510;a:2:{s:2:\"id\";s:6:\"2472-7\";s:4:\"name\";s:10:\"veterinary\";}i:511;a:2:{s:2:\"id\";s:6:\"2472-8\";s:4:\"name\";s:7:\"service\";}i:512;a:2:{s:2:\"id\";s:6:\"2472-9\";s:4:\"name\";s:8:\"services\";}i:513;a:2:{s:2:\"id\";s:7:\"2472-10\";s:4:\"name\";s:8:\"template\";}i:514;a:2:{s:2:\"id\";s:7:\"2472-11\";s:4:\"name\";s:8:\"business\";}i:515;a:2:{s:2:\"id\";s:7:\"2472-12\";s:4:\"name\";s:5:\"local\";}i:516;a:2:{s:2:\"id\";s:7:\"2472-13\";s:4:\"name\";s:8:\"business\";}i:517;a:2:{s:2:\"id\";s:7:\"2472-14\";s:4:\"name\";s:5:\"Astra\";}i:518;a:2:{s:2:\"id\";s:7:\"2472-15\";s:4:\"name\";s:10:\"consulting\";}i:519;a:2:{s:2:\"id\";s:7:\"2472-16\";s:4:\"name\";s:10:\"consultant\";}i:520;a:2:{s:2:\"id\";s:7:\"2472-17\";s:4:\"name\";s:7:\"website\";}i:521;a:2:{s:2:\"id\";s:7:\"2472-18\";s:4:\"name\";s:0:\"\";}i:522;a:2:{s:2:\"id\";i:2485;s:4:\"name\";s:11:\"Photography\";}i:523;a:2:{s:2:\"id\";s:6:\"2485-0\";s:4:\"name\";s:11:\"photography\";}i:524;a:2:{s:2:\"id\";s:6:\"2485-1\";s:4:\"name\";s:12:\"photographer\";}i:525;a:2:{s:2:\"id\";s:6:\"2485-2\";s:4:\"name\";s:9:\"portfolio\";}i:526;a:2:{s:2:\"id\";s:6:\"2485-3\";s:4:\"name\";s:8:\"portrait\";}i:527;a:2:{s:2:\"id\";s:6:\"2485-4\";s:4:\"name\";s:8:\"template\";}i:528;a:2:{s:2:\"id\";s:6:\"2485-5\";s:4:\"name\";s:5:\"Astra\";}i:529;a:2:{s:2:\"id\";s:6:\"2485-6\";s:4:\"name\";s:7:\"website\";}i:530;a:2:{s:2:\"id\";s:6:\"2485-7\";s:4:\"name\";s:0:\"\";}i:531;a:2:{s:2:\"id\";i:2488;s:4:\"name\";s:9:\"Portfolio\";}i:532;a:2:{s:2:\"id\";s:6:\"2488-0\";s:4:\"name\";s:2:\"UX\";}i:533;a:2:{s:2:\"id\";s:6:\"2488-1\";s:4:\"name\";s:2:\"UI\";}i:534;a:2:{s:2:\"id\";s:6:\"2488-2\";s:4:\"name\";s:9:\"animation\";}i:535;a:2:{s:2:\"id\";s:6:\"2488-3\";s:4:\"name\";s:6:\"resume\";}i:536;a:2:{s:2:\"id\";s:6:\"2488-4\";s:4:\"name\";s:16:\"curriculum vitae\";}i:537;a:2:{s:2:\"id\";s:6:\"2488-5\";s:4:\"name\";s:2:\"cv\";}i:538;a:2:{s:2:\"id\";s:6:\"2488-6\";s:4:\"name\";s:6:\"career\";}i:539;a:2:{s:2:\"id\";s:6:\"2488-7\";s:4:\"name\";s:8:\"animator\";}i:540;a:2:{s:2:\"id\";s:6:\"2488-8\";s:4:\"name\";s:5:\"actor\";}i:541;a:2:{s:2:\"id\";s:6:\"2488-9\";s:4:\"name\";s:6:\"writer\";}i:542;a:2:{s:2:\"id\";s:7:\"2488-10\";s:4:\"name\";s:10:\"voice-over\";}i:543;a:2:{s:2:\"id\";s:7:\"2488-11\";s:4:\"name\";s:12:\"web designer\";}i:544;a:2:{s:2:\"id\";s:7:\"2488-12\";s:4:\"name\";s:17:\"tarot card reader\";}i:545;a:2:{s:2:\"id\";s:7:\"2488-13\";s:4:\"name\";s:11:\"illustrator\";}i:546;a:2:{s:2:\"id\";s:7:\"2488-14\";s:4:\"name\";s:10:\"freelancer\";}i:547;a:2:{s:2:\"id\";s:7:\"2488-15\";s:4:\"name\";s:9:\"freelance\";}i:548;a:2:{s:2:\"id\";s:7:\"2488-16\";s:4:\"name\";s:6:\"author\";}i:549;a:2:{s:2:\"id\";s:7:\"2488-17\";s:4:\"name\";s:6:\"visual\";}i:550;a:2:{s:2:\"id\";s:7:\"2488-18\";s:4:\"name\";s:7:\"student\";}i:551;a:2:{s:2:\"id\";s:7:\"2488-19\";s:4:\"name\";s:11:\"programming\";}i:552;a:2:{s:2:\"id\";s:7:\"2488-20\";s:4:\"name\";s:11:\"photography\";}i:553;a:2:{s:2:\"id\";s:7:\"2488-21\";s:4:\"name\";s:12:\"photographer\";}i:554;a:2:{s:2:\"id\";s:7:\"2488-22\";s:4:\"name\";s:5:\"model\";}i:555;a:2:{s:2:\"id\";s:7:\"2488-23\";s:4:\"name\";s:6:\"online\";}i:556;a:2:{s:2:\"id\";s:7:\"2488-24\";s:4:\"name\";s:8:\"personal\";}i:557;a:2:{s:2:\"id\";s:7:\"2488-25\";s:4:\"name\";s:7:\"website\";}i:558;a:2:{s:2:\"id\";s:7:\"2488-26\";s:4:\"name\";s:8:\"template\";}i:559;a:2:{s:2:\"id\";s:7:\"2488-27\";s:4:\"name\";s:5:\"Astra\";}i:560;a:2:{s:2:\"id\";s:7:\"2488-28\";s:4:\"name\";s:10:\"consulting\";}i:561;a:2:{s:2:\"id\";s:7:\"2488-29\";s:4:\"name\";s:10:\"consultant\";}i:562;a:2:{s:2:\"id\";s:7:\"2488-30\";s:4:\"name\";s:8:\"designer\";}i:563;a:2:{s:2:\"id\";s:7:\"2488-31\";s:4:\"name\";s:6:\"design\";}i:564;a:2:{s:2:\"id\";s:7:\"2488-32\";s:4:\"name\";s:6:\"studio\";}i:565;a:2:{s:2:\"id\";s:7:\"2488-33\";s:4:\"name\";s:6:\"artist\";}i:566;a:2:{s:2:\"id\";s:7:\"2488-34\";s:4:\"name\";s:9:\"developer\";}i:567;a:2:{s:2:\"id\";s:7:\"2488-35\";s:4:\"name\";s:7:\"website\";}i:568;a:2:{s:2:\"id\";s:7:\"2488-36\";s:4:\"name\";s:0:\"\";}i:569;a:2:{s:2:\"id\";i:2484;s:4:\"name\";s:11:\"Real Estate\";}i:570;a:2:{s:2:\"id\";s:6:\"2484-0\";s:4:\"name\";s:4:\"real\";}i:571;a:2:{s:2:\"id\";s:6:\"2484-1\";s:4:\"name\";s:6:\"estate\";}i:572;a:2:{s:2:\"id\";s:6:\"2484-2\";s:4:\"name\";s:8:\"building\";}i:573;a:2:{s:2:\"id\";s:6:\"2484-3\";s:4:\"name\";s:12:\"construction\";}i:574;a:2:{s:2:\"id\";s:6:\"2484-4\";s:4:\"name\";s:10:\"contractor\";}i:575;a:2:{s:2:\"id\";s:6:\"2484-5\";s:4:\"name\";s:5:\"agent\";}i:576;a:2:{s:2:\"id\";s:6:\"2484-6\";s:4:\"name\";s:9:\"architect\";}i:577;a:2:{s:2:\"id\";s:6:\"2484-7\";s:4:\"name\";s:8:\"interior\";}i:578;a:2:{s:2:\"id\";s:6:\"2484-8\";s:4:\"name\";s:4:\"firm\";}i:579;a:2:{s:2:\"id\";s:6:\"2484-9\";s:4:\"name\";s:7:\"service\";}i:580;a:2:{s:2:\"id\";s:7:\"2484-10\";s:4:\"name\";s:8:\"template\";}i:581;a:2:{s:2:\"id\";s:7:\"2484-11\";s:4:\"name\";s:8:\"business\";}i:582;a:2:{s:2:\"id\";s:7:\"2484-12\";s:4:\"name\";s:5:\"Astra\";}i:583;a:2:{s:2:\"id\";s:7:\"2484-13\";s:4:\"name\";s:10:\"consulting\";}i:584;a:2:{s:2:\"id\";s:7:\"2484-14\";s:4:\"name\";s:10:\"consultant\";}i:585;a:2:{s:2:\"id\";s:7:\"2484-15\";s:4:\"name\";s:7:\"company\";}i:586;a:2:{s:2:\"id\";s:7:\"2484-16\";s:4:\"name\";s:8:\"designer\";}i:587;a:2:{s:2:\"id\";s:7:\"2484-17\";s:4:\"name\";s:7:\"website\";}i:588;a:2:{s:2:\"id\";s:7:\"2484-18\";s:4:\"name\";s:8:\"property\";}i:589;a:2:{s:2:\"id\";i:2496;s:4:\"name\";s:17:\"Restaurant & Food\";}i:590;a:2:{s:2:\"id\";s:6:\"2496-0\";s:4:\"name\";s:4:\"food\";}i:591;a:2:{s:2:\"id\";s:6:\"2496-1\";s:4:\"name\";s:10:\"restaurant\";}i:592;a:2:{s:2:\"id\";s:6:\"2496-2\";s:4:\"name\";s:7:\"kitchen\";}i:593;a:2:{s:2:\"id\";s:6:\"2496-3\";s:4:\"name\";s:9:\"breakfast\";}i:594;a:2:{s:2:\"id\";s:6:\"2496-4\";s:4:\"name\";s:6:\"brunch\";}i:595;a:2:{s:2:\"id\";s:6:\"2496-5\";s:4:\"name\";s:6:\"dining\";}i:596;a:2:{s:2:\"id\";s:6:\"2496-6\";s:4:\"name\";s:5:\"diner\";}i:597;a:2:{s:2:\"id\";s:6:\"2496-7\";s:4:\"name\";s:7:\"cooking\";}i:598;a:2:{s:2:\"id\";s:6:\"2496-8\";s:4:\"name\";s:8:\"template\";}i:599;a:2:{s:2:\"id\";s:6:\"2496-9\";s:4:\"name\";s:8:\"business\";}i:600;a:2:{s:2:\"id\";s:7:\"2496-10\";s:4:\"name\";s:5:\"Astra\";}i:601;a:2:{s:2:\"id\";s:7:\"2496-11\";s:4:\"name\";s:7:\"website\";}i:602;a:2:{s:2:\"id\";s:7:\"2496-12\";s:4:\"name\";s:0:\"\";}i:603;a:2:{s:2:\"id\";i:2499;s:4:\"name\";s:10:\"Technology\";}i:604;a:2:{s:2:\"id\";s:6:\"2499-0\";s:4:\"name\";s:4:\"SaaS\";}i:605;a:2:{s:2:\"id\";s:6:\"2499-1\";s:4:\"name\";s:10:\"Mobile App\";}i:606;a:2:{s:2:\"id\";s:6:\"2499-2\";s:4:\"name\";s:4:\"Tech\";}i:607;a:2:{s:2:\"id\";s:6:\"2499-3\";s:4:\"name\";s:7:\"Product\";}i:608;a:2:{s:2:\"id\";s:6:\"2499-4\";s:4:\"name\";s:8:\"Software\";}i:609;a:2:{s:2:\"id\";s:6:\"2499-5\";s:4:\"name\";s:7:\"Startup\";}i:610;a:2:{s:2:\"id\";s:6:\"2499-6\";s:4:\"name\";s:0:\"\";}i:611;a:2:{s:2:\"id\";i:2473;s:4:\"name\";s:9:\"Transport\";}i:612;a:2:{s:2:\"id\";s:6:\"2473-0\";s:4:\"name\";s:6:\"movers\";}i:613;a:2:{s:2:\"id\";s:6:\"2473-1\";s:4:\"name\";s:7:\"packers\";}i:614;a:2:{s:2:\"id\";s:6:\"2473-2\";s:4:\"name\";s:6:\"moving\";}i:615;a:2:{s:2:\"id\";s:6:\"2473-3\";s:4:\"name\";s:6:\"towing\";}i:616;a:2:{s:2:\"id\";s:6:\"2473-4\";s:4:\"name\";s:6:\"rental\";}i:617;a:2:{s:2:\"id\";s:6:\"2473-5\";s:4:\"name\";s:7:\"service\";}i:618;a:2:{s:2:\"id\";s:6:\"2473-6\";s:4:\"name\";s:8:\"services\";}i:619;a:2:{s:2:\"id\";s:6:\"2473-7\";s:4:\"name\";s:8:\"delivery\";}i:620;a:2:{s:2:\"id\";s:6:\"2473-8\";s:4:\"name\";s:8:\"template\";}i:621;a:2:{s:2:\"id\";s:6:\"2473-9\";s:4:\"name\";s:5:\"local\";}i:622;a:2:{s:2:\"id\";s:7:\"2473-10\";s:4:\"name\";s:8:\"business\";}i:623;a:2:{s:2:\"id\";s:7:\"2473-11\";s:4:\"name\";s:5:\"Astra\";}i:624;a:2:{s:2:\"id\";s:7:\"2473-12\";s:4:\"name\";s:7:\"company\";}i:625;a:2:{s:2:\"id\";s:7:\"2473-13\";s:4:\"name\";s:7:\"website\";}i:626;a:2:{s:2:\"id\";s:7:\"2473-14\";s:4:\"name\";s:7:\"courier\";}i:627;a:2:{s:2:\"id\";s:7:\"2473-15\";s:4:\"name\";s:0:\"\";}i:628;a:2:{s:2:\"id\";i:2926;s:4:\"name\";s:5:\"Video\";}i:629;a:2:{s:2:\"id\";s:6:\"2926-0\";s:4:\"name\";s:5:\"video\";}i:630;a:2:{s:2:\"id\";s:6:\"2926-1\";s:4:\"name\";s:4:\"vlog\";}i:631;a:2:{s:2:\"id\";s:6:\"2926-2\";s:4:\"name\";s:7:\"vlogger\";}}','no'),(234,'ast-block-templates-categories','a:18:{i:0;a:5:{s:2:\"id\";i:832;s:5:\"count\";i:44;s:4:\"name\";s:14:\"Call To Action\";s:4:\"slug\";s:14:\"call-to-action\";s:6:\"parent\";i:0;}i:1;a:5:{s:2:\"id\";i:825;s:5:\"count\";i:60;s:4:\"name\";s:5:\"About\";s:4:\"slug\";s:5:\"about\";s:6:\"parent\";i:0;}i:2;a:5:{s:2:\"id\";i:1091;s:5:\"count\";i:20;s:4:\"name\";s:7:\"Clients\";s:4:\"slug\";s:7:\"clients\";s:6:\"parent\";i:0;}i:3;a:5:{s:2:\"id\";i:1416;s:5:\"count\";i:42;s:4:\"name\";s:7:\"Contact\";s:4:\"slug\";s:7:\"contact\";s:6:\"parent\";i:0;}i:4;a:5:{s:2:\"id\";i:1001;s:5:\"count\";i:31;s:4:\"name\";s:3:\"FAQ\";s:4:\"slug\";s:3:\"faq\";s:6:\"parent\";i:0;}i:5;a:5:{s:2:\"id\";i:919;s:5:\"count\";i:51;s:4:\"name\";s:8:\"Features\";s:4:\"slug\";s:8:\"features\";s:6:\"parent\";i:0;}i:6;a:5:{s:2:\"id\";i:1094;s:5:\"count\";i:30;s:4:\"name\";s:7:\"Heading\";s:4:\"slug\";s:7:\"heading\";s:6:\"parent\";i:0;}i:7;a:5:{s:2:\"id\";i:831;s:5:\"count\";i:61;s:4:\"name\";s:4:\"Hero\";s:4:\"slug\";s:4:\"hero\";s:6:\"parent\";i:0;}i:8;a:5:{s:2:\"id\";i:1948;s:5:\"count\";i:30;s:4:\"name\";s:14:\"Image and Text\";s:4:\"slug\";s:14:\"image-and-text\";s:6:\"parent\";i:0;}i:9;a:5:{s:2:\"id\";i:1950;s:5:\"count\";i:16;s:4:\"name\";s:18:\"Location And Hours\";s:4:\"slug\";s:18:\"location-and-hours\";s:6:\"parent\";i:0;}i:10;a:5:{s:2:\"id\";i:1425;s:5:\"count\";i:36;s:4:\"name\";s:9:\"Portfolio\";s:4:\"slug\";s:9:\"portfolio\";s:6:\"parent\";i:0;}i:11;a:5:{s:2:\"id\";i:952;s:5:\"count\";i:51;s:4:\"name\";s:8:\"Services\";s:4:\"slug\";s:8:\"services\";s:6:\"parent\";i:0;}i:12;a:5:{s:2:\"id\";i:1424;s:5:\"count\";i:28;s:4:\"name\";s:12:\"Single Quote\";s:4:\"slug\";s:12:\"single-quote\";s:6:\"parent\";i:0;}i:13;a:5:{s:2:\"id\";i:1096;s:5:\"count\";i:26;s:4:\"name\";s:10:\"Statistics\";s:4:\"slug\";s:10:\"statistics\";s:6:\"parent\";i:0;}i:14;a:5:{s:2:\"id\";i:1953;s:5:\"count\";i:18;s:4:\"name\";s:14:\"Subscribe Form\";s:4:\"slug\";s:14:\"subscribe-form\";s:6:\"parent\";i:0;}i:15;a:5:{s:2:\"id\";i:829;s:5:\"count\";i:46;s:4:\"name\";s:4:\"Team\";s:4:\"slug\";s:4:\"team\";s:6:\"parent\";i:0;}i:16;a:5:{s:2:\"id\";i:830;s:5:\"count\";i:48;s:4:\"name\";s:11:\"Testimonial\";s:4:\"slug\";s:11:\"testimonial\";s:6:\"parent\";i:0;}i:17;a:5:{s:2:\"id\";i:1946;s:5:\"count\";i:27;s:4:\"name\";s:4:\"Text\";s:4:\"slug\";s:4:\"text\";s:6:\"parent\";i:0;}}','no'),(235,'astra-sites-all-site-categories','a:32:{i:0;a:3:{s:2:\"id\";i:2487;s:4:\"name\";s:6:\"Agency\";s:4:\"slug\";s:6:\"agency\";}i:1;a:3:{s:2:\"id\";i:2486;s:4:\"name\";s:15:\"Art &amp; Music\";s:4:\"slug\";s:9:\"art-music\";}i:2;a:3:{s:2:\"id\";i:2475;s:4:\"name\";s:10:\"Automotive\";s:4:\"slug\";s:10:\"automotive\";}i:3;a:3:{s:2:\"id\";i:2479;s:4:\"name\";s:6:\"Beauty\";s:4:\"slug\";s:6:\"beauty\";}i:4;a:3:{s:2:\"id\";i:2497;s:4:\"name\";s:4:\"Blog\";s:4:\"slug\";s:4:\"blog\";}i:5;a:3:{s:2:\"id\";i:2495;s:4:\"name\";s:9:\"eCommerce\";s:4:\"slug\";s:9:\"ecommerce\";}i:6;a:3:{s:2:\"id\";i:2491;s:4:\"name\";s:22:\"Educational Institutes\";s:4:\"slug\";s:22:\"educational-institutes\";}i:7;a:3:{s:2:\"id\";i:2494;s:4:\"name\";s:9:\"eLearning\";s:4:\"slug\";s:9:\"elearning\";}i:8;a:3:{s:2:\"id\";i:2489;s:4:\"name\";s:16:\"Event Invitation\";s:4:\"slug\";s:16:\"event-invitation\";}i:9;a:3:{s:2:\"id\";i:2483;s:4:\"name\";s:15:\"Expert Services\";s:4:\"slug\";s:15:\"expert-services\";}i:10;a:3:{s:2:\"id\";i:2481;s:4:\"name\";s:15:\"Finance Service\";s:4:\"slug\";s:15:\"finance-service\";}i:11;a:3:{s:2:\"id\";i:2480;s:4:\"name\";s:22:\"Fitness &amp; Wellness\";s:4:\"slug\";s:16:\"fitness-wellness\";}i:12;a:3:{s:2:\"id\";i:2476;s:4:\"name\";s:9:\"Gardening\";s:4:\"slug\";s:9:\"gardening\";}i:13;a:3:{s:2:\"id\";i:2490;s:4:\"name\";s:10:\"Healthcare\";s:4:\"slug\";s:10:\"healthcare\";}i:14;a:3:{s:2:\"id\";i:2477;s:4:\"name\";s:13:\"Home Services\";s:4:\"slug\";s:13:\"home-services\";}i:15;a:3:{s:2:\"id\";i:2498;s:4:\"name\";s:18:\"Hotel &amp; Travel\";s:4:\"slug\";s:12:\"hotel-travel\";}i:16;a:3:{s:2:\"id\";i:2482;s:4:\"name\";s:3:\"Law\";s:4:\"slug\";s:3:\"law\";}i:17;a:3:{s:2:\"id\";i:3191;s:4:\"name\";s:11:\"Link in Bio\";s:4:\"slug\";s:11:\"link-in-bio\";}i:18;a:3:{s:2:\"id\";i:2478;s:4:\"name\";s:17:\"Local Storefronts\";s:4:\"slug\";s:17:\"local-storefronts\";}i:19;a:3:{s:2:\"id\";i:2471;s:4:\"name\";s:16:\"Local Technician\";s:4:\"slug\";s:16:\"local-technician\";}i:20;a:3:{s:2:\"id\";i:2474;s:4:\"name\";s:13:\"Manufacturing\";s:4:\"slug\";s:13:\"manufacturing\";}i:21;a:3:{s:2:\"id\";i:2500;s:4:\"name\";s:12:\"Multipurpose\";s:4:\"slug\";s:12:\"multipurpose\";}i:22;a:3:{s:2:\"id\";i:2492;s:4:\"name\";s:10:\"Non Profit\";s:4:\"slug\";s:10:\"non-profit\";}i:23;a:3:{s:2:\"id\";i:2927;s:4:\"name\";s:8:\"One Page\";s:4:\"slug\";s:8:\"one-page\";}i:24;a:3:{s:2:\"id\";i:2472;s:4:\"name\";s:4:\"Pets\";s:4:\"slug\";s:4:\"pets\";}i:25;a:3:{s:2:\"id\";i:2485;s:4:\"name\";s:11:\"Photography\";s:4:\"slug\";s:11:\"photography\";}i:26;a:3:{s:2:\"id\";i:2488;s:4:\"name\";s:9:\"Portfolio\";s:4:\"slug\";s:9:\"portfolio\";}i:27;a:3:{s:2:\"id\";i:2484;s:4:\"name\";s:11:\"Real Estate\";s:4:\"slug\";s:11:\"real-estate\";}i:28;a:3:{s:2:\"id\";i:2496;s:4:\"name\";s:21:\"Restaurant &amp; Food\";s:4:\"slug\";s:15:\"restaurant-food\";}i:29;a:3:{s:2:\"id\";i:2499;s:4:\"name\";s:10:\"Technology\";s:4:\"slug\";s:10:\"technology\";}i:30;a:3:{s:2:\"id\";i:2473;s:4:\"name\";s:9:\"Transport\";s:4:\"slug\";s:9:\"transport\";}i:31;a:3:{s:2:\"id\";i:2926;s:4:\"name\";s:5:\"Video\";s:4:\"slug\";s:5:\"video\";}}','no');
INSERT INTO `wpjv_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (236,'ast-block-templates-sites-1','a:100:{s:8:\"id-73697\";a:22:{s:5:\"title\";s:7:\"Be Bold\";s:2:\"id\";i:73697;s:12:\"publish-date\";i:1683566320;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/05/be-bold-beauty-store-07.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/05/be-bold-beauty-store-07-600x2434.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/05/be-bold-beauty-store-07-400x1622.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/be-bold-beauty-store-07\";s:20:\"astra-site-parent-id\";i:3196;s:15:\"astra-sites-tag\";a:11:{i:1023;s:6:\"beauty\";i:1465;s:15:\"beauty-products\";i:2384;s:21:\"beauty-products-store\";i:1466;s:17:\"cosmetic-products\";i:1464;s:14:\"cosmetic-store\";i:1463;s:9:\"cosmetics\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:383;s:12:\"online-store\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:7:\"premium\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2790;s:14:\"beauty-fashion\";i:2769;s:9:\"ecommerce\";i:2890;s:15:\"makeup-cosmetic\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:2:{i:2479;s:6:\"beauty\";i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:9:\"cartflows\";s:4:\"init\";s:23:\"cartflows/cartflows.php\";s:4:\"name\";s:9:\"CartFlows\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-73698\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/05/be-bold-beauty-store-07-about-us.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2023/05/be-bold-beauty-store-07-about-us-600x1517.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/be-bold-beauty-store-07/wp-json/wp/v2/pages/871\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/be-bold-beauty-store-07/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-73699\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2023/05/be-bold-beauty-store-07-contact.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2023/05/be-bold-beauty-store-07-contact-600x1071.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/be-bold-beauty-store-07/wp-json/wp/v2/pages/872\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/be-bold-beauty-store-07/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-73700\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/05/be-bold-beauty-store-07.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/05/be-bold-beauty-store-07-600x2434.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/be-bold-beauty-store-07/wp-json/wp/v2/pages/886\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/be-bold-beauty-store-07/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-73686\";a:22:{s:5:\"title\";s:20:\"Blingg Jewelry Store\";s:2:\"id\";i:73686;s:12:\"publish-date\";i:1683565586;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/05/blingg-jewelry-store-07.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/05/blingg-jewelry-store-07-600x2000.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/05/blingg-jewelry-store-07-400x1333.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/blingg-jewelry-store-07\";s:20:\"astra-site-parent-id\";i:3195;s:15:\"astra-sites-tag\";a:12:{i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2912;s:9:\"jewellery\";i:2382;s:15:\"jewellery-store\";i:731;s:7:\"jewelry\";i:2529;s:13:\"jewelry-store\";i:2383;s:22:\"online-jewellery-store\";i:383;s:12:\"online-store\";i:967;s:13:\"product-store\";i:2913;s:4:\"ring\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:7:\"premium\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2769;s:9:\"ecommerce\";i:2838;s:9:\"jewellery\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-73687\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/05/blingg-jewelry-store-07-about.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2023/05/blingg-jewelry-store-07-about-600x1473.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/blingg-jewelry-store-07/wp-json/wp/v2/pages/469\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/blingg-jewelry-store-07/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-73688\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2023/05/blingg-jewelry-store-07-contact.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2023/05/blingg-jewelry-store-07-contact-600x902.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/blingg-jewelry-store-07/wp-json/wp/v2/pages/470\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/blingg-jewelry-store-07/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-73689\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/05/blingg-jewelry-store-07.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/05/blingg-jewelry-store-07-600x2000.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/blingg-jewelry-store-07/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/blingg-jewelry-store-07/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-73669\";a:22:{s:5:\"title\";s:12:\"The Pizzeria\";s:2:\"id\";i:73669;s:12:\"publish-date\";i:1683564886;s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07-600x3273.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07-400x2182.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/pizzeria-07\";s:20:\"astra-site-parent-id\";i:3194;s:15:\"astra-sites-tag\";a:10:{i:2011;s:15:\"fast-food-chain\";i:2013;s:20:\"fast-food-restaurant\";i:2018;s:17:\"fast-food-service\";i:350;s:5:\"hotel\";i:563;s:18:\"italian-restaurant\";i:1975;s:5:\"pasta\";i:1971;s:5:\"pizza\";i:2012;s:11:\"pizza-house\";i:1977;s:8:\"pizzeria\";i:335;s:10:\"restaurant\";}s:16:\"astra-sites-type\";s:7:\"premium\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2785;s:4:\"food\";i:2876;s:13:\"food-ordering\";i:2776;s:10:\"restaurant\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-73670\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07-about.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07-about-600x1915.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/pizzeria-07/wp-json/wp/v2/pages/1297\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/pizzeria-07/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-73671\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07-contact.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07-contact-600x1580.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/pizzeria-07/wp-json/wp/v2/pages/1299\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/pizzeria-07/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-73672\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07-600x3273.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/pizzeria-07/wp-json/wp/v2/pages/1294\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/pizzeria-07/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-73673\";a:12:{s:5:\"title\";s:6:\"Offers\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07-offers.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07-offers-600x1934.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/pizzeria-07/wp-json/wp/v2/pages/1298\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/pizzeria-07/offers/\";s:15:\"astra-sites-tag\";a:1:{i:1969;s:6:\"offers\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-73674\";a:12:{s:5:\"title\";s:8:\"Our Menu\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07-our-menu.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/05/pizzeria-07-our-menu-600x2784.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/pizzeria-07/wp-json/wp/v2/pages/1296\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/pizzeria-07/our-menu/\";s:15:\"astra-sites-tag\";a:1:{i:1578;s:8:\"our-menu\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-73652\";a:22:{s:5:\"title\";s:12:\"Media Agency\";s:2:\"id\";i:73652;s:12:\"publish-date\";i:1683561623;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07-600x2450.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07-400x1633.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/media-agency-07\";s:20:\"astra-site-parent-id\";i:3193;s:15:\"astra-sites-tag\";a:13:{i:1587;s:18:\"advertising-agency\";i:2232;s:19:\"advertising-company\";i:2229;s:16:\"advertising-firm\";i:663;s:6:\"agency\";i:979;s:7:\"company\";i:1588;s:16:\"marketing-agency\";i:2233;s:17:\"marketing-company\";i:2228;s:14:\"marketing-firm\";i:2237;s:12:\"media-agency\";i:2230;s:12:\"press-agency\";i:2227;s:14:\"promotion-firm\";i:2231;s:14:\"publicity-firm\";i:2234;s:18:\"publicity-services\";}s:16:\"astra-sites-type\";s:7:\"premium\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2812;s:14:\"digital-agency\";i:2796;s:17:\"digital-marketing\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-73655\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07-600x2450.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/media-agency-07/wp-json/wp/v2/pages/469\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/media-agency-07/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-73656\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07-portfolio.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07-portfolio-600x1194.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/media-agency-07/wp-json/wp/v2/pages/472\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/media-agency-07/portfolio/\";s:15:\"astra-sites-tag\";a:1:{i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-73657\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07-services.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07-services-600x1962.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/media-agency-07/wp-json/wp/v2/pages/471\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/media-agency-07/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-73653\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07-about.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07-about-600x1750.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/media-agency-07/wp-json/wp/v2/pages/470\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/media-agency-07/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-73654\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07-contact.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/05/media-agency-07-contact-600x1213.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/media-agency-07/wp-json/wp/v2/pages/473\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/media-agency-07/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-73637\";a:22:{s:5:\"title\";s:15:\"Game Dev Studio\";s:2:\"id\";i:73637;s:12:\"publish-date\";i:1683560696;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/05/game-dev-studio-07.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/05/game-dev-studio-07-600x2839.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/05/game-dev-studio-07-400x1892.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/game-dev-studio-07\";s:20:\"astra-site-parent-id\";i:3192;s:15:\"astra-sites-tag\";a:8:{i:652;s:4:\"game\";i:3073;s:16:\"game-development\";i:3077;s:10:\"gamedesign\";i:3074;s:7:\"gamedev\";i:3075;s:13:\"gamedeveloper\";i:3072;s:6:\"gaming\";i:1510;s:6:\"studio\";i:3076;s:10:\"videogames\";}s:16:\"astra-sites-type\";s:7:\"premium\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2791;s:8:\"creative\";i:2768;s:9:\"portfolio\";i:2779;s:16:\"software-company\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2499;s:10:\"technology\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-73641\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/05/game-dev-studio-07-projects.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2023/05/game-dev-studio-07-projects-600x1421.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/game-dev-studio-07/wp-json/wp/v2/pages/647\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/game-dev-studio-07/projects/\";s:15:\"astra-sites-tag\";a:1:{i:1613;s:8:\"projects\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-73638\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/05/game-dev-studio-07-about.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/05/game-dev-studio-07-about-600x2598.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/game-dev-studio-07/wp-json/wp/v2/pages/645\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/game-dev-studio-07/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-73639\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2023/05/game-dev-studio-07-contact.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/05/game-dev-studio-07-contact-600x905.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/game-dev-studio-07/wp-json/wp/v2/pages/649\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/game-dev-studio-07/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-73640\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/05/game-dev-studio-07.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/05/game-dev-studio-07-600x2839.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/game-dev-studio-07/wp-json/wp/v2/pages/642\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/game-dev-studio-07/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:7:\"premium\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71474\";a:22:{s:5:\"title\";s:17:\"Day Care Services\";s:2:\"id\";i:71474;s:12:\"publish-date\";i:1676368033;s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08-600x4246.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08-400x2830.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/daycare-08\";s:20:\"astra-site-parent-id\";i:3086;s:15:\"astra-sites-tag\";a:7:{i:2156;s:7:\"daycare\";i:459;s:9:\"education\";i:1490;s:4:\"kids\";i:617;s:12:\"kindergarten\";i:460;s:8:\"learning\";i:456;s:6:\"school\";i:425;s:8:\"services\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2772;s:9:\"education\";i:2782;s:6:\"school\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2491;s:22:\"educational-institutes\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-71475\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08-about.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08-about-600x2222.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/daycare-08/wp-json/wp/v2/pages/1393\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/daycare-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71476\";a:12:{s:5:\"title\";s:9:\"Admission\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08-admission.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08-admission-600x1137.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/daycare-08/wp-json/wp/v2/pages/1397\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/daycare-08/admission/\";s:15:\"astra-sites-tag\";a:1:{i:2680;s:9:\"admission\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71477\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08-contact-600x1091.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/daycare-08/wp-json/wp/v2/pages/1399\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/daycare-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71478\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08-600x4246.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/daycare-08/wp-json/wp/v2/pages/1390\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/daycare-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71479\";a:12:{s:5:\"title\";s:7:\"Program\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08-program.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/02/daycare-08-program-600x3047.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/daycare-08/wp-json/wp/v2/pages/1395\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/daycare-08/program/\";s:15:\"astra-sites-tag\";a:1:{i:2684;s:7:\"program\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71491\";a:22:{s:5:\"title\";s:11:\"Electrician\";s:2:\"id\";i:71491;s:12:\"publish-date\";i:1676039584;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08-600x2117.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08-400x1411.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/electrician-08\";s:20:\"astra-site-parent-id\";i:3087;s:15:\"astra-sites-tag\";a:4:{i:341;s:11:\"electrician\";i:1021;s:14:\"local-business\";i:439;s:14:\"local-services\";i:671;s:16:\"service-provider\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2815;s:11:\"electrician\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-71492\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08-about.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08-about-600x1430.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/electrician-08/wp-json/wp/v2/pages/1399\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/electrician-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71493\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08-contact-600x1159.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/electrician-08/wp-json/wp/v2/pages/1402\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/electrician-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71494\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08-faq.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08-faq-600x1139.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/electrician-08/wp-json/wp/v2/pages/1401\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/electrician-08/faq/\";s:15:\"astra-sites-tag\";a:1:{i:426;s:3:\"faq\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71495\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08-600x2117.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/electrician-08/wp-json/wp/v2/pages/1373\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/electrician-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71496\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08-services.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/02/electrician-08-services-600x1935.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/electrician-08/wp-json/wp/v2/pages/1400\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/electrician-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71341\";a:22:{s:5:\"title\";s:15:\"Language Tutors\";s:2:\"id\";i:71341;s:12:\"publish-date\";i:1676036408;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08-600x2736.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08-400x1824.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/language-tutors-08\";s:20:\"astra-site-parent-id\";i:3081;s:15:\"astra-sites-tag\";a:7:{i:2747;s:8:\"language\";i:2749;s:14:\"language-tutor\";i:719;s:15:\"online-coaching\";i:466;s:14:\"online-courses\";i:975;s:15:\"online-learning\";i:2748;s:5:\"tutor\";i:720;s:9:\"tutorials\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2772;s:9:\"education\";i:2835;s:9:\"elearning\";i:2873;s:5:\"tutor\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-71342\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08-about.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08-about-600x1809.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/language-tutors-08/wp-json/wp/v2/pages/327\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/language-tutors-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71343\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08-contact-600x1246.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/language-tutors-08/wp-json/wp/v2/pages/329\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/language-tutors-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71344\";a:12:{s:5:\"title\";s:7:\"Courses\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08-courses.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08-courses-600x1477.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/language-tutors-08/wp-json/wp/v2/pages/323\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/language-tutors-08/courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71345\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08-600x2736.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/language-tutors-08/wp-json/wp/v2/pages/320\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/language-tutors-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71346\";a:12:{s:5:\"title\";s:12:\"Our Teachers\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08-teachers.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2023/02/language-tutors-08-teachers-600x1857.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/language-tutors-08/wp-json/wp/v2/pages/325\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/language-tutors-08/our-teachers/\";s:15:\"astra-sites-tag\";a:1:{i:2751;s:12:\"our-teachers\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71334\";a:22:{s:5:\"title\";s:22:\"Real Estate Consultant\";s:2:\"id\";i:71334;s:12:\"publish-date\";i:1675775296;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08-600x2702.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08-400x1801.jpg\";s:14:\"astra-site-url\";s:44:\"//websitedemos.net/real-estate-consultant-08\";s:20:\"astra-site-parent-id\";i:3080;s:15:\"astra-sites-tag\";a:8:{i:2311;s:19:\"construction-agency\";i:2088;s:20:\"construction-company\";i:2313;s:16:\"property-rentals\";i:485;s:11:\"real-estate\";i:2310;s:18:\"real-estate-agency\";i:2535;s:22:\"real-estate-consultant\";i:2314;s:22:\"real-estate-developers\";i:2312;s:14:\"sales-property\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2794;s:10:\"consulting\";i:2778;s:11:\"real-estate\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:2:{i:2483;s:15:\"expert-services\";i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-71335\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08-about-me.jpg\";s:19:\"thumbnail-image-url\";s:99:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08-about-me-600x1324.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/real-estate-consultant-08/wp-json/wp/v2/pages/705\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/real-estate-consultant-08/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:1007;s:8:\"about-me\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71336\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08-contact-600x1112.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/real-estate-consultant-08/wp-json/wp/v2/pages/709\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/real-estate-consultant-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71337\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08-600x2702.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/real-estate-consultant-08/wp-json/wp/v2/pages/701\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/real-estate-consultant-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71338\";a:12:{s:5:\"title\";s:7:\"Reviews\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08-reviews.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08-reviews-600x1107.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/real-estate-consultant-08/wp-json/wp/v2/pages/707\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/real-estate-consultant-08/reviews/\";s:15:\"astra-sites-tag\";a:1:{i:1615;s:7:\"reviews\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71339\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08-service.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2023/02/real-estate-consultant-08-service-600x1228.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/real-estate-consultant-08/wp-json/wp/v2/pages/703\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/real-estate-consultant-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71404\";a:22:{s:5:\"title\";s:22:\"Pharmaceutical Company\";s:2:\"id\";i:71404;s:12:\"publish-date\";i:1675771021;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08-600x2532.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08-400x1688.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/pharmaceutical-08\";s:20:\"astra-site-parent-id\";i:3084;s:15:\"astra-sites-tag\";a:4:{i:1888;s:6:\"pharma\";i:1890;s:14:\"pharma-company\";i:1891;s:22:\"pharmaceutical-company\";i:1889;s:15:\"pharmaceuticals\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2834;s:10:\"healthcare\";i:2841;s:14:\"medical-clinic\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2474;s:13:\"manufacturing\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-71405\";a:12:{s:5:\"title\";s:7:\"Company\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08-company.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08-company-600x2194.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/pharmaceutical-08/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/pharmaceutical-08/company/\";s:15:\"astra-sites-tag\";a:1:{i:979;s:7:\"company\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71406\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08-contact-600x1494.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/pharmaceutical-08/wp-json/wp/v2/pages/25\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/pharmaceutical-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71407\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08-600x2532.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/pharmaceutical-08/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/pharmaceutical-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71408\";a:12:{s:5:\"title\";s:8:\"Products\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08-products.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08-products-600x2210.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/pharmaceutical-08/wp-json/wp/v2/pages/23\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/pharmaceutical-08/products/\";s:15:\"astra-sites-tag\";a:1:{i:540;s:8:\"products\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71409\";a:12:{s:5:\"title\";s:10:\"R &#038; D\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08-rd.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/02/pharmaceutical-08-rd-600x1892.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/pharmaceutical-08/wp-json/wp/v2/pages/24\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/pharmaceutical-08/r-d/\";s:15:\"astra-sites-tag\";a:1:{i:3085;s:3:\"r-d\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71384\";a:22:{s:5:\"title\";s:18:\"Learn Oil Painting\";s:2:\"id\";i:71384;s:12:\"publish-date\";i:1675765696;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2023/02/learn-oil-painting-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/02/learn-oil-painting-08-600x2033.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/02/learn-oil-painting-08-400x1355.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/learn-oil-painting-08\";s:20:\"astra-site-parent-id\";i:3083;s:15:\"astra-sites-tag\";a:4:{i:462;s:7:\"courses\";i:467;s:9:\"learndash\";i:975;s:15:\"online-learning\";i:720;s:9:\"tutorials\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:7:{i:2802;s:6:\"artist\";i:2825;s:8:\"coaching\";i:2835;s:9:\"elearning\";i:2880;s:10:\"membership\";i:2827;s:13:\"online-course\";i:2770;s:8:\"personal\";i:2873;s:5:\"tutor\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-71385\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/02/learn-oil-painting-08-about.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2023/02/learn-oil-painting-08-about-600x940.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/learn-oil-painting-08/wp-json/wp/v2/pages/739\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/learn-oil-painting-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71386\";a:12:{s:5:\"title\";s:7:\"Classes\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/02/learn-oil-painting-08-classes.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2023/02/learn-oil-painting-08-classes-600x1344.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/learn-oil-painting-08/wp-json/wp/v2/pages/738\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/learn-oil-painting-08/classes/\";s:15:\"astra-sites-tag\";a:1:{i:557;s:7:\"classes\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71387\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/02/learn-oil-painting-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2023/02/learn-oil-painting-08-contact-600x920.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/learn-oil-painting-08/wp-json/wp/v2/pages/740\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/learn-oil-painting-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71388\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2023/02/learn-oil-painting-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/02/learn-oil-painting-08-600x2033.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/learn-oil-painting-08/wp-json/wp/v2/pages/736\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/learn-oil-painting-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71367\";a:22:{s:5:\"title\";s:11:\"Piano Tutor\";s:2:\"id\";i:71367;s:12:\"publish-date\";i:1675763538;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08-600x3262.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08-400x2175.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/piano-tutor-08\";s:20:\"astra-site-parent-id\";i:3082;s:15:\"astra-sites-tag\";a:7:{i:1786;s:5:\"forte\";i:407;s:5:\"music\";i:1782;s:5:\"piano\";i:1784;s:15:\"piano-institute\";i:1783;s:13:\"piano-lessons\";i:1785;s:14:\"piano-programs\";i:1781;s:8:\"tutorial\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2772;s:9:\"education\";i:2781;s:5:\"music\";i:2873;s:5:\"tutor\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2486;s:9:\"art-music\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-71368\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08-about-us-600x1815.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/piano-tutor-08/wp-json/wp/v2/pages/357\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/piano-tutor-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71369\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08-contact-600x1249.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/piano-tutor-08/wp-json/wp/v2/pages/364\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/piano-tutor-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71370\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08-600x3262.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/piano-tutor-08/wp-json/wp/v2/pages/354\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/piano-tutor-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71371\";a:12:{s:5:\"title\";s:8:\"Programs\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08-programs.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08-programs-600x2509.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/piano-tutor-08/wp-json/wp/v2/pages/359\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/piano-tutor-08/programs/\";s:15:\"astra-sites-tag\";a:1:{i:989;s:8:\"programs\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71372\";a:12:{s:5:\"title\";s:11:\"Testimonial\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2023/02/piano-tutor-08-testimonials-600x1712.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/piano-tutor-08/wp-json/wp/v2/pages/362\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/piano-tutor-08/testimonial/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71300\";a:22:{s:5:\"title\";s:13:\"Dental Clinic\";s:2:\"id\";i:71300;s:12:\"publish-date\";i:1674824635;s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2023/01/dental-08.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/01/dental-08-600x3410.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/01/dental-08-400x2273.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/dental-08\";s:20:\"astra-site-parent-id\";i:3079;s:15:\"astra-sites-tag\";a:8:{i:623;s:7:\"dentist\";i:601;s:6:\"doctor\";i:604;s:10:\"healthcare\";i:605;s:8:\"hospital\";i:399;s:8:\"one-page\";i:1022;s:12:\"professional\";i:463;s:11:\"single-page\";i:607;s:9:\"treatment\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2799;s:7:\"dentist\";i:2867;s:6:\"doctor\";i:2834;s:10:\"healthcare\";i:2780;s:8:\"hospital\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2490;s:10:\"healthcare\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-71301\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2023/01/dental-08.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/01/dental-08-600x3410.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/dental-08/wp-json/wp/v2/pages/27\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/dental-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71183\";a:22:{s:5:\"title\";s:27:\"Freelance Voice-over Artist\";s:2:\"id\";i:71183;s:12:\"publish-date\";i:1672827177;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08-600x2428.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08-400x1618.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/voiceover-artist-08\";s:20:\"astra-site-parent-id\";i:3062;s:15:\"astra-sites-tag\";a:6:{i:1908;s:14:\"dubbing-artist\";i:669;s:10:\"freelancer\";i:969;s:8:\"musician\";i:1834;s:16:\"recording-artist\";i:1571;s:6:\"singer\";i:1510;s:6:\"studio\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2802;s:6:\"artist\";i:2777;s:8:\"business\";i:2810;s:9:\"freelance\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-71184\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08-about.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08-about-600x1430.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/voiceover-artist-08/wp-json/wp/v2/pages/559\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/voiceover-artist-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71185\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08-contact-600x1184.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/voiceover-artist-08/wp-json/wp/v2/pages/565\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/voiceover-artist-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71186\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08-600x2428.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/voiceover-artist-08/wp-json/wp/v2/pages/556\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/voiceover-artist-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71187\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08-services.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08-services-600x1940.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/voiceover-artist-08/wp-json/wp/v2/pages/561\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/voiceover-artist-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71188\";a:12:{s:5:\"title\";s:6:\"Studio\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08-studio.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2023/01/voiceover-artist-08-studio-600x1550.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/voiceover-artist-08/wp-json/wp/v2/pages/563\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/voiceover-artist-08/studio/\";s:15:\"astra-sites-tag\";a:1:{i:1510;s:6:\"studio\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71180\";a:22:{s:5:\"title\";s:18:\"Wedding Invitation\";s:2:\"id\";i:71180;s:12:\"publish-date\";i:1672826233;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2023/01/wedding-invitation-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/01/wedding-invitation-08-600x3364.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/01/wedding-invitation-08-400x2242.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/wedding-invitation-08\";s:20:\"astra-site-parent-id\";i:3061;s:15:\"astra-sites-tag\";a:4:{i:699;s:10:\"invitation\";i:2560;s:20:\"reception-invitation\";i:697;s:7:\"wedding\";i:1457;s:18:\"wedding-invitation\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2771;s:8:\"one-page\";i:2792;s:7:\"wedding\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:2:{i:2489;s:16:\"event-invitation\";i:2927;s:8:\"one-page\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-59134\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2023/01/wedding-invitation-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2023/01/wedding-invitation-08-600x3364.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/wedding-invitation-08/wp-json/wp/v2/pages/203\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/wedding-invitation-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71149\";a:22:{s:5:\"title\";s:16:\"Freelance Artist\";s:2:\"id\";i:71149;s:12:\"publish-date\";i:1672396583;s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2022/12/artist-08.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/12/artist-08-600x1234.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/12/artist-08-400x823.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/artist-08\";s:20:\"astra-site-parent-id\";i:3060;s:15:\"astra-sites-tag\";a:9:{i:597;s:3:\"art\";i:339;s:6:\"artist\";i:496;s:9:\"ecommerce\";i:595;s:10:\"exhibition\";i:614;s:7:\"painter\";i:1020;s:8:\"personal\";i:967;s:13:\"product-store\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2802;s:6:\"artist\";i:2769;s:9:\"ecommerce\";i:2810;s:9:\"freelance\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-71150\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/12/artist-08-about-me.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/12/artist-08-about-me-600x1013.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/artist-08/wp-json/wp/v2/pages/607\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/artist-08/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:1007;s:8:\"about-me\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71151\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/12/artist-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/12/artist-08-contact-600x864.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/artist-08/wp-json/wp/v2/pages/608\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/artist-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}s:8:\"id-71152\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2022/12/artist-08.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/12/artist-08-600x1234.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/artist-08/wp-json/wp/v2/pages/606\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/artist-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71122\";a:22:{s:5:\"title\";s:16:\"Marketing Agency\";s:2:\"id\";i:71122;s:12:\"publish-date\";i:1672395349;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08-600x2638.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08-400x1758.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/marketing-agency-08\";s:20:\"astra-site-parent-id\";i:3059;s:15:\"astra-sites-tag\";a:12:{i:1587;s:18:\"advertising-agency\";i:2232;s:19:\"advertising-company\";i:2229;s:16:\"advertising-firm\";i:663;s:6:\"agency\";i:979;s:7:\"company\";i:1588;s:16:\"marketing-agency\";i:2233;s:17:\"marketing-company\";i:2228;s:14:\"marketing-firm\";i:2230;s:12:\"press-agency\";i:2227;s:14:\"promotion-firm\";i:2231;s:14:\"publicity-firm\";i:2234;s:18:\"publicity-services\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2812;s:14:\"digital-agency\";i:2796;s:17:\"digital-marketing\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:10:{s:8:\"id-71129\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/marketing-agency-08/wp-json/wp/v2/pages/60\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/marketing-agency-08/about-us/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71130\";a:12:{s:5:\"title\";s:12:\"Case Studies\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/marketing-agency-08/wp-json/wp/v2/pages/59\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/marketing-agency-08/case-studies/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71131\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/marketing-agency-08/wp-json/wp/v2/pages/61\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/marketing-agency-08/contact/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71132\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/marketing-agency-08/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/marketing-agency-08/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71133\";a:12:{s:5:\"title\";s:10:\"What We Do\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/marketing-agency-08/wp-json/wp/v2/pages/58\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/marketing-agency-08/what-we-do/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71123\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08-about-us-600x1450.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/marketing-agency-08/wp-json/wp/v2/pages/60\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/marketing-agency-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71124\";a:12:{s:5:\"title\";s:12:\"Case Studies\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08-case-studies.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08-case-studies-600x1280.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/marketing-agency-08/wp-json/wp/v2/pages/59\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/marketing-agency-08/case-studies/\";s:15:\"astra-sites-tag\";a:1:{i:780;s:12:\"case-studies\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71125\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08-contact-us-600x889.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/marketing-agency-08/wp-json/wp/v2/pages/61\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/marketing-agency-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71126\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08-600x2638.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/marketing-agency-08/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/marketing-agency-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71127\";a:12:{s:5:\"title\";s:10:\"What We Do\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08-what-we-do.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2022/12/marketing-agency-08-what-we-do-600x1954.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/marketing-agency-08/wp-json/wp/v2/pages/58\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/marketing-agency-08/what-we-do/\";s:15:\"astra-sites-tag\";a:1:{i:628;s:10:\"what-we-do\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71116\";a:22:{s:5:\"title\";s:7:\"Vlogger\";s:2:\"id\";i:71116;s:12:\"publish-date\";i:1672393023;s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2022/12/vlogger-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/12/vlogger-08-600x2621.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/12/vlogger-08-400x1747.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/vlogger-08\";s:20:\"astra-site-parent-id\";i:3058;s:15:\"astra-sites-tag\";a:8:{i:1840;s:9:\"cameraman\";i:1841;s:15:\"cinematographer\";i:1842;s:10:\"film-maker\";i:399;s:8:\"one-page\";i:1718;s:7:\"onepage\";i:1839;s:13:\"video-creator\";i:1837;s:7:\"vlogger\";i:1838;s:8:\"youtuber\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2810;s:9:\"freelance\";i:2771;s:8:\"one-page\";i:2770;s:8:\"personal\";i:2801;s:5:\"video\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:4:{i:2497;s:4:\"blog\";i:2927;s:8:\"one-page\";i:2488;s:9:\"portfolio\";i:2926;s:5:\"video\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-71117\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2022/12/vlogger-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/12/vlogger-08-600x2621.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/vlogger-08/wp-json/wp/v2/pages/28\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/vlogger-08/\";s:15:\"astra-sites-tag\";a:1:{i:1837;s:7:\"vlogger\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71099\";a:22:{s:5:\"title\";s:10:\"Car Repair\";s:2:\"id\";i:71099;s:12:\"publish-date\";i:1672390818;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08-600x2051.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08-400x1367.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/car-repair-08\";s:20:\"astra-site-parent-id\";i:3056;s:15:\"astra-sites-tag\";a:5:{i:588;s:8:\"car-care\";i:587;s:13:\"car-detailing\";i:666;s:10:\"car-repair\";i:1021;s:14:\"local-business\";i:667;s:11:\"repair-shop\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2800;s:14:\"car-automotive\";i:2777;s:8:\"business\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2475;s:10:\"automotive\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-71100\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08-about.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08-about-600x1286.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/car-repair-08/wp-json/wp/v2/pages/1811\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/car-repair-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71101\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08-contact-600x1024.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/car-repair-08/wp-json/wp/v2/pages/1814\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/car-repair-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71102\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08-600x2051.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/car-repair-08/wp-json/wp/v2/pages/1847\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/car-repair-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71103\";a:12:{s:5:\"title\";s:9:\"Our Staff\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08-our-staff.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08-our-staff-600x1409.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/car-repair-08/wp-json/wp/v2/pages/1813\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/car-repair-08/our-staff/\";s:15:\"astra-sites-tag\";a:1:{i:3057;s:9:\"our-staff\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71104\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08-services.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/12/car-repair-08-services-600x1878.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/car-repair-08/wp-json/wp/v2/pages/1812\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/car-repair-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71085\";a:22:{s:5:\"title\";s:13:\"AC Technician\";s:2:\"id\";i:71085;s:12:\"publish-date\";i:1672389636;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/12/ac-technician-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/12/ac-technician-08-600x1531.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/12/ac-technician-08-400x1020.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/ac-technician-08\";s:20:\"astra-site-parent-id\";i:3055;s:15:\"astra-sites-tag\";a:5:{i:599;s:9:\"ac-repair\";i:1021;s:14:\"local-business\";i:439;s:14:\"local-services\";i:600;s:15:\"repair-services\";i:441;s:10:\"technician\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2831;s:7:\"service\";i:2817;s:10:\"technology\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-71087\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/12/ac-technician-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2022/12/ac-technician-08-contact-600x1015.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/ac-technician-08/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/ac-technician-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71088\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/12/ac-technician-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/12/ac-technician-08-600x1531.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/ac-technician-08/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/ac-technician-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71089\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/12/ac-technician-08-services.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/12/ac-technician-08-services-600x1210.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/ac-technician-08/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/ac-technician-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71086\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/12/ac-technician-08-about.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/12/ac-technician-08-about-600x1418.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/ac-technician-08/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/ac-technician-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71072\";a:22:{s:5:\"title\";s:19:\"Skin Cleanser Store\";s:2:\"id\";i:71072;s:12:\"publish-date\";i:1672331775;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/12/skin-cleanser-store-08.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/12/skin-cleanser-store-08-600x3296.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/12/skin-cleanser-store-08-400x2197.jpg\";s:14:\"astra-site-url\";s:41:\"//websitedemos.net/skin-cleanser-store-08\";s:20:\"astra-site-parent-id\";i:3054;s:15:\"astra-sites-tag\";a:19:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2419;s:9:\"eshopping\";i:2392;s:19:\"online-beauty-store\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:2391;s:11:\"skin-beauty\";i:1127;s:9:\"skin-care\";i:2380;s:19:\"skin-cleanser-store\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2790;s:14:\"beauty-fashion\";i:2777;s:8:\"business\";i:2769;s:9:\"ecommerce\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-71073\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/12/skin-cleanser-store-08-about.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/12/skin-cleanser-store-08-about-600x1723.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/skin-cleanser-store-08/wp-json/wp/v2/pages/1116\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/skin-cleanser-store-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71074\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/12/skin-cleanser-store-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2022/12/skin-cleanser-store-08-contact-600x1291.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/skin-cleanser-store-08/wp-json/wp/v2/pages/1118\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/skin-cleanser-store-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71075\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/12/skin-cleanser-store-08.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/12/skin-cleanser-store-08-600x3296.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/skin-cleanser-store-08/wp-json/wp/v2/pages/1113\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/skin-cleanser-store-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71064\";a:22:{s:5:\"title\";s:15:\"Child Care Blog\";s:2:\"id\";i:71064;s:12:\"publish-date\";i:1672330833;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/12/childcare-blog-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/childcare-blog-08-600x2522.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/childcare-blog-08-400x1681.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/childcare-blog-08\";s:20:\"astra-site-parent-id\";i:3053;s:15:\"astra-sites-tag\";a:5:{i:480;s:4:\"blog\";i:1652;s:7:\"blogger\";i:1897;s:15:\"child-care-blog\";i:1896;s:17:\"child-care-expert\";i:1547;s:10:\"influencer\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:37;s:4:\"blog\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2828;s:4:\"blog\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:2:{s:8:\"id-71065\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/12/childcare-blog-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/12/childcare-blog-08-contact-600x1176.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/childcare-blog-08/wp-json/wp/v2/pages/662\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/childcare-blog-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71066\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/12/childcare-blog-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/childcare-blog-08-600x2522.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/childcare-blog-08/wp-json/wp/v2/pages/653\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/childcare-blog-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71038\";a:22:{s:5:\"title\";s:14:\"Roofing Agency\";s:2:\"id\";i:71038;s:12:\"publish-date\";i:1672328084;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08-600x3001.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08-400x2001.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/roofing-agency-08\";s:20:\"astra-site-parent-id\";i:3052;s:15:\"astra-sites-tag\";a:7:{i:1630;s:18:\"commercial-roofing\";i:1629;s:19:\"residential-roofing\";i:1634;s:17:\"roof-installation\";i:1633;s:11:\"roof-repair\";i:1631;s:16:\"roof-replacement\";i:2570;s:14:\"roofing-agency\";i:1632;s:16:\"roofing-services\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2818;s:7:\"roofing\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-71039\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08-about.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08-about-600x1749.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/roofing-agency-08/wp-json/wp/v2/pages/908\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/roofing-agency-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71040\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08-contact-1-600x1169.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/roofing-agency-08/wp-json/wp/v2/pages/914\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/roofing-agency-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71041\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08-600x3001.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/roofing-agency-08/wp-json/wp/v2/pages/906\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/roofing-agency-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71042\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08-projects.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08-projects-600x1100.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/roofing-agency-08/wp-json/wp/v2/pages/910\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/roofing-agency-08/projects/\";s:15:\"astra-sites-tag\";a:1:{i:1613;s:8:\"projects\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-71043\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08-services.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/12/roofing-agency-08-services-600x1168.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/roofing-agency-08/wp-json/wp/v2/pages/912\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/roofing-agency-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-71002\";a:22:{s:5:\"title\";s:14:\"Theatre Artist\";s:2:\"id\";i:71002;s:12:\"publish-date\";i:1671647801;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/12/theatre-artist-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/theatre-artist-08-600x2960.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/theatre-artist-08-400x1973.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/theatre-artist-08\";s:20:\"astra-site-parent-id\";i:3050;s:15:\"astra-sites-tag\";a:5:{i:1906;s:5:\"actor\";i:339;s:6:\"artist\";i:1572;s:9:\"performer\";i:444;s:9:\"portfolio\";i:1905;s:14:\"theatre-artist\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2802;s:6:\"artist\";i:2784;s:5:\"event\";i:2770;s:8:\"personal\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-71003\";a:12:{s:5:\"title\";s:9:\"Biography\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/12/theatre-artist-08-biography.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/12/theatre-artist-08-biography-600x1977.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/theatre-artist-08/wp-json/wp/v2/pages/694\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/theatre-artist-08/biography/\";s:15:\"astra-sites-tag\";a:1:{i:1566;s:9:\"biography\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71004\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/12/theatre-artist-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2022/12/theatre-artist-08-contact-600x882.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/theatre-artist-08/wp-json/wp/v2/pages/698\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/theatre-artist-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71005\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/12/theatre-artist-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/12/theatre-artist-08-600x2960.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/theatre-artist-08/wp-json/wp/v2/pages/691\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/theatre-artist-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-71006\";a:12:{s:5:\"title\";s:10:\"Repertoire\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/12/theatre-artist-08-repertoire.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/12/theatre-artist-08-repertoire-600x2207.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/theatre-artist-08/wp-json/wp/v2/pages/696\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/theatre-artist-08/repertoire/\";s:15:\"astra-sites-tag\";a:1:{i:1907;s:10:\"repertoire\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-70993\";a:22:{s:5:\"title\";s:17:\"Fashion Lifestyle\";s:2:\"id\";i:70993;s:12:\"publish-date\";i:1671645110;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/12/fashion-lifestyle-08.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/12/fashion-lifestyle-08-600x2411.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/12/fashion-lifestyle-08-400x1607.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/fashion-lifestyle-08\";s:20:\"astra-site-parent-id\";i:3049;s:15:\"astra-sites-tag\";a:6:{i:480;s:4:\"blog\";i:482;s:7:\"fashion\";i:479;s:9:\"lifestyle\";i:1020;s:8:\"personal\";i:483;s:16:\"styling-shopping\";i:481;s:5:\"trend\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:37;s:4:\"blog\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2790;s:14:\"beauty-fashion\";i:2828;s:4:\"blog\";i:2794;s:10:\"consulting\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:2:{s:8:\"id-70994\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/12/fashion-lifestyle-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/12/fashion-lifestyle-08-contact-600x761.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/fashion-lifestyle-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/fashion-lifestyle-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-70995\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/12/fashion-lifestyle-08.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/12/fashion-lifestyle-08-600x2411.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/fashion-lifestyle-08/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/fashion-lifestyle-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-70987\";a:22:{s:5:\"title\";s:7:\"Webinar\";s:2:\"id\";i:70987;s:12:\"publish-date\";i:1671644202;s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2022/12/webinar-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/12/webinar-08-600x2107.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/12/webinar-08-400x1405.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/webinar-08\";s:20:\"astra-site-parent-id\";i:3043;s:15:\"astra-sites-tag\";a:3:{i:850;s:12:\"landing-page\";i:1892;s:7:\"webinar\";i:1894;s:25:\"webinar-registration-page\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:7:{i:2777;s:8:\"business\";i:2811;s:10:\"conference\";i:2784;s:5:\"event\";i:2863;s:12:\"landing-page\";i:2771;s:8:\"one-page\";i:2801;s:5:\"video\";i:2870;s:4:\"vlog\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:2:{i:2489;s:16:\"event-invitation\";i:2927;s:8:\"one-page\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-70988\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2022/12/webinar-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/12/webinar-08-600x2107.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/webinar-08/wp-json/wp/v2/pages/592\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/webinar-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-70969\";a:22:{s:5:\"title\";s:9:\"Locksmith\";s:2:\"id\";i:70969;s:12:\"publish-date\";i:1671619748;s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2022/12/locksmith-08.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/12/locksmith-08-600x3725.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/12/locksmith-08-400x2483.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/locksmith-08\";s:20:\"astra-site-parent-id\";i:3033;s:15:\"astra-sites-tag\";a:10:{i:3042;s:10:\"keycutting\";i:3035;s:4:\"keys\";i:3040;s:4:\"lock\";i:3034;s:5:\"locks\";i:2430;s:9:\"locksmith\";i:3039;s:12:\"locksmithing\";i:3036;s:16:\"locksmithservice\";i:3038;s:17:\"locksmithservices\";i:3041;s:7:\"lostkey\";i:3037;s:8:\"security\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2777;s:8:\"business\";i:2863;s:12:\"landing-page\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:3:{i:2483;s:15:\"expert-services\";i:2471;s:16:\"local-technician\";i:2927;s:8:\"one-page\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:2:{s:8:\"id-70970\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2022/12/locksmith-08.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/12/locksmith-08-600x3725.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/locksmith-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/locksmith-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-70972\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/locksmith-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/locksmith-08/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-69906\";a:22:{s:5:\"title\";s:13:\"Creative Blog\";s:2:\"id\";i:69906;s:12:\"publish-date\";i:1669231742;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/11/creative-blog-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/11/creative-blog-08-600x1491.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/11/creative-blog-08-400x994.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/creative-blog-08\";s:20:\"astra-site-parent-id\";i:2997;s:15:\"astra-sites-tag\";a:10:{i:2209;s:11:\"advertising\";i:1652;s:7:\"blogger\";i:729;s:8:\"blogging\";i:2408;s:13:\"creative-blog\";i:2410;s:11:\"design-blog\";i:2646;s:12:\"digital-blog\";i:2412;s:9:\"film-blog\";i:509;s:11:\"photography\";i:2270;s:8:\"podcasts\";i:2165;s:16:\"style-influencer\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:37;s:4:\"blog\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2828;s:4:\"blog\";i:2791;s:8:\"creative\";i:2774;s:8:\"magazine\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-69908\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/11/creative-blog-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/11/creative-blog-08-contact-600x856.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/creative-blog-08/wp-json/wp/v2/pages/1582\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/creative-blog-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69909\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/11/creative-blog-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/11/creative-blog-08-600x1491.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/creative-blog-08/wp-json/wp/v2/pages/776\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/creative-blog-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69910\";a:12:{s:5:\"title\";s:8:\"Podcasts\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/11/creative-blog-08-podcast.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/11/creative-blog-08-podcast-600x896.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/creative-blog-08/wp-json/wp/v2/pages/1584\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/creative-blog-08/podcasts/\";s:15:\"astra-sites-tag\";a:1:{i:2270;s:8:\"podcasts\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69907\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/11/creative-blog-08-about.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/11/creative-blog-08-about-600x1282.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/creative-blog-08/wp-json/wp/v2/pages/1578\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/creative-blog-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-69916\";a:22:{s:5:\"title\";s:12:\"Planet Earth\";s:2:\"id\";i:69916;s:12:\"publish-date\";i:1669231717;s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2022/11/earth-08-1.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/11/earth-08-1-600x1250.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/11/earth-08-1-400x833.jpg\";s:14:\"astra-site-url\";s:27:\"//websitedemos.net/earth-08\";s:20:\"astra-site-parent-id\";i:2998;s:15:\"astra-sites-tag\";a:0:{}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2812;s:14:\"digital-agency\";i:2860;s:12:\"multipurpose\";i:2830;s:6:\"nature\";i:2797;s:14:\"simple-minimal\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2500;s:12:\"multipurpose\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-69917\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/11/earth-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/11/earth-08-about-1-600x828.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/earth-08/wp-json/wp/v2/pages/107\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/earth-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69918\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/11/earth-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/11/earth-08-contact-1-600x706.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/earth-08/wp-json/wp/v2/pages/100\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/earth-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69919\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2022/11/earth-08-1.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/11/earth-08-1-600x1250.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/earth-08/wp-json/wp/v2/pages/78\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:28:\"//websitedemos.net/earth-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69920\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/11/earth-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/11/earth-08-services-1-600x1348.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/earth-08/wp-json/wp/v2/pages/77\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/earth-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-69941\";a:22:{s:5:\"title\";s:11:\"Real Estate\";s:2:\"id\";i:69941;s:12:\"publish-date\";i:1669231573;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-600x2718.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-400x1812.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/real-estate-08\";s:20:\"astra-site-parent-id\";i:2999;s:15:\"astra-sites-tag\";a:7:{i:979;s:7:\"company\";i:550;s:14:\"estate-broking\";i:547;s:7:\"listing\";i:812;s:6:\"office\";i:549;s:8:\"property\";i:485;s:11:\"real-estate\";i:548;s:16:\"renting-property\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2832;s:8:\"property\";i:2778;s:11:\"real-estate\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-69944\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-contact-600x872.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/real-estate-08/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/real-estate-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69945\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-faq.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-faq-600x1091.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/real-estate-08/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/real-estate-08/faq/\";s:15:\"astra-sites-tag\";a:1:{i:426;s:3:\"faq\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69946\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-600x2718.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/real-estate-08/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/real-estate-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69942\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-about.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-about-600x1278.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/real-estate-08/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/real-estate-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69943\";a:12:{s:5:\"title\";s:6:\"Agents\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-agents.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-agents-600x1596.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/real-estate-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/real-estate-08/agents/\";s:15:\"astra-sites-tag\";a:1:{i:552;s:6:\"agents\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69947\";a:12:{s:5:\"title\";s:10:\"Properties\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-properties.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/11/real-estate-08-properties-600x2630.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/real-estate-08/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/real-estate-08/properties/\";s:15:\"astra-sites-tag\";a:1:{i:553;s:10:\"properties\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-69655\";a:22:{s:5:\"title\";s:21:\"Home and Garden Decor\";s:2:\"id\";i:69655;s:12:\"publish-date\";i:1665073396;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/10/home-garden-decor-08.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/10/home-garden-decor-08-600x3656.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/10/home-garden-decor-08-400x2437.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/home-garden-decor-08\";s:20:\"astra-site-parent-id\";i:2929;s:15:\"astra-sites-tag\";a:7:{i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:416;s:11:\"garden-care\";i:421;s:18:\"garden-maintenance\";i:420;s:9:\"gardening\";i:423;s:4:\"home\";i:862;s:10:\"home-decor\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:2:{i:2495;s:9:\"ecommerce\";i:2476;s:9:\"gardening\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-69656\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/10/home-garden-decor-08-about.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/10/home-garden-decor-08-about-600x1736.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/home-garden-decor-08/wp-json/wp/v2/pages/328\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/home-garden-decor-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69657\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/10/home-garden-decor-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/10/home-garden-decor-08-contact-600x1065.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/home-garden-decor-08/wp-json/wp/v2/pages/330\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/home-garden-decor-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69658\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/10/home-garden-decor-08.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/10/home-garden-decor-08-600x3656.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/home-garden-decor-08/wp-json/wp/v2/pages/325\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/home-garden-decor-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-69646\";a:22:{s:5:\"title\";s:25:\"Heating And AC Technician\";s:2:\"id\";i:69646;s:12:\"publish-date\";i:1665071731;s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/10/heating-and-ac-technician-08.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/10/heating-and-ac-technician-08-600x2986.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/10/heating-and-ac-technician-08-400x1990.jpg\";s:14:\"astra-site-url\";s:47:\"//websitedemos.net/heating-and-ac-technician-08\";s:20:\"astra-site-parent-id\";i:2928;s:15:\"astra-sites-tag\";a:7:{i:599;s:9:\"ac-repair\";i:2573;s:24:\"air-conditioning-service\";i:439;s:14:\"local-services\";i:2572;s:12:\"manufacturer\";i:2094;s:8:\"mechanic\";i:600;s:15:\"repair-services\";i:441;s:10:\"technician\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-59181\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/10/heating-and-ac-technician-08-about.jpg\";s:19:\"thumbnail-image-url\";s:99:\"https://websitedemos.net/wp-content/uploads/2022/10/heating-and-ac-technician-08-about-600x1288.jpg\";s:18:\"astra-page-api-url\";s:77:\"https://websitedemos.net/heating-and-ac-technician-08/wp-json/wp/v2/pages/887\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/heating-and-ac-technician-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59182\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/10/heating-and-ac-technician-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:101:\"https://websitedemos.net/wp-content/uploads/2022/10/heating-and-ac-technician-08-contact-600x1066.jpg\";s:18:\"astra-page-api-url\";s:77:\"https://websitedemos.net/heating-and-ac-technician-08/wp-json/wp/v2/pages/891\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:56:\"//websitedemos.net/heating-and-ac-technician-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59183\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/10/heating-and-ac-technician-08.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/10/heating-and-ac-technician-08-600x2986.jpg\";s:18:\"astra-page-api-url\";s:77:\"https://websitedemos.net/heating-and-ac-technician-08/wp-json/wp/v2/pages/885\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/heating-and-ac-technician-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59184\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/10/heating-and-ac-technician-08-services.jpg\";s:19:\"thumbnail-image-url\";s:102:\"https://websitedemos.net/wp-content/uploads/2022/10/heating-and-ac-technician-08-services-600x1659.jpg\";s:18:\"astra-page-api-url\";s:77:\"https://websitedemos.net/heating-and-ac-technician-08/wp-json/wp/v2/pages/889\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:57:\"//websitedemos.net/heating-and-ac-technician-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-69486\";a:22:{s:5:\"title\";s:12:\"Learn Baking\";s:2:\"id\";i:69486;s:12:\"publish-date\";i:1664211488;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08-600x2667.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08-400x1778.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/learn-baking-08\";s:20:\"astra-site-parent-id\";i:2925;s:15:\"astra-sites-tag\";a:4:{i:1857;s:6:\"baking\";i:462;s:7:\"courses\";i:467;s:9:\"learndash\";i:975;s:15:\"online-learning\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:7:{i:2828;s:4:\"blog\";i:2835;s:9:\"elearning\";i:2785;s:4:\"food\";i:2880;s:10:\"membership\";i:2827;s:13:\"online-course\";i:2770;s:8:\"personal\";i:2873;s:5:\"tutor\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:13:\"presto-player\";s:4:\"init\";s:31:\"presto-player/presto-player.php\";s:4:\"name\";s:13:\"Presto Player\";}i:3;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-58588\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08-about.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08-about-600x1916.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/learn-baking-08/wp-json/wp/v2/pages/1077\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/learn-baking-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-58589\";a:12:{s:5:\"title\";s:11:\"All Courses\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08-all-courses.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08-all-courses-600x1819.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/learn-baking-08/wp-json/wp/v2/pages/1075\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/learn-baking-08/all-courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-58590\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08-blog.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08-blog-600x1123.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/learn-baking-08/wp-json/wp/v2/pages/1079\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/learn-baking-08/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-58591\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08-contact-600x1547.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/learn-baking-08/wp-json/wp/v2/pages/1081\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/learn-baking-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-58592\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/09/learn-baking-08-600x2667.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/learn-baking-08/wp-json/wp/v2/pages/1073\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/learn-baking-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-69465\";a:22:{s:5:\"title\";s:12:\"eBook Author\";s:2:\"id\";i:69465;s:12:\"publish-date\";i:1664208739;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/09/kathryn-ebook-author-08.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/09/kathryn-ebook-author-08-600x2110.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/09/kathryn-ebook-author-08-400x1406.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/kathryn-ebook-author-08\";s:20:\"astra-site-parent-id\";i:2923;s:15:\"astra-sites-tag\";a:4:{i:724;s:6:\"author\";i:727;s:4:\"book\";i:748;s:5:\"ebook\";i:725;s:6:\"writer\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-69466\";a:12:{s:5:\"title\";s:3:\"Bio\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/09/kathryn-ebook-author-08-bio.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/09/kathryn-ebook-author-08-bio-600x2227.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/kathryn-ebook-author-08/wp-json/wp/v2/pages/548\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/kathryn-ebook-author-08/bio/\";s:15:\"astra-sites-tag\";a:1:{i:2924;s:3:\"bio\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69468\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/09/kathryn-ebook-author-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2022/09/kathryn-ebook-author-08-contact-600x1047.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/kathryn-ebook-author-08/wp-json/wp/v2/pages/550\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/kathryn-ebook-author-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69469\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/09/kathryn-ebook-author-08.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/09/kathryn-ebook-author-08-600x2110.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/kathryn-ebook-author-08/wp-json/wp/v2/pages/544\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/kathryn-ebook-author-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69467\";a:12:{s:5:\"title\";s:5:\"Books\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/09/kathryn-ebook-author-08-books.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2022/09/kathryn-ebook-author-08-books-600x2104.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/kathryn-ebook-author-08/wp-json/wp/v2/pages/546\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/kathryn-ebook-author-08/books/\";s:15:\"astra-sites-tag\";a:1:{i:1740;s:5:\"books\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-69112\";a:22:{s:5:\"title\";s:15:\"Deli Restaurant\";s:2:\"id\";i:69112;s:12:\"publish-date\";i:1663068937;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-600x2199.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-400x1466.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/deli-restaurant-08\";s:20:\"astra-site-parent-id\";i:2903;s:15:\"astra-sites-tag\";a:14:{i:1527;s:9:\"cafeteria\";i:783;s:4:\"cake\";i:972;s:4:\"club\";i:560;s:7:\"cuisine\";i:2394;s:15:\"deli-restaurant\";i:1974;s:7:\"dessert\";i:561;s:6:\"eatery\";i:336;s:4:\"food\";i:1579;s:9:\"food-menu\";i:2513;s:11:\"fruits-dish\";i:350;s:5:\"hotel\";i:559;s:6:\"outlet\";i:335;s:10:\"restaurant\";i:2041;s:9:\"snack-bar\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-69113\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-about-us-600x1532.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/deli-restaurant-08/wp-json/wp/v2/pages/368\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/deli-restaurant-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69114\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-contact-600x1089.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/deli-restaurant-08/wp-json/wp/v2/pages/376\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/deli-restaurant-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-69115\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-600x2199.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/deli-restaurant-08/wp-json/wp/v2/pages/366\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/deli-restaurant-08/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69116\";a:12:{s:5:\"title\";s:4:\"Menu\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-menu.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-menu-600x2056.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/deli-restaurant-08/wp-json/wp/v2/pages/370\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/deli-restaurant-08/menu/\";s:15:\"astra-sites-tag\";a:1:{i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69117\";a:12:{s:5:\"title\";s:9:\"Menu Dark\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-menu-dark.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-menu-dark-600x2109.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/deli-restaurant-08/wp-json/wp/v2/pages/372\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/deli-restaurant-08/menu-dark/\";s:15:\"astra-sites-tag\";a:1:{i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-69118\";a:12:{s:5:\"title\";s:11:\"Testimonial\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2022/09/deli-restaurant-08-testimonials-600x1413.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/deli-restaurant-08/wp-json/wp/v2/pages/374\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/deli-restaurant-08/testimonial/\";s:15:\"astra-sites-tag\";a:1:{i:2302;s:11:\"testimonial\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-68423\";a:22:{s:5:\"title\";s:10:\"Cycle Shop\";s:2:\"id\";i:68423;s:12:\"publish-date\";i:1661430112;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2022/08/cycle-shop-08.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/08/cycle-shop-08-600x3500.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/08/cycle-shop-08-400x2333.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/cycle-shop-08\";s:20:\"astra-site-parent-id\";i:2902;s:15:\"astra-sites-tag\";a:17:{i:880;s:9:\"cartflows\";i:2418;s:8:\"commerce\";i:2548;s:10:\"cycle-shop\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:967;s:13:\"product-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:2549;s:12:\"sport-cycyle\";i:749;s:5:\"store\";i:966;s:12:\"woo-commerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-59170\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/08/cycle-shop-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/08/cycle-shop-08-about-us-600x2348.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/cycle-shop-08/wp-json/wp/v2/pages/1195\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/cycle-shop-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59171\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/08/cycle-shop-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/08/cycle-shop-08-contact-600x1060.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/cycle-shop-08/wp-json/wp/v2/pages/1197\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/cycle-shop-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59172\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2022/08/cycle-shop-08.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/08/cycle-shop-08-600x3500.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/cycle-shop-08/wp-json/wp/v2/pages/1193\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/cycle-shop-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-68320\";a:22:{s:5:\"title\";s:13:\"Party Planner\";s:2:\"id\";i:68320;s:12:\"publish-date\";i:1661347018;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/08/party-planner-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/08/party-planner-08-600x3106.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/08/party-planner-08-400x2071.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/party-planner-08\";s:20:\"astra-site-parent-id\";i:2901;s:15:\"astra-sites-tag\";a:6:{i:2633;s:19:\"celebration-planner\";i:2630;s:17:\"event-coordinator\";i:2632;s:17:\"event-facilitator\";i:2631;s:13:\"event-manager\";i:2635;s:5:\"party\";i:2634;s:15:\"party-organizer\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:2:{i:2486;s:9:\"art-music\";i:2489;s:16:\"event-invitation\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-68321\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/08/party-planner-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/08/party-planner-08-600x3106.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/party-planner-08/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/party-planner-08/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-68254\";a:22:{s:5:\"title\";s:20:\"Construction Company\";s:2:\"id\";i:68254;s:12:\"publish-date\";i:1661280044;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08-600x3578.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08-400x2385.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/construction-company-08\";s:20:\"astra-site-parent-id\";i:2900;s:15:\"astra-sites-tag\";a:6:{i:435;s:12:\"architecture\";i:3078;s:7:\"builder\";i:692;s:8:\"business\";i:484;s:12:\"construction\";i:795;s:10:\"contractor\";i:485;s:11:\"real-estate\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2795;s:12:\"architecture\";i:2836;s:12:\"construction\";i:2778;s:11:\"real-estate\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1320:\"<!-- wp:paragraph -->\n<p>The Construction template is very clean and crisp, ideal for forward-looking businesses. While set up for construction, you could easily use it for architecture, real estate, and other business types.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design uses bright colors and whitespace along with great imagery to create a positive first impression. Something continued effortlessly throughout the template. Thanks to full compatibility with page builders, you can transform this template without touching a line of code!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Construction template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Clean, crisp business template ideal for business</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fantastic use of colors, images, and whitespace</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Equally attractive extra pages to continue the feel</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Standout engagement buttons</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Flexible content areas on every page</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with drag-and-drop page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"Inspire confidence in new clients with this clean and crisp construction template\";s:5:\"pages\";a:5:{s:8:\"id-68255\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08-about.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08-about-600x1664.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/construction-company-08/wp-json/wp/v2/pages/499\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/construction-company-08/about/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68256\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08-contact-600x1495.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/construction-company-08/wp-json/wp/v2/pages/501\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/construction-company-08/contact/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-68257\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08-600x3578.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/construction-company-08/wp-json/wp/v2/pages/493\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/construction-company-08/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68258\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08-projects.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08-projects-600x1191.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/construction-company-08/wp-json/wp/v2/pages/495\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/construction-company-08/projects/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68259\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08-services.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2022/08/construction-company-08-services-600x1119.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/construction-company-08/wp-json/wp/v2/pages/497\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/construction-company-08/services/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-68223\";a:22:{s:5:\"title\";s:16:\"Generic Template\";s:2:\"id\";i:68223;s:12:\"publish-date\";i:1661271693;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/08/generic-template-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/08/generic-template-08-600x2196.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/08/generic-template-08-400x1464.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/generic-template-08\";s:20:\"astra-site-parent-id\";i:2898;s:15:\"astra-sites-tag\";a:6:{i:2456;s:7:\"generic\";i:2667;s:16:\"generic-template\";i:862;s:10:\"home-decor\";i:522;s:15:\"home-remodeling\";i:2184;s:5:\"house\";i:2666;s:10:\"realestate\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:39;s:4:\"free\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-68229\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/08/generic-template-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/08/generic-template-08-about-us-600x1567.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/generic-template-08/wp-json/wp/v2/pages/72\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/generic-template-08/about-us/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68230\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/08/generic-template-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/08/generic-template-08-contact-600x1212.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/generic-template-08/wp-json/wp/v2/pages/76\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/generic-template-08/contact/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-68231\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/08/generic-template-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/08/generic-template-08-600x2196.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/generic-template-08/wp-json/wp/v2/pages/69\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/generic-template-08/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68232\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/08/generic-template-08-services.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/08/generic-template-08-services-600x1109.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/generic-template-08/wp-json/wp/v2/pages/74\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/generic-template-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-68171\";a:22:{s:5:\"title\";s:13:\"Family Lawyer\";s:2:\"id\";i:68171;s:12:\"publish-date\";i:1661266994;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/08/family-lawyer-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/08/family-lawyer-08-600x2896.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/08/family-lawyer-08-400x1930.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/family-lawyer-08\";s:20:\"astra-site-parent-id\";i:2893;s:15:\"astra-sites-tag\";a:0:{}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-57306\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/08/family-lawyer-08-about.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/08/family-lawyer-08-about-600x1481.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/family-lawyer-08/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/family-lawyer-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-57307\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/08/family-lawyer-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2022/08/family-lawyer-08-contact-600x1008.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/family-lawyer-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/family-lawyer-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-57308\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/08/family-lawyer-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/08/family-lawyer-08-600x2896.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/family-lawyer-08/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/family-lawyer-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-57309\";a:12:{s:5:\"title\";s:14:\"Practice Areas\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/08/family-lawyer-08-practice-areas.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2022/08/family-lawyer-08-practice-areas-600x1842.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/family-lawyer-08/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/family-lawyer-08/practice-areas/\";s:15:\"astra-sites-tag\";a:1:{i:707;s:13:\"practice-area\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-68194\";a:22:{s:5:\"title\";s:7:\"Charity\";s:2:\"id\";i:68194;s:12:\"publish-date\";i:1661256899;s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-600x2271.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-400x1514.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/charity-08\";s:20:\"astra-site-parent-id\";i:2896;s:15:\"astra-sites-tag\";a:5:{i:625;s:7:\"charity\";i:624;s:10:\"foundation\";i:626;s:6:\"giving\";i:977;s:10:\"non-profit\";i:745;s:12:\"organization\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:39;s:4:\"free\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:3:{i:2786;s:17:\"charity-nonprofit\";i:2872;s:19:\"donation-fundraiser\";i:2871;s:3:\"ngo\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:4:\"give\";s:4:\"init\";s:13:\"give/give.php\";s:4:\"name\";s:22:\"Give - Donation Plugin\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-68195\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-contact-us-600x984.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/charity-08/wp-json/wp/v2/pages/2123\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/charity-08/contact-us/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-68196\";a:12:{s:5:\"title\";s:6:\"Donate\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-donate.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-donate-600x500.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/charity-08/wp-json/wp/v2/pages/2125\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/charity-08/donate/\";s:15:\"astra-sites-tag\";a:2:{i:625;s:7:\"charity\";i:735;s:6:\"donate\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:4:\"give\";s:4:\"init\";s:13:\"give/give.php\";s:4:\"name\";s:22:\"Give - Donation Plugin\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68197\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-600x2271.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/charity-08/wp-json/wp/v2/pages/2114\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/charity-08/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68199\";a:12:{s:5:\"title\";s:10:\"What We Do\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-what-we-do.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-what-we-do-600x1747.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/charity-08/wp-json/wp/v2/pages/2117\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/charity-08/who-we-are/\";s:15:\"astra-sites-tag\";a:2:{i:625;s:7:\"charity\";i:628;s:10:\"what-we-do\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68200\";a:12:{s:5:\"title\";s:10:\"Who we are\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-who-we-are.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-who-we-are-600x1643.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/charity-08/wp-json/wp/v2/pages/2119\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/charity-08/what-we-do/\";s:15:\"astra-sites-tag\";a:2:{i:625;s:7:\"charity\";i:685;s:10:\"who-we-are\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68198\";a:12:{s:5:\"title\";s:12:\"Our Partners\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-our-partners.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/08/charity-08-our-partners-600x1318.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/charity-08/wp-json/wp/v2/pages/2121\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/charity-08/our-partners/\";s:15:\"astra-sites-tag\";a:3:{i:625;s:7:\"charity\";i:2897;s:12:\"our-partners\";i:734;s:8:\"partners\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-68177\";a:22:{s:5:\"title\";s:18:\"Calligraphy Artist\";s:2:\"id\";i:68177;s:12:\"publish-date\";i:1661254653;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08-600x2499.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08-400x1666.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/calligraphy-artist-08\";s:20:\"astra-site-parent-id\";i:2894;s:15:\"astra-sites-tag\";a:8:{i:1820;s:11:\"calligraphy\";i:1826;s:10:\"characters\";i:1824;s:11:\"chirography\";i:1821;s:11:\"handwriting\";i:1825;s:8:\"pencraft\";i:1823;s:6:\"script\";i:1827;s:5:\"style\";i:1822;s:7:\"writing\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-68178\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08-about.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08-about-600x1910.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/calligraphy-artist-08/wp-json/wp/v2/pages/452\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/calligraphy-artist-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68179\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08-contact-600x898.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/calligraphy-artist-08/wp-json/wp/v2/pages/455\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/calligraphy-artist-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-68180\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08-600x2499.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/calligraphy-artist-08/wp-json/wp/v2/pages/451\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/calligraphy-artist-08/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68181\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08-services.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08-services-600x1688.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/calligraphy-artist-08/wp-json/wp/v2/pages/454\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/calligraphy-artist-08/services/\";s:15:\"astra-sites-tag\";a:2:{i:1408;s:7:\"service\";i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-68182\";a:12:{s:5:\"title\";s:5:\"Works\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08-works.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/08/calligraphy-artist-08-works-600x2867.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/calligraphy-artist-08/wp-json/wp/v2/pages/453\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/calligraphy-artist-08/works/\";s:15:\"astra-sites-tag\";a:2:{i:451;s:4:\"work\";i:2895;s:5:\"works\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-68139\";a:22:{s:5:\"title\";s:9:\"Lotus Spa\";s:2:\"id\";i:68139;s:12:\"publish-date\";i:1661190425;s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2022/08/lotus-spa-08.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/08/lotus-spa-08-600x3001.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/08/lotus-spa-08-400x2000.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/lotus-spa-08\";s:20:\"astra-site-parent-id\";i:2892;s:15:\"astra-sites-tag\";a:0:{}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-68140\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/08/lotus-spa-08-about.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/08/lotus-spa-08-about-600x2208.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/lotus-spa-08/wp-json/wp/v2/pages/760\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/lotus-spa-08/about/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68141\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/08/lotus-spa-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/08/lotus-spa-08-contact-600x952.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/lotus-spa-08/wp-json/wp/v2/pages/764\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/lotus-spa-08/contact/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-68142\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2022/08/lotus-spa-08.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/08/lotus-spa-08-600x3001.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/lotus-spa-08/wp-json/wp/v2/pages/757\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/lotus-spa-08/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-68143\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/08/lotus-spa-08-services.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/08/lotus-spa-08-services-600x2570.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/lotus-spa-08/wp-json/wp/v2/pages/762\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/lotus-spa-08/services/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-68088\";a:22:{s:5:\"title\";s:12:\"Flute Artist\";s:2:\"id\";i:68088;s:12:\"publish-date\";i:1660910628;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2022/08/flute-artist-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/08/flute-artist-08-600x2761.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/08/flute-artist-08-400x1840.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/flute-artist-08\";s:20:\"astra-site-parent-id\";i:2891;s:15:\"astra-sites-tag\";a:6:{i:339;s:6:\"artist\";i:2438;s:12:\"flute-artist\";i:2439;s:12:\"flute-player\";i:2503;s:7:\"grooved\";i:407;s:5:\"music\";i:2504;s:25:\"musical-instrument-player\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:1:{i:2802;s:6:\"artist\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:2:{i:2486;s:9:\"art-music\";i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1249:\"<!-- wp:paragraph -->\n<p>The Flute Artist template has been designed to reflect the elegance and classic nature of the instrument and the industry. It’s a very calm layout with sober colors and an instant appeal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The homepage begins dark and quickly opens out to include lots of white space, modern, elegant fonts and lots of imagery to set the scene. There are also options to include video and audio clips, a biography page, portfolio page and contact form.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Flute Artist template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Flexible portfolio website for musicians</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Elegant design ideal for the niche</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Includes the option to add audio and video</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Dedicated portfolio and contact page</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Flexible layout that can be fully customized</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Page builder compatible for ease of use</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:395:\"The Flute Artist template has been designed to reflect the elegance and classic nature of the instrument and the industry. It’s a very calm layout with sober colors and an instant appeal. The homepage begins dark and quickly opens out to include lots of white space, modern, elegant fonts and lots of imagery to set &hellip;<p class=\"read-more\"> <a class=\"\" href=\"\">  Read More &raquo;</a></p>\";s:5:\"pages\";a:4:{s:8:\"id-59104\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/08/flute-artist-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/08/flute-artist-08-contact-600x890.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/flute-artist-08/wp-json/wp/v2/pages/656\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/flute-artist-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59105\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/08/flute-artist-08-gallery.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/08/flute-artist-08-gallery-600x2369.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/flute-artist-08/wp-json/wp/v2/pages/654\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/flute-artist-08/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59106\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2022/08/flute-artist-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/08/flute-artist-08-600x2761.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/flute-artist-08/wp-json/wp/v2/pages/650\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/flute-artist-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59103\";a:12:{s:5:\"title\";s:9:\"Biography\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/08/flute-artist-08-biography.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/08/flute-artist-08-biography-600x1848.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/flute-artist-08/wp-json/wp/v2/pages/652\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/flute-artist-08/biography/\";s:15:\"astra-sites-tag\";a:1:{i:1566;s:9:\"biography\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59803\";a:22:{s:5:\"title\";s:18:\"Ayurvedic Products\";s:2:\"id\";i:59803;s:12:\"publish-date\";i:1661245799;s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2022/08/ayurveda-08.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/08/ayurveda-08-600x2964.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/08/ayurveda-08-400x1976.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/ayurveda-08\";s:20:\"astra-site-parent-id\";i:2658;s:15:\"astra-sites-tag\";a:5:{i:2650;s:8:\"ayurveda\";i:618;s:9:\"ayurvedic\";i:2643;s:19:\"ayurvedic-treatment\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-59804\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/08/ayurveda-08-about.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/08/ayurveda-08-about-600x2203.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/ayurveda-08/wp-json/wp/v2/pages/329\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/ayurveda-08/about/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59805\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/08/ayurveda-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/08/ayurveda-08-contact-600x796.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/ayurveda-08/wp-json/wp/v2/pages/331\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/ayurveda-08/contact/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59806\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2022/08/ayurveda-08.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/08/ayurveda-08-600x2964.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/ayurveda-08/wp-json/wp/v2/pages/326\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/ayurveda-08/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59789\";a:22:{s:5:\"title\";s:10:\"Book Store\";s:2:\"id\";i:59789;s:12:\"publish-date\";i:1661251526;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2022/08/book-store-08.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/08/book-store-08-600x2546.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/08/book-store-08-400x1697.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/book-store-08\";s:20:\"astra-site-parent-id\";i:2657;s:15:\"astra-sites-tag\";a:8:{i:724;s:6:\"author\";i:2355;s:17:\"author-book-store\";i:2354;s:16:\"author-portfolio\";i:2353;s:11:\"book-writer\";i:2352;s:11:\"books-store\";i:496;s:9:\"ecommerce\";i:383;s:12:\"online-store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-59791\";a:12:{s:5:\"title\";s:5:\"Books\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2022/08/book-store-08-books.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/08/book-store-08-books-600x1400.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/book-store-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/book-store-08/books/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}s:8:\"id-59792\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/08/book-store-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/08/book-store-08-contact-600x931.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/book-store-08/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/book-store-08/contact/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59793\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2022/08/book-store-08.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/08/book-store-08-600x2546.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/book-store-08/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/book-store-08/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}s:8:\"id-59790\";a:12:{s:5:\"title\";s:12:\"About Author\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/08/book-store-08-about-author.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/08/book-store-08-about-author-600x1597.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/book-store-08/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/book-store-08/about-author/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59775\";a:22:{s:5:\"title\";s:14:\"Digital Agency\";s:2:\"id\";i:59775;s:12:\"publish-date\";i:1661176634;s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2022/08/agency-08.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/08/agency-08-600x2216.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/08/agency-08-400x1477.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/agency-08\";s:20:\"astra-site-parent-id\";i:2656;s:15:\"astra-sites-tag\";a:6:{i:663;s:6:\"agency\";i:979;s:7:\"company\";i:686;s:9:\"corporate\";i:664;s:16:\"digital-services\";i:812;s:6:\"office\";i:665;s:14:\"service-agency\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-59776\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2022/08/agency-08-about.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/08/agency-08-about-600x1426.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/agency-08/wp-json/wp/v2/pages/1490\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/agency-08/about/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59777\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2022/08/agency-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/08/agency-08-contact-600x829.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/agency-08/wp-json/wp/v2/pages/1494\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/agency-08/contact/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59778\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2022/08/agency-08.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/08/agency-08-600x2216.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/agency-08/wp-json/wp/v2/pages/1488\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/agency-08/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59779\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2022/08/agency-08-services.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2022/08/agency-08-services-600x1322.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/agency-08/wp-json/wp/v2/pages/1492\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/agency-08/services/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59760\";a:22:{s:5:\"title\";s:11:\"Love Nature\";s:2:\"id\";i:59760;s:12:\"publish-date\";i:1661343275;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2022/08/love-nature-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/08/love-nature-08-600x1562.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/08/love-nature-08-400x1041.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/love-nature-08\";s:20:\"astra-site-parent-id\";i:2655;s:15:\"astra-sites-tag\";a:8:{i:538;s:6:\"forest\";i:2456;s:7:\"generic\";i:2493;s:12:\"multipurpose\";i:537;s:13:\"national-park\";i:535;s:6:\"nature\";i:534;s:11:\"nature-park\";i:539;s:9:\"sanctuary\";i:536;s:10:\"wilderness\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2500;s:12:\"multipurpose\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-59761\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/08/love-nature-08-about.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/08/love-nature-08-about-600x908.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/love-nature-08/wp-json/wp/v2/pages/1324\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/love-nature-08/about/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59762\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2022/08/love-nature-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/08/love-nature-08-contact-600x830.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/love-nature-08/wp-json/wp/v2/pages/1328\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/love-nature-08/contact/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59763\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2022/08/love-nature-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/08/love-nature-08-600x1562.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/love-nature-08/wp-json/wp/v2/pages/1322\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/love-nature-08/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59764\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/08/love-nature-08-services.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/08/love-nature-08-services-600x1347.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/love-nature-08/wp-json/wp/v2/pages/1326\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/love-nature-08/services/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59726\";a:22:{s:5:\"title\";s:20:\"Freelance Copywriter\";s:2:\"id\";i:59726;s:12:\"publish-date\";i:1665068704;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/10/freelance-copywriter-08.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/10/freelance-copywriter-08-600x2282.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/10/freelance-copywriter-08-400x1521.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/freelance-copywriter-08\";s:20:\"astra-site-parent-id\";i:2653;s:15:\"astra-sites-tag\";a:8:{i:1652;s:7:\"blogger\";i:1654;s:15:\"content-creator\";i:1649;s:14:\"content-writer\";i:1650;s:10:\"copywriter\";i:1648;s:20:\"freelance-copywriter\";i:669;s:10:\"freelancer\";i:1651;s:8:\"marketer\";i:1653;s:19:\"web-content-creator\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-59727\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/10/freelance-copywriter-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2022/10/freelance-copywriter-08-contact-600x1176.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/freelance-copywriter-08/wp-json/wp/v2/pages/264\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/freelance-copywriter-08/contact/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59728\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/10/freelance-copywriter-08.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/10/freelance-copywriter-08-600x2282.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/freelance-copywriter-08/wp-json/wp/v2/pages/257\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/freelance-copywriter-08/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59729\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/10/freelance-copywriter-08-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:101:\"https://websitedemos.net/wp-content/uploads/2022/10/freelance-copywriter-08-testimonials-600x1631.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/freelance-copywriter-08/wp-json/wp/v2/pages/262\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:56:\"//websitedemos.net/freelance-copywriter-08/testimonials/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59730\";a:12:{s:5:\"title\";s:4:\"Work\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/10/freelance-copywriter-08-work.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2022/10/freelance-copywriter-08-work-600x1479.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/freelance-copywriter-08/wp-json/wp/v2/pages/260\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/freelance-copywriter-08/work/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59557\";a:22:{s:5:\"title\";s:9:\"Guitarist\";s:2:\"id\";i:59557;s:12:\"publish-date\";i:1675438131;s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08-600x3032.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08-400x2021.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/guitarist-08\";s:20:\"astra-site-parent-id\";i:2637;s:15:\"astra-sites-tag\";a:5:{i:2612;s:12:\"guitar-cello\";i:2611;s:13:\"guitar-player\";i:2610;s:9:\"guitarist\";i:1571;s:6:\"singer\";i:1573;s:8:\"vocalist\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2802;s:6:\"artist\";i:2781;s:5:\"music\";i:2868;s:15:\"musician-singer\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2486;s:9:\"art-music\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-59558\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08-about.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08-about-600x2350.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/guitarist-08/wp-json/wp/v2/pages/774\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/guitarist-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59559\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08-contact-600x921.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/guitarist-08/wp-json/wp/v2/pages/780\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/guitarist-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59560\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08-600x3032.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/guitarist-08/wp-json/wp/v2/pages/772\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/guitarist-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59561\";a:12:{s:5:\"title\";s:7:\"Lessons\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08-lessons.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08-lessons-600x1434.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/guitarist-08/wp-json/wp/v2/pages/776\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/guitarist-08/lessons/\";s:15:\"astra-sites-tag\";a:1:{i:747;s:7:\"lessons\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59562\";a:12:{s:5:\"title\";s:5:\"Shows\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08-shows.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2023/02/guitarist-08-shows-600x1090.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/guitarist-08/wp-json/wp/v2/pages/778\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/guitarist-08/shows/\";s:15:\"astra-sites-tag\";a:1:{i:1568;s:5:\"shows\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59249\";a:22:{s:5:\"title\";s:17:\"Security Services\";s:2:\"id\";i:59249;s:12:\"publish-date\";i:1669220644;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/11/security-services-08.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/11/security-services-08-600x2231.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/11/security-services-08-400x1487.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/security-services-08\";s:20:\"astra-site-parent-id\";i:2586;s:15:\"astra-sites-tag\";a:8:{i:2508;s:14:\"alarm-security\";i:2507;s:15:\"camera-security\";i:2511;s:16:\"custody-services\";i:2510;s:5:\"guard\";i:2506;s:16:\"private-security\";i:2509;s:6:\"safety\";i:2399;s:17:\"security-services\";i:2400;s:15:\"security-system\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-59250\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/11/security-services-08-about.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/11/security-services-08-about-600x1145.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/security-services-08/wp-json/wp/v2/pages/528\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/security-services-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59251\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2022/11/security-services-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2022/11/security-services-08-contact-600x932.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/security-services-08/wp-json/wp/v2/pages/532\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/security-services-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59252\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/11/security-services-08.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/11/security-services-08-600x2231.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/security-services-08/wp-json/wp/v2/pages/476\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/security-services-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59253\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/11/security-services-08-services.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2022/11/security-services-08-services-600x2320.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/security-services-08/wp-json/wp/v2/pages/513\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/security-services-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59233\";a:22:{s:5:\"title\";s:12:\"Coffee House\";s:2:\"id\";i:59233;s:12:\"publish-date\";i:1661278258;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2022/08/coffee-house-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/08/coffee-house-08-600x2042.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/08/coffee-house-08-400x1361.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/coffee-house-08\";s:20:\"astra-site-parent-id\";i:2585;s:15:\"astra-sites-tag\";a:9:{i:693;s:4:\"cafe\";i:2042;s:8:\"cafe-bar\";i:1527;s:9:\"cafeteria\";i:2043;s:12:\"coffee-house\";i:1575;s:11:\"coffee-shop\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:335;s:10:\"restaurant\";i:2041;s:9:\"snack-bar\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-59234\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/08/coffee-house-08-about.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/08/coffee-house-08-about-600x1733.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/coffee-house-08/wp-json/wp/v2/pages/516\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/coffee-house-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59235\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/08/coffee-house-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/08/coffee-house-08-contact-600x1114.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/coffee-house-08/wp-json/wp/v2/pages/520\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/coffee-house-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59236\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2022/08/coffee-house-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/08/coffee-house-08-600x2042.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/coffee-house-08/wp-json/wp/v2/pages/514\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/coffee-house-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59237\";a:12:{s:5:\"title\";s:4:\"Menu\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/08/coffee-house-08-menu.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/08/coffee-house-08-menu-600x1102.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/coffee-house-08/wp-json/wp/v2/pages/518\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/coffee-house-08/menu/\";s:15:\"astra-sites-tag\";a:1:{i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59219\";a:22:{s:5:\"title\";s:18:\"Personal Portfolio\";s:2:\"id\";i:59219;s:12:\"publish-date\";i:1643987375;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-08-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-08-1-600x2832.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-08-1-400x1888.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/personal-portfolio-08\";s:20:\"astra-site-parent-id\";i:2584;s:15:\"astra-sites-tag\";a:6:{i:2151;s:16:\"curriculum-vitae\";i:2150;s:2:\"cv\";i:1903;s:16:\"personal-website\";i:444;s:9:\"portfolio\";i:2153;s:6:\"resume\";i:2152;s:12:\"work-profile\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-59220\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-08-about-1-600x1481.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/personal-portfolio-08/wp-json/wp/v2/pages/1203\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/personal-portfolio-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59221\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-08-contact-1-600x791.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/personal-portfolio-08/wp-json/wp/v2/pages/1207\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/personal-portfolio-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59222\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-08-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-08-1-600x2832.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/personal-portfolio-08/wp-json/wp/v2/pages/1201\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/personal-portfolio-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59223\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-08-portfolio-1.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2022/02/personal-portfolio-08-portfolio-1-600x733.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/personal-portfolio-08/wp-json/wp/v2/pages/1205\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/personal-portfolio-08/portfolio/\";s:15:\"astra-sites-tag\";a:1:{i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59202\";a:22:{s:5:\"title\";s:23:\"Limousine Rental Agency\";s:2:\"id\";i:59202;s:12:\"publish-date\";i:1669231673;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08-600x3360.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08-400x2240.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/rental-agency-08\";s:20:\"astra-site-parent-id\";i:2582;s:15:\"astra-sites-tag\";a:5:{i:2540;s:9:\"limousine\";i:2538;s:15:\"rent-limousines\";i:2539;s:13:\"rent-services\";i:2537;s:13:\"rental-agency\";i:2541;s:5:\"sedan\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-59203\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08-about-us-600x2154.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/rental-agency-08/wp-json/wp/v2/pages/578\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/rental-agency-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59204\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08-save.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08-save-600x1413.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/rental-agency-08/wp-json/wp/v2/pages/584\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/rental-agency-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59205\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08-600x3360.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/rental-agency-08/wp-json/wp/v2/pages/576\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/rental-agency-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59206\";a:12:{s:5:\"title\";s:9:\"Our Fleet\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08-our-fleet.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08-our-fleet-600x2014.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/rental-agency-08/wp-json/wp/v2/pages/580\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/rental-agency-08/our-fleet/\";s:15:\"astra-sites-tag\";a:1:{i:2583;s:9:\"our-fleet\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59207\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08-services.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2022/11/rental-agency-08-services-600x2575.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/rental-agency-08/wp-json/wp/v2/pages/582\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/rental-agency-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-58478\";a:22:{s:5:\"title\";s:10:\"Plant Shop\";s:2:\"id\";i:58478;s:12:\"publish-date\";i:1633716900;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/10/plant-shop-08.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/10/plant-shop-08-600x2149.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/10/plant-shop-08-400x1432.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/plant-shop-08\";s:20:\"astra-site-parent-id\";i:2451;s:15:\"astra-sites-tag\";a:15:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2419;s:9:\"eshopping\";i:2422;s:13:\"online-market\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:497;s:11:\"plant-store\";i:495;s:6:\"plants\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2769;s:9:\"ecommerce\";i:2830;s:6:\"nature\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-58547\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/10/plant-shop-08.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/10/plant-shop-08-600x2149.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/plant-shop-08/wp-json/wp/v2/pages/1008\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/plant-shop-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-58546\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/10/plant-shop-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/10/plant-shop-08-contact-1-600x701.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/plant-shop-08/wp-json/wp/v2/pages/1004\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/plant-shop-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-58545\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/10/plant-shop-08-about-.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/10/plant-shop-08-about--600x1317.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/plant-shop-08/wp-json/wp/v2/pages/1002\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/plant-shop-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-56593\";a:22:{s:5:\"title\";s:18:\"Meditation Courses\";s:2:\"id\";i:56593;s:12:\"publish-date\";i:1632945042;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/09/learn-meditation-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/09/learn-meditation-08-600x2660.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/09/learn-meditation-08-400x1773.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/learn-meditation-08\";s:20:\"astra-site-parent-id\";i:2242;s:15:\"astra-sites-tag\";a:5:{i:462;s:7:\"courses\";i:467;s:9:\"learndash\";i:1850;s:10:\"meditation\";i:975;s:15:\"online-learning\";i:720;s:9:\"tutorials\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:2:{i:2494;s:9:\"elearning\";i:2480;s:16:\"fitness-wellness\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:2;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-56595\";a:12:{s:5:\"title\";s:7:\"Classes\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/09/learn-meditation-08-classes.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/09/learn-meditation-08-classes-600x976.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/learn-meditation-08/wp-json/wp/v2/pages/607\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/learn-meditation-08/classes/\";s:15:\"astra-sites-tag\";a:1:{i:557;s:7:\"classes\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56596\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/09/learn-meditation-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/09/learn-meditation-08-contact-600x855.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/learn-meditation-08/wp-json/wp/v2/pages/617\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/learn-meditation-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56594\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/09/learn-meditation-08-about.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/09/learn-meditation-08-about-600x1259.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/learn-meditation-08/wp-json/wp/v2/pages/612\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/learn-meditation-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56597\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/09/learn-meditation-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/09/learn-meditation-08-600x2660.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/learn-meditation-08/wp-json/wp/v2/pages/572\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/learn-meditation-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48078\";a:22:{s:5:\"title\";s:17:\"Outdoor Adventure\";s:2:\"id\";i:48078;s:12:\"publish-date\";i:1603893485;s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08-home-1.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08-home-1-600x1377.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08-home-1-400x918.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/outdoor-adventure-08\";s:20:\"astra-site-parent-id\";i:1698;s:15:\"astra-sites-tag\";a:6:{i:544;s:9:\"adventure\";i:545;s:7:\"camping\";i:543;s:14:\"extreme-sports\";i:541;s:9:\"mountains\";i:542;s:4:\"park\";i:546;s:6:\"sports\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2500;s:12:\"multipurpose\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48081\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08-600x1377.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/outdoor-adventure-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/outdoor-adventure-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48079\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08-about-1-600x731.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/outdoor-adventure-08/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/outdoor-adventure-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48083\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08-services-1-600x1162.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/outdoor-adventure-08/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/outdoor-adventure-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48082\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08-projects-1.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08-projects-1-600x1218.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/outdoor-adventure-08/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/outdoor-adventure-08/projects/\";s:15:\"astra-sites-tag\";a:1:{i:1613;s:8:\"projects\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48080\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/outdoor-adventure-08-contact-1-600x598.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/outdoor-adventure-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/outdoor-adventure-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48050\";a:22:{s:5:\"title\";s:10:\"Brandstore\";s:2:\"id\";i:48050;s:12:\"publish-date\";i:1603830906;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/10/brandstore-08.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/brandstore-08-600x1827.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/brandstore-08-400x1218.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/brandstore-08\";s:20:\"astra-site-parent-id\";i:1695;s:15:\"astra-sites-tag\";a:20:{i:639;s:11:\"accessories\";i:638;s:11:\"brand-store\";i:880;s:9:\"cartflows\";i:640;s:11:\"cloth-store\";i:637;s:8:\"clothing\";i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:967;s:13:\"product-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:3:{i:27;s:8:\"business\";i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1341:\"<!-- wp:paragraph -->\n<p>Let your brand shine with our Brandstore website template. The Brandstore template is a simple, clean, mobile-friendly design, helping customers shop from anywhere. The template is built to integrate with WooCommerce seamlessly, so you can start showcasing your products in minutes and accept online payments.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We also have a range of custom page templates for you to use as the foundation for your site and a range of beautiful preset designs we’ve created. It’s a modern design with a lot to recommend it, ideal for online stores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Brandstore template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>High converting and lightweight online store template</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Seamless integration with WooCommerce</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Impressive hero image to display your best products and offers</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Host of customization options from colors and typography to layout and more</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fully responsive and works perfectly well on mobile devices</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:437:\"Let your brand shine with our Brandstore website template. The Brandstore template is a simple, clean, mobile-friendly design, helping customers shop from anywhere. The template is built to integrate with WooCommerce seamlessly, so you can start showcasing your products in minutes and accept online payments. We also have a range of custom page templates for &hellip;<p class=\"read-more\"> <a class=\"\" href=\"\">  Read More &raquo;</a></p>\";s:5:\"pages\";a:3:{s:8:\"id-48053\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/10/brandstore-08.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/brandstore-08-600x1827.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/brandstore-08/wp-json/wp/v2/pages/61\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/brandstore-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:3:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48051\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/brandstore-08-about-2.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/brandstore-08-about-2-600x1491.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/brandstore-08/wp-json/wp/v2/pages/59\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/brandstore-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:3:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48052\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/brandstore-08-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/brandstore-08-contact-2-600x888.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/brandstore-08/wp-json/wp/v2/pages/60\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/brandstore-08/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:3:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48121\";a:22:{s:5:\"title\";s:13:\"Organic Store\";s:2:\"id\";i:48121;s:12:\"publish-date\";i:1603893477;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/10/organic-shop-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/organic-shop-08-600x2164.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/organic-shop-08-400x1442.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/organic-shop-08\";s:20:\"astra-site-parent-id\";i:1702;s:15:\"astra-sites-tag\";a:20:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2419;s:9:\"eshopping\";i:2424;s:11:\"health-food\";i:2425;s:9:\"lite-food\";i:369;s:7:\"natural\";i:2215;s:16:\"online-marketing\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:368;s:7:\"organic\";i:2423;s:12:\"organic-food\";i:967;s:13:\"product-store\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:2426;s:15:\"vegetarian-food\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:4;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-48124\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/10/organic-shop-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/organic-shop-08-600x2164.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/organic-shop-08/wp-json/wp/v2/pages/3610\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/organic-shop-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48122\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/organic-shop-08-about.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/organic-shop-08-about-600x1246.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/organic-shop-08/wp-json/wp/v2/pages/3612\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/organic-shop-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48123\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/organic-shop-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/organic-shop-08-contact-600x832.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/organic-shop-08/wp-json/wp/v2/pages/3614\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/organic-shop-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-58561\";a:22:{s:5:\"title\";s:16:\"Fashion Designer\";s:2:\"id\";i:58561;s:12:\"publish-date\";i:1634042866;s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08-600x2900.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08-400x1933.jpg\";s:14:\"astra-site-url\";s:47:\"//websitedemos.net/fashion-designer-boutique-08\";s:20:\"astra-site-parent-id\";i:2452;s:15:\"astra-sites-tag\";a:20:{i:2105;s:8:\"boutique\";i:2418;s:8:\"commerce\";i:2350;s:21:\"designer-cloths-store\";i:496;s:9:\"ecommerce\";i:2419;s:9:\"eshopping\";i:2327;s:16:\"fashion-designer\";i:2349;s:25:\"fashion-designer-boutique\";i:2351;s:26:\"fashion-designer-portfolio\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:444;s:9:\"portfolio\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-58562\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08-about-2.jpg\";s:19:\"thumbnail-image-url\";s:101:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08-about-2-600x1400.jpg\";s:18:\"astra-page-api-url\";s:78:\"https://websitedemos.net/fashion-designer-boutique-08/wp-json/wp/v2/pages/1009\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/fashion-designer-boutique-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-58564\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:103:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08-contact-1-600x1045.jpg\";s:18:\"astra-page-api-url\";s:78:\"https://websitedemos.net/fashion-designer-boutique-08/wp-json/wp/v2/pages/1015\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:56:\"//websitedemos.net/fashion-designer-boutique-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-58563\";a:12:{s:5:\"title\";s:10:\"Collection\";s:18:\"featured-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08-collection-1.jpg\";s:19:\"thumbnail-image-url\";s:106:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08-collection-1-600x2040.jpg\";s:18:\"astra-page-api-url\";s:78:\"https://websitedemos.net/fashion-designer-boutique-08/wp-json/wp/v2/pages/1011\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:59:\"//websitedemos.net/fashion-designer-boutique-08/collection/\";s:15:\"astra-sites-tag\";a:2:{i:596;s:10:\"collection\";i:2453;s:5:\"stock\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-58566\";a:12:{s:5:\"title\";s:12:\"New Arrivals\";s:18:\"featured-image-url\";s:99:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08-new-arrivals-1.jpg\";s:19:\"thumbnail-image-url\";s:108:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08-new-arrivals-1-600x2023.jpg\";s:18:\"astra-page-api-url\";s:78:\"https://websitedemos.net/fashion-designer-boutique-08/wp-json/wp/v2/pages/1013\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:61:\"//websitedemos.net/fashion-designer-boutique-08/new-arrivals/\";s:15:\"astra-sites-tag\";a:1:{i:2326;s:11:\"new-arrival\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-58565\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2021/10/fashion-designer-boutique-08-600x2900.jpg\";s:18:\"astra-page-api-url\";s:78:\"https://websitedemos.net/fashion-designer-boutique-08/wp-json/wp/v2/pages/1007\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/fashion-designer-boutique-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47984\";a:22:{s:5:\"title\";s:17:\"LearnDash Academy\";s:2:\"id\";i:47984;s:12:\"publish-date\";i:1603828903;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/learndash-academy-08.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/learndash-academy-08-600x1847.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/learndash-academy-08-400x1231.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/learndash-academy-08\";s:20:\"astra-site-parent-id\";i:1691;s:15:\"astra-sites-tag\";a:5:{i:462;s:7:\"courses\";i:468;s:9:\"elearning\";i:467;s:9:\"learndash\";i:460;s:8:\"learning\";i:466;s:14:\"online-courses\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:2;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:3;a:3:{s:4:\"slug\";s:13:\"presto-player\";s:4:\"init\";s:31:\"presto-player/presto-player.php\";s:4:\"name\";s:13:\"Presto Player\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-47988\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/learndash-academy-08.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/learndash-academy-08-600x1847.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/learndash-academy-08/wp-json/wp/v2/pages/25407\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/learndash-academy-08/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47986\";a:12:{s:5:\"title\";s:11:\"All Courses\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/learndash-academy-08-all-courses.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2020/10/learndash-academy-08-all-courses-600x966.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/learndash-academy-08/wp-json/wp/v2/pages/25403\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/learndash-academy-08/all-courses/\";s:15:\"astra-sites-tag\";a:2:{i:1692;s:11:\"all-courses\";i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47985\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/learndash-academy-08-about-2.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/learndash-academy-08-about-2-600x1582.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/learndash-academy-08/wp-json/wp/v2/pages/25401\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/learndash-academy-08/about/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47987\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/learndash-academy-08-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/learndash-academy-08-contact-2-600x1274.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/learndash-academy-08/wp-json/wp/v2/pages/25405\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/learndash-academy-08/contact/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47932\";a:22:{s:5:\"title\";s:19:\"Online Health Coach\";s:2:\"id\";i:47932;s:12:\"publish-date\";i:1603823106;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-08-600x1990.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-08-400x1327.jpg\";s:14:\"astra-site-url\";s:41:\"//websitedemos.net/online-health-coach-08\";s:20:\"astra-site-parent-id\";i:1684;s:15:\"astra-sites-tag\";a:8:{i:462;s:7:\"courses\";i:469;s:7:\"ecourse\";i:468;s:9:\"elearning\";i:518;s:12:\"health-coach\";i:467;s:9:\"learndash\";i:460;s:8:\"learning\";i:466;s:14:\"online-courses\";i:975;s:15:\"online-learning\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:2;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:3;a:3:{s:4:\"slug\";s:13:\"presto-player\";s:4:\"init\";s:31:\"presto-player/presto-player.php\";s:4:\"name\";s:13:\"Presto Player\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-47941\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-08-600x1990.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/online-health-coach-08/wp-json/wp/v2/pages/24365\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/online-health-coach-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47939\";a:12:{s:5:\"title\";s:11:\"All Courses\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-08-courses.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-08-courses-600x954.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/online-health-coach-08/wp-json/wp/v2/pages/24366\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/online-health-coach-08/all-courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47938\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-08-about.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-08-about-600x1541.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/online-health-coach-08/wp-json/wp/v2/pages/24368\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/online-health-coach-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47940\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/online-health-08-contact-600x734.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/online-health-coach-08/wp-json/wp/v2/pages/24369\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/online-health-coach-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-59540\";a:22:{s:5:\"title\";s:12:\"Library Cafe\";s:2:\"id\";i:59540;s:12:\"publish-date\";i:1646329876;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08-600x2416.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08-400x1610.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/cafe-library-08\";s:20:\"astra-site-parent-id\";i:2636;s:15:\"astra-sites-tag\";a:7:{i:2607;s:10:\"book-house\";i:1740;s:5:\"books\";i:2606;s:10:\"books-room\";i:1527;s:9:\"cafeteria\";i:2603;s:10:\"coffee-bar\";i:2604;s:7:\"library\";i:2605;s:12:\"library-cafe\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-59541\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08-about.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08-about-600x1438.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/cafe-library-08/wp-json/wp/v2/pages/710\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/cafe-library-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59542\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08-contact-600x939.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/cafe-library-08/wp-json/wp/v2/pages/712\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/cafe-library-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-59543\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08-600x2416.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/cafe-library-08/wp-json/wp/v2/pages/704\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/cafe-library-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59544\";a:12:{s:5:\"title\";s:4:\"Menu\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08-menu.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08-menu-600x1081.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/cafe-library-08/wp-json/wp/v2/pages/706\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/cafe-library-08/menu/\";s:15:\"astra-sites-tag\";a:1:{i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-59545\";a:12:{s:5:\"title\";s:7:\"Reviews\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08-reviews.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2022/03/cafe-library-08-reviews-600x1040.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/cafe-library-08/wp-json/wp/v2/pages/708\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/cafe-library-08/reviews/\";s:15:\"astra-sites-tag\";a:1:{i:432;s:6:\"review\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48431\";a:22:{s:5:\"title\";s:14:\"Simply Natural\";s:2:\"id\";i:48431;s:12:\"publish-date\";i:1603963839;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/10/plant-store-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/plant-store-08-600x2263.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/plant-store-08-400x1508.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/plant-store-08\";s:20:\"astra-site-parent-id\";i:1732;s:15:\"astra-sites-tag\";a:16:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2419;s:9:\"eshopping\";i:535;s:6:\"nature\";i:2422;s:13:\"online-market\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:497;s:11:\"plant-store\";i:495;s:6:\"plants\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2500;s:12:\"multipurpose\";}s:16:\"required-plugins\";a:7:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:5;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:6;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-68346\";a:12:{s:5:\"title\";s:5:\"Store\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/plant-store-08-store.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/plant-store-08-store-600x1973.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/plant-store-08/wp-json/wp/v2/pages/118\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/plant-store-08/store/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48432\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/plant-store-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/plant-store-08-about-us-600x1926.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/plant-store-08/wp-json/wp/v2/pages/119\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/plant-store-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48433\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/plant-store-08-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/plant-store-08-contact-us-600x886.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/plant-store-08/wp-json/wp/v2/pages/120\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/plant-store-08/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48434\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/10/plant-store-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/plant-store-08-600x2263.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/plant-store-08/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/plant-store-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55315\";a:22:{s:5:\"title\";s:14:\"Local Business\";s:2:\"id\";i:55315;s:12:\"publish-date\";i:1621624705;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-08-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-08-1-600x2413.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-08-1-400x1609.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/local-business-08\";s:20:\"astra-site-parent-id\";i:2066;s:15:\"astra-sites-tag\";a:15:{i:586;s:8:\"car-wash\";i:2085;s:9:\"carpentry\";i:2089;s:16:\"cleaning-company\";i:2088;s:20:\"construction-company\";i:341;s:11:\"electrician\";i:2090;s:16:\"flooring-company\";i:1021;s:14:\"local-business\";i:2086;s:12:\"local-worker\";i:2094;s:8:\"mechanic\";i:2093;s:16:\"painting-company\";i:508;s:8:\"plumbing\";i:2092;s:16:\"plumbing-company\";i:2091;s:15:\"roofing-company\";i:2087;s:20:\"services-maintenance\";i:441;s:10:\"technician\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-55317\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-08-contact-1-600x939.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/local-business-08/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/local-business-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55318\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-08-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-08-1-600x2413.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/local-business-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/local-business-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55319\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-08-services-1-600x1283.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/local-business-08/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/local-business-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55316\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-08-about-2.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/05/local-business-08-about-2-600x1662.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/local-business-08/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/local-business-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-54338\";a:22:{s:5:\"title\";s:11:\"Steak House\";s:2:\"id\";i:54338;s:12:\"publish-date\";i:1620833417;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-08-600x2370.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-08-400x1580.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/steak-house-08\";s:20:\"astra-site-parent-id\";i:2025;s:15:\"astra-sites-tag\";a:9:{i:2071;s:15:\"chef-restaurant\";i:336;s:4:\"food\";i:2068;s:15:\"food-and-drinks\";i:2067;s:19:\"food-and-restaurant\";i:2070;s:10:\"food-house\";i:350;s:5:\"hotel\";i:2069;s:25:\"non-vegetarian-restaurant\";i:335;s:10:\"restaurant\";i:2072;s:11:\"steak-house\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-54341\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-08-600x2370.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/steak-house-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/steak-house-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-54339\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-08-about-1-600x1939.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/steak-house-08/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/steak-house-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-54340\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-08-contact-1-600x1150.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/steak-house-08/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/steak-house-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-54342\";a:12:{s:5:\"title\";s:4:\"Menu\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-08-menu-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/05/steak-house-08-menu-1-600x1663.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/steak-house-08/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/steak-house-08/menu/\";s:15:\"astra-sites-tag\";a:2:{i:1579;s:9:\"food-menu\";i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-54463\";a:22:{s:5:\"title\";s:14:\"Digital Agency\";s:2:\"id\";i:54463;s:12:\"publish-date\";i:1621459243;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-08-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-08-1-600x2456.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-08-1-400x1637.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/digital-agency-08\";s:20:\"astra-site-parent-id\";i:2051;s:15:\"astra-sites-tag\";a:13:{i:1587;s:18:\"advertising-agency\";i:663;s:6:\"agency\";i:2050;s:27:\"business-consulting-company\";i:2037;s:13:\"design-agency\";i:2048;s:13:\"design-studio\";i:2039;s:14:\"digital-agency\";i:2036;s:22:\"digital-marketing-firm\";i:2040;s:4:\"firm\";i:2049;s:21:\"graphic-design-studio\";i:2038;s:11:\"it-services\";i:1588;s:16:\"marketing-agency\";i:2035;s:18:\"marketing-services\";i:1762;s:16:\"software-company\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-54464\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-08-about-us-2.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-08-about-us-2-600x1549.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/digital-agency-08/wp-json/wp/v2/pages/139\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/digital-agency-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-54465\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-08-contact-1-600x969.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/digital-agency-08/wp-json/wp/v2/pages/141\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/digital-agency-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-54466\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-08-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-08-1-600x2456.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/digital-agency-08/wp-json/wp/v2/pages/135\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/digital-agency-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-54467\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2021/05/digital-agency-08-services-1-600x1326.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/digital-agency-08/wp-json/wp/v2/pages/137\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/digital-agency-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-57046\";a:22:{s:5:\"title\";s:35:\"Business Coaching &#038; Consulting\";s:2:\"id\";i:57046;s:12:\"publish-date\";i:1626465822;s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consulting-08-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consulting-08-1-600x2363.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consulting-08-1-400x1575.jpg\";s:14:\"astra-site-url\";s:41:\"//websitedemos.net/business-consulting-08\";s:20:\"astra-site-parent-id\";i:2261;s:15:\"astra-sites-tag\";a:6:{i:1878;s:14:\"business-coach\";i:1620;s:19:\"business-consultant\";i:1879;s:14:\"business-guide\";i:854;s:5:\"coach\";i:1880;s:6:\"mentor\";i:855;s:20:\"motivational-speaker\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-57047\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consulting-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consulting-08-about-1-600x2245.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/business-consulting-08/wp-json/wp/v2/pages/964\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/business-consulting-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-57048\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consulting-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consulting-08-contact-1-600x1328.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/business-consulting-08/wp-json/wp/v2/pages/968\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/business-consulting-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-57049\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consulting-08-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consulting-08-1-600x2363.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/business-consulting-08/wp-json/wp/v2/pages/961\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/business-consulting-08/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-57050\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consulting-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2021/07/business-consulting-08-services-1-600x2098.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/business-consulting-08/wp-json/wp/v2/pages/966\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/business-consulting-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-57071\";a:22:{s:5:\"title\";s:18:\"Bestselling Author\";s:2:\"id\";i:57071;s:12:\"publish-date\";i:1626466145;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/07/bestselling-author-08-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/07/bestselling-author-08-1-600x2212.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/07/bestselling-author-08-1-400x1474.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/bestselling-author-08\";s:20:\"astra-site-parent-id\";i:2265;s:15:\"astra-sites-tag\";a:5:{i:724;s:6:\"author\";i:1911;s:23:\"bestselling-book-author\";i:1910;s:11:\"book-author\";i:1740;s:5:\"books\";i:725;s:6:\"writer\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-57072\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/07/bestselling-author-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2021/07/bestselling-author-08-about-1-600x1890.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/bestselling-author-08/wp-json/wp/v2/pages/902\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/bestselling-author-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-57073\";a:12:{s:5:\"title\";s:5:\"Books\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/07/bestselling-author-08-books.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2021/07/bestselling-author-08-books-600x1590.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/bestselling-author-08/wp-json/wp/v2/pages/900\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/bestselling-author-08/books/\";s:15:\"astra-sites-tag\";a:1:{i:1740;s:5:\"books\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-57074\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/07/bestselling-author-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2021/07/bestselling-author-08-contact-1-600x1003.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/bestselling-author-08/wp-json/wp/v2/pages/898\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/bestselling-author-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-57075\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/07/bestselling-author-08-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/07/bestselling-author-08-1-600x2212.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/bestselling-author-08/wp-json/wp/v2/pages/896\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/bestselling-author-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-56739\";a:22:{s:5:\"title\";s:14:\"Public Speaker\";s:2:\"id\";i:56739;s:12:\"publish-date\";i:1626114397;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08-600x3080.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08-400x2053.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/public-speaker-08\";s:20:\"astra-site-parent-id\";i:2256;s:15:\"astra-sites-tag\";a:9:{i:724;s:6:\"author\";i:854;s:5:\"coach\";i:612;s:10:\"life-coach\";i:1866;s:10:\"life-guide\";i:1880;s:6:\"mentor\";i:855;s:20:\"motivational-speaker\";i:1903;s:16:\"personal-website\";i:1939;s:14:\"public-speaker\";i:1940;s:11:\"storyteller\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-56740\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08-about-1-600x2525.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/public-speaker-08/wp-json/wp/v2/pages/1068\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/public-speaker-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56741\";a:12:{s:5:\"title\";s:5:\"Books\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08-books-1.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08-books-1-600x1907.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/public-speaker-08/wp-json/wp/v2/pages/1070\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/public-speaker-08/books/\";s:15:\"astra-sites-tag\";a:1:{i:1740;s:5:\"books\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56742\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08-contact-1-600x812.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/public-speaker-08/wp-json/wp/v2/pages/1076\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/public-speaker-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56744\";a:12:{s:5:\"title\";s:12:\"What I Offer\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08-what-i-offer-1.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08-what-i-offer-1-600x2028.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/public-speaker-08/wp-json/wp/v2/pages/1072\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/public-speaker-08/what-i-offer/\";s:15:\"astra-sites-tag\";a:2:{i:425;s:8:\"services\";i:1938;s:12:\"what-i-offer\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56743\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/07/public-speaker-08-600x3080.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/public-speaker-08/wp-json/wp/v2/pages/1066\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/public-speaker-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-57085\";a:22:{s:5:\"title\";s:27:\"Relationship and Life Coach\";s:2:\"id\";i:57085;s:12:\"publish-date\";i:1626464394;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-1-600x3248.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-1-400x2165.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/relationship-coach-08\";s:20:\"astra-site-parent-id\";i:2279;s:15:\"astra-sites-tag\";a:5:{i:854;s:5:\"coach\";i:1876;s:10:\"counsellor\";i:612;s:10:\"life-coach\";i:1866;s:10:\"life-guide\";i:1877;s:18:\"relationship-coach\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:3:{i:37;s:4:\"blog\";i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-57088\";a:12:{s:5:\"title\";s:5:\"Books\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-books-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-books-1-600x1682.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/relationship-coach-08/wp-json/wp/v2/pages/1018\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/relationship-coach-08/books/\";s:15:\"astra-sites-tag\";a:1:{i:1740;s:5:\"books\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:3:{i:74;s:4:\"blog\";i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-57089\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-contact-1-600x1381.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/relationship-coach-08/wp-json/wp/v2/pages/1020\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/relationship-coach-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:3:{i:74;s:4:\"blog\";i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-57090\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-1-600x3248.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/relationship-coach-08/wp-json/wp/v2/pages/1022\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/relationship-coach-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:3:{i:74;s:4:\"blog\";i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-57086\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-about-1-600x1648.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/relationship-coach-08/wp-json/wp/v2/pages/1014\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/relationship-coach-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:3:{i:74;s:4:\"blog\";i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-57091\";a:12:{s:5:\"title\";s:21:\"One-on-One Counseling\";s:18:\"featured-image-url\";s:100:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-one-on-one-counselling.jpg\";s:19:\"thumbnail-image-url\";s:109:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-one-on-one-counselling-600x1993.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/relationship-coach-08/wp-json/wp/v2/pages/1024\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:63:\"//websitedemos.net/relationship-coach-08/one-on-one-counseling/\";s:15:\"astra-sites-tag\";a:1:{i:610;s:8:\"coaching\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:3:{i:74;s:4:\"blog\";i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-57092\";a:12:{s:5:\"title\";s:11:\"Stage Shows\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-stage-shows-1.jpg\";s:19:\"thumbnail-image-url\";s:100:\"https://websitedemos.net/wp-content/uploads/2021/07/relationship-coach-08-stage-shows-1-600x1701.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/relationship-coach-08/wp-json/wp/v2/pages/1026\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/relationship-coach-08/stage-shows/\";s:15:\"astra-sites-tag\";a:1:{i:1875;s:11:\"stage-shows\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:3:{i:74;s:4:\"blog\";i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-56607\";a:22:{s:5:\"title\";s:18:\"Creative Podcaster\";s:2:\"id\";i:56607;s:12:\"publish-date\";i:1626181230;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/07/creative-podcaster-08-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/07/creative-podcaster-08-1-600x2248.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/07/creative-podcaster-08-1-400x1499.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/creative-podcaster-08\";s:20:\"astra-site-parent-id\";i:2244;s:15:\"astra-sites-tag\";a:5:{i:1654;s:15:\"content-creator\";i:1928;s:16:\"creative-podcast\";i:1929;s:9:\"creatives\";i:1927;s:15:\"podcast-website\";i:1926;s:9:\"podcaster\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-56611\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/07/creative-podcaster-08-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/07/creative-podcaster-08-1-600x2248.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/creative-podcaster-08/wp-json/wp/v2/pages/1254\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/creative-podcaster-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56610\";a:12:{s:5:\"title\";s:8:\"Episodes\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/07/creative-podcaster-08-episodes-1.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2021/07/creative-podcaster-08-episodes-1-600x1327.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/creative-podcaster-08/wp-json/wp/v2/pages/1263\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/creative-podcaster-08/episodes/\";s:15:\"astra-sites-tag\";a:1:{i:1924;s:8:\"episodes\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56609\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/07/creative-podcaster-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2021/07/creative-podcaster-08-contact-1-600x1231.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/creative-podcaster-08/wp-json/wp/v2/pages/1274\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/creative-podcaster-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56608\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/07/creative-podcaster-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2021/07/creative-podcaster-08-about-1-600x1652.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/creative-podcaster-08/wp-json/wp/v2/pages/1271\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/creative-podcaster-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-56525\";a:22:{s:5:\"title\";s:23:\"Learn Digital Marketing\";s:2:\"id\";i:56525;s:12:\"publish-date\";i:1625493814;s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-600x3205.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-400x2137.jpg\";s:14:\"astra-site-url\";s:45:\"//websitedemos.net/learn-digital-marketing-08\";s:20:\"astra-site-parent-id\";i:2239;s:15:\"astra-sites-tag\";a:5:{i:462;s:7:\"courses\";i:1855;s:17:\"digital-marketing\";i:467;s:9:\"learndash\";i:975;s:15:\"online-learning\";i:720;s:9:\"tutorials\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:13:\"presto-player\";s:4:\"init\";s:31:\"presto-player/presto-player.php\";s:4:\"name\";s:13:\"Presto Player\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-56526\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:99:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-about-1-600x2264.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/learn-digital-marketing-08/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/learn-digital-marketing-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56527\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-blog-1.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-blog-1-600x1125.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/learn-digital-marketing-08/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/learn-digital-marketing-08/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56528\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:101:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-contact-1-600x1238.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/learn-digital-marketing-08/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/learn-digital-marketing-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56531\";a:12:{s:5:\"title\";s:8:\"Resource\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-resources.jpg\";s:19:\"thumbnail-image-url\";s:101:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-resources-600x1984.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/learn-digital-marketing-08/wp-json/wp/v2/pages/19\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/learn-digital-marketing-08/resource/\";s:15:\"astra-sites-tag\";a:1:{i:1854;s:8:\"resource\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56529\";a:12:{s:5:\"title\";s:7:\"Courses\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-courses.jpg\";s:19:\"thumbnail-image-url\";s:99:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-courses-600x1495.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/learn-digital-marketing-08/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:58:\"//websitedemos.net/learn-digital-marketing-08/all-courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56530\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/07/learn-digital-marketing-08-600x3205.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/learn-digital-marketing-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/learn-digital-marketing-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48348\";a:22:{s:5:\"title\";s:8:\"Mountain\";s:2:\"id\";i:48348;s:12:\"publish-date\";i:1603907454;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/10/mountain-08-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/mountain-08-1-600x1463.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/mountain-08-1-400x975.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/mountain-08\";s:20:\"astra-site-parent-id\";i:1724;s:15:\"astra-sites-tag\";a:4:{i:692;s:8:\"business\";i:1525;s:8:\"mountain\";i:1526;s:13:\"multi-purpose\";i:535;s:6:\"nature\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2500;s:12:\"multipurpose\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-48349\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/mountain-08-about-2.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/mountain-08-about-2-600x742.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/mountain-08/wp-json/wp/v2/pages/218\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/mountain-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48350\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/mountain-08-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/mountain-08-contact-2-600x832.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/mountain-08/wp-json/wp/v2/pages/220\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/mountain-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48351\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/10/mountain-08-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/mountain-08-1-600x1463.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/mountain-08/wp-json/wp/v2/pages/217\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/mountain-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48352\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/mountain-08-services-2.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/mountain-08-services-2-600x1322.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/mountain-08/wp-json/wp/v2/pages/219\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/mountain-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-56573\";a:22:{s:5:\"title\";s:28:\"Injury and Accidental Lawyer\";s:2:\"id\";i:56573;s:12:\"publish-date\";i:1624912486;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-600x2475.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-400x1650.jpg\";s:14:\"astra-site-url\";s:44:\"//websitedemos.net/injury-accident-lawyer-08\";s:20:\"astra-site-parent-id\";i:2241;s:15:\"astra-sites-tag\";a:4:{i:1869;s:16:\"accident-lawyers\";i:1867;s:14:\"injury-lawyers\";i:1870;s:11:\"lawyer-firm\";i:1868;s:7:\"lawyers\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2482;s:3:\"law\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-56574\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-about.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-about-600x2370.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/injury-accident-lawyer-08/wp-json/wp/v2/pages/1526\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/injury-accident-lawyer-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56575\";a:12:{s:5:\"title\";s:9:\"Attorneys\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-attorneys.jpg\";s:19:\"thumbnail-image-url\";s:100:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-attorneys-600x1888.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/injury-accident-lawyer-08/wp-json/wp/v2/pages/1539\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/injury-accident-lawyer-08/attorneys/\";s:15:\"astra-sites-tag\";a:1:{i:912;s:9:\"attorneys\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56576\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-contact-600x967.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/injury-accident-lawyer-08/wp-json/wp/v2/pages/1547\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/injury-accident-lawyer-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56577\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-600x2475.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/injury-accident-lawyer-08/wp-json/wp/v2/pages/1503\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/injury-accident-lawyer-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56578\";a:12:{s:5:\"title\";s:14:\"Practice Areas\";s:18:\"featured-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-practice-area.jpg\";s:19:\"thumbnail-image-url\";s:104:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-practice-area-600x2755.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/injury-accident-lawyer-08/wp-json/wp/v2/pages/1541\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:60:\"//websitedemos.net/injury-accident-lawyer-08/practice-areas/\";s:15:\"astra-sites-tag\";a:1:{i:1863;s:14:\"practice-areas\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56579\";a:12:{s:5:\"title\";s:7:\"Results\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-results.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2021/06/injury-accident-lawyer-08-results-600x1712.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/injury-accident-lawyer-08/wp-json/wp/v2/pages/1543\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/injury-accident-lawyer-08/results/\";s:15:\"astra-sites-tag\";a:1:{i:1864;s:7:\"results\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-56632\";a:22:{s:5:\"title\";s:19:\"Musical Instruments\";s:2:\"id\";i:56632;s:12:\"publish-date\";i:1624912490;s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-home.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-home.jpg\";s:14:\"astra-site-url\";s:46:\"//websitedemos.net/musical-instrument-maker-08\";s:20:\"astra-site-parent-id\";i:2245;s:15:\"astra-sites-tag\";a:6:{i:2248;s:12:\"guitar-maker\";i:2249;s:15:\"instrumentalist\";i:407;s:5:\"music\";i:2250;s:18:\"music-craftsperson\";i:2246;s:16:\"music-instrument\";i:1814;s:24:\"musical-instrument-maker\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2802;s:6:\"artist\";i:2777;s:8:\"business\";i:2781;s:5:\"music\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2486;s:9:\"art-music\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-56633\";a:12:{s:5:\"title\";s:7:\"Artists\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-artists.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-artists.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/musical-instrument-maker-08/wp-json/wp/v2/pages/984\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/musical-instrument-maker-08/artists/\";s:15:\"astra-sites-tag\";a:1:{i:339;s:6:\"artist\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56634\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-contact.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/musical-instrument-maker-08/wp-json/wp/v2/pages/988\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/musical-instrument-maker-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56635\";a:12:{s:5:\"title\";s:7:\"Guitars\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-guitars.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-guitars.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/musical-instrument-maker-08/wp-json/wp/v2/pages/982\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/musical-instrument-maker-08/guitars/\";s:15:\"astra-sites-tag\";a:1:{i:1815;s:7:\"guitars\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56636\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-home.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-home.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/musical-instrument-maker-08/wp-json/wp/v2/pages/980\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/musical-instrument-maker-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56637\";a:12:{s:5:\"title\";s:9:\"Our Story\";s:18:\"featured-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-our-story.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2021/06/musical-instrument-maker-08-our-story.jpg\";s:18:\"astra-page-api-url\";s:76:\"https://websitedemos.net/musical-instrument-maker-08/wp-json/wp/v2/pages/986\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:57:\"//websitedemos.net/musical-instrument-maker-08/our-story/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:905;s:9:\"our-story\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48026\";a:22:{s:5:\"title\";s:13:\"Online Course\";s:2:\"id\";i:48026;s:12:\"publish-date\";i:1603830103;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-1-600x2031.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-1-400x1354.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/online-courses-08\";s:20:\"astra-site-parent-id\";i:1694;s:15:\"astra-sites-tag\";a:6:{i:462;s:7:\"courses\";i:468;s:9:\"elearning\";i:467;s:9:\"learndash\";i:460;s:8:\"learning\";i:466;s:14:\"online-courses\";i:975;s:15:\"online-learning\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:13:\"presto-player\";s:4:\"init\";s:31:\"presto-player/presto-player.php\";s:4:\"name\";s:13:\"Presto Player\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-48030\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-1-600x2031.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/online-courses-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/online-courses-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48028\";a:12:{s:5:\"title\";s:11:\"All Courses\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-all-courses-1.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-all-courses-1-600x936.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/online-courses-08/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/online-courses-08/all-courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48027\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-about-us-1.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-about-us-1-600x1431.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/online-courses-08/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/online-courses-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48031\";a:12:{s:5:\"title\";s:11:\"Instructors\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-instructors-1.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-instructors-1-600x1306.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/online-courses-08/wp-json/wp/v2/pages/18\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/online-courses-08/instructors/\";s:15:\"astra-sites-tag\";a:1:{i:1677;s:11:\"instructors\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48032\";a:12:{s:5:\"title\";s:18:\"Pricing &#038; FAQ\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-pricing-and-faq.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-pricing-and-faq-600x1417.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/online-courses-08/wp-json/wp/v2/pages/20\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/online-courses-08/pricing-faq/\";s:15:\"astra-sites-tag\";a:1:{i:585;s:7:\"pricing\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48029\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/online-courses-08-contact-1-600x978.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/online-courses-08/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/online-courses-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48648\";a:22:{s:5:\"title\";s:16:\"Roofing Services\";s:2:\"id\";i:48648;s:12:\"publish-date\";i:1603984605;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08-600x2864.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08-400x1909.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/roofing-services-08\";s:20:\"astra-site-parent-id\";i:1754;s:15:\"astra-sites-tag\";a:5:{i:1630;s:18:\"commercial-roofing\";i:1629;s:19:\"residential-roofing\";i:1633;s:11:\"roof-repair\";i:1631;s:16:\"roof-replacement\";i:1632;s:16:\"roofing-services\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2795;s:12:\"architecture\";i:2777;s:8:\"business\";i:2818;s:7:\"roofing\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:2:{i:2477;s:13:\"home-services\";i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48651\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08-600x2864.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/roofing-services-08/wp-json/wp/v2/pages/296\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/roofing-services-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48649\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08-about-us-600x2103.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/roofing-services-08/wp-json/wp/v2/pages/297\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/roofing-services-08/about-us/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48653\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08-services-1-600x2432.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/roofing-services-08/wp-json/wp/v2/pages/298\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/roofing-services-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48652\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08-projects-1.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08-projects-1-600x1716.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/roofing-services-08/wp-json/wp/v2/pages/299\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/roofing-services-08/projects/\";s:15:\"astra-sites-tag\";a:3:{i:444;s:9:\"portfolio\";i:1613;s:8:\"projects\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48650\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/roofing-services-08-contact-us-600x1170.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/roofing-services-08/wp-json/wp/v2/pages/300\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/roofing-services-08/contact-us/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47896\";a:22:{s:5:\"title\";s:25:\"Online Programming Course\";s:2:\"id\";i:47896;s:12:\"publish-date\";i:1603825611;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/online-programming-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/online-programming-08-600x2335.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/online-programming-08-400x1557.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/online-coding-course-08\";s:20:\"astra-site-parent-id\";i:1681;s:15:\"astra-sites-tag\";a:7:{i:462;s:7:\"courses\";i:469;s:7:\"ecourse\";i:468;s:9:\"elearning\";i:467;s:9:\"learndash\";i:466;s:14:\"online-courses\";i:975;s:15:\"online-learning\";i:1673;s:18:\"programming-course\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:2;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:3;a:3:{s:4:\"slug\";s:13:\"presto-player\";s:4:\"init\";s:31:\"presto-player/presto-player.php\";s:4:\"name\";s:13:\"Presto Player\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-47900\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/online-programming-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/online-programming-08-600x2335.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/online-coding-course-08/wp-json/wp/v2/pages/523\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/online-coding-course-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47898\";a:12:{s:5:\"title\";s:11:\"All Courses\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/online-programming-08-courses.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/online-programming-08-courses-600x1348.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/online-coding-course-08/wp-json/wp/v2/pages/519\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/online-coding-course-08/all-courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47897\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/online-programming-08-about.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/online-programming-08-about-600x1986.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/online-coding-course-08/wp-json/wp/v2/pages/517\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/online-coding-course-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47899\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/online-programming-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/online-programming-08-contact-600x1047.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/online-coding-course-08/wp-json/wp/v2/pages/521\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/online-coding-course-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48149\";a:22:{s:5:\"title\";s:10:\"Life Coach\";s:2:\"id\";i:48149;s:12:\"publish-date\";i:1603893471;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08-600x1518.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08-400x1012.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/life-coach-sara-john-08\";s:20:\"astra-site-parent-id\";i:1704;s:15:\"astra-sites-tag\";a:5:{i:610;s:8:\"coaching\";i:608;s:8:\"guidance\";i:612;s:10:\"life-coach\";i:609;s:9:\"motivator\";i:611;s:16:\"self-improvement\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:6:{i:2839;s:13:\"author-writer\";i:2814;s:9:\"bookstore\";i:2825;s:8:\"coaching\";i:2769;s:9:\"ecommerce\";i:2874;s:10:\"life-coach\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:1;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:3;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}i:4;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48171\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08-about-4.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08-about-4-600x1199.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/life-coach-sara-john-08/wp-json/wp/v2/pages/1368\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/life-coach-sara-john-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48172\";a:12:{s:5:\"title\";s:5:\"Books\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08-books-2.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08-books-2-600x1382.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/life-coach-sara-john-08/wp-json/wp/v2/pages/1370\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/life-coach-sara-john-08/books/\";s:15:\"astra-sites-tag\";a:1:{i:727;s:4:\"book\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48173\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08-contact-2-600x738.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/life-coach-sara-john-08/wp-json/wp/v2/pages/1372\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/life-coach-sara-john-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48174\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08-600x1518.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/life-coach-sara-john-08/wp-json/wp/v2/pages/1376\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/life-coach-sara-john-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48175\";a:12:{s:5:\"title\";s:12:\"Work With Me\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08-work-with-me.jpg\";s:19:\"thumbnail-image-url\";s:101:\"https://websitedemos.net/wp-content/uploads/2020/10/life-coach-sara-john-08-work-with-me-600x1249.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/life-coach-sara-john-08/wp-json/wp/v2/pages/1374\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:56:\"//websitedemos.net/life-coach-sara-john-08/work-with-me/\";s:15:\"astra-sites-tag\";a:1:{i:784;s:12:\"work-with-me\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47672\";a:22:{s:5:\"title\";s:15:\"Diagnostics Lab\";s:2:\"id\";i:47672;s:12:\"publish-date\";i:1603984733;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08-600x3865.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08-400x2577.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/diagnostics-lab-08\";s:20:\"astra-site-parent-id\";i:1657;s:15:\"astra-sites-tag\";a:4:{i:1637;s:18:\"clinical-diagnosis\";i:1636;s:9:\"diagnosis\";i:1640;s:10:\"laboratory\";i:1638;s:4:\"test\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2834;s:10:\"healthcare\";i:2841;s:14:\"medical-clinic\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2490;s:10:\"healthcare\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-47675\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08-600x3865.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/diagnostics-lab-08/wp-json/wp/v2/pages/242\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/diagnostics-lab-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47673\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08-about-us-600x1665.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/diagnostics-lab-08/wp-json/wp/v2/pages/247\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/diagnostics-lab-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47676\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08-services.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08-services-600x1566.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/diagnostics-lab-08/wp-json/wp/v2/pages/252\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/diagnostics-lab-08/services/\";s:15:\"astra-sites-tag\";a:2:{i:425;s:8:\"services\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47677\";a:12:{s:5:\"title\";s:11:\"Testimonial\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08-testimonial.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08-testimonial-600x1606.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/diagnostics-lab-08/wp-json/wp/v2/pages/254\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/diagnostics-lab-08/testimonial/\";s:15:\"astra-sites-tag\";a:2:{i:1615;s:7:\"reviews\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47674\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/diagnostics-lab-08-contact-us-600x1026.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/diagnostics-lab-08/wp-json/wp/v2/pages/256\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/diagnostics-lab-08/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48061\";a:22:{s:5:\"title\";s:21:\"Online Cooking Course\";s:2:\"id\";i:48061;s:12:\"publish-date\";i:1603831834;s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-08-2.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-08-2-600x1445.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-08-2-400x963.jpg\";s:14:\"astra-site-url\";s:43:\"//websitedemos.net/online-cooking-course-08\";s:20:\"astra-site-parent-id\";i:1696;s:15:\"astra-sites-tag\";a:6:{i:1679;s:14:\"cooking-course\";i:468;s:9:\"elearning\";i:467;s:9:\"learndash\";i:719;s:15:\"online-coaching\";i:466;s:14:\"online-courses\";i:975;s:15:\"online-learning\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:5:{i:2835;s:9:\"elearning\";i:2785;s:4:\"food\";i:2880;s:10:\"membership\";i:2827;s:13:\"online-course\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:2;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-48065\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-08-2.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-08-2-600x1445.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/online-cooking-course-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/online-cooking-course-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48063\";a:12:{s:5:\"title\";s:11:\"All Courses\";s:18:\"featured-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-08-all-courses-2.jpg\";s:19:\"thumbnail-image-url\";s:103:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-08-all-courses-2-600x1153.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/online-cooking-course-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:56:\"//websitedemos.net/online-cooking-course-08/all-courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:8:\"sfwd-lms\";s:4:\"init\";s:21:\"sfwd-lms/sfwd_lms.php\";s:4:\"name\";s:13:\"LearnDash LMS\";}i:1;a:3:{s:4:\"slug\";s:21:\"learndash-course-grid\";s:4:\"init\";s:47:\"learndash-course-grid/learndash_course_grid.php\";s:4:\"name\";s:27:\"LearnDash LMS - Course Grid\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48062\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-08-about-2.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-08-about-2-600x1190.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/online-cooking-course-08/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/online-cooking-course-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48064\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-08-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2020/10/online-cooking-course-08-contact-2-600x859.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/online-cooking-course-08/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/online-cooking-course-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48447\";a:22:{s:5:\"title\";s:21:\"Women Empowerment NGO\";s:2:\"id\";i:48447;s:12:\"publish-date\";i:1603927254;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-1-600x3142.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-1-400x2094.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/women-empowerment-08\";s:20:\"astra-site-parent-id\";i:1735;s:15:\"astra-sites-tag\";a:3:{i:625;s:7:\"charity\";i:1592;s:3:\"ngo\";i:1591;s:17:\"women-empowerment\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:39;s:4:\"free\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:5:{i:2786;s:17:\"charity-nonprofit\";i:2872;s:19:\"donation-fundraiser\";i:2784;s:5:\"event\";i:2821;s:14:\"feminine-girly\";i:2871;s:3:\"ngo\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2492;s:10:\"non-profit\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-48448\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-about-us-1.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-about-us-1-600x2417.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/women-empowerment-08/wp-json/wp/v2/pages/357\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/women-empowerment-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48449\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-contact-1-600x1616.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/women-empowerment-08/wp-json/wp/v2/pages/442\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/women-empowerment-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48450\";a:12:{s:5:\"title\";s:6:\"Events\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-events-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-events-1-600x1711.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/women-empowerment-08/wp-json/wp/v2/pages/418\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/women-empowerment-08/events/\";s:15:\"astra-sites-tag\";a:1:{i:409;s:5:\"event\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48451\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-gallery-1.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-gallery-1-600x1590.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/women-empowerment-08/wp-json/wp/v2/pages/426\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/women-empowerment-08/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48452\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-1-600x3142.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/women-empowerment-08/wp-json/wp/v2/pages/297\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/women-empowerment-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48453\";a:12:{s:5:\"title\";s:10:\"What We Do\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-what-we-do-1.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2020/10/women-empowerment-08-what-we-do-1-600x2048.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/women-empowerment-08/wp-json/wp/v2/pages/403\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/women-empowerment-08/what-we-do/\";s:15:\"astra-sites-tag\";a:1:{i:628;s:10:\"what-we-do\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48611\";a:22:{s:5:\"title\";s:8:\"Musician\";s:2:\"id\";i:48611;s:12:\"publish-date\";i:1603984612;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-1-600x2594.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-1-400x1729.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/musician-08\";s:20:\"astra-site-parent-id\";i:1752;s:15:\"astra-sites-tag\";a:5:{i:339;s:6:\"artist\";i:969;s:8:\"musician\";i:1572;s:9:\"performer\";i:1571;s:6:\"singer\";i:1573;s:8:\"vocalist\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2486;s:9:\"art-music\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-48612\";a:12:{s:5:\"title\";s:6:\"Albums\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-albums-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-albums-1-600x1455.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/musician-08/wp-json/wp/v2/pages/437\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/musician-08/albums/\";s:15:\"astra-sites-tag\";a:2:{i:1565;s:6:\"albums\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48617\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-1-600x2594.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/musician-08/wp-json/wp/v2/pages/296\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/musician-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48613\";a:12:{s:5:\"title\";s:9:\"Biography\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-biography-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-biography-1-600x1374.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/musician-08/wp-json/wp/v2/pages/408\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/musician-08/biography/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:1566;s:9:\"biography\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48614\";a:12:{s:5:\"title\";s:8:\"Concerts\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-concerts-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-concerts-1-600x1007.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/musician-08/wp-json/wp/v2/pages/432\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/musician-08/concerts/\";s:15:\"astra-sites-tag\";a:1:{i:755;s:7:\"concert\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48616\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-gallery-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-gallery-1-600x1131.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/musician-08/wp-json/wp/v2/pages/443\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/musician-08/gallery/\";s:15:\"astra-sites-tag\";a:2:{i:461;s:7:\"gallery\";i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48615\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/musician-08-contact-1-600x827.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/musician-08/wp-json/wp/v2/pages/451\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/musician-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55511\";a:22:{s:5:\"title\";s:19:\"Portfolio &#038; CV\";s:2:\"id\";i:55511;s:12:\"publish-date\";i:1622061009;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-1.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-1-600x2690.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-1-400x1793.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/portfolio-08\";s:20:\"astra-site-parent-id\";i:2148;s:15:\"astra-sites-tag\";a:6:{i:2151;s:16:\"curriculum-vitae\";i:2150;s:2:\"cv\";i:1903;s:16:\"personal-website\";i:444;s:9:\"portfolio\";i:2153;s:6:\"resume\";i:2152;s:12:\"work-profile\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:39;s:4:\"free\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-55512\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-about-1-600x1828.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/portfolio-08/wp-json/wp/v2/pages/345\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/portfolio-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55513\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-contact-1-600x896.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/portfolio-08/wp-json/wp/v2/pages/375\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/portfolio-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55514\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-1.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-1-600x2690.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/portfolio-08/wp-json/wp/v2/pages/298\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/portfolio-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55515\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-portfolio-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-portfolio-1-600x1826.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/portfolio-08/wp-json/wp/v2/pages/366\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/portfolio-08/portfolio/\";s:15:\"astra-sites-tag\";a:2:{i:444;s:9:\"portfolio\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55516\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/05/portfolio-08-services-1-600x1165.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/portfolio-08/wp-json/wp/v2/pages/359\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/portfolio-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48671\";a:22:{s:5:\"title\";s:12:\"Tech Startup\";s:2:\"id\";i:48671;s:12:\"publish-date\";i:1603984602;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/10/tech-startup-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/tech-startup-08-600x2357.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/tech-startup-08-400x1571.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/tech-startup-08\";s:20:\"astra-site-parent-id\";i:1758;s:15:\"astra-sites-tag\";a:7:{i:1761;s:11:\"application\";i:745;s:12:\"organization\";i:1762;s:16:\"software-company\";i:1760;s:13:\"software-firm\";i:1665;s:7:\"startup\";i:1759;s:13:\"tech-business\";i:1763;s:12:\"tech-startup\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-48672\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/tech-startup-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/tech-startup-08-about-us-600x2175.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/tech-startup-08/wp-json/wp/v2/pages/248\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/tech-startup-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48673\";a:12:{s:5:\"title\";s:8:\"Features\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/tech-startup-08-features-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/tech-startup-08-features-1-600x2647.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/tech-startup-08/wp-json/wp/v2/pages/249\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/tech-startup-08/features/\";s:15:\"astra-sites-tag\";a:1:{i:453;s:8:\"features\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48674\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/10/tech-startup-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/tech-startup-08-600x2357.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/tech-startup-08/wp-json/wp/v2/pages/247\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/tech-startup-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48675\";a:12:{s:5:\"title\";s:4:\"Plan\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/tech-startup-08-plan-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/tech-startup-08-plan-1-600x1310.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/tech-startup-08/wp-json/wp/v2/pages/250\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/tech-startup-08/plan/\";s:15:\"astra-sites-tag\";a:2:{i:1663;s:4:\"plan\";i:585;s:7:\"pricing\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48519\";a:22:{s:5:\"title\";s:12:\"Elderly Home\";s:2:\"id\";i:48519;s:12:\"publish-date\";i:1603984628;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08-600x2326.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08-400x1551.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/elderly-care-08\";s:20:\"astra-site-parent-id\";i:1744;s:15:\"astra-sites-tag\";a:5:{i:1598;s:24:\"assisted-living-facility\";i:1596;s:10:\"elder-home\";i:1595;s:11:\"elders-care\";i:1594;s:12:\"old-age-home\";i:1597;s:15:\"retirement-home\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2492;s:10:\"non-profit\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48523\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08-600x2326.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/elderly-care-08/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/elderly-care-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48520\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08-about-1-600x1670.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/elderly-care-08/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/elderly-care-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48524\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08-services-1-600x2083.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/elderly-care-08/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/elderly-care-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48522\";a:12:{s:5:\"title\";s:10:\"Facilities\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08-facilities-1.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08-facilities-1-600x1725.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/elderly-care-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/elderly-care-08/facilities/\";s:15:\"astra-sites-tag\";a:1:{i:1599;s:10:\"facilities\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48521\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/elderly-care-08-contact-1-600x1222.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/elderly-care-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/elderly-care-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47723\";a:22:{s:5:\"title\";s:12:\"Horticulture\";s:2:\"id\";i:47723;s:12:\"publish-date\";i:1603821508;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-1-600x2409.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-1-400x1606.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/horticulture-08\";s:20:\"astra-site-parent-id\";i:1669;s:15:\"astra-sites-tag\";a:4:{i:1601;s:11:\"agriculture\";i:1603;s:13:\"farm-products\";i:632;s:7:\"farming\";i:1602;s:12:\"horticulture\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2476;s:9:\"gardening\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-47725\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-1-600x2409.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/horticulture-08/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/horticulture-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47726\";a:12:{s:5:\"title\";s:8:\"Our Farm\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-farm.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-farm-600x2178.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/horticulture-08/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/horticulture-08/our-farm/\";s:15:\"astra-sites-tag\";a:2:{i:1737;s:4:\"farm\";i:1736;s:8:\"our-farm\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47727\";a:12:{s:5:\"title\";s:11:\"Our Produce\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-produce.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-produce-600x1790.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/horticulture-08/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/horticulture-08/our-produce/\";s:15:\"astra-sites-tag\";a:1:{i:1606;s:12:\"our-products\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47728\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-testimonials-1.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-testimonials-1-600x1433.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/horticulture-08/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/horticulture-08/testimonials/\";s:15:\"astra-sites-tag\";a:3:{i:1738;s:9:\"feedbacks\";i:432;s:6:\"review\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47724\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/horticulture-08-contact-600x1263.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/horticulture-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/horticulture-08/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55500\";a:22:{s:5:\"title\";s:6:\"School\";s:2:\"id\";i:55500;s:12:\"publish-date\";i:1622059216;s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08-600x2968.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08-400x1978.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/school-08\";s:20:\"astra-site-parent-id\";i:2147;s:15:\"astra-sites-tag\";a:10:{i:2154;s:9:\"academics\";i:610;s:8:\"coaching\";i:2156;s:7:\"daycare\";i:459;s:9:\"education\";i:2158;s:8:\"educator\";i:2155;s:11:\"high-school\";i:617;s:12:\"kindergarten\";i:2157;s:9:\"preschool\";i:456;s:6:\"school\";i:458;s:10:\"university\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:39;s:4:\"free\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:4:{i:2840;s:18:\"college-university\";i:2772;s:9:\"education\";i:2862;s:22:\"preschool-kindergarten\";i:2782;s:6:\"school\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2491;s:22:\"educational-institutes\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-55504\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08-contact-1-600x615.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/school-08/wp-json/wp/v2/pages/117\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/school-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55501\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08-about-1-600x1294.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/school-08/wp-json/wp/v2/pages/62\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/school-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55502\";a:12:{s:5:\"title\";s:9:\"Academics\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08academics.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08academics-600x1776.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/school-08/wp-json/wp/v2/pages/79\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/school-08/academics/\";s:15:\"astra-sites-tag\";a:1:{i:2114;s:8:\"academic\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55503\";a:12:{s:5:\"title\";s:10:\"Activities\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08-activities-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08-activities-1-600x1121.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/school-08/wp-json/wp/v2/pages/102\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/school-08/activities/\";s:15:\"astra-sites-tag\";a:1:{i:1922;s:10:\"activities\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55505\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/school-08-600x2968.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/school-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/school-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48472\";a:22:{s:5:\"title\";s:13:\"e-book Author\";s:2:\"id\";i:48472;s:12:\"publish-date\";i:1603931209;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-1-600x2338.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-1-400x1558.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/ebook-author-08\";s:20:\"astra-site-parent-id\";i:1739;s:15:\"astra-sites-tag\";a:4:{i:724;s:6:\"author\";i:727;s:4:\"book\";i:748;s:5:\"ebook\";i:725;s:6:\"writer\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48473\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-about-1-600x1605.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/ebook-author-08/wp-json/wp/v2/pages/252\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/ebook-author-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48474\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-contact-1-600x724.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/ebook-author-08/wp-json/wp/v2/pages/258\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/ebook-author-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48475\";a:12:{s:5:\"title\";s:7:\"e-Books\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-ebooks.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-ebooks-600x1344.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/ebook-author-08/wp-json/wp/v2/pages/254\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/ebook-author-08/e-books/\";s:15:\"astra-sites-tag\";a:2:{i:1740;s:5:\"books\";i:748;s:5:\"ebook\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48476\";a:12:{s:5:\"title\";s:6:\"Events\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-events-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-events-1-600x1355.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/ebook-author-08/wp-json/wp/v2/pages/256\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/ebook-author-08/events/\";s:15:\"astra-sites-tag\";a:1:{i:1569;s:6:\"events\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48477\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/ebook-author-08-1-600x2338.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/ebook-author-08/wp-json/wp/v2/pages/250\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/ebook-author-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47979\";a:22:{s:5:\"title\";s:14:\"BBQ Restaurant\";s:2:\"id\";i:47979;s:12:\"publish-date\";i:1603828775;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/bbq-restaurant-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/bbq-restaurant-08-600x2555.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/bbq-restaurant-08-400x1703.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/bbq-restaurant-08\";s:20:\"astra-site-parent-id\";i:1690;s:15:\"astra-sites-tag\";a:10:{i:566;s:14:\"bbq-restaurant\";i:562;s:6:\"bistro\";i:972;s:4:\"club\";i:560;s:7:\"cuisine\";i:561;s:6:\"eatery\";i:336;s:4:\"food\";i:350;s:5:\"hotel\";i:559;s:6:\"outlet\";i:335;s:10:\"restaurant\";i:970;s:6:\"restro\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-47982\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/bbq-restaurant-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/bbq-restaurant-08-600x2555.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/bbq-restaurant-08/wp-json/wp/v2/pages/531\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/bbq-restaurant-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47980\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/bbq-restaurant-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/bbq-restaurant-08-about-us-600x2062.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/bbq-restaurant-08/wp-json/wp/v2/pages/533\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/bbq-restaurant-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47983\";a:12:{s:5:\"title\";s:4:\"Menu\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/bbq-restaurant-08-menu-2.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/bbq-restaurant-08-menu-2-600x1886.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/bbq-restaurant-08/wp-json/wp/v2/pages/535\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/bbq-restaurant-08/menu/\";s:15:\"astra-sites-tag\";a:2:{i:1579;s:9:\"food-menu\";i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47981\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/bbq-restaurant-08-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/bbq-restaurant-08-contact-us-600x1571.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/bbq-restaurant-08/wp-json/wp/v2/pages/537\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/bbq-restaurant-08/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48631\";a:22:{s:5:\"title\";s:15:\"Yoga Instructor\";s:2:\"id\";i:48631;s:12:\"publish-date\";i:1603984609;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08-600x2239.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08-400x1493.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/yoga-instructor-08\";s:20:\"astra-site-parent-id\";i:1753;s:15:\"astra-sites-tag\";a:7:{i:499;s:7:\"fitness\";i:976;s:14:\"gym-instructor\";i:849;s:11:\"health-yoga\";i:1020;s:8:\"personal\";i:395;s:15:\"yoga-instructor\";i:397;s:11:\"yoga-studio\";i:398;s:12:\"yoga-trainer\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2787;s:11:\"gym-fitness\";i:2770;s:8:\"personal\";i:2808;s:4:\"yoga\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2480;s:16:\"fitness-wellness\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48635\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08-600x2239.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/yoga-instructor-08/wp-json/wp/v2/pages/51\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/yoga-instructor-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48632\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08-about-me-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08-about-me-1-600x1297.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/yoga-instructor-08/wp-json/wp/v2/pages/52\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/yoga-instructor-08/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48633\";a:12:{s:5:\"title\";s:7:\"Classes\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08-classes-1.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08-classes-1-600x1746.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/yoga-instructor-08/wp-json/wp/v2/pages/53\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/yoga-instructor-08/classes/\";s:15:\"astra-sites-tag\";a:1:{i:557;s:7:\"classes\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48636\";a:12:{s:5:\"title\";s:12:\"Publications\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08-publications-1.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08-publications-1-600x1082.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/yoga-instructor-08/wp-json/wp/v2/pages/54\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/yoga-instructor-08/publications/\";s:15:\"astra-sites-tag\";a:1:{i:558;s:11:\"publication\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48634\";a:12:{s:5:\"title\";s:7:\"Get Fit\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08-get-fit-1.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/yoga-instructor-08-get-fit-1-600x1079.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/yoga-instructor-08/wp-json/wp/v2/pages/55\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/yoga-instructor-08/get-fit/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-49936\";a:22:{s:5:\"title\";s:11:\"Recipe Blog\";s:2:\"id\";i:49936;s:12:\"publish-date\";i:1614595588;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/03/recipe-blog-08-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/03/recipe-blog-08-1-600x1623.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/03/recipe-blog-08-1-400x1082.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/recipe-blog-08\";s:20:\"astra-site-parent-id\";i:1858;s:15:\"astra-sites-tag\";a:5:{i:792;s:7:\"cooking\";i:787;s:6:\"dinner\";i:336;s:4:\"food\";i:793;s:11:\"food-making\";i:788;s:5:\"snack\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:37;s:4:\"blog\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2828;s:4:\"blog\";i:2785;s:4:\"food\";i:2770;s:8:\"personal\";i:2776;s:10:\"restaurant\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-49940\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/03/recipe-blog-08-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/03/recipe-blog-08-1-600x1623.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/recipe-blog-08/wp-json/wp/v2/pages/1055\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/recipe-blog-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-49937\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/03/recipe-blog-08-about-me-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/03/recipe-blog-08-about-me-1-600x897.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/recipe-blog-08/wp-json/wp/v2/pages/1071\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/recipe-blog-08/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:1007;s:8:\"about-me\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-49938\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/03/recipe-blog-08-blog-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/03/recipe-blog-08-blog-1-600x1429.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/recipe-blog-08/wp-json/wp/v2/pages/1067\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/recipe-blog-08/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-49939\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/03/recipe-blog-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/03/recipe-blog-08-contact-1-600x758.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/recipe-blog-08/wp-json/wp/v2/pages/1074\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/recipe-blog-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48591\";a:22:{s:5:\"title\";s:15:\"Cosmetics Store\";s:2:\"id\";i:48591;s:12:\"publish-date\";i:1603984615;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/cosmetics-store-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/cosmetics-store-08-600x2401.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/cosmetics-store-08-400x1601.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/cosmetics-store-08\";s:20:\"astra-site-parent-id\";i:1748;s:15:\"astra-sites-tag\";a:7:{i:1023;s:6:\"beauty\";i:1465;s:15:\"beauty-products\";i:1466;s:17:\"cosmetic-products\";i:1464;s:14:\"cosmetic-store\";i:1463;s:9:\"cosmetics\";i:496;s:9:\"ecommerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:27:\"checkout-plugins-stripe-woo\";s:4:\"init\";s:59:\"checkout-plugins-stripe-woo/checkout-plugins-stripe-woo.php\";s:4:\"name\";s:41:\"Checkout Plugins - Stripe for WooCommerce\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:4;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-48594\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/cosmetics-store-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/cosmetics-store-08-600x2401.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/cosmetics-store-08/wp-json/wp/v2/pages/542\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/cosmetics-store-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48592\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/cosmetics-store-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/cosmetics-store-08-about-1-600x1218.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/cosmetics-store-08/wp-json/wp/v2/pages/545\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/cosmetics-store-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48595\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/cosmetics-store-08-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2020/10/cosmetics-store-08-testimonials-600x1164.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/cosmetics-store-08/wp-json/wp/v2/pages/544\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/cosmetics-store-08/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48593\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/cosmetics-store-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/cosmetics-store-08-contact-1-600x1187.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/cosmetics-store-08/wp-json/wp/v2/pages/546\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/cosmetics-store-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48318\";a:22:{s:5:\"title\";s:12:\"Nutritionist\";s:2:\"id\";i:48318;s:12:\"publish-date\";i:1603908961;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-600x2730.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-400x1820.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/nutritionist-08\";s:20:\"astra-site-parent-id\";i:1722;s:15:\"astra-sites-tag\";a:6:{i:753;s:9:\"dietitian\";i:1726;s:15:\"nutrition-coach\";i:1727;s:18:\"nutrition-coaching\";i:1725;s:17:\"nutrition-trainer\";i:754;s:12:\"nutritionist\";i:1454;s:16:\"personal-trainer\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2480;s:16:\"fitness-wellness\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-69529\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-blog.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-blog-600x1061.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/nutritionist-08/wp-json/wp/v2/pages/728\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/nutritionist-08/blog/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48321\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-600x2730.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/nutritionist-08/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/nutritionist-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48319\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-about-1-600x1230.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/nutritionist-08/wp-json/wp/v2/pages/134\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/nutritionist-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:0:{}}s:8:\"id-48322\";a:12:{s:5:\"title\";s:8:\"Programs\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-programs.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-programs-600x1480.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/nutritionist-08/wp-json/wp/v2/pages/164\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/nutritionist-08/programs/\";s:15:\"astra-sites-tag\";a:1:{i:989;s:8:\"programs\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48323\";a:12:{s:5:\"title\";s:15:\"Success Stories\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-success-stories-1.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-success-stories-1-600x942.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/nutritionist-08/wp-json/wp/v2/pages/180\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/nutritionist-08/success-stories/\";s:15:\"astra-sites-tag\";a:3:{i:432;s:6:\"review\";i:990;s:15:\"success-stories\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48320\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/nutritionist-08-contact-1-600x808.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/nutritionist-08/wp-json/wp/v2/pages/196\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/nutritionist-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-49726\";a:22:{s:5:\"title\";s:12:\"Entrepreneur\";s:2:\"id\";i:49726;s:12:\"publish-date\";i:1612274657;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/02/entrepreneur-08.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/02/entrepreneur-08.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/02/entrepreneur-08.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/entrepreneur-08\";s:20:\"astra-site-parent-id\";i:1847;s:15:\"astra-sites-tag\";a:7:{i:795;s:10:\"contractor\";i:1848;s:12:\"entrepreneur\";i:796;s:9:\"executive\";i:801;s:7:\"founder\";i:798;s:7:\"manager\";i:799;s:9:\"organizer\";i:804;s:8:\"promoter\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:29:\"Ultimate Addons for Gutenberg\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-49727\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/02/entrepreneur-08-about-me.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/02/entrepreneur-08-about-me.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/entrepreneur-08/wp-json/wp/v2/pages/25265\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/entrepreneur-08/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:1007;s:8:\"about-me\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:0:{}}s:8:\"id-49728\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/02/entrepreneur-08-blog.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/02/entrepreneur-08-blog.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/entrepreneur-08/wp-json/wp/v2/pages/25266\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/entrepreneur-08/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:0:{}}s:8:\"id-49729\";a:12:{s:5:\"title\";s:10:\"Contact Me\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/02/entrepreneur-08-contact-me.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/02/entrepreneur-08-contact-me.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/entrepreneur-08/wp-json/wp/v2/pages/25267\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/entrepreneur-08/contact-me/\";s:15:\"astra-sites-tag\";a:1:{i:1009;s:10:\"contact-me\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-49730\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/02/entrepreneur-08.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/02/entrepreneur-08.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/entrepreneur-08/wp-json/wp/v2/pages/25264\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/entrepreneur-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:0:{}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48076\";a:22:{s:5:\"title\";s:24:\"Personal Fitness Trainer\";s:2:\"id\";i:48076;s:12:\"publish-date\";i:1603893488;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/fitness-trainer-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/fitness-trainer-08-600x3142.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/fitness-trainer-08-400x2094.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/fitness-trainer-08\";s:20:\"astra-site-parent-id\";i:1697;s:15:\"astra-sites-tag\";a:9:{i:502;s:8:\"exercise\";i:499;s:7:\"fitness\";i:506;s:19:\"functional-training\";i:500;s:3:\"gym\";i:504;s:11:\"gym-trainer\";i:399;s:8:\"one-page\";i:463;s:11:\"single-page\";i:503;s:7:\"trainer\";i:501;s:8:\"work-out\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2480;s:16:\"fitness-wellness\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-48077\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/fitness-trainer-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/fitness-trainer-08-600x3142.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/fitness-trainer-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/fitness-trainer-08/\";s:15:\"astra-sites-tag\";a:3:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";i:463;s:11:\"single-page\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-56682\";a:22:{s:5:\"title\";s:20:\"Chartered Accountant\";s:2:\"id\";i:56682;s:12:\"publish-date\";i:1614963624;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-600x2501.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-400x1667.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/accountant-08\";s:20:\"astra-site-parent-id\";i:2252;s:15:\"astra-sites-tag\";a:3:{i:447;s:10:\"accountant\";i:449;s:20:\"chartered-accountant\";i:2254;s:22:\"finance-and-accounting\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2481;s:15:\"finance-service\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-56683\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-about.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-about-600x1203.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/accountant-08/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/accountant-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56684\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-contact-600x975.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/accountant-08/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/accountant-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56685\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-600x2501.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/accountant-08/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/accountant-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56686\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-services.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-services-600x1364.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/accountant-08/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/accountant-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56687\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-testimonials-600x1326.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/accountant-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/accountant-08/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56688\";a:12:{s:5:\"title\";s:13:\"Why Choose Me\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-why-choose-me.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2021/03/accountant-08-why-choose-me-600x1040.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/accountant-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/accountant-08/why-choose-me/\";s:15:\"astra-sites-tag\";a:3:{i:453;s:8:\"features\";i:760;s:13:\"why-choose-us\";i:852;s:6:\"why-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48490\";a:22:{s:5:\"title\";s:14:\"Animal Welfare\";s:2:\"id\";i:48490;s:12:\"publish-date\";i:1603984632;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08-600x2724.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08-400x1816.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/animal-welfare-08\";s:20:\"astra-site-parent-id\";i:1741;s:15:\"astra-sites-tag\";a:7:{i:625;s:7:\"charity\";i:735;s:6:\"donate\";i:1013;s:8:\"donation\";i:624;s:10:\"foundation\";i:1482;s:6:\"givewp\";i:745;s:12:\"organization\";i:1012;s:7:\"welfare\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:39;s:4:\"free\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2492;s:10:\"non-profit\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:4:\"give\";s:4:\"init\";s:13:\"give/give.php\";s:4:\"name\";s:22:\"Give - Donation Plugin\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:3;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:13:{s:8:\"id-57933\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1485\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/animal-welfare-08/donor-dashboard/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-57934\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1486\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/animal-welfare-08/donor-dashboard-2/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-57935\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1488\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/animal-welfare-08/donor-dashboard-3/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-57936\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1489\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:57:\"//websitedemos.net/animal-welfare-08/donor-dashboard-3-5/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-57937\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1490\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:57:\"//websitedemos.net/animal-welfare-08/donor-dashboard-3-4/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-57938\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1491\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:57:\"//websitedemos.net/animal-welfare-08/donor-dashboard-3-3/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-57939\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1492\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:57:\"//websitedemos.net/animal-welfare-08/donor-dashboard-3-2/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-57940\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1493\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/animal-welfare-08/donor-dashboard-4/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-48493\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08-600x2724.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1026\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/animal-welfare-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48491\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08-about-1-600x1695.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1027\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/animal-welfare-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48494\";a:12:{s:5:\"title\";s:17:\"See All Campaigns\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08-see-all-campaigns.jpg\";s:19:\"thumbnail-image-url\";s:100:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08-see-all-campaigns-600x1711.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1028\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/animal-welfare-08/see-all-campaigns/\";s:15:\"astra-sites-tag\";a:1:{i:1479;s:9:\"campaigns\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:4:\"give\";s:4:\"init\";s:13:\"give/give.php\";s:4:\"name\";s:22:\"Give - Donation Plugin\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48495\";a:12:{s:5:\"title\";s:17:\"Star Contributors\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08-star-contributor.jpg\";s:19:\"thumbnail-image-url\";s:99:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08-star-contributor-600x1625.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1029\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/animal-welfare-08/star-contributors/\";s:15:\"astra-sites-tag\";a:2:{i:1014;s:10:\"contribute\";i:1481;s:11:\"star-donors\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:4:\"give\";s:4:\"init\";s:13:\"give/give.php\";s:4:\"name\";s:22:\"Give - Donation Plugin\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48492\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/animal-welfare-08-contact-1-600x1230.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/animal-welfare-08/wp-json/wp/v2/pages/1030\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/animal-welfare-08/contact/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48442\";a:22:{s:5:\"title\";s:14:\"Dentist Clinic\";s:2:\"id\";i:48442;s:12:\"publish-date\";i:1603913248;s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/10/dentist-08-1.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/dentist-08-1-600x2480.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/dentist-08-1-400x1653.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/dentist-08\";s:20:\"astra-site-parent-id\";i:1733;s:15:\"astra-sites-tag\";a:3:{i:338;s:6:\"dental\";i:623;s:7:\"dentist\";i:1734;s:14:\"dentist-clinic\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2490;s:10:\"healthcare\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-48443\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/10/dentist-08-1.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/dentist-08-1-600x2480.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/dentist-08/wp-json/wp/v2/pages/409\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/dentist-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(237,'ast-block-templates-site-requests','2','no'),(238,'ast-block-templates-blocks-1','a:100:{s:8:\"id-58234\";a:10:{s:5:\"title\";s:18:\"About Wireframe 08\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/09/about-wireframe-08.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/09/about-wireframe-08.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/about-wireframe-08/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:825;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-58227\";a:10:{s:5:\"title\";s:21:\"Services Wireframe 08\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/09/services-wireframe-08.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/09/services-wireframe-08.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/services-wireframe-08/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:952;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-58226\";a:10:{s:5:\"title\";s:21:\"Services Wireframe 07\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/09/services-wireframe-07.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/09/services-wireframe-07.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/services-wireframe-07/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:952;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-58207\";a:10:{s:5:\"title\";s:21:\"Features Wireframe 08\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/09/features-wireframe-08-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/09/features-wireframe-08-1-400x210.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/features-wireframe-08/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:919;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-58206\";a:10:{s:5:\"title\";s:21:\"Features Wireframe 07\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/09/features-wireframe-07-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/09/features-wireframe-07-1-400x216.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/features-wireframe-07/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:919;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-58156\";a:10:{s:5:\"title\";s:17:\"Hero Wireframe 06\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/09/hero-wireframe-06-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/09/hero-wireframe-06-1-400x194.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/hero-wireframe-06/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:831;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-58129\";a:10:{s:5:\"title\";s:17:\"Hero Wireframe 05\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/09/hero-wireframe-05-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/09/hero-wireframe-05-1-400x214.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/hero-wireframe-05/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:831;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-58118\";a:10:{s:5:\"title\";s:22:\"Portfolio Wireframe 06\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/09/portfolio-wireframe-06-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/09/portfolio-wireframe-06-1-400x258.jpg\";s:3:\"url\";s:61:\"https://websitedemos.net/astra-blocks/portfolio-wireframe-06/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:1425;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-58117\";a:10:{s:5:\"title\";s:22:\"Portfolio Wireframe 05\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/09/portfolio-wireframe-05-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/09/portfolio-wireframe-05-1-400x270.jpg\";s:3:\"url\";s:61:\"https://websitedemos.net/astra-blocks/portfolio-wireframe-05/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:1425;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-58103\";a:10:{s:5:\"title\";s:17:\"Team Wireframe 06\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/09/team-wireframe-06.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/09/team-wireframe-06-400x178.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/team-wireframe-06/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:829;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-58095\";a:10:{s:5:\"title\";s:17:\"Team Wireframe 05\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/09/team-wireframe-05.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/09/team-wireframe-05-400x166.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/team-wireframe-05/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:829;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-58068\";a:10:{s:5:\"title\";s:18:\"About Wireframe 07\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/09/about-wireframe-07-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/09/about-wireframe-07-1-400x139.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/about-wireframe-07/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:825;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57769\";a:10:{s:5:\"title\";s:22:\"Portfolio Wireframe 04\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/08/portfolio-wireframe-04-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/08/portfolio-wireframe-04-1-400x239.jpg\";s:3:\"url\";s:61:\"https://websitedemos.net/astra-blocks/portfolio-wireframe-04/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:1425;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57768\";a:10:{s:5:\"title\";s:22:\"Portfolio Wireframe 03\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/08/portfolio-wireframe-03-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/08/portfolio-wireframe-03-1-400x229.jpg\";s:3:\"url\";s:61:\"https://websitedemos.net/astra-blocks/portfolio-wireframe-03/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:1425;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57747\";a:10:{s:5:\"title\";s:22:\"Portfolio Wireframe 02\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/08/portfolio-wireframe-02-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/08/portfolio-wireframe-02-1-400x238.jpg\";s:3:\"url\";s:61:\"https://websitedemos.net/astra-blocks/portfolio-wireframe-02/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:1425;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57746\";a:10:{s:5:\"title\";s:22:\"Portfolio Wireframe 01\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/08/portfolio-wireframe-01-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/08/portfolio-wireframe-01-1-400x220.jpg\";s:3:\"url\";s:61:\"https://websitedemos.net/astra-blocks/portfolio-wireframe-01/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:1425;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57722\";a:10:{s:5:\"title\";s:17:\"Team Wireframe 04\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/08/team-wireframe-04.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/08/team-wireframe-04.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/team-wireframe-04/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:829;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57721\";a:10:{s:5:\"title\";s:17:\"Team Wireframe 03\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/08/team-wireframe-03.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/08/team-wireframe-03.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/team-wireframe-03/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:829;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57709\";a:10:{s:5:\"title\";s:17:\"Team Wireframe 02\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/08/team-wireframe-02-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/08/team-wireframe-02-1-400x246.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/team-wireframe-02/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:829;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57708\";a:10:{s:5:\"title\";s:17:\"Team Wireframe 01\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/08/team-wireframe-01-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/08/team-wireframe-01-1-400x233.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/team-wireframe-01/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:829;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57697\";a:10:{s:5:\"title\";s:24:\"Testimonial Wireframe 04\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/08/testimonial-wireframe-04.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/08/testimonial-wireframe-04.jpg\";s:3:\"url\";s:63:\"https://websitedemos.net/astra-blocks/testimonial-wireframe-04/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:830;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57696\";a:10:{s:5:\"title\";s:24:\"Testimonial Wireframe 03\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/08/testimonial-wireframe-03.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/08/testimonial-wireframe-03.jpg\";s:3:\"url\";s:63:\"https://websitedemos.net/astra-blocks/testimonial-wireframe-03/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:830;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57689\";a:10:{s:5:\"title\";s:24:\"Testimonial Wireframe 02\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/08/testimonial-wireframe-02.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/08/testimonial-wireframe-02.jpg\";s:3:\"url\";s:63:\"https://websitedemos.net/astra-blocks/testimonial-wireframe-02/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:830;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57688\";a:10:{s:5:\"title\";s:24:\"Testimonial Wireframe 01\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/08/testimonial-wireframe-01.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/08/testimonial-wireframe-01.jpg\";s:3:\"url\";s:63:\"https://websitedemos.net/astra-blocks/testimonial-wireframe-01/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:830;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57661\";a:10:{s:5:\"title\";s:21:\"Services Wireframe 06\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/08/services-wireframe-06-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/08/services-wireframe-06-1-400x279.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/services-wireframe-06/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:952;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57660\";a:10:{s:5:\"title\";s:21:\"Services Wireframe 05\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/08/services-wireframe-05-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/08/services-wireframe-05-1-400x254.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/services-wireframe-05/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:952;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57648\";a:10:{s:5:\"title\";s:21:\"Services Wireframe 04\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/08/services-wireframe-04-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/08/services-wireframe-04-1-400x257.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/services-wireframe-04/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:952;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57647\";a:10:{s:5:\"title\";s:21:\"Services Wireframe 03\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/08/services-wireframe-03-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/08/services-wireframe-03-1-400x241.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/services-wireframe-03/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:952;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57637\";a:10:{s:5:\"title\";s:21:\"Services Wireframe 02\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/08/services-wireframe-02.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/08/services-wireframe-02.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/services-wireframe-02/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:952;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57636\";a:10:{s:5:\"title\";s:21:\"Services Wireframe 01\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/08/services-wireframe-01.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/08/services-wireframe-01.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/services-wireframe-01/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:952;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57626\";a:10:{s:5:\"title\";s:21:\"Features Wireframe 06\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/08/features-wireframe-06-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/08/features-wireframe-06-1-400x246.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/features-wireframe-06/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:919;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57625\";a:10:{s:5:\"title\";s:21:\"Features Wireframe 05\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/08/features-wireframe-05-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/08/features-wireframe-05-1-400x209.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/features-wireframe-05/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:919;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57616\";a:10:{s:5:\"title\";s:21:\"Features Wireframe 04\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/08/features-wireframe-04-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/08/features-wireframe-04-1-400x183.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/features-wireframe-04/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:919;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57614\";a:10:{s:5:\"title\";s:21:\"Features Wireframe 03\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/08/features-wireframe-03-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/08/features-wireframe-03-1-400x159.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/features-wireframe-03/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:919;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57605\";a:10:{s:5:\"title\";s:21:\"Features Wireframe 02\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/08/features-wireframe-02-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/08/features-wireframe-02-1-400x202.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/features-wireframe-02/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:919;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57604\";a:10:{s:5:\"title\";s:21:\"Features Wireframe 01\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/08/features-wireframe-01-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/08/features-wireframe-01-1-400x175.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/features-wireframe-01/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:919;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57590\";a:10:{s:5:\"title\";s:17:\"FAQs Wireframe 06\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/08/faqs-wireframe-06.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/08/faqs-wireframe-06.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/faqs-wireframe-06/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:1001;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57589\";a:10:{s:5:\"title\";s:17:\"FAQs Wireframe 05\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/08/faqs-wireframe-05.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/08/faqs-wireframe-05.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/faqs-wireframe-05/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:1001;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57567\";a:10:{s:5:\"title\";s:17:\"FAQs Wireframe 03\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/08/faqs-wireframe-03-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/08/faqs-wireframe-03-1-400x247.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/faqs-wireframe-03/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:1001;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57568\";a:10:{s:5:\"title\";s:17:\"FAQs Wireframe 04\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/08/faqs-wireframe-04-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/08/faqs-wireframe-04-1-400x260.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/faqs-wireframe-04/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:1001;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57561\";a:10:{s:5:\"title\";s:17:\"FAQs Wireframe 02\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/08/faqs-wireframe-02.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/08/faqs-wireframe-02.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/faqs-wireframe-02/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:1001;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57560\";a:10:{s:5:\"title\";s:17:\"FAQs Wireframe 01\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/08/faqs-wireframe-01.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/08/faqs-wireframe-01.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/faqs-wireframe-01/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:1001;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57535\";a:10:{s:5:\"title\";s:27:\"Call To Action Wireframe 06\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/08/call-to-action-wireframe-06.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/08/call-to-action-wireframe-06.jpg\";s:3:\"url\";s:66:\"https://websitedemos.net/astra-blocks/call-to-action-wireframe-06/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:832;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57534\";a:10:{s:5:\"title\";s:27:\"Call To Action Wireframe 05\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/08/call-to-action-wireframe-05-1.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2021/08/call-to-action-wireframe-05-1-400x120.jpg\";s:3:\"url\";s:66:\"https://websitedemos.net/astra-blocks/call-to-action-wireframe-05/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:832;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57533\";a:10:{s:5:\"title\";s:27:\"Call To Action Wireframe 04\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/08/call-to-action-wireframe-04.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/08/call-to-action-wireframe-04.jpg\";s:3:\"url\";s:66:\"https://websitedemos.net/astra-blocks/call-to-action-wireframe-04/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:832;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57530\";a:10:{s:5:\"title\";s:27:\"Call To Action Wireframe 03\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/08/call-to-action-wireframe-03-1.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2021/08/call-to-action-wireframe-03-1-400x94.jpg\";s:3:\"url\";s:66:\"https://websitedemos.net/astra-blocks/call-to-action-wireframe-03/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:832;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57512\";a:10:{s:5:\"title\";s:18:\"About Wireframe 05\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/08/about-wireframe-05-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/08/about-wireframe-05-1-400x131.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/about-wireframe-05/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:825;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57532\";a:10:{s:5:\"title\";s:27:\"Call To Action Wireframe 02\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/08/call-to-action-wireframe-02.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/08/call-to-action-wireframe-02.jpg\";s:3:\"url\";s:66:\"https://websitedemos.net/astra-blocks/call-to-action-wireframe-02/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:832;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57531\";a:10:{s:5:\"title\";s:27:\"Call To Action Wireframe 01\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/08/call-to-action-wireframe-01-1.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2021/08/call-to-action-wireframe-01-1-400x94.jpg\";s:3:\"url\";s:66:\"https://websitedemos.net/astra-blocks/call-to-action-wireframe-01/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:832;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57513\";a:10:{s:5:\"title\";s:18:\"About Wireframe 06\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/08/about-wireframe-06-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/08/about-wireframe-06-1-400x131.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/about-wireframe-06/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:825;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57504\";a:10:{s:5:\"title\";s:18:\"About Wireframe 03\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/08/about-wireframe-03-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/08/about-wireframe-03-1-400x177.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/about-wireframe-03/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:825;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57505\";a:10:{s:5:\"title\";s:18:\"About Wireframe 04\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/08/about-wireframe-04-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/08/about-wireframe-04-1-400x176.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/about-wireframe-04/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:825;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57502\";a:10:{s:5:\"title\";s:18:\"About Wireframe 02\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/08/about-wireframe-02-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/08/about-wireframe-02-1-400x176.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/about-wireframe-02/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:825;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57496\";a:10:{s:5:\"title\";s:18:\"About Wireframe 01\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/08/about-wireframe-01-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/08/about-wireframe-01-1-400x179.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/about-wireframe-01/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:825;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57483\";a:10:{s:5:\"title\";s:17:\"Hero Wireframe 03\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/08/hero-wireframe-03-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/08/hero-wireframe-03-1-400x282.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/hero-wireframe-03/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:831;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57484\";a:10:{s:5:\"title\";s:17:\"Hero Wireframe 04\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/08/hero-wireframe-04-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/08/hero-wireframe-04-1-400x286.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/hero-wireframe-04/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:831;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57476\";a:10:{s:5:\"title\";s:17:\"Hero Wireframe 02\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/08/hero-wireframe-02-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/08/hero-wireframe-02-1-400x209.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/hero-wireframe-02/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:831;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-57467\";a:10:{s:5:\"title\";s:17:\"Hero Wireframe 01\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/08/hero-wireframe-01-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/08/hero-wireframe-01-1-400x220.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/hero-wireframe-01/\";s:3:\"tag\";a:0:{}s:8:\"category\";i:831;s:9:\"wireframe\";a:1:{i:2330;s:7:\"enabled\";}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56233\";a:10:{s:5:\"title\";s:7:\"Hero 10\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/07/hero-10.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/07/hero-10.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/hero-10b-2/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56151\";a:10:{s:5:\"title\";s:11:\"Features 21\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/07/features-21g.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/07/features-21g.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/features-21g/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56152\";a:10:{s:5:\"title\";s:11:\"Features 22\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/07/features-22g.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/07/features-22g.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/features-22g/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56134\";a:10:{s:5:\"title\";s:11:\"Features 19\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/06/features-19g.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/06/features-19g.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/features-19g/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56135\";a:10:{s:5:\"title\";s:11:\"Features 20\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/06/features-20g.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/06/features-20g.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/features-20g/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56133\";a:10:{s:5:\"title\";s:11:\"Features 18\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/06/features-18g.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/06/features-18g.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/features-18g/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56119\";a:10:{s:5:\"title\";s:11:\"Features 15\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/06/features-15g.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/06/features-15g.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/features-15g/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56121\";a:10:{s:5:\"title\";s:11:\"Features 17\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/06/features-17g.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/06/features-17g.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/features-17g/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56120\";a:10:{s:5:\"title\";s:11:\"Features 16\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/06/features-16g.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/06/features-16g.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/features-16g/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56113\";a:10:{s:5:\"title\";s:11:\"Features 14\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/06/features-14g.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/06/features-14g.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/features-14g/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56101\";a:10:{s:5:\"title\";s:11:\"Features 13\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/06/features-13g.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/06/features-13g.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/features-13g/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56100\";a:10:{s:5:\"title\";s:11:\"Features 12\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/06/features-12g.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/06/features-12g.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/features-12g/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56074\";a:10:{s:5:\"title\";s:7:\"Text 15\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/text-15.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/text-15.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/text-15g/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56061\";a:10:{s:5:\"title\";s:7:\"Text 14\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/text-14.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/text-14.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/text-14g/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56060\";a:10:{s:5:\"title\";s:7:\"Text 13\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/text-13.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/text-13.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/text-13g/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56048\";a:10:{s:5:\"title\";s:7:\"Text 12\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/text-12.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/text-12.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/text-12g/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56047\";a:10:{s:5:\"title\";s:7:\"Text 11\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/text-11.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/text-11.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/text-11g/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56164\";a:10:{s:5:\"title\";s:9:\"Heading 6\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/07/heading-6g.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/07/heading-6g.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/heading-6g/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56165\";a:10:{s:5:\"title\";s:9:\"Heading 7\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/07/heading-7g.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/07/heading-7g.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/heading-7g/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56231\";a:10:{s:5:\"title\";s:6:\"Hero 7\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/07/hero-7.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/07/hero-7.jpg\";s:3:\"url\";s:48:\"https://websitedemos.net/astra-blocks/hero-7b-2/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56232\";a:10:{s:5:\"title\";s:6:\"Hero 9\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/07/hero-9.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/07/hero-9.jpg\";s:3:\"url\";s:48:\"https://websitedemos.net/astra-blocks/hero-9b-2/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56238\";a:10:{s:5:\"title\";s:7:\"Text 18\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/text-18.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/text-18.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/text-18g/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56237\";a:10:{s:5:\"title\";s:7:\"Text 17\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/text-17.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/text-17.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/text-17g/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56226\";a:10:{s:5:\"title\";s:7:\"Text 16\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/text-16.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/text-16.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/text-16g/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56209\";a:10:{s:5:\"title\";s:14:\"Contact Form 6\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/contact-form-6g.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/contact-form-6g.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/contact-form-6g/\";s:3:\"tag\";a:2:{i:823;s:7:\"contact\";i:1955;s:12:\"contact-form\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56208\";a:10:{s:5:\"title\";s:14:\"Contact Form 5\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/contact-form-5g.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/contact-form-5g.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/contact-form-5g/\";s:3:\"tag\";a:2:{i:823;s:7:\"contact\";i:1955;s:12:\"contact-form\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56210\";a:10:{s:5:\"title\";s:14:\"Contact Form 7\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/contact-form-7g.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/contact-form-7g.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/contact-form-7g/\";s:3:\"tag\";a:2:{i:823;s:7:\"contact\";i:1955;s:12:\"contact-form\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56193\";a:10:{s:5:\"title\";s:9:\"Contact 7\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/06/contact-7g.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/06/contact-7g.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/contact-7g/\";s:3:\"tag\";a:2:{i:823;s:7:\"contact\";i:1955;s:12:\"contact-form\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56211\";a:10:{s:5:\"title\";s:14:\"Contact Form 8\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/contact-form-8g.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/contact-form-8g.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/contact-form-8g/\";s:3:\"tag\";a:2:{i:823;s:7:\"contact\";i:1955;s:12:\"contact-form\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56195\";a:10:{s:5:\"title\";s:9:\"Contact 9\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/06/contact-9g.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/06/contact-9g.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/contact-9g/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56194\";a:10:{s:5:\"title\";s:9:\"Contact 8\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/06/contact-8g.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/06/contact-8g.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/contact-8g/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56192\";a:10:{s:5:\"title\";s:9:\"Contact 6\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/06/contact-6g.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/06/contact-6g.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/contact-6g/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56169\";a:10:{s:5:\"title\";s:10:\"Heading 10\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/07/heading-10g.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/07/heading-10g.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/heading-10g/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56168\";a:10:{s:5:\"title\";s:9:\"Heading 9\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/07/heading-9g.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/07/heading-9g.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/heading-9g/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56167\";a:10:{s:5:\"title\";s:9:\"Heading 8\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/07/heading-8g.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/07/heading-8g.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/heading-8g/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56046\";a:10:{s:5:\"title\";s:7:\"Text 10\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/text-10.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/text-10.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/text-10g/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56037\";a:10:{s:5:\"title\";s:6:\"FAQ 10\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/faq-10g.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/faq-10g.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/faq-10g/\";s:3:\"tag\";a:1:{i:822;s:3:\"faq\";}s:8:\"category\";i:1001;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-55980\";a:10:{s:5:\"title\";s:8:\"About 25\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/07/about-25g.jpg\";s:19:\"thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/07/about-25g.jpg\";s:3:\"url\";s:48:\"https://websitedemos.net/astra-blocks/about-25g/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-55976\";a:10:{s:5:\"title\";s:8:\"About 24\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/07/about-24g.jpg\";s:19:\"thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/07/about-24g.jpg\";s:3:\"url\";s:48:\"https://websitedemos.net/astra-blocks/about-24g/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-55975\";a:10:{s:5:\"title\";s:8:\"About 23\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/07/about-23g.jpg\";s:19:\"thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/07/about-23g.jpg\";s:3:\"url\";s:48:\"https://websitedemos.net/astra-blocks/about-23g/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-55967\";a:10:{s:5:\"title\";s:8:\"About 22\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/07/about-22g.jpg\";s:19:\"thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/07/about-22g.jpg\";s:3:\"url\";s:48:\"https://websitedemos.net/astra-blocks/about-22g/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-55966\";a:10:{s:5:\"title\";s:8:\"About 21\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/07/about-21g.jpg\";s:19:\"thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/07/about-21g.jpg\";s:3:\"url\";s:48:\"https://websitedemos.net/astra-blocks/about-21g/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}}','no'),(239,'ast-block-templates-block-requests','4','no'),(240,'ast_block_templates_fresh_site','no','no'),(242,'astra-sites-and-pages-page-26','a:15:{s:8:\"id-21922\";a:22:{s:5:\"title\";s:12:\"Construction\";s:2:\"id\";i:21922;s:12:\"publish-date\";i:1557896842;s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-04-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-04-homepage.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/construction-04\";s:20:\"astra-site-parent-id\";i:94;s:15:\"astra-sites-tag\";a:6:{i:435;s:12:\"architecture\";i:979;s:7:\"company\";i:484;s:12:\"construction\";i:436;s:8:\"interior\";i:812;s:6:\"office\";i:485;s:11:\"real-estate\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:5:{i:2795;s:12:\"architecture\";i:2836;s:12:\"construction\";i:2768;s:9:\"portfolio\";i:2832;s:8:\"property\";i:2778;s:11:\"real-estate\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:906:\"<!-- wp:paragraph -->\n<p>The Construction template creates a welcoming feel as soon as it loads. The use of reassuring green and white on the page along with attractive fonts make you feel right at home. That’s a hard thing to create!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes a range of content areas and pages ideal for construction, architecture, real estate and property in general. It’s a composed design with subtle graphic effects to create layers of engagement.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Construction template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Calm, welcoming feel on the homepage</li><li>Flexible content areas with subtle graphic effects</li><li>Engaging call to action banners</li><li>Attractive additional pages</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:82:\"Welcoming, modern web template ideal for construction, architecture or real estate\";s:5:\"pages\";a:5:{s:8:\"id-22878\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-04-homepage.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/construction-04/wp-json/wp/v2/pages/4\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/construction-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-22876\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-04-about.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-04-about.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/construction-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/construction-04/about-us/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22880\";a:12:{s:5:\"title\";s:4:\"Team\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-04-team-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-04-team-1.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/construction-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/construction-04/team/\";s:15:\"astra-sites-tag\";a:1:{i:486;s:4:\"team\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-22879\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-04-project.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-04-project.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/construction-04/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/construction-04/projects/\";s:15:\"astra-sites-tag\";a:3:{i:444;s:9:\"portfolio\";i:424;s:7:\"project\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-22877\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-04-contact.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/construction-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/construction-04/contact-us/\";s:15:\"astra-sites-tag\";a:3:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:21935;s:26:\"related-elementor-template\";i:58953;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21935\";a:22:{s:5:\"title\";s:12:\"Construction\";s:2:\"id\";i:21935;s:12:\"publish-date\";i:1557896656;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-03-home-01.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-03-home-01.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-03-home-01.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/construction-03\";s:20:\"astra-site-parent-id\";i:100;s:15:\"astra-sites-tag\";a:7:{i:435;s:12:\"architecture\";i:979;s:7:\"company\";i:484;s:12:\"construction\";i:436;s:8:\"interior\";i:812;s:6:\"office\";i:485;s:11:\"real-estate\";i:687;s:6:\"realty\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-22923\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-03-home-01.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-03-home-01.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/construction-03/wp-json/wp/v2/pages/296\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/construction-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-22921\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-03-about-us-01.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-03-about-us-01.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/construction-03/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/construction-03/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-22925\";a:12:{s:5:\"title\";s:4:\"Team\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-pro-04-feb-20-team.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-pro-04-feb-20-team.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/construction-03/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/construction-03/team/\";s:15:\"astra-sites-tag\";a:1:{i:486;s:4:\"team\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-22924\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-pro-04-feb-20-projects.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-pro-04-feb-20-projects.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/construction-03/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/construction-03/projects/\";s:15:\"astra-sites-tag\";a:1:{i:424;s:7:\"project\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-22922\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-pro-04-feb-20-contact.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-pro-04-feb-20-contact.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/construction-03/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/construction-03/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21835\";a:22:{s:5:\"title\";s:13:\"Manufacturing\";s:2:\"id\";i:21835;s:12:\"publish-date\";i:1557835884;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/manufacturing-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/manufacturing-04-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/manufacturing-04-homepage.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/manufacturing-04\";s:20:\"astra-site-parent-id\";i:87;s:15:\"astra-sites-tag\";a:6:{i:488;s:7:\"casting\";i:985;s:7:\"factory\";i:492;s:8:\"industry\";i:490;s:13:\"manufacturing\";i:491;s:16:\"metal-production\";i:489;s:10:\"production\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:2:{i:2777;s:8:\"business\";i:2807;s:10:\"industrial\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2474;s:13:\"manufacturing\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:3;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1167:\"<!-- wp:paragraph -->\n<p>The Manufacturing web template is a contemporary design within a boxed layout. It uses strong colors against a dark background with white border to create a visual impact, alongside modern fonts and bold colors.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The homepage opens out into a lighter page with the same bold color and engaging content areas. All extra pages reflect the core design and use a borderless layout to create a professional feel you can be proud of.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Manufacturing template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Contemporary design with dark and light variations on each page</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Great use of modern fonts and colors</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Borderless content areas make a visual impact</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Good use of images throughout</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:83:\"Contemporary web design that delivers a visual punch ideal for industry or business\";s:5:\"pages\";a:6:{s:8:\"id-22727\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/manufacturing-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/manufacturing-04-homepage.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/manufacturing-04/wp-json/wp/v2/pages/4\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/manufacturing-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22730\";a:12:{s:5:\"title\";s:9:\"Solutions\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/manufacturing-04-solutions-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/manufacturing-04-solutions-1.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/manufacturing-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/manufacturing-04/solutions/\";s:15:\"astra-sites-tag\";a:1:{i:498;s:9:\"solutions\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22728\";a:12:{s:5:\"title\";s:10:\"Industries\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/manufacturing-04-industries-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/manufacturing-04-industries-1.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/manufacturing-04/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/manufacturing-04/industries/\";s:15:\"astra-sites-tag\";a:1:{i:493;s:10:\"industries\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22729\";a:12:{s:5:\"title\";s:8:\"Partners\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/manufacturing-04-partners.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/manufacturing-04-partners.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/manufacturing-04/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/manufacturing-04/partners/\";s:15:\"astra-sites-tag\";a:1:{i:486;s:4:\"team\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22725\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/manufacturing-04-about.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/manufacturing-04-about.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/manufacturing-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/manufacturing-04/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22726\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/manufacturing-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/manufacturing-04-contact.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/manufacturing-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/manufacturing-04/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:44273;s:26:\"related-elementor-template\";i:21835;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-44273\";a:22:{s:5:\"title\";s:13:\"Manufacturing\";s:2:\"id\";i:44273;s:12:\"publish-date\";i:1584125490;s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/03/manufacturing-03-home-01.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/03/manufacturing-03-home-01.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/03/manufacturing-03-home-01.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/manufacturing-03\";s:20:\"astra-site-parent-id\";i:1422;s:15:\"astra-sites-tag\";a:6:{i:488;s:7:\"casting\";i:985;s:7:\"factory\";i:492;s:8:\"industry\";i:490;s:13:\"manufacturing\";i:491;s:16:\"metal-production\";i:489;s:10:\"production\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2474;s:13:\"manufacturing\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-44276\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/03/manufacturing-03-home-01.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/03/manufacturing-03-home-01.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/manufacturing-03/wp-json/wp/v2/pages/149\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/manufacturing-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-44279\";a:12:{s:5:\"title\";s:9:\"Solutions\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/03/manufacturing-03-solutions-01.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/03/manufacturing-03-solutions-01.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/manufacturing-03/wp-json/wp/v2/pages/154\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/manufacturing-03/solutions/\";s:15:\"astra-sites-tag\";a:2:{i:498;s:9:\"solutions\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-44277\";a:12:{s:5:\"title\";s:10:\"Industries\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/03/manufacturing-03-industries-01.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/03/manufacturing-03-industries-01.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/manufacturing-03/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/manufacturing-03/industries/\";s:15:\"astra-sites-tag\";a:2:{i:493;s:10:\"industries\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-44278\";a:12:{s:5:\"title\";s:8:\"Partners\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/03/manufacturing-03-partners-01.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/03/manufacturing-03-partners-01.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/manufacturing-03/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/manufacturing-03/partners/\";s:15:\"astra-sites-tag\";a:1:{i:734;s:8:\"partners\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-44274\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/03/manufacturing-03-about-us-01.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/03/manufacturing-03-about-us-01.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/manufacturing-03/wp-json/wp/v2/pages/150\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/manufacturing-03/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-44275\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/manufacturing-04-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/manufacturing-04-contact-us.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/manufacturing-03/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/manufacturing-03/contact-us/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21879\";a:22:{s:5:\"title\";s:15:\"Home Remodeling\";s:2:\"id\";i:21879;s:12:\"publish-date\";i:1557134700;s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-04-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-04-homepage.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/home-remodeling-04\";s:20:\"astra-site-parent-id\";i:90;s:15:\"astra-sites-tag\";a:8:{i:979;s:7:\"company\";i:524;s:9:\"furniture\";i:522;s:15:\"home-remodeling\";i:436;s:8:\"interior\";i:523;s:7:\"kitchen\";i:525;s:7:\"modular\";i:812;s:6:\"office\";i:526;s:10:\"renovation\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2793;s:15:\"interior-design\";i:2832;s:8:\"property\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:991:\"<!-- wp:paragraph -->\n<p>The Home Remodeling template is a contemporary design with simple colors and a largely grayscale layout. It combines gray areas with white fonts and white backgrounds to build an interesting layout that’s different from the norm.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s a very effective design with some great color choices, flexible content areas, an image gallery, testimonial section and calls to action. Supplementary pages reflect a similar design while enabling you to share what you do and how you do it.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Home Remodeling template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Subtle colors keep everything low key but engaging</li><li>Interesting layout that keeps you interested</li><li>Flexible content areas to tell your story</li><li>Useful extra pages useful for the niche</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"Interesting design business template that’s not afraid to be a little different\";s:5:\"pages\";a:6:{s:8:\"id-22838\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-04-homepage.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/home-remodeling-04/wp-json/wp/v2/pages/31\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/home-remodeling-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22836\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-04-about.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-04-about.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/home-remodeling-04/wp-json/wp/v2/pages/32\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/home-remodeling-04/about/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22840\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-04-services.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-04-services.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/home-remodeling-04/wp-json/wp/v2/pages/33\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/home-remodeling-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22839\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-04-projects.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-04-projects.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/home-remodeling-04/wp-json/wp/v2/pages/34\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/home-remodeling-04/projects/\";s:15:\"astra-sites-tag\";a:1:{i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22841\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-04-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-04-testimonials.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/home-remodeling-04/wp-json/wp/v2/pages/35\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/home-remodeling-04/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22837\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-04-contact.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/home-remodeling-04/wp-json/wp/v2/pages/36\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/home-remodeling-04/contact/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:44016;s:26:\"related-elementor-template\";i:21879;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-44016\";a:22:{s:5:\"title\";s:15:\"Home Remodeling\";s:2:\"id\";i:44016;s:12:\"publish-date\";i:1584369977;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-home.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/home-remodeling-03\";s:20:\"astra-site-parent-id\";i:1418;s:15:\"astra-sites-tag\";a:6:{i:524;s:9:\"furniture\";i:522;s:15:\"home-remodeling\";i:436;s:8:\"interior\";i:523;s:7:\"kitchen\";i:525;s:7:\"modular\";i:526;s:10:\"renovation\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:12:{s:8:\"id-45554\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-home.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/home-remodeling-03/wp-json/wp/v2/pages/31\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/home-remodeling-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45552\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/03/home-remodeling-03-about-01.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/03/home-remodeling-03-about-01.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/home-remodeling-03/wp-json/wp/v2/pages/32\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/home-remodeling-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45556\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/03/home-remodeling-03-services-01.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/03/home-remodeling-03-services-01.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/home-remodeling-03/wp-json/wp/v2/pages/33\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/home-remodeling-03/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45555\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-projects.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-projects.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/home-remodeling-03/wp-json/wp/v2/pages/34\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/home-remodeling-03/projects/\";s:15:\"astra-sites-tag\";a:1:{i:424;s:7:\"project\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45557\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-testimonials.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/home-remodeling-03/wp-json/wp/v2/pages/35\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/home-remodeling-03/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45553\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-contact.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-contact.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/home-remodeling-03/wp-json/wp/v2/pages/36\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/home-remodeling-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-44019\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-home.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/home-remodeling-03/wp-json/wp/v2/pages/31\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/home-remodeling-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-44017\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-about.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-about.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/home-remodeling-03/wp-json/wp/v2/pages/32\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/home-remodeling-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-44021\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-services.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-services.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/home-remodeling-03/wp-json/wp/v2/pages/33\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/home-remodeling-03/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-44020\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-projects.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-projects.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/home-remodeling-03/wp-json/wp/v2/pages/34\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/home-remodeling-03/projects/\";s:15:\"astra-sites-tag\";a:2:{i:444;s:9:\"portfolio\";i:424;s:7:\"project\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-44022\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-testimonials.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/home-remodeling-03/wp-json/wp/v2/pages/35\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/home-remodeling-03/testimonials/\";s:15:\"astra-sites-tag\";a:2:{i:432;s:6:\"review\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-44018\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-contact.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/home-remodeling-contact.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/home-remodeling-03/wp-json/wp/v2/pages/36\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/home-remodeling-03/contact/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:377;s:12:\"get-in-touch\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21626\";a:22:{s:5:\"title\";s:11:\"Real Estate\";s:2:\"id\";i:21626;s:12:\"publish-date\";i:1556774023;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/real-estate-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/real-estate-02-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/real-estate-02-homepage.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/real-estate-02\";s:20:\"astra-site-parent-id\";i:135;s:15:\"astra-sites-tag\";a:7:{i:979;s:7:\"company\";i:550;s:14:\"estate-broking\";i:547;s:7:\"listing\";i:812;s:6:\"office\";i:549;s:8:\"property\";i:485;s:11:\"real-estate\";i:548;s:16:\"renting-property\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2832;s:8:\"property\";i:2778;s:11:\"real-estate\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1031:\"<!-- wp:paragraph -->\n<p>The Real Estate web template makes an instant impression with a strong purple color and contact form front and center. It’s ideal for real estate, as it opens out into featured property sections, listings sections and supplementary content ideal for the niche.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Extra pages all reflect the needs of real estate while reflecting the overall aesthetic, ideal for real estate agents or the property industry. Everything you see on the page is fully customizable so you can quickly change anything you see to fit your brand.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Real Estate template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Makes an engaging first impression</li><li>Includes options for featured properties and agent bios</li><li>Includes supplementary pages already constructed</li><li>Customize everything you see on the page</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:83:\"Modern real estate template with flexible property showcases ideal for the industry\";s:5:\"pages\";a:6:{s:8:\"id-23299\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/real-estate-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/real-estate-02-homepage.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/real-estate-02/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/real-estate-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-23295\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/real-estate-02-about.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/real-estate-02-about.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/real-estate-02/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/real-estate-02/about-us/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23300\";a:12:{s:5:\"title\";s:10:\"Properties\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/real-estate-02-properties.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/real-estate-02-properties.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/real-estate-02/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/real-estate-02/properties/\";s:15:\"astra-sites-tag\";a:4:{i:461;s:7:\"gallery\";i:444;s:9:\"portfolio\";i:553;s:10:\"properties\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23296\";a:12:{s:5:\"title\";s:6:\"Agents\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/real-estate-02-agents.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/real-estate-02-agents.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/real-estate-02/wp-json/wp/v2/pages/18\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/real-estate-02/agents/\";s:15:\"astra-sites-tag\";a:3:{i:352;s:5:\"about\";i:552;s:6:\"agents\";i:486;s:4:\"team\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23298\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/real-estate-02-faq.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/real-estate-02-faq.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/real-estate-02/wp-json/wp/v2/pages/20\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/real-estate-02/faq/\";s:15:\"astra-sites-tag\";a:1:{i:426;s:3:\"faq\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23297\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/real-estate-02-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/real-estate-02-contact-1.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/real-estate-02/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/real-estate-02/contact/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21841\";a:22:{s:5:\"title\";s:18:\"Towing Services​\";s:2:\"id\";i:21841;s:12:\"publish-date\";i:1556622587;s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/tow-services-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/tow-services-04-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/tow-services-04-homepage.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/tow-services-04\";s:20:\"astra-site-parent-id\";i:85;s:15:\"astra-sites-tag\";a:4:{i:555;s:15:\"car-tow-service\";i:554;s:18:\"emergency-services\";i:1021;s:14:\"local-business\";i:556;s:12:\"tow-services\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:2:{i:2777;s:8:\"business\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2473;s:9:\"transport\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:953:\"<!-- wp:paragraph -->\n<p>The Towing Services​ template uses a contrasting dark and light scheme to make key areas stand out. In this case, contact details and calls to action, ideal for engaging readers and letting them quickly get in touch.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The theme has a professional feel with dark gray background and shaded images and bold yellow contrast color. The service boxes in the center are particularly good, while the rest of the template definitely doesn’t disappoint.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Towing Services template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Strong, modern scheme with professional design</li><li>Contrasting dark gray and yellow colorway</li><li>Great use of colors for calls to action</li><li>Supplementary pages reflect the core design</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:82:\"Effective web template ideal for towing and for any professional service companies\";s:5:\"pages\";a:6:{s:8:\"id-22704\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/tow-services-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/tow-services-04-homepage.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/tow-services-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/tow-services-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22701\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/tow-services-04-about.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/tow-services-04-about.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/tow-services-04/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/tow-services-04/about/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22705\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/tow-services-04-services.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/tow-services-04-services.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/tow-services-04/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/tow-services-04/services/\";s:15:\"astra-sites-tag\";a:2:{i:425;s:8:\"services\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22706\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/tow-services-04-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/tow-services-04-testimonials.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/tow-services-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/tow-services-04/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22703\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/tow-services-04-faq.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/tow-services-04-faq.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/tow-services-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/tow-services-04/faq/\";s:15:\"astra-sites-tag\";a:1:{i:426;s:3:\"faq\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22702\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/tow-services-04-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/tow-services-04-contact-1.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/tow-services-04/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/tow-services-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55382\";a:22:{s:5:\"title\";s:15:\"Salon &amp; Spa\";s:2:\"id\";i:55382;s:12:\"publish-date\";i:1621863472;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-02-home-1.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-02-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-02-home-1.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/stylist-02\";s:20:\"astra-site-parent-id\";i:2096;s:15:\"astra-sites-tag\";a:11:{i:2102;s:10:\"beautician\";i:2121;s:13:\"beauty-parlor\";i:2106;s:12:\"beauty-salon\";i:2120;s:18:\"fashion-and-beauty\";i:1642;s:10:\"hair-salon\";i:2108;s:11:\"hairdresser\";i:577;s:13:\"makeup-artist\";i:2119;s:13:\"salon-and-spa\";i:530;s:3:\"spa\";i:2107;s:7:\"stylist\";i:619;s:8:\"wellness\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:6:{i:2790;s:14:\"beauty-fashion\";i:2777;s:8:\"business\";i:2821;s:14:\"feminine-girly\";i:2890;s:15:\"makeup-cosmetic\";i:2837;s:5:\"salon\";i:2856;s:3:\"spa\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2479;s:6:\"beauty\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1011:\"<!-- wp:paragraph -->\n<p>The Salon &amp; Spa template is a minimalist design with lots of empty space designed to make your content and images stand out. Despite that minimalism, there is everything here you will need to promote your salon or spa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design uses white and pastel colors with a stronger color for calls to action. Image use is plentiful, which is ideal for a visual industry like hair and beauty. There is space to showcase your products and services and an attractive contact form too.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Salon &amp; Spa template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Minimalist design that lets your content stand proud</li><li>Plenty of content and image areas to promote your salon or spa</li><li>Good use of colors to create elegance</li><li>Sample pages already created and ready to use</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:79:\"Minimal design with a lot to say, ideal for the beauty niche and salons or spas\";s:5:\"pages\";a:4:{s:8:\"id-55384\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-02-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-02-contact-1.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/stylist-02/wp-json/wp/v2/pages/816\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/stylist-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55383\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-02-about-1.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-02-about-1.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/stylist-02/wp-json/wp/v2/pages/950\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/stylist-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55385\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-02-home-1.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-02-home-1.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/stylist-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/stylist-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55386\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-02-services-1.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-02-services-1.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/stylist-02/wp-json/wp/v2/pages/996\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/stylist-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:55382;s:26:\"related-gutenberg-template\";i:55398;}s:8:\"id-55398\";a:22:{s:5:\"title\";s:15:\"Salon &amp; Spa\";s:2:\"id\";i:55398;s:12:\"publish-date\";i:1621884270;s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-08-600x2474.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-08-400x1649.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/stylist-08\";s:20:\"astra-site-parent-id\";i:2101;s:15:\"astra-sites-tag\";a:11:{i:2102;s:10:\"beautician\";i:2121;s:13:\"beauty-parlor\";i:2106;s:12:\"beauty-salon\";i:2120;s:18:\"fashion-and-beauty\";i:1642;s:10:\"hair-salon\";i:2108;s:11:\"hairdresser\";i:577;s:13:\"makeup-artist\";i:2119;s:13:\"salon-and-spa\";i:530;s:3:\"spa\";i:2107;s:7:\"stylist\";i:619;s:8:\"wellness\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2479;s:6:\"beauty\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-55400\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-contact-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-contact-08-600x879.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/stylist-08/wp-json/wp/v2/pages/904\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/stylist-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55399\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-about-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-about-08-600x1247.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/stylist-08/wp-json/wp/v2/pages/900\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/stylist-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55402\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-services-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-services-08-600x1642.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/stylist-08/wp-json/wp/v2/pages/902\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/stylist-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55401\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-08-600x2474.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/stylist-08/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/stylist-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21814\";a:22:{s:5:\"title\";s:22:\"Swimming Pool Services\";s:2:\"id\";i:21814;s:12:\"publish-date\";i:1556196138;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-04-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-04-homepage.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/pool-services-04\";s:20:\"astra-site-parent-id\";i:89;s:15:\"astra-sites-tag\";a:3:{i:567;s:16:\"pool-maintenance\";i:569;s:13:\"swimming-pool\";i:570;s:10:\"water-pool\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2819;s:8:\"cleaning\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:986:\"<!-- wp:paragraph -->\n<p>The Swimming Pool Services template begins strongly with a full size image of a pool with an engaging blue and white colorway. A bold contrast color works well for calls to action while alternating dark and light fonts keep you scrolling.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template uses emotive imagery that tells your story while creating the lifestyle your clients are likely to have. Pages are completely flexible, with the ability to change everything you see on the page. Ideal for modern business!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Swimming Pool Services template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Impactful full screen image with bold headline</li><li>Well-chosen fonts and colors ideal for the niche</li><li>Provides lots of opportunities to use images</li><li>Essential pages already created</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:79:\"Well-designed web template for pool cleaners, installers and related businesses\";s:5:\"pages\";a:7:{s:8:\"id-22826\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-04-homepage.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/pool-services-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/pool-services-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22822\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-about.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-about.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/pool-services-04/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/pool-services-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22828\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-04-services.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-04-services.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/pool-services-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/pool-services-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22825\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-04-gallery.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-04-gallery.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/pool-services-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/pool-services-04/gallery/\";s:15:\"astra-sites-tag\";a:2:{i:461;s:7:\"gallery\";i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22827\";a:12:{s:5:\"title\";s:7:\"Reviews\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-04-reviews.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-04-reviews.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/pool-services-04/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/pool-services-04/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22824\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-04-faq.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-04-faq.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/pool-services-04/wp-json/wp/v2/pages/202\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/pool-services-04/faq/\";s:15:\"astra-sites-tag\";a:1:{i:426;s:3:\"faq\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22823\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/pool-services-04-contact.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/pool-services-04/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/pool-services-04/contact/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21808\";a:22:{s:5:\"title\";s:7:\"Florist\";s:2:\"id\";i:21808;s:12:\"publish-date\";i:1556174293;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-03-homepage.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/florist-03\";s:20:\"astra-site-parent-id\";i:116;s:15:\"astra-sites-tag\";a:4:{i:573;s:16:\"event-decoration\";i:571;s:7:\"florist\";i:572;s:15:\"flower-merchant\";i:574;s:7:\"flowers\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2476;s:9:\"gardening\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-23088\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/florist-03/wp-json/wp/v2/pages/282\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/florist-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23085\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-03-about.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-03-about.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/florist-03/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/florist-03/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23089\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-03-services.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-03-services.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/florist-03/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/florist-03/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23087\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-03-gallery.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-03-gallery.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/florist-03/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/florist-03/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23090\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-03-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-03-testimonials.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/florist-03/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/florist-03/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23086\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-03-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-03-contact-1.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/florist-03/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/florist-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21807\";a:22:{s:5:\"title\";s:7:\"Florist\";s:2:\"id\";i:21807;s:12:\"publish-date\";i:1556174207;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-04-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-04-homepage.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/florist-04\";s:20:\"astra-site-parent-id\";i:115;s:15:\"astra-sites-tag\";a:5:{i:573;s:16:\"event-decoration\";i:571;s:7:\"florist\";i:572;s:15:\"flower-merchant\";i:574;s:7:\"flowers\";i:1021;s:14:\"local-business\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2784;s:5:\"event\";i:2853;s:17:\"florist-gardening\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2476;s:9:\"gardening\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:993:\"<!-- wp:paragraph -->\n<p>The Florist template uses classic design to portray the elegance floristry is known for. It’s an excellent design with lots of opportunities to use images, add content, show examples of your work and attract new customers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design uses a flowing font for some headlines that add a personal touch. Main fonts are modern, to aid usability and are a nice combination. There’s also a calming parallax effect with flower image backgrounds and content boxes everywhere you want them.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Florist template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Elegant website template ideal for floristry</li><li>Fantastic use of imagery throughout</li><li>Flexible content areas to share products and services</li><li>Easily customizable for your particular business</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"Elegant web template that’s perfect for flowers, florists and floristry businesses\";s:5:\"pages\";a:6:{s:8:\"id-23076\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-04-homepage.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/florist-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/florist-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23073\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-04-about.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-04-about.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/florist-04/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/florist-04/about-us/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23077\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-04-services.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-04-services.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/florist-04/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/florist-04/services/\";s:15:\"astra-sites-tag\";a:2:{i:425;s:8:\"services\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23075\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-04-gallery.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-04-gallery.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/florist-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/florist-04/gallery/\";s:15:\"astra-sites-tag\";a:2:{i:461;s:7:\"gallery\";i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23078\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-04-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-04-testimonials.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/florist-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/florist-04/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23074\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-04-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/florist-04-contact-1.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/florist-04/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/florist-04/contact/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:21808;s:26:\"related-elementor-template\";i:21807;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21337\";a:22:{s:5:\"title\";s:8:\"Car Wash\";s:2:\"id\";i:21337;s:12:\"publish-date\";i:1556170141;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-02-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-02-homepage.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/car-wash-02\";s:20:\"astra-site-parent-id\";i:301;s:15:\"astra-sites-tag\";a:7:{i:1749;s:9:\"bike-care\";i:1750;s:9:\"bike-wash\";i:588;s:8:\"car-care\";i:587;s:13:\"car-detailing\";i:1751;s:15:\"car-maintenance\";i:586;s:8:\"car-wash\";i:1021;s:14:\"local-business\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2800;s:14:\"car-automotive\";i:2777;s:8:\"business\";i:2819;s:8:\"cleaning\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2475;s:10:\"automotive\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1015:\"<!-- wp:paragraph -->\n<p>The Car Wash template is deceptively simple and opens with a bold blue header with an engaging headline. Scroll down and the page opens out into a white page with parallax effects and content areas to outline who you are and what you do.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While designed for a car wash, you can see how easy it would be to transform this into something useful for any business in any niche. Flexible layouts, lots of content options and the ability to change anything on the page is just the beginning!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Car Wash template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Effective business template with engaging layout</li><li>Flexible content areas for full control and customizability</li><li>Parallax effect is small but packs a punch</li><li>Could be transformed into something for any business</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:79:\"Modern website design that works for a car wash or any type of service business\";s:5:\"pages\";a:5:{s:8:\"id-25155\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-02-homepage.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/car-wash-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/car-wash-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25156\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-02-services.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-02-services.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/car-wash-02/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/car-wash-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25153\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-02-about.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-02-about.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/car-wash-02/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/car-wash-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25157\";a:12:{s:5:\"title\";s:9:\"Wash Menu\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-02-wash-menu.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-02-wash-menu.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/car-wash-02/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/car-wash-02/wash-menu/\";s:15:\"astra-sites-tag\";a:2:{i:565;s:4:\"menu\";i:761;s:9:\"wash-menu\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25154\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-02-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-02-contact-2.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/car-wash-02/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/car-wash-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:21340;s:26:\"related-elementor-template\";i:21337;s:26:\"related-gutenberg-template\";i:48580;}s:8:\"id-21340\";a:22:{s:5:\"title\";s:8:\"Car Wash\";s:2:\"id\";i:21340;s:12:\"publish-date\";i:1556170495;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-01-home.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-01-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-01-home.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/car-wash-01\";s:20:\"astra-site-parent-id\";i:303;s:15:\"astra-sites-tag\";a:7:{i:1749;s:9:\"bike-care\";i:1750;s:9:\"bike-wash\";i:588;s:8:\"car-care\";i:587;s:13:\"car-detailing\";i:1751;s:15:\"car-maintenance\";i:586;s:8:\"car-wash\";i:1021;s:14:\"local-business\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2475;s:10:\"automotive\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-25171\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-01-home.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-01-home.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/car-wash-01/wp-json/wp/v2/pages/295\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/car-wash-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-25172\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-01-services-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-01-services-1.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/car-wash-01/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/car-wash-01/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-25169\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-01-about-1.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-01-about-1.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/car-wash-01/wp-json/wp/v2/pages/296\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/car-wash-01/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-25173\";a:12:{s:5:\"title\";s:9:\"Wash Menu\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-01-wash-menu-1.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-01-wash-menu-1.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/car-wash-01/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/car-wash-01/wash-menu/\";s:15:\"astra-sites-tag\";a:2:{i:565;s:4:\"menu\";i:761;s:9:\"wash-menu\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-25170\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-01-contac-1.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/car-wash-01-contac-1.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/car-wash-01/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/car-wash-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(243,'astra-sites-and-pages-page-27','a:15:{s:8:\"id-48580\";a:22:{s:5:\"title\";s:8:\"Car Wash\";s:2:\"id\";i:48580;s:12:\"publish-date\";i:1603984622;s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08-600x2367.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08-400x1578.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/car-wash-08\";s:20:\"astra-site-parent-id\";i:1747;s:15:\"astra-sites-tag\";a:7:{i:1749;s:9:\"bike-care\";i:1750;s:9:\"bike-wash\";i:588;s:8:\"car-care\";i:587;s:13:\"car-detailing\";i:1751;s:15:\"car-maintenance\";i:586;s:8:\"car-wash\";i:1021;s:14:\"local-business\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2475;s:10:\"automotive\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48583\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08-600x2367.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/car-wash-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/car-wash-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48584\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08-services-1-600x1405.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/car-wash-08/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/car-wash-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48581\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08-about-1-600x1322.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/car-wash-08/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/car-wash-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48585\";a:12:{s:5:\"title\";s:9:\"Wash Menu\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08-wash-menu-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08-wash-menu-1-600x1138.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/car-wash-08/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/car-wash-08/wash-menu/\";s:15:\"astra-sites-tag\";a:3:{i:585;s:7:\"pricing\";i:761;s:9:\"wash-menu\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48582\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08-contact-1-600x1241.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/car-wash-08/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/car-wash-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21676\";a:22:{s:5:\"title\";s:18:\"Wedding Invitation\";s:2:\"id\";i:21676;s:12:\"publish-date\";i:1555994283;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/06/wedding-mark-brizy.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/06/wedding-mark-brizy.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/06/wedding-mark-brizy.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/wedding-05\";s:20:\"astra-site-parent-id\";i:59;s:15:\"astra-sites-tag\";a:3:{i:698;s:10:\"engagement\";i:699;s:10:\"invitation\";i:697;s:7:\"wedding\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-22120\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/06/wedding-mark-brizy.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/06/wedding-mark-brizy.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/wedding-05/wp-json/wp/v2/pages/514\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/wedding-05/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55223\";a:22:{s:5:\"title\";s:20:\"Travel &amp; Tourism\";s:2:\"id\";i:55223;s:12:\"publish-date\";i:1621605691;s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-02-home-2.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-02-home-2.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-02-home-2.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/travel-and-tourism-02\";s:20:\"astra-site-parent-id\";i:2054;s:15:\"astra-sites-tag\";a:17:{i:2073;s:13:\"accommodation\";i:2076;s:18:\"apartments-hostels\";i:1534;s:3:\"bnb\";i:2078;s:14:\"business-hotel\";i:2079;s:10:\"guesthouse\";i:2080;s:8:\"homestay\";i:350;s:5:\"hotel\";i:2081;s:13:\"island-resort\";i:2082;s:12:\"luxury-hotel\";i:714;s:6:\"resort\";i:2077;s:12:\"tour-company\";i:430;s:7:\"tourism\";i:427;s:6:\"travel\";i:428;s:13:\"travel-agency\";i:2075;s:15:\"travel-services\";i:2083;s:8:\"urban-bb\";i:2084;s:15:\"vacation-rental\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2788;s:9:\"hotel-bnb\";i:2775;s:14:\"travel-tourism\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2498;s:12:\"hotel-travel\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:940:\"<!-- wp:paragraph -->\n<p>The Travel &amp; Tourism template has a light, welcoming design that uses the colors of sunshine to welcome you in. It’s a crisp, clean template with lots of whitespace and some very flexible content and image areas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template could work for hotels, travel agents, travel bloggers and anyone involved in the travel industry. It’s a customizable theme you could literally turn into any website with minimal effort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Travel &amp; Tourism template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Light and welcoming design where images rule</li><li>Flexible content areas and layout for full customization</li><li>Ideal for a wide range of travel companies</li><li>Engaging colors and fonts throughout</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"Light and welcoming website template ideal for the travel industry or travel blogger\";s:5:\"pages\";a:4:{s:8:\"id-55226\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-02-home-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-02-home-1.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/travel-and-tourism-02/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/travel-and-tourism-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55224\";a:12:{s:5:\"title\";s:9:\"Amenities\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-02-amenities.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-02-amenities.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/travel-and-tourism-02/wp-json/wp/v2/pages/146\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/travel-and-tourism-02/amenities/\";s:15:\"astra-sites-tag\";a:1:{i:777;s:9:\"amenities\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55225\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-02-contact.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/travel-and-tourism-02/wp-json/wp/v2/pages/150\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/travel-and-tourism-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55227\";a:12:{s:5:\"title\";s:5:\"Rooms\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-02-rooms-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-02-rooms-1.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/travel-and-tourism-02/wp-json/wp/v2/pages/144\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/travel-and-tourism-02/rooms/\";s:15:\"astra-sites-tag\";a:1:{i:715;s:5:\"rooms\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:55223;s:26:\"related-gutenberg-template\";i:64772;}s:8:\"id-55310\";a:22:{s:5:\"title\";s:20:\"Travel &amp; Tourism\";s:2:\"id\";i:55310;s:12:\"publish-date\";i:1621612162;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-08-600x2616.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-08-400x1744.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/travel-and-tourism-08\";s:20:\"astra-site-parent-id\";i:2065;s:15:\"astra-sites-tag\";a:17:{i:2073;s:13:\"accommodation\";i:2076;s:18:\"apartments-hostels\";i:1534;s:3:\"bnb\";i:2078;s:14:\"business-hotel\";i:2079;s:10:\"guesthouse\";i:2080;s:8:\"homestay\";i:350;s:5:\"hotel\";i:2081;s:13:\"island-resort\";i:2082;s:12:\"luxury-hotel\";i:714;s:6:\"resort\";i:2077;s:12:\"tour-company\";i:430;s:7:\"tourism\";i:427;s:6:\"travel\";i:428;s:13:\"travel-agency\";i:2075;s:15:\"travel-services\";i:2083;s:8:\"urban-bb\";i:2084;s:15:\"vacation-rental\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2498;s:12:\"hotel-travel\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-55311\";a:12:{s:5:\"title\";s:9:\"Amenities\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-08-amenities-1.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-08-amenities-1-600x2270.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/travel-and-tourism-08/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/travel-and-tourism-08/amenities/\";s:15:\"astra-sites-tag\";a:2:{i:777;s:9:\"amenities\";i:1599;s:10:\"facilities\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55312\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-08-contact-600x963.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/travel-and-tourism-08/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/travel-and-tourism-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55313\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-08-600x2616.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/travel-and-tourism-08/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/travel-and-tourism-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55314\";a:12:{s:5:\"title\";s:5:\"Rooms\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-08-rooms-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-08-rooms-1-600x1709.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/travel-and-tourism-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/travel-and-tourism-08/rooms/\";s:15:\"astra-sites-tag\";a:2:{i:2073;s:13:\"accommodation\";i:715;s:5:\"rooms\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21599\";a:22:{s:5:\"title\";s:20:\"Makeup Artist Studio\";s:2:\"id\";i:21599;s:12:\"publish-date\";i:1555493730;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/makeup-artist-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/makeup-artist-04-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/makeup-artist-04-homepage.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/makeup-artist-04\";s:20:\"astra-site-parent-id\";i:125;s:15:\"astra-sites-tag\";a:7:{i:1023;s:6:\"beauty\";i:579;s:14:\"bridal-make-up\";i:477;s:9:\"hair-care\";i:575;s:11:\"hair-styles\";i:982;s:11:\"hairstylist\";i:577;s:13:\"makeup-artist\";i:1020;s:8:\"personal\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:5:{i:2790;s:14:\"beauty-fashion\";i:2821;s:14:\"feminine-girly\";i:2890;s:15:\"makeup-cosmetic\";i:2770;s:8:\"personal\";i:2837;s:5:\"salon\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2479;s:6:\"beauty\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:981:\"<!-- wp:paragraph -->\n<p>The Makeup Artist Studio template is a well-designed website template that uses colors and images very well indeed. It’s a dark theme with bold contrast color and white fonts. It’s well laid out and contains lots of content areas to showcase your work.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template is fully customizable and comes with flexible content areas, service pages, pricing page, contact page and all the elements you would expect to see on a website in this kind of niche.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Makeup Artist Studio template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Powerful dark theme with bright contrast color</li><li>Lots of opportunities to tell stories with images</li><li>Fullscreen layout with flexible content areas</li><li>Includes popular pages you’re likely to need</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"Bold dark web theme designed specifically for the beauty niche and makeup artists\";s:5:\"pages\";a:5:{s:8:\"id-23191\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/makeup-artist-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/makeup-artist-04-homepage.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/makeup-artist-04/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/makeup-artist-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23193\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/makeup-artist-04-services.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/makeup-artist-04-services.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/makeup-artist-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/makeup-artist-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23189\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/makeup-artist-04-about.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/makeup-artist-04-about.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/makeup-artist-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/makeup-artist-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23192\";a:12:{s:5:\"title\";s:7:\"Pricing\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/makeup-artist-04-pricing.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/makeup-artist-04-pricing.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/makeup-artist-04/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/makeup-artist-04/pricing/\";s:15:\"astra-sites-tag\";a:1:{i:585;s:7:\"pricing\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23190\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/makeup-artist-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/makeup-artist-04-contact.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/makeup-artist-04/wp-json/wp/v2/pages/18\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/makeup-artist-04/contact/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21347\";a:22:{s:5:\"title\";s:18:\"Transport Services\";s:2:\"id\";i:21347;s:12:\"publish-date\";i:1554905274;s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/transport-services-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/transport-services-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/transport-services-03-homepage.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/transport-services-03\";s:20:\"astra-site-parent-id\";i:97;s:15:\"astra-sites-tag\";a:9:{i:394;s:9:\"air-cargo\";i:391;s:14:\"cargo-services\";i:392;s:16:\"freight-services\";i:388;s:12:\"good-carrier\";i:389;s:9:\"logistics\";i:393;s:14:\"road-transport\";i:390;s:8:\"shipping\";i:366;s:9:\"transport\";i:387;s:8:\"trucking\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2473;s:9:\"transport\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-22894\";a:12:{s:5:\"title\";s:16:\"One Page Website\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/transport-services-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/transport-services-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/transport-services-03/wp-json/wp/v2/pages/150\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/transport-services-03/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:746;s:13:\"one-page-site\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21329\";a:22:{s:5:\"title\";s:18:\"Transport Services\";s:2:\"id\";i:21329;s:12:\"publish-date\";i:1554905270;s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/transport-services-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/transport-services-04-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/transport-services-04-homepage.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/transport-services-04\";s:20:\"astra-site-parent-id\";i:95;s:15:\"astra-sites-tag\";a:12:{i:394;s:9:\"air-cargo\";i:845;s:4:\"blue\";i:391;s:14:\"cargo-services\";i:392;s:16:\"freight-services\";i:388;s:12:\"good-carrier\";i:389;s:9:\"logistics\";i:399;s:8:\"one-page\";i:846;s:3:\"red\";i:393;s:14:\"road-transport\";i:390;s:8:\"shipping\";i:366;s:9:\"transport\";i:387;s:8:\"trucking\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2771;s:8:\"one-page\";i:2831;s:7:\"service\";i:2806;s:14:\"transportation\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2927;s:8:\"one-page\";i:2473;s:9:\"transport\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:964:\"<!-- wp:paragraph -->\n<p>The Transport Services template is a bold design that creates an instant connection. From the full-size header image with parallax effect to the use of dark backgrounds and bold colors, there’s something here that draws you in and keeps you there.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template as a whole has lots of flexible content areas and colors and fonts can be changed in seconds. Overall, while designed for haulage, it could be customized to suit any business with minimal effort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Transport Services template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Powerful design with strong first impression</li><li>Great use of dark, light and bold colors</li><li>Fully customizable for any niche</li><li>Includes all the features a business website needs</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"Bold, modern web design that works well for transport services and haulage companies\";s:5:\"pages\";a:1:{s:8:\"id-22887\";a:12:{s:5:\"title\";s:16:\"One Page Website\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/transport-services-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/transport-services-04-homepage.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/transport-services-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/transport-services-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:21347;s:26:\"related-elementor-template\";i:21329;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21335\";a:22:{s:5:\"title\";s:17:\"Cleaning Services\";s:2:\"id\";i:21335;s:12:\"publish-date\";i:1554904291;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/04/cleaning-services-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/04/cleaning-services-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/04/cleaning-services-home.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/cleaning-services-03\";s:20:\"astra-site-parent-id\";i:122;s:15:\"astra-sites-tag\";a:8:{i:1000;s:7:\"cleaner\";i:680;s:8:\"cleaning\";i:679;s:17:\"cleaning-services\";i:673;s:19:\"commercial-cleaning\";i:674;s:17:\"domestic-cleaning\";i:675;s:12:\"housekeeping\";i:676;s:11:\"maintenance\";i:677;s:7:\"washing\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2477;s:13:\"home-services\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-23157\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/04/cleaning-services-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/04/cleaning-services-home.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/cleaning-services-03/wp-json/wp/v2/pages/239\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/cleaning-services-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23155\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/cleaning-services-03-about1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/cleaning-services-03-about1.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/cleaning-services-03/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/cleaning-services-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23159\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/cleaning-services-03-services-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/cleaning-services-03-services-1.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/cleaning-services-03/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/cleaning-services-03/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23160\";a:12:{s:5:\"title\";s:13:\"Why choose us\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/cleaning-services-why-choose-us.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/cleaning-services-why-choose-us.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/cleaning-services-03/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/cleaning-services-03/why-choose-us/\";s:15:\"astra-sites-tag\";a:1:{i:760;s:13:\"why-choose-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23158\";a:12:{s:5:\"title\";s:7:\"Reviews\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/cleaning-services-reviews.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/cleaning-services-reviews.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/cleaning-services-03/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/cleaning-services-03/reviews/\";s:15:\"astra-sites-tag\";a:2:{i:432;s:6:\"review\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23156\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/cleaning-services-contact.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/cleaning-services-contact.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/cleaning-services-03/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/cleaning-services-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21331\";a:22:{s:5:\"title\";s:17:\"Cleaning Services\";s:2:\"id\";i:21331;s:12:\"publish-date\";i:1554904102;s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/cleaning-services-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/cleaning-services-04-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/cleaning-services-04-homepage.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/cleaning-services-04\";s:20:\"astra-site-parent-id\";i:121;s:15:\"astra-sites-tag\";a:8:{i:680;s:8:\"cleaning\";i:679;s:17:\"cleaning-services\";i:673;s:19:\"commercial-cleaning\";i:674;s:17:\"domestic-cleaning\";i:675;s:12:\"housekeeping\";i:676;s:11:\"maintenance\";i:1022;s:12:\"professional\";i:677;s:7:\"washing\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2819;s:8:\"cleaning\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2477;s:13:\"home-services\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:949:\"<!-- wp:paragraph -->\n<p>The Cleaning Services template is instantly engaging thanks to a full screen image background and bright contrast color. Add bright white text and bright calls to action and you have a website design that’s going to convert.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template mixes blue and pink seamlessly and even includes some smart hover effects for extra engagement. Colors can be changed, as can fonts, the layout and everything you see on every page. It’s a very flexible template!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Cleaning Services template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Design makes an instant first impression</li><li>Good use of bold colors and images</li><li>Flexible content areas with hover effect</li><li>All the supplementary pages you could need</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:83:\"Colorful web template that could work perfectly for cleaners and cleaning companies\";s:5:\"pages\";a:6:{s:8:\"id-23145\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/cleaning-services-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/cleaning-services-04-homepage.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/cleaning-services-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/cleaning-services-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23143\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/cleaning-services-04-about-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/cleaning-services-04-about-1.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/cleaning-services-04/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/cleaning-services-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23147\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/cleaning-services-04-services-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/cleaning-services-04-services-1.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/cleaning-services-04/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/cleaning-services-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23148\";a:12:{s:5:\"title\";s:13:\"Why choose us\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2019/07/cleaning-services-04-why-choose-us-3.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2019/07/cleaning-services-04-why-choose-us-3.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/cleaning-services-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/cleaning-services-04/why-choose-us/\";s:15:\"astra-sites-tag\";a:2:{i:760;s:13:\"why-choose-us\";i:852;s:6:\"why-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23146\";a:12:{s:5:\"title\";s:7:\"Reviews\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/cleaning-services-04-reviews-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/cleaning-services-04-reviews-1.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/cleaning-services-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/cleaning-services-04/reviews/\";s:15:\"astra-sites-tag\";a:1:{i:432;s:6:\"review\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23144\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/cleaning-services-04-contact-3.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/cleaning-services-04-contact-3.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/cleaning-services-04/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/cleaning-services-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:21335;s:26:\"related-elementor-template\";i:21331;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21171\";a:22:{s:5:\"title\";s:10:\"Fly Movers\";s:2:\"id\";i:21171;s:12:\"publish-date\";i:1553665197;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-04-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-04-home.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/movers-packers-04\";s:20:\"astra-site-parent-id\";i:362;s:15:\"astra-sites-tag\";a:4:{i:1021;s:14:\"local-business\";i:364;s:6:\"movers\";i:365;s:7:\"packers\";i:366;s:9:\"transport\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2854;s:7:\"courier\";i:2806;s:14:\"transportation\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2473;s:9:\"transport\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";}i:2;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:995:\"<!-- wp:paragraph -->\n<p>The Fly Movers template has a bright and breezy design that’s instantly engaging. It’s a full screen template with a neat parallax effect to divide different areas of the homepage. Combined with a reassuring red, white and blue colorway, it’s an excellent web template for any type of business.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design includes colored backgrounds, modern fonts and great use of images throughout. While additional pages are simpler, they still reflect the overall feel to create a coherent design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Fly Movers template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Engaging design with smart color choices</li><li>Parallax effect used as an effective divider</li><li>Good use of images and fonts throughout</li><li>Can easily be customized for any type of business</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:78:\"Well-designed modern template that’s perfect for movers and moving companies\";s:5:\"pages\";a:6:{s:8:\"id-28778\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-04-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-04-home.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/movers-packers-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/movers-packers-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-28775\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-04-about.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-04-about.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/movers-packers-04/wp-json/wp/v2/pages/69\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/movers-packers-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-28779\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-04-services.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-04-services.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/movers-packers-04/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/movers-packers-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-28780\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-04-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-04-testimonials.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/movers-packers-04/wp-json/wp/v2/pages/75\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/movers-packers-04/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-28777\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-04-faq.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-04-faq.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/movers-packers-04/wp-json/wp/v2/pages/73\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/movers-packers-04/faq/\";s:15:\"astra-sites-tag\";a:2:{i:426;s:3:\"faq\";i:709;s:9:\"questions\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-28776\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/08/movers-packers-04-contact.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/movers-packers-04/wp-json/wp/v2/pages/71\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/movers-packers-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:28824;s:26:\"related-elementor-template\";i:21171;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-20908\";a:22:{s:5:\"title\";s:15:\"Wedding Planner\";s:2:\"id\";i:20908;s:12:\"publish-date\";i:1552457759;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-home.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/wedding-planner-06\";s:20:\"astra-site-parent-id\";i:155;s:15:\"astra-sites-tag\";a:3:{i:717;s:13:\"event-planner\";i:697;s:7:\"wedding\";i:716;s:15:\"wedding-planner\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-23469\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-home.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/wedding-planner-06/wp-json/wp/v2/pages/316\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/wedding-planner-06/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23465\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-about.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-about.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/wedding-planner-06/wp-json/wp/v2/pages/356\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/wedding-planner-06/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23470\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-06-services-01.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-06-services-01.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/wedding-planner-06/wp-json/wp/v2/pages/365\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/wedding-planner-06/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23468\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-gallery.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-gallery.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/wedding-planner-06/wp-json/wp/v2/pages/378\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/wedding-planner-06/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23471\";a:12:{s:5:\"title\";s:6:\"Venues\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-venues.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-venues.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/wedding-planner-06/wp-json/wp/v2/pages/387\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/wedding-planner-06/venues/\";s:15:\"astra-sites-tag\";a:2:{i:696;s:5:\"venue\";i:691;s:10:\"work-place\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23467\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-contact.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-contact.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/wedding-planner-06/wp-json/wp/v2/pages/392\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/wedding-planner-06/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-20919\";a:22:{s:5:\"title\";s:31:\"eCourse &#8211; Learn Photoshop\";s:2:\"id\";i:20919;s:12:\"publish-date\";i:1552457758;s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-04-home-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-04-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-04-home-1.jpg\";s:14:\"astra-site-url\";s:45:\"//websitedemos.net/ecourse-learn-photoshop-06\";s:20:\"astra-site-parent-id\";i:124;s:15:\"astra-sites-tag\";a:5:{i:468;s:9:\"elearning\";i:719;s:15:\"online-coaching\";i:975;s:15:\"online-learning\";i:721;s:8:\"training\";i:720;s:9:\"tutorials\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-23181\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-04-home-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-04-home-1.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/ecourse-learn-photoshop-06/wp-json/wp/v2/pages/113\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/ecourse-learn-photoshop-06/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23179\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-04-about.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-04-about.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/ecourse-learn-photoshop-06/wp-json/wp/v2/pages/159\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/ecourse-learn-photoshop-06/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23180\";a:12:{s:5:\"title\";s:7:\"Courses\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-04-courses.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-04-courses.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/ecourse-learn-photoshop-06/wp-json/wp/v2/pages/165\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/ecourse-learn-photoshop-06/courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23183\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-04-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-04-testimonials.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/ecourse-learn-photoshop-06/wp-json/wp/v2/pages/174\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:59:\"//websitedemos.net/ecourse-learn-photoshop-06/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23182\";a:12:{s:5:\"title\";s:7:\"Pricing\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-04-pricing.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-04-pricing.jpg\";s:18:\"astra-page-api-url\";s:75:\"https://websitedemos.net/ecourse-learn-photoshop-06/wp-json/wp/v2/pages/181\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/ecourse-learn-photoshop-06/pricing/\";s:15:\"astra-sites-tag\";a:1:{i:585;s:7:\"pricing\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-20924\";a:22:{s:5:\"title\";s:10:\"Life Coach\";s:2:\"id\";i:20924;s:12:\"publish-date\";i:1552457758;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/life-coach-06-01.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/life-coach-06-01.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/life-coach-06-01.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/life-coach-06\";s:20:\"astra-site-parent-id\";i:80;s:15:\"astra-sites-tag\";a:5:{i:610;s:8:\"coaching\";i:608;s:8:\"guidance\";i:612;s:10:\"life-coach\";i:609;s:9:\"motivator\";i:611;s:16:\"self-improvement\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-22414\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/life-coach-06-01.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/life-coach-06-01.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/life-coach-06/wp-json/wp/v2/pages/304\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/life-coach-06/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-22410\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/life-coach-06-about-01.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/life-coach-06-about-01.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/life-coach-06/wp-json/wp/v2/pages/364\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/life-coach-06/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-22412\";a:12:{s:5:\"title\";s:8:\"Coaching\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/life-coach-06-coaching-01.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/life-coach-06-coaching-01.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/life-coach-06/wp-json/wp/v2/pages/373\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/life-coach-06/coaching/\";s:15:\"astra-sites-tag\";a:1:{i:610;s:8:\"coaching\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-22413\";a:12:{s:5:\"title\";s:10:\"Contact Me\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/life-coach-06-contact-me-01.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/life-coach-06-contact-me-01.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/life-coach-06/wp-json/wp/v2/pages/380\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/life-coach-06/contact-me/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-20957\";a:22:{s:5:\"title\";s:5:\"Hotel\";s:2:\"id\";i:20957;s:12:\"publish-date\";i:1552457756;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/03/id-20957-hotel-resize.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/03/id-20957-hotel-resize.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/03/id-20957-hotel-resize.jpg\";s:14:\"astra-site-url\";s:27:\"//websitedemos.net/hotel-06\";s:20:\"astra-site-parent-id\";i:156;s:15:\"astra-sites-tag\";a:6:{i:560;s:7:\"cuisine\";i:336;s:4:\"food\";i:350;s:5:\"hotel\";i:712;s:5:\"lodge\";i:711;s:5:\"motel\";i:714;s:6:\"resort\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-23488\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23488-hotel-home-resize.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23488-hotel-home-resize.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/hotel-06/wp-json/wp/v2/pages/215\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:28:\"//websitedemos.net/hotel-06/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23489\";a:12:{s:5:\"title\";s:5:\"Rooms\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23489-hotel-rooms-resize.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23489-hotel-rooms-resize.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/hotel-06/wp-json/wp/v2/pages/268\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/hotel-06/rooms/\";s:15:\"astra-sites-tag\";a:1:{i:715;s:5:\"rooms\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23490\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23490-hotel-services-resize.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23490-hotel-services-resize.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/hotel-06/wp-json/wp/v2/pages/276\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/hotel-06/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23487\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23487-hotel-gallery-resize.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23487-hotel-gallery-resize.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/hotel-06/wp-json/wp/v2/pages/287\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/hotel-06/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23491\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23491-hotel-testimonials-resize.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23491-hotel-testimonials-resize.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/hotel-06/wp-json/wp/v2/pages/295\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/hotel-06/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23486\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23486-hotel-contact-resize.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23486-hotel-contact-resize.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/hotel-06/wp-json/wp/v2/pages/299\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/hotel-06/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-20968\";a:22:{s:5:\"title\";s:9:\"theAgency\";s:2:\"id\";i:20968;s:12:\"publish-date\";i:1552457756;s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-feb-20-home.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-feb-20-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-feb-20-home.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/wordpress-agency-06\";s:20:\"astra-site-parent-id\";i:126;s:15:\"astra-sites-tag\";a:7:{i:663;s:6:\"agency\";i:979;s:7:\"company\";i:664;s:16:\"digital-services\";i:812;s:6:\"office\";i:665;s:14:\"service-agency\";i:661;s:7:\"website\";i:879;s:16:\"wordpress-agency\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:2;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-23201\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-feb-20-home.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-feb-20-home.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/wordpress-agency-06/wp-json/wp/v2/pages/343\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/wordpress-agency-06/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23199\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-feb-20-about.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-feb-20-about.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/wordpress-agency-06/wp-json/wp/v2/pages/392\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/wordpress-agency-06/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23203\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-feb-20-services.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-feb-20-services.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/wordpress-agency-06/wp-json/wp/v2/pages/404\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/wordpress-agency-06/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23202\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-feb-20-projects.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-feb-20-projects.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/wordpress-agency-06/wp-json/wp/v2/pages/415\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/wordpress-agency-06/projects/\";s:15:\"astra-sites-tag\";a:1:{i:424;s:7:\"project\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23204\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-feb-20-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-feb-20-testimonials.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/wordpress-agency-06/wp-json/wp/v2/pages/426\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/wordpress-agency-06/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23200\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-feb-20-contact.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-feb-20-contact.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/wordpress-agency-06/wp-json/wp/v2/pages/435\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/wordpress-agency-06/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(244,'astra-sites-and-pages-page-28','a:15:{s:8:\"id-20969\";a:22:{s:5:\"title\";s:7:\"eCourse\";s:2:\"id\";i:20969;s:12:\"publish-date\";i:1552457755;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-06-home-1.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-06-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-06-home-1.jpg\";s:14:\"astra-site-url\";s:27:\"//websitedemos.net/teach-06\";s:20:\"astra-site-parent-id\";i:129;s:15:\"astra-sites-tag\";a:5:{i:468;s:9:\"elearning\";i:719;s:15:\"online-coaching\";i:975;s:15:\"online-learning\";i:721;s:8:\"training\";i:720;s:9:\"tutorials\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-23228\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-06-home-1.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-06-home-1.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/teach-06/wp-json/wp/v2/pages/143\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:28:\"//websitedemos.net/teach-06/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23226\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-06-about.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-06-about.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/teach-06/wp-json/wp/v2/pages/188\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/teach-06/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23229\";a:12:{s:5:\"title\";s:7:\"Lessons\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-06-lessons.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-06-lessons.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/teach-06/wp-json/wp/v2/pages/201\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/teach-06/lessons/\";s:15:\"astra-sites-tag\";a:1:{i:747;s:7:\"lessons\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23230\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-06-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-06-testimonials.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/teach-06/wp-json/wp/v2/pages/212\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/teach-06/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23227\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-06-contact.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-06-contact.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/teach-06/wp-json/wp/v2/pages/217\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/teach-06/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-20972\";a:22:{s:5:\"title\";s:18:\"Personal Dietitian\";s:2:\"id\";i:20972;s:12:\"publish-date\";i:1552457754;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/dietitian-06-home.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/dietitian-06-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/dietitian-06-home.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/dietitian-06\";s:20:\"astra-site-parent-id\";i:131;s:15:\"astra-sites-tag\";a:3:{i:753;s:9:\"dietitian\";i:336;s:4:\"food\";i:754;s:12:\"nutritionist\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:29:\"Ultimate Addons for Gutenberg\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-23254\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/dietitian-06-home.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/dietitian-06-home.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/dietitian-06/wp-json/wp/v2/pages/803\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/dietitian-06/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23251\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/dietitian-06-about-01.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/dietitian-06-about-01.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/dietitian-06/wp-json/wp/v2/pages/851\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/dietitian-06/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23255\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/dietitian-06-services-01.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/dietitian-06-services-01.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/dietitian-06/wp-json/wp/v2/pages/860\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/dietitian-06/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23252\";a:12:{s:5:\"title\";s:5:\"Blogs\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/dietitian-06-blogs-01.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/dietitian-06-blogs-01.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/dietitian-06/wp-json/wp/v2/pages/915\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/dietitian-06/blogs/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:29:\"Ultimate Addons for Gutenberg\";}}}s:8:\"id-23253\";a:12:{s:5:\"title\";s:10:\"Contact Me\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/dietitian-06-contact-me-01.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/dietitian-06-contact-me-01.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/dietitian-06/wp-json/wp/v2/pages/874\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/dietitian-06/contact-me/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-20981\";a:22:{s:5:\"title\";s:7:\"Charity\";s:2:\"id\";i:20981;s:12:\"publish-date\";i:1552457753;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-pro-feb-20-home.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-pro-feb-20-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-pro-feb-20-home.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/charity-06\";s:20:\"astra-site-parent-id\";i:138;s:15:\"astra-sites-tag\";a:5:{i:625;s:7:\"charity\";i:624;s:10:\"foundation\";i:626;s:6:\"giving\";i:977;s:10:\"non-profit\";i:745;s:12:\"organization\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-23323\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-pro-feb-20-home.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-pro-feb-20-home.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/charity-06/wp-json/wp/v2/pages/541\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/charity-06/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23324\";a:12:{s:5:\"title\";s:10:\"What We Do\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-pro-feb-20-what-we-do.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-pro-feb-20-what-we-do.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/charity-06/wp-json/wp/v2/pages/596\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/charity-06/what-we-do/\";s:15:\"astra-sites-tag\";a:2:{i:628;s:10:\"what-we-do\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23322\";a:12:{s:5:\"title\";s:15:\"Creating Impact\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-pro-feb-20-making-impact.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-pro-feb-20-making-impact.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/charity-06/wp-json/wp/v2/pages/605\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/charity-06/creating-impact/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23321\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-pro-feb-20-contact.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-pro-feb-20-contact.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/charity-06/wp-json/wp/v2/pages/618\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/charity-06/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-20983\";a:22:{s:5:\"title\";s:10:\"Sweet Shop\";s:2:\"id\";i:20983;s:12:\"publish-date\";i:1552457753;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-home.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-home.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/sweet-shop-06\";s:20:\"astra-site-parent-id\";i:134;s:15:\"astra-sites-tag\";a:7:{i:758;s:6:\"bakery\";i:496;s:9:\"ecommerce\";i:383;s:12:\"online-store\";i:749;s:5:\"store\";i:756;s:10:\"sweet-shop\";i:757;s:6:\"sweets\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-23288\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-home.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-home.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/sweet-shop-06/wp-json/wp/v2/pages/500\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/sweet-shop-06/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23285\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-about.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-about.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/sweet-shop-06/wp-json/wp/v2/pages/543\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/sweet-shop-06/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23287\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-gallery.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-gallery.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/sweet-shop-06/wp-json/wp/v2/pages/548\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/sweet-shop-06/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23289\";a:12:{s:5:\"title\";s:9:\"Our Cakes\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-cakes.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-cakes.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/sweet-shop-06/wp-json/wp/v2/pages/555\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/sweet-shop-06/our-cakes/\";s:15:\"astra-sites-tag\";a:1:{i:783;s:4:\"cake\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23286\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-contact.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-contact.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/sweet-shop-06/wp-json/wp/v2/pages/566\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/sweet-shop-06/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21029\";a:22:{s:5:\"title\";s:3:\"Spa\";s:2:\"id\";i:21029;s:12:\"publish-date\";i:1552457752;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/03/lotus-spa-therapy-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/03/lotus-spa-therapy-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/03/lotus-spa-therapy-home.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/lotus-spa-06\";s:20:\"astra-site-parent-id\";i:140;s:15:\"astra-sites-tag\";a:10:{i:532;s:11:\"acupressure\";i:474;s:8:\"grooming\";i:528;s:7:\"massage\";i:527;s:17:\"massage-therapist\";i:529;s:13:\"physiotherapy\";i:531;s:11:\"reflexology\";i:533;s:10:\"relaxation\";i:650;s:5:\"salon\";i:651;s:8:\"skincare\";i:530;s:3:\"spa\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-23332\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/03/lotus-spa-therapy-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/03/lotus-spa-therapy-home.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/lotus-spa-06/wp-json/wp/v2/pages/3092\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/lotus-spa-06/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23330\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-06-about-01.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-06-about-01.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/lotus-spa-06/wp-json/wp/v2/pages/3137\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/lotus-spa-06/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23333\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-06-services-01.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-06-services-01.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/lotus-spa-06/wp-json/wp/v2/pages/3150\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/lotus-spa-06/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23331\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-06-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-06-contact-1.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/lotus-spa-06/wp-json/wp/v2/pages/3165\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/lotus-spa-06/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21039\";a:22:{s:5:\"title\";s:6:\"Agency\";s:2:\"id\";i:21039;s:12:\"publish-date\";i:1552457751;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-06-home.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-06-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-06-home.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/agency-06\";s:20:\"astra-site-parent-id\";i:150;s:15:\"astra-sites-tag\";a:6:{i:663;s:6:\"agency\";i:979;s:7:\"company\";i:664;s:16:\"digital-services\";i:812;s:6:\"office\";i:665;s:14:\"service-agency\";i:661;s:7:\"website\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-23425\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-06-home.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-06-home.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/agency-06/wp-json/wp/v2/pages/620\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/agency-06/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23423\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-06-about.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-06-about.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/agency-06/wp-json/wp/v2/pages/670\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/agency-06/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23428\";a:12:{s:5:\"title\";s:8:\"Websites\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-06-websites.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-06-websites.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/agency-06/wp-json/wp/v2/pages/680\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/agency-06/websites/\";s:15:\"astra-sites-tag\";a:1:{i:661;s:7:\"website\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23427\";a:12:{s:5:\"title\";s:7:\"Support\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-06-support.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-06-support.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/agency-06/wp-json/wp/v2/pages/687\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/agency-06/support/\";s:15:\"astra-sites-tag\";a:1:{i:765;s:7:\"support\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23426\";a:12:{s:5:\"title\";s:7:\"Pricing\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-06-pricing.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-06-pricing.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/agency-06/wp-json/wp/v2/pages/702\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/agency-06/pricing/\";s:15:\"astra-sites-tag\";a:1:{i:585;s:7:\"pricing\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23424\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-06-contact.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-06-contact.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/agency-06/wp-json/wp/v2/pages/707\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/agency-06/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55430\";a:22:{s:5:\"title\";s:18:\"Event Landing Page\";s:2:\"id\";i:55430;s:12:\"publish-date\";i:1621890480;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/event-02-home.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/event-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/event-02-home.jpg\";s:14:\"astra-site-url\";s:27:\"//websitedemos.net/event-02\";s:20:\"astra-site-parent-id\";i:2117;s:15:\"astra-sites-tag\";a:11:{i:2141;s:19:\"business-conference\";i:2138;s:16:\"conference-event\";i:2146;s:17:\"design-conference\";i:2137;s:13:\"event-landing\";i:2140;s:15:\"marketing-event\";i:2145;s:6:\"meetup\";i:648;s:12:\"presentation\";i:2142;s:14:\"product-launch\";i:2139;s:7:\"seminar\";i:2144;s:15:\"tech-conference\";i:2143;s:20:\"webinar-landing-page\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:39;s:4:\"free\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:4:{i:2811;s:10:\"conference\";i:2784;s:5:\"event\";i:2863;s:12:\"landing-page\";i:2771;s:8:\"one-page\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2489;s:16:\"event-invitation\";i:2927;s:8:\"one-page\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:968:\"<!-- wp:paragraph -->\n<p>The Event Landing Page template can work as a one-page template or multi-page design depending on your needs. It’s a light, crisp design with plenty of white space and varying shades of blue that add color and create confidence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template has a minimal feel that lets your images and content stand out. With a simple white background and no borders, the blue color for buttons and calls to action really stands out. Perfect for converting customers!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Event Landing Page template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Simple, minimal design with presence</li><li>Flexible content areas to outline your event</li><li>Can integrate with booking plugins for online booking</li><li>Readymade pages ideal for the event niche</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:76:\"Minimalist web design with attractive elements for events and event planning\";s:5:\"pages\";a:1:{s:8:\"id-55431\";a:12:{s:5:\"title\";s:12:\"Landing Page\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/event-02-home.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/event-02-home.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/event-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:28:\"//websitedemos.net/event-02/\";s:15:\"astra-sites-tag\";a:2:{i:850;s:12:\"landing-page\";i:463;s:11:\"single-page\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55436\";a:22:{s:5:\"title\";s:18:\"Event Landing Page\";s:2:\"id\";i:55436;s:12:\"publish-date\";i:1621881999;s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/event-08.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/event-08-600x2182.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/event-08-400x1455.jpg\";s:14:\"astra-site-url\";s:27:\"//websitedemos.net/event-08\";s:20:\"astra-site-parent-id\";i:2118;s:15:\"astra-sites-tag\";a:11:{i:2141;s:19:\"business-conference\";i:2138;s:16:\"conference-event\";i:2146;s:17:\"design-conference\";i:2137;s:13:\"event-landing\";i:2140;s:15:\"marketing-event\";i:2145;s:6:\"meetup\";i:648;s:12:\"presentation\";i:2142;s:14:\"product-launch\";i:2139;s:7:\"seminar\";i:2144;s:15:\"tech-conference\";i:2143;s:20:\"webinar-landing-page\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:39;s:4:\"free\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2489;s:16:\"event-invitation\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-55437\";a:12:{s:5:\"title\";s:12:\"Landing Page\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/event-08.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/event-08-600x2182.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/event-08/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:28:\"//websitedemos.net/event-08/\";s:15:\"astra-sites-tag\";a:2:{i:850;s:12:\"landing-page\";i:463;s:11:\"single-page\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-45817\";a:22:{s:5:\"title\";s:18:\"Financial Advisors\";s:2:\"id\";i:45817;s:12:\"publish-date\";i:1585221053;s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-04-home-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-04-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-04-home-1.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/financial-accounting-04\";s:20:\"astra-site-parent-id\";i:1485;s:15:\"astra-sites-tag\";a:7:{i:447;s:10:\"accountant\";i:448;s:10:\"accounting\";i:581;s:6:\"advice\";i:449;s:20:\"chartered-accountant\";i:446;s:7:\"finance\";i:582;s:20:\"financial-investment\";i:775;s:18:\"investment-banking\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:5:{i:2823;s:10:\"accounting\";i:2777;s:8:\"business\";i:2805;s:7:\"finance\";i:2866;s:9:\"insurance\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2481;s:15:\"finance-service\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:926:\"<!-- wp:paragraph -->\n<p>The Financial Advisors template has the gravity and authority clients look for in the financial niche. All without being too overbearing or too sensible. It’s a modern, light design with lots of images and bold contrast colors.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The entire template has been designed with finance in mind. That means balancing the modern with the established to create confidence in visitors. We think this template delivers that and so much more!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Financial Advisors template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Light, modern design with the required gravity for finance</li><li>Flexible content areas throughout</li><li>Customizable colors and fonts</li><li>Readymade service and contact pages</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"Modern website design that’s ideal for the finance industry and financial advisers\";s:5:\"pages\";a:5:{s:8:\"id-45820\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-04-home-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-04-home-1.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/financial-accounting-04/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/financial-accounting-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-45822\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-04-services-1.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-04-services-1.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/financial-accounting-04/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/financial-accounting-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-45821\";a:12:{s:5:\"title\";s:10:\"Industries\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-04-industries-1.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-04-industries-1.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/financial-accounting-04/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/financial-accounting-04/industries/\";s:15:\"astra-sites-tag\";a:1:{i:493;s:10:\"industries\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-45818\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-04-about.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-04-about.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/financial-accounting-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/financial-accounting-04/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-45819\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-04-contact.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/financial-accounting-04/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/financial-accounting-04/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}}s:19:\"related-bb-template\";i:45836;s:26:\"related-elementor-template\";i:45817;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-45836\";a:22:{s:5:\"title\";s:18:\"Financial Advisors\";s:2:\"id\";i:45836;s:12:\"publish-date\";i:1585222094;s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-03-homepage.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/financial-accounting-03\";s:20:\"astra-site-parent-id\";i:1486;s:15:\"astra-sites-tag\";a:7:{i:447;s:10:\"accountant\";i:448;s:10:\"accounting\";i:581;s:6:\"advice\";i:449;s:20:\"chartered-accountant\";i:446;s:7:\"finance\";i:582;s:20:\"financial-investment\";i:775;s:18:\"investment-banking\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2481;s:15:\"finance-service\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:2;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:3;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-45839\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/financial-accounting-03/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/financial-accounting-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45841\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-03-services.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-03-services.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/financial-accounting-03/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/financial-accounting-03/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45840\";a:12:{s:5:\"title\";s:10:\"Industries\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-03-industries.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-03-industries.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/financial-accounting-03/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/financial-accounting-03/industries/\";s:15:\"astra-sites-tag\";a:1:{i:493;s:10:\"industries\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45837\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-03-about.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-03-about.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/financial-accounting-03/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/financial-accounting-03/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-45838\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-03-contact.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/financial-accounting-03/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/financial-accounting-03/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-45806\";a:22:{s:5:\"title\";s:17:\"Financial Advisor\";s:2:\"id\";i:45806;s:12:\"publish-date\";i:1585220378;s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-06-home-01.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-06-home-01.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-06-home-01.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/financial-accounting-06\";s:20:\"astra-site-parent-id\";i:1484;s:15:\"astra-sites-tag\";a:7:{i:447;s:10:\"accountant\";i:448;s:10:\"accounting\";i:581;s:6:\"advice\";i:449;s:20:\"chartered-accountant\";i:446;s:7:\"finance\";i:582;s:20:\"financial-investment\";i:775;s:18:\"investment-banking\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:2;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-45809\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-06-home-01.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-06-home-01.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/financial-accounting-06/wp-json/wp/v2/pages/232\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/financial-accounting-06/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-45811\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-06-services-01.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-06-services-01.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/financial-accounting-06/wp-json/wp/v2/pages/291\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/financial-accounting-06/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-45810\";a:12:{s:5:\"title\";s:10:\"Industries\";s:18:\"featured-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-06-industries-01.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-06-industries-01.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/financial-accounting-06/wp-json/wp/v2/pages/300\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/financial-accounting-06/industries/\";s:15:\"astra-sites-tag\";a:1:{i:493;s:10:\"industries\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-45807\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-06-about-us-01.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-06-about-us-01.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/financial-accounting-06/wp-json/wp/v2/pages/310\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/financial-accounting-06/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-45808\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-06-contact-us-01.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/03/financial-accounting-06-contact-us-01.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/financial-accounting-06/wp-json/wp/v2/pages/317\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/financial-accounting-06/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21041\";a:22:{s:5:\"title\";s:10:\"Freelancer\";s:2:\"id\";i:21041;s:12:\"publish-date\";i:1552457751;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/freelancer-04-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/freelancer-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/freelancer-04-home.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/freelancer-06\";s:20:\"astra-site-parent-id\";i:151;s:15:\"astra-sites-tag\";a:4:{i:339;s:6:\"artist\";i:670;s:8:\"designer\";i:669;s:10:\"freelancer\";i:671;s:16:\"service-provider\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:2;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-23435\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/freelancer-04-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/freelancer-04-home.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/freelancer-06/wp-json/wp/v2/pages/469\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/freelancer-06/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21085\";a:22:{s:5:\"title\";s:15:\"MultiMed Clinic\";s:2:\"id\";i:21085;s:12:\"publish-date\";i:1552457750;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-home.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-home.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/multimed-06\";s:20:\"astra-site-parent-id\";i:153;s:15:\"astra-sites-tag\";a:7:{i:337;s:6:\"clinic\";i:601;s:6:\"doctor\";i:604;s:10:\"healthcare\";i:605;s:8:\"hospital\";i:603;s:7:\"medical\";i:606;s:15:\"medical-science\";i:607;s:9:\"treatment\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-23451\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-home.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-home.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/multimed-06/wp-json/wp/v2/pages/284\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/multimed-06/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23447\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-about.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-about.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/multimed-06/wp-json/wp/v2/pages/331\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/multimed-06/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23449\";a:12:{s:5:\"title\";s:11:\"Departments\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-departments.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-departments.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/multimed-06/wp-json/wp/v2/pages/340\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/multimed-06/departments/\";s:15:\"astra-sites-tag\";a:3:{i:602;s:11:\"departments\";i:811;s:10:\"occupation\";i:812;s:6:\"office\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23450\";a:12:{s:5:\"title\";s:7:\"Doctors\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-doctors.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-doctors.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/multimed-06/wp-json/wp/v2/pages/347\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/multimed-06/doctors/\";s:15:\"astra-sites-tag\";a:1:{i:601;s:6:\"doctor\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23452\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-testimonials.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/multimed-06/wp-json/wp/v2/pages/353\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/multimed-06/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23448\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-contact.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-contact.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/multimed-06/wp-json/wp/v2/pages/359\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/multimed-06/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21088\";a:22:{s:5:\"title\";s:6:\"Artist\";s:2:\"id\";i:21088;s:12:\"publish-date\";i:1552457749;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-feb-20-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-feb-20-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-feb-20-home.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/artist-06\";s:20:\"astra-site-parent-id\";i:157;s:15:\"astra-sites-tag\";a:4:{i:597;s:3:\"art\";i:339;s:6:\"artist\";i:595;s:10:\"exhibition\";i:614;s:7:\"painter\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-23494\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-feb-20-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-feb-20-home.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/artist-06/wp-json/wp/v2/pages/243\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/artist-06/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23496\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-feb-20-portfolio.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-feb-20-portfolio.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/artist-06/wp-json/wp/v2/pages/291\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/artist-06/portfolio/\";s:15:\"astra-sites-tag\";a:2:{i:444;s:9:\"portfolio\";i:424;s:7:\"project\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23492\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-feb-20-about.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-feb-20-about.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/artist-06/wp-json/wp/v2/pages/285\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/artist-06/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23493\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/artist-feb-20-contact.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23493-artist-contact-resize.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/artist-06/wp-json/wp/v2/pages/300\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/artist-06/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21090\";a:22:{s:5:\"title\";s:10:\"University\";s:2:\"id\";i:21090;s:12:\"publish-date\";i:1552457749;s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/03/id-21090-university-resize.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/03/id-21090-university-resize.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/03/id-21090-university-resize.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/university-06\";s:20:\"astra-site-parent-id\";i:160;s:15:\"astra-sites-tag\";a:5:{i:457;s:7:\"college\";i:459;s:9:\"education\";i:460;s:8:\"learning\";i:456;s:6:\"school\";i:458;s:10:\"university\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:2;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-23525\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23525-university-home-resize.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23525-university-home-resize.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/university-06/wp-json/wp/v2/pages/165\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/university-06/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23521\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/university-06-about.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/university-06-about.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/university-06/wp-json/wp/v2/pages/216\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/university-06/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23523\";a:12:{s:5:\"title\";s:7:\"Courses\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23523-university-courses-resize.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23523-university-courses-resize.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/university-06/wp-json/wp/v2/pages/224\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/university-06/courses/\";s:15:\"astra-sites-tag\";a:2:{i:557;s:7:\"classes\";i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23526\";a:12:{s:5:\"title\";s:8:\"Teachers\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23526-university-teachers-resize.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23526-university-teachers-resize.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/university-06/wp-json/wp/v2/pages/230\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/university-06/teachers/\";s:15:\"astra-sites-tag\";a:1:{i:464;s:7:\"teacher\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23524\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23524-university-gallery-resize.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23524-university-gallery-resize.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/university-06/wp-json/wp/v2/pages/236\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/university-06/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23522\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/university-06-contact.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/university-06-contact.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/university-06/wp-json/wp/v2/pages/240\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/university-06/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no');
INSERT INTO `wpjv_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (245,'astra-sites-and-pages-page-29','a:15:{s:8:\"id-21092\";a:22:{s:5:\"title\";s:12:\"Kindergarten\";s:2:\"id\";i:21092;s:12:\"publish-date\";i:1552457749;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-06-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-06-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-06-home.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/kindergarten-06\";s:20:\"astra-site-parent-id\";i:154;s:15:\"astra-sites-tag\";a:4:{i:459;s:9:\"education\";i:617;s:12:\"kindergarten\";i:460;s:8:\"learning\";i:456;s:6:\"school\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-23463\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-06-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-06-home.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/kindergarten-06/wp-json/wp/v2/pages/213\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/kindergarten-06/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23459\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-06-about.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-06-about.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/kindergarten-06/wp-json/wp/v2/pages/270\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/kindergarten-06/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23460\";a:12:{s:5:\"title\";s:7:\"Classes\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-06-classes-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-06-classes-1.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/kindergarten-06/wp-json/wp/v2/pages/280\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/kindergarten-06/classes/\";s:15:\"astra-sites-tag\";a:1:{i:557;s:7:\"classes\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23462\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-06-faq.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-06-faq.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/kindergarten-06/wp-json/wp/v2/pages/286\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/kindergarten-06/faq/\";s:15:\"astra-sites-tag\";a:2:{i:426;s:3:\"faq\";i:709;s:9:\"questions\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23464\";a:12:{s:5:\"title\";s:7:\"Reviews\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-06-reviews.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-06-reviews.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/kindergarten-06/wp-json/wp/v2/pages/293\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/kindergarten-06/reviews/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23461\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-06-contact.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-06-contact.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/kindergarten-06/wp-json/wp/v2/pages/298\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/kindergarten-06/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21096\";a:22:{s:5:\"title\";s:17:\"Gym &amp; Fitness\";s:2:\"id\";i:21096;s:12:\"publish-date\";i:1552457748;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-home.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-home.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/fitness-center-06\";s:20:\"astra-site-parent-id\";i:162;s:15:\"astra-sites-tag\";a:9:{i:502;s:8:\"exercise\";i:499;s:7:\"fitness\";i:505;s:15:\"fitness-trainer\";i:506;s:19:\"functional-training\";i:500;s:3:\"gym\";i:976;s:14:\"gym-instructor\";i:504;s:11:\"gym-trainer\";i:503;s:7:\"trainer\";i:501;s:8:\"work-out\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-23543\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-home.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-home.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/fitness-center-06/wp-json/wp/v2/pages/193\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/fitness-center-06/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23541\";a:12:{s:5:\"title\";s:7:\"Classes\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-classes.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-classes.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/fitness-center-06/wp-json/wp/v2/pages/241\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/fitness-center-06/classes/\";s:15:\"astra-sites-tag\";a:1:{i:557;s:7:\"classes\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23539\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-about.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-about.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/fitness-center-06/wp-json/wp/v2/pages/246\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/fitness-center-06/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23542\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-contact.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-contact.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/fitness-center-06/wp-json/wp/v2/pages/252\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/fitness-center-06/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21098\";a:22:{s:5:\"title\";s:6:\"Winery\";s:2:\"id\";i:21098;s:12:\"publish-date\";i:1552457748;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/winery-06-home01.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/winery-06-home01.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/winery-06-home01.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/winery-06\";s:20:\"astra-site-parent-id\";i:164;s:15:\"astra-sites-tag\";a:4:{i:635;s:7:\"brewery\";i:632;s:7:\"farming\";i:634;s:15:\"wine-production\";i:633;s:6:\"winery\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-23563\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/winery-06-home01.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/winery-06-home01.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/winery-06/wp-json/wp/v2/pages/436\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/winery-06/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23564\";a:12:{s:5:\"title\";s:9:\"Our Story\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/winery-06-our-story-01.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/winery-06-our-story-01.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/winery-06/wp-json/wp/v2/pages/493\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/winery-06/our-story/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:767;s:5:\"story\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23562\";a:12:{s:5:\"title\";s:10:\"Experience\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/winery-06-experience-01.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/winery-06-experience-01.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/winery-06/wp-json/wp/v2/pages/498\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/winery-06/experience/\";s:15:\"astra-sites-tag\";a:1:{i:636;s:10:\"experience\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23561\";a:12:{s:5:\"title\";s:6:\"Events\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/winery-06-events-01.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/winery-06-events-01.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/winery-06/wp-json/wp/v2/pages/504\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/winery-06/events/\";s:15:\"astra-sites-tag\";a:1:{i:409;s:5:\"event\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23560\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/winery-06-contact-01.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/winery-06-contact-01.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/winery-06/wp-json/wp/v2/pages/512\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/winery-06/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21100\";a:22:{s:5:\"title\";s:12:\"Psychiatrist\";s:2:\"id\";i:21100;s:12:\"publish-date\";i:1552457748;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/psychiatrist-home-04.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/psychiatrist-home-04.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/psychiatrist-home-04.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/psychiatrist-06\";s:20:\"astra-site-parent-id\";i:159;s:15:\"astra-sites-tag\";a:6:{i:608;s:8:\"guidance\";i:399;s:8:\"one-page\";i:621;s:12:\"psychiatrist\";i:622;s:13:\"psychotherapy\";i:463;s:11:\"single-page\";i:619;s:8:\"wellness\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:2;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-23513\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/psychiatrist-home-04.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/psychiatrist-home-04.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/psychiatrist-06/wp-json/wp/v2/pages/459\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/psychiatrist-06/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21102\";a:22:{s:5:\"title\";s:6:\"Author\";s:2:\"id\";i:21102;s:12:\"publish-date\";i:1552457748;s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2019/07/author-home.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2019/07/author-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2019/07/author-home.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/author-06\";s:20:\"astra-site-parent-id\";i:163;s:15:\"astra-sites-tag\";a:5:{i:724;s:6:\"author\";i:726;s:10:\"literature\";i:723;s:8:\"novelist\";i:722;s:4:\"poet\";i:725;s:6:\"writer\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-23548\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2019/07/author-home.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2019/07/author-home.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/author-06/wp-json/wp/v2/pages/291\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/author-06/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23546\";a:12:{s:5:\"title\";s:5:\"Books\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2019/07/author-books.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2019/07/author-books.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/author-06/wp-json/wp/v2/pages/346\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/author-06/books/\";s:15:\"astra-sites-tag\";a:1:{i:727;s:4:\"book\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23544\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2019/07/author-about.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2019/07/author-about.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/author-06/wp-json/wp/v2/pages/355\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/author-06/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23547\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/author-contact.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/author-contact.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/author-06/wp-json/wp/v2/pages/364\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/author-06/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21066\";a:22:{s:5:\"title\";s:18:\"Garden Maintenance\";s:2:\"id\";i:21066;s:12:\"publish-date\";i:1551959684;s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/garden-maintenance-02-home.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/garden-maintenance-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/garden-maintenance-02-home.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/garden-maintenance-02\";s:20:\"astra-site-parent-id\";i:244;s:15:\"astra-sites-tag\";a:8:{i:416;s:11:\"garden-care\";i:421;s:18:\"garden-maintenance\";i:420;s:9:\"gardening\";i:422;s:11:\"landscaping\";i:417;s:9:\"lawn-care\";i:1021;s:14:\"local-business\";i:419;s:8:\"planting\";i:418;s:12:\"weed-control\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:5:{i:2777;s:8:\"business\";i:2853;s:17:\"florist-gardening\";i:2852;s:11:\"landscaping\";i:2830;s:6:\"nature\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2476;s:9:\"gardening\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1008:\"<!-- wp:paragraph -->\n<p>The Garden Maintenance template has a light, refreshing feel with lots of whitespace and a calm green colorway. It opens with a subtle slider with an image of foliage to immediately set the scene.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The rest of the page opens to include product and service areas, a portfolio and the flexible content elements you would expect. The entire template is ready to be customized and launched and you can add, change or remove everything you see on the page easily.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Garden Maintenance template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Light and welcoming design with refreshing green color</li><li>Includes all the elements you would expect from a garden template</li><li>Flexible content areas for products and services</li><li>Compelling calls to action in a bright color</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:79:\"Refreshing web template designed for gardeners and garden maintenance companies\";s:5:\"pages\";a:6:{s:8:\"id-50469\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/garden-maintenance-02-about.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/03/garden-maintenance-02-about.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/garden-maintenance-02/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/garden-maintenance-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-50470\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/03/garden-maintenance-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/03/garden-maintenance-02-contact.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/garden-maintenance-02/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/garden-maintenance-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-50471\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/03/garden-maintenance-02-faq.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/03/garden-maintenance-02-faq.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/garden-maintenance-02/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/garden-maintenance-02/faq/\";s:15:\"astra-sites-tag\";a:2:{i:426;s:3:\"faq\";i:1476;s:26:\"frequently-asked-questions\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-50472\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/garden-maintenance-02-home.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/03/garden-maintenance-02-home.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/garden-maintenance-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/garden-maintenance-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-50473\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/03/garden-maintenance-02-projects.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/03/garden-maintenance-02-projects.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/garden-maintenance-02/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/garden-maintenance-02/projects/\";s:15:\"astra-sites-tag\";a:1:{i:1613;s:8:\"projects\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-50474\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/03/garden-maintenance-02-services.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/03/garden-maintenance-02-services.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/garden-maintenance-02/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/garden-maintenance-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:21066;s:26:\"related-gutenberg-template\";i:48398;}s:8:\"id-21073\";a:22:{s:5:\"title\";s:18:\"Garden Maintenance\";s:2:\"id\";i:21073;s:12:\"publish-date\";i:1551959686;s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/garden-maintenance-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/garden-maintenance-01-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/garden-maintenance-01-homepage.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/garden-maintenance-01\";s:20:\"astra-site-parent-id\";i:242;s:15:\"astra-sites-tag\";a:7:{i:416;s:11:\"garden-care\";i:421;s:18:\"garden-maintenance\";i:420;s:9:\"gardening\";i:422;s:11:\"landscaping\";i:417;s:9:\"lawn-care\";i:419;s:8:\"planting\";i:418;s:12:\"weed-control\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2476;s:9:\"gardening\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-24575\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/garden-maintenance-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/garden-maintenance-01-homepage.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/garden-maintenance-01/wp-json/wp/v2/pages/86\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/garden-maintenance-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-24572\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/garden-maintenance-01-about.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/garden-maintenance-01-about.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/garden-maintenance-01/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/garden-maintenance-01/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-24577\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/garden-maintenance-01-services.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/garden-maintenance-01-services.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/garden-maintenance-01/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/garden-maintenance-01/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-24576\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/garden-maintenance-01-projects.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/garden-maintenance-01-projects.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/garden-maintenance-01/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/garden-maintenance-01/projects/\";s:15:\"astra-sites-tag\";a:1:{i:424;s:7:\"project\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-24574\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/garden-maintenance-01-faq.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/garden-maintenance-01-faq.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/garden-maintenance-01/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/garden-maintenance-01/faq/\";s:15:\"astra-sites-tag\";a:1:{i:426;s:3:\"faq\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-24573\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/garden-maintenance-01-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/garden-maintenance-01-contact-1.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/garden-maintenance-01/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/garden-maintenance-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48398\";a:22:{s:5:\"title\";s:18:\"Garden Maintenance\";s:2:\"id\";i:48398;s:12:\"publish-date\";i:1603963842;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-600x2113.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-400x1409.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/garden-maintenance-08\";s:20:\"astra-site-parent-id\";i:1731;s:15:\"astra-sites-tag\";a:7:{i:416;s:11:\"garden-care\";i:421;s:18:\"garden-maintenance\";i:420;s:9:\"gardening\";i:422;s:11:\"landscaping\";i:417;s:9:\"lawn-care\";i:419;s:8:\"planting\";i:418;s:12:\"weed-control\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2476;s:9:\"gardening\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-48402\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-600x2113.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/garden-maintenance-08/wp-json/wp/v2/pages/31\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/garden-maintenance-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48399\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-about.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-about-600x1294.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/garden-maintenance-08/wp-json/wp/v2/pages/32\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/garden-maintenance-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48404\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-services.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-services-600x1452.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/garden-maintenance-08/wp-json/wp/v2/pages/33\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/garden-maintenance-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48403\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-projects.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-projects-600x1060.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/garden-maintenance-08/wp-json/wp/v2/pages/35\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/garden-maintenance-08/projects/\";s:15:\"astra-sites-tag\";a:1:{i:1613;s:8:\"projects\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48401\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-faq.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-faq-600x778.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/garden-maintenance-08/wp-json/wp/v2/pages/37\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/garden-maintenance-08/faq/\";s:15:\"astra-sites-tag\";a:1:{i:426;s:3:\"faq\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48400\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-contact-600x776.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/garden-maintenance-08/wp-json/wp/v2/pages/36\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/garden-maintenance-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48208\";a:22:{s:5:\"title\";s:7:\"Plumber\";s:2:\"id\";i:48208;s:12:\"publish-date\";i:1603905881;s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-600x1930.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-400x1287.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/plumber-08\";s:20:\"astra-site-parent-id\";i:1706;s:15:\"astra-sites-tag\";a:6:{i:1712;s:19:\"commercial-plumbing\";i:439;s:14:\"local-services\";i:507;s:7:\"plumber\";i:508;s:8:\"plumbing\";i:1711;s:18:\"remolding-services\";i:1710;s:20:\"residential-plumbing\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-48212\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-600x1930.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/plumber-08/wp-json/wp/v2/pages/34\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/plumber-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48209\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-about-2.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-about-2-600x1093.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/plumber-08/wp-json/wp/v2/pages/29\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/plumber-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48213\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-services-2.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-services-2-600x1603.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/plumber-08/wp-json/wp/v2/pages/30\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/plumber-08/services/\";s:15:\"astra-sites-tag\";a:2:{i:425;s:8:\"services\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48214\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-testimonials-600x1293.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/plumber-08/wp-json/wp/v2/pages/31\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/plumber-08/testimonials/\";s:15:\"astra-sites-tag\";a:2:{i:432;s:6:\"review\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48211\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-faq-2.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-faq-2-600x1751.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/plumber-08/wp-json/wp/v2/pages/32\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/plumber-08/faq/\";s:15:\"astra-sites-tag\";a:2:{i:426;s:3:\"faq\";i:1476;s:26:\"frequently-asked-questions\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48210\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-contact-2-600x998.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/plumber-08/wp-json/wp/v2/pages/33\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/plumber-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-20939\";a:22:{s:5:\"title\";s:17:\"Interior Designer\";s:2:\"id\";i:20939;s:12:\"publish-date\";i:1551698919;s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-designer-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-designer-02-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-designer-02-homepage.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/interior-designer-02\";s:20:\"astra-site-parent-id\";i:312;s:15:\"astra-sites-tag\";a:6:{i:435;s:12:\"architecture\";i:436;s:8:\"interior\";i:434;s:15:\"interior-design\";i:422;s:11:\"landscaping\";i:1022;s:12:\"professional\";i:437;s:6:\"zoning\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2795;s:12:\"architecture\";i:2793;s:15:\"interior-design\";i:2770;s:8:\"personal\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:995:\"<!-- wp:paragraph -->\n<p>The Interior Designer template has a crisp, modern feel you would expect of the niche. It has a contemporary look with simple navigation, integrated slideshow below the fold and a section about you front and center.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template uses simple colors and layout, along with modern fonts to let your images and content stand out. It’s a very refined design that shows you at your best while also selling you in a subtle way. It’s all the template you need if you’re a designer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Interior Designer template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Simple, understated design with clever features</li><li>Flexible image and content areas</li><li>Plenty of opportunities to showcase projects and services</li><li>Crisp and modern feel ideal for the niche</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:73:\"Crisp, modern template that fits the design and creative niches perfectly\";s:5:\"pages\";a:6:{s:8:\"id-25257\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-designer-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-designer-02-homepage.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/interior-designer-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/interior-designer-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25255\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-designer-02-aboutpage.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-designer-02-aboutpage.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/interior-designer-02/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/interior-designer-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25259\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-designer-02-servicespage.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-designer-02-servicespage.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/interior-designer-02/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/interior-designer-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25258\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-designer-02-projectspage.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-designer-02-projectspage.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/interior-designer-02/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/interior-designer-02/projects/\";s:15:\"astra-sites-tag\";a:1:{i:424;s:7:\"project\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25260\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-designer-02-testimonialspage.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-designer-02-testimonialspage.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/interior-designer-02/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/interior-designer-02/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25256\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-designer-02-contactpage.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/designer-02-contact.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/interior-designer-02/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/interior-designer-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:20939;s:26:\"related-gutenberg-template\";i:48188;}s:8:\"id-48188\";a:22:{s:5:\"title\";s:17:\"Interior Designer\";s:2:\"id\";i:48188;s:12:\"publish-date\";i:1603905861;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-600x1322.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-400x881.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/interior-designer-08\";s:20:\"astra-site-parent-id\";i:1705;s:15:\"astra-sites-tag\";a:6:{i:435;s:12:\"architecture\";i:436;s:8:\"interior\";i:434;s:15:\"interior-design\";i:422;s:11:\"landscaping\";i:1022;s:12:\"professional\";i:437;s:6:\"zoning\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:2:{i:2488;s:9:\"portfolio\";i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-48191\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-600x1322.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/interior-designer-08/wp-json/wp/v2/pages/688\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/interior-designer-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48189\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-about.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-about-600x1240.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/interior-designer-08/wp-json/wp/v2/pages/689\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/interior-designer-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48193\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-services.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-services-600x1104.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/interior-designer-08/wp-json/wp/v2/pages/690\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/interior-designer-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48192\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-projects.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-projects-600x1736.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/interior-designer-08/wp-json/wp/v2/pages/691\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/interior-designer-08/projects/\";s:15:\"astra-sites-tag\";a:1:{i:424;s:7:\"project\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48194\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-testimonials-600x1335.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/interior-designer-08/wp-json/wp/v2/pages/692\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/interior-designer-08/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48190\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-contact-600x862.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/interior-designer-08/wp-json/wp/v2/pages/693\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/interior-designer-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21023\";a:22:{s:5:\"title\";s:15:\"Pearson College\";s:2:\"id\";i:21023;s:12:\"publish-date\";i:1551356707;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/education-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/education-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/education-03-homepage.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/education-03\";s:20:\"astra-site-parent-id\";i:189;s:15:\"astra-sites-tag\";a:5:{i:457;s:7:\"college\";i:459;s:9:\"education\";i:460;s:8:\"learning\";i:456;s:6:\"school\";i:458;s:10:\"university\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2491;s:22:\"educational-institutes\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:3;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-23925\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/education-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/education-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/education-03/wp-json/wp/v2/pages/267\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/education-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23920\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/education-03-about.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/education-03-about.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/education-03/wp-json/wp/v2/pages/19\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/education-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23922\";a:12:{s:5:\"title\";s:7:\"Courses\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/education-03-courses.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/education-03-courses.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/education-03/wp-json/wp/v2/pages/20\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/education-03/courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23926\";a:12:{s:5:\"title\";s:8:\"Teachers\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/education-03-teachers.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/education-03-teachers.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/education-03/wp-json/wp/v2/pages/21\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/education-03/teachers/\";s:15:\"astra-sites-tag\";a:1:{i:464;s:7:\"teacher\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23923\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/education-03-gallery.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/education-03-gallery.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/education-03/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/education-03/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23921\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/education-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/education-03-contact.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/education-03/wp-json/wp/v2/pages/24\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/education-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-20746\";a:22:{s:5:\"title\";s:15:\"Pearson College\";s:2:\"id\";i:20746;s:12:\"publish-date\";i:1551330893;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/education-04-home.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/education-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/education-04-home.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/education-04\";s:20:\"astra-site-parent-id\";i:187;s:15:\"astra-sites-tag\";a:5:{i:457;s:7:\"college\";i:459;s:9:\"education\";i:460;s:8:\"learning\";i:456;s:6:\"school\";i:458;s:10:\"university\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2825;s:8:\"coaching\";i:2840;s:18:\"college-university\";i:2772;s:9:\"education\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2491;s:22:\"educational-institutes\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1015:\"<!-- wp:paragraph -->\n<p>The Pearson College template is a calm, confident design that uses lots of whitespace and images to help tell the story. There are also some nice effects, inspiring fonts and a nice green contrast color to highlight specific areas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template has a laid back feel but with the authority this niche commands, along with fully customizable content areas, supplementary pages and contact form. As always, you can fully customize everything you see on the page to fit your brand.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Pearson College template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Calm, relaxed web template ideal for colleges or universities</li><li>Flexible content areas throughout</li><li>Popular pages already designed and provided in the template</li><li>Lots of options to use images to paint a picture</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:79:\"Education template with an accessible feel and great design, ideal for colleges\";s:5:\"pages\";a:6:{s:8:\"id-23876\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/education-04-home.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/education-04-home.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/education-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/education-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23871\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/education-04-about-2.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/education-04-about-2.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/education-04/wp-json/wp/v2/pages/19\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/education-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23874\";a:12:{s:5:\"title\";s:7:\"Courses\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/education-04-courses.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/education-04-courses.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/education-04/wp-json/wp/v2/pages/20\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/education-04/courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23877\";a:12:{s:5:\"title\";s:8:\"Teachers\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/education-04-teachers-1.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/education-04-teachers-1.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/education-04/wp-json/wp/v2/pages/21\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/education-04/teachers/\";s:15:\"astra-sites-tag\";a:1:{i:464;s:7:\"teacher\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23875\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/education-04-gallery-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/education-04-gallery-1.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/education-04/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/education-04/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23873\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/education-04-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/education-04-contact-2.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/education-04/wp-json/wp/v2/pages/24\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/education-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:21023;s:26:\"related-elementor-template\";i:20746;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-20807\";a:22:{s:5:\"title\";s:15:\"Growth Marketer\";s:2:\"id\";i:20807;s:12:\"publish-date\";i:1549255990;s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/growthmarketer-home-screenshot.png\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/growthmarketer-home-screenshot.png\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/growthmarketer-home-screenshot.png\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/content-marketing-02\";s:20:\"astra-site-parent-id\";i:225;s:15:\"astra-sites-tag\";a:3:{i:470;s:17:\"content-marketing\";i:472;s:6:\"growth\";i:471;s:8:\"strategy\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:5:{i:2777;s:8:\"business\";i:2796;s:17:\"digital-marketing\";i:2810;s:9:\"freelance\";i:2770;s:8:\"personal\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:976:\"<!-- wp:paragraph -->\n<p>The Growth Marketer template uses strong contrasting colors to create an impact. The blue background instantly grabs your attention while stark white and bold orange help keep it. All while telling your story and converting leads into customers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template can be fully customized if you don’t like those colors. You can customize everything you see on the page if you need to, but this is a well-designed web template specifically for marketing and includes everything you would expect to see.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Growth Marketer template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Bold colors grab attention instantly</li><li>Full page design that’s fully responsive</li><li>Strong calls to action and content areas</li><li>Attractive contact page</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:78:\"Colorful, engaging website template that showcases your services as a marketer\";s:5:\"pages\";a:4:{s:8:\"id-24433\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/growthmarketer-home-screenshot.png\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/growthmarketer-home-screenshot.png\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/content-marketing-02/wp-json/wp/v2/pages/4\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/content-marketing-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24430\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/content-marketing-02-about.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/content-marketing-02-about.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/content-marketing-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/content-marketing-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24434\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2019/07/growthmarketer-testimonials-screenshot.png\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2019/07/growthmarketer-testimonials-screenshot.png\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/content-marketing-02/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/content-marketing-02/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24432\";a:12:{s:5:\"title\";s:7:\"Hire Me\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/growthmarketer-hire-screenshot.png\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2019/07/id-24432-growth-marketer-hire-me-resize.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/content-marketing-02/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/content-marketing-02/hire-me/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:20810;s:26:\"related-elementor-template\";i:20807;s:26:\"related-gutenberg-template\";i:48703;}s:8:\"id-20810\";a:22:{s:5:\"title\";s:15:\"Growth Marketer\";s:2:\"id\";i:20810;s:12:\"publish-date\";i:1551243190;s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/content-marketing-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/content-marketing-01-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/content-marketing-01-homepage.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/content-marketing-01\";s:20:\"astra-site-parent-id\";i:227;s:15:\"astra-sites-tag\";a:3:{i:470;s:17:\"content-marketing\";i:472;s:6:\"growth\";i:471;s:8:\"strategy\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-24451\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/content-marketing-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/content-marketing-01-homepage.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/content-marketing-01/wp-json/wp/v2/pages/106\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/content-marketing-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-24448\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/content-marketing-01-about.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/content-marketing-01-about.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/content-marketing-01/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/content-marketing-01/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-24452\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/content-marketing-01-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/content-marketing-01-testimonials.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/content-marketing-01/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/content-marketing-01/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-24450\";a:12:{s:5:\"title\";s:7:\"Hire Me\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/content-marketing-01-hire-me.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2019/07/id-24450-growth-marketer-hire-me-resize.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/content-marketing-01/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/content-marketing-01/hire-me/\";s:15:\"astra-sites-tag\";a:1:{i:773;s:7:\"hire-me\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(246,'astra-sites-and-pages-page-30','a:15:{s:8:\"id-48703\";a:22:{s:5:\"title\";s:15:\"Growth Marketer\";s:2:\"id\";i:48703;s:12:\"publish-date\";i:1605205567;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/11/content-marketing-08-2.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/11/content-marketing-08-2-600x2199.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/11/content-marketing-08-2-400x1466.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/content-marketing-08\";s:20:\"astra-site-parent-id\";i:1764;s:15:\"astra-sites-tag\";a:3:{i:470;s:17:\"content-marketing\";i:472;s:6:\"growth\";i:471;s:8:\"strategy\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-48706\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/11/content-marketing-08-2.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/11/content-marketing-08-2-600x2199.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/content-marketing-08/wp-json/wp/v2/pages/25247\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/content-marketing-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48704\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/11/content-marketing-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/11/content-marketing-08-about-1-600x1131.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/content-marketing-08/wp-json/wp/v2/pages/25248\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/content-marketing-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48707\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/11/content-marketing-08-testimonials-1.jpg\";s:19:\"thumbnail-image-url\";s:99:\"https://websitedemos.net/wp-content/uploads/2020/11/content-marketing-08-testimonials-1-600x902.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/content-marketing-08/wp-json/wp/v2/pages/25249\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/content-marketing-08/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48705\";a:12:{s:5:\"title\";s:7:\"Hire Me\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/11/content-marketing-08-hire-me-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/11/content-marketing-08-hire-me-1-600x582.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/content-marketing-08/wp-json/wp/v2/pages/25250\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/content-marketing-08/hire-me/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:773;s:7:\"hire-me\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-20816\";a:22:{s:5:\"title\";s:11:\"Barber Shop\";s:2:\"id\";i:20816;s:12:\"publish-date\";i:1549255987;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-02-home-2.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-02-home-2.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-02-home-2.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/barber-shop-02\";s:20:\"astra-site-parent-id\";i:119;s:15:\"astra-sites-tag\";a:6:{i:478;s:6:\"barber\";i:474;s:8:\"grooming\";i:477;s:9:\"hair-care\";i:984;s:9:\"hairstyle\";i:982;s:11:\"hairstylist\";i:1021;s:14:\"local-business\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2890;s:15:\"makeup-cosmetic\";i:2837;s:5:\"salon\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2479;s:6:\"beauty\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:989:\"<!-- wp:paragraph -->\n<p>The Barber Shop template helps paint the picture of a lifestyle enhanced by great hair. It’s a modern, masculine design with full screen images and a parallax effect that provides an upmarket feel many businesses look for.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template uses dark shaded images overlaid with white text using crisp sans serif fonts. Pages offer great balance and some nice content areas to showcase your products and services. It’s perfect website template for barbers and hairdressers!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Barber Shop template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Well-designed template that paints the picture of a lifestyle</li><li>Full screen images with parallax effects</li><li>Lots of content areas to tell your story</li><li>Includes a gallery so you can show and tell</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"Fullscreen template for barbers with strong imagery and a great first impression \";s:5:\"pages\";a:5:{s:8:\"id-23121\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-02-home-2.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-02-home-2.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/barber-shop-02/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/barber-shop-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23117\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-02-about-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-02-about-1.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/barber-shop-02/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/barber-shop-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23118\";a:12:{s:5:\"title\";s:7:\"Barbers\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-02-barbers-1.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-02-barbers-1.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/barber-shop-02/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/barber-shop-02/barbers/\";s:15:\"astra-sites-tag\";a:1:{i:478;s:6:\"barber\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23120\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-02-gallery-1.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-02-gallery-1.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/barber-shop-02/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/barber-shop-02/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23119\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-02-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-02-contact-2.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/barber-shop-02/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/barber-shop-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:20904;s:26:\"related-elementor-template\";i:20816;s:26:\"related-gutenberg-template\";i:49017;}s:8:\"id-20904\";a:22:{s:5:\"title\";s:11:\"Barber Shop\";s:2:\"id\";i:20904;s:12:\"publish-date\";i:1551074522;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-01-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-01-homepage.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/barber-shop-01\";s:20:\"astra-site-parent-id\";i:120;s:15:\"astra-sites-tag\";a:5:{i:478;s:6:\"barber\";i:474;s:8:\"grooming\";i:477;s:9:\"hair-care\";i:984;s:9:\"hairstyle\";i:982;s:11:\"hairstylist\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2479;s:6:\"beauty\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-23135\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-01-homepage.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/barber-shop-01/wp-json/wp/v2/pages/145\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/barber-shop-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-23131\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-01-about-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-01-about-1.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/barber-shop-01/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/barber-shop-01/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-23132\";a:12:{s:5:\"title\";s:7:\"Barbers\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-01-barbers-1.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-01-barbers-1.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/barber-shop-01/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/barber-shop-01/barbers/\";s:15:\"astra-sites-tag\";a:1:{i:478;s:6:\"barber\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-23134\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-01-gallery-1.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-01-gallery-1.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/barber-shop-01/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/barber-shop-01/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-23133\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-01-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/barber-shop-01-contact-2.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/barber-shop-01/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/barber-shop-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48530\";a:22:{s:5:\"title\";s:11:\"Barber Shop\";s:2:\"id\";i:48530;s:12:\"publish-date\";i:1603984624;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08-600x2737.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08-400x1825.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/barber-shop-08\";s:20:\"astra-site-parent-id\";i:1745;s:15:\"astra-sites-tag\";a:6:{i:478;s:6:\"barber\";i:474;s:8:\"grooming\";i:477;s:9:\"hair-care\";i:984;s:9:\"hairstyle\";i:982;s:11:\"hairstylist\";i:1021;s:14:\"local-business\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2479;s:6:\"beauty\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48535\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08-600x2737.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/barber-shop-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/barber-shop-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48531\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08-about.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08-about-600x1302.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/barber-shop-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/barber-shop-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48532\";a:12:{s:5:\"title\";s:7:\"Barbers\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08-barbers.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08-barbers-600x1247.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/barber-shop-08/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/barber-shop-08/barbers/\";s:15:\"astra-sites-tag\";a:2:{i:478;s:6:\"barber\";i:486;s:4:\"team\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48534\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08-gallery.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08-gallery-600x1791.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/barber-shop-08/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/barber-shop-08/gallery/\";s:15:\"astra-sites-tag\";a:2:{i:461;s:7:\"gallery\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48533\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08-contact-600x1076.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/barber-shop-08/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/barber-shop-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-20732\";a:22:{s:5:\"title\";s:21:\"Photography Portfolio\";s:2:\"id\";i:20732;s:12:\"publish-date\";i:1546842931;s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2018/12/photographer-portfolio-feb-20-home.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2018/12/photographer-portfolio-feb-20-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2018/12/photographer-portfolio-feb-20-home.jpg\";s:14:\"astra-site-url\";s:44:\"//websitedemos.net/photographer-portfolio-03\";s:20:\"astra-site-parent-id\";i:200;s:15:\"astra-sites-tag\";a:9:{i:513;s:6:\"camera\";i:482;s:7:\"fashion\";i:515;s:4:\"lens\";i:510;s:9:\"modelling\";i:511;s:12:\"photographer\";i:509;s:11:\"photography\";i:444;s:9:\"portfolio\";i:514;s:11:\"videography\";i:512;s:13:\"wedding-shoot\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:2:{i:2485;s:11:\"photography\";i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-24026\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2018/12/photographer-portfolio-feb-20-home.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2018/12/photographer-portfolio-feb-20-home.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/photographer-portfolio-03/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/photographer-portfolio-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24023\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2019/07/photographer-portfolio-feb-20-about.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2019/07/photographer-portfolio-feb-20-about.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/photographer-portfolio-03/wp-json/wp/v2/pages/26\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/photographer-portfolio-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24028\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2019/07/photographer-portfolio-feb-20-services.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2019/07/photographer-portfolio-feb-20-services.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/photographer-portfolio-03/wp-json/wp/v2/pages/27\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/photographer-portfolio-03/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24027\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2019/07/photographer-portfolio-feb-20-portfolio.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2019/07/photographer-portfolio-feb-20-portfolio.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/photographer-portfolio-03/wp-json/wp/v2/pages/28\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/photographer-portfolio-03/portfolio/\";s:15:\"astra-sites-tag\";a:1:{i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24025\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2019/07/photographer-portfolio-feb-20-contact.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2019/07/photographer-portfolio-feb-20-contact.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/photographer-portfolio-03/wp-json/wp/v2/pages/29\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/photographer-portfolio-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-19915\";a:22:{s:5:\"title\";s:7:\"Plumber\";s:2:\"id\";i:19915;s:12:\"publish-date\";i:1546411117;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-02-home.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-02-home.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/plumber-02\";s:20:\"astra-site-parent-id\";i:293;s:15:\"astra-sites-tag\";a:4:{i:1021;s:14:\"local-business\";i:439;s:14:\"local-services\";i:507;s:7:\"plumber\";i:508;s:8:\"plumbing\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2816;s:8:\"plumbing\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:958:\"<!-- wp:paragraph -->\n<p>The Plumber template is clean, modern and business-like, just what you need to inspire confidence and attract new leads. The homepage opens with a simple headline and contact form before opening into service sections and extra content. It creates a great first impression!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template combines dark and light areas with modern fonts and a bold contrast color for interest. Extra pages echo this design and provide everything you need to build a small business website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Plumber template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Attractive business template</li><li>Headline and contact form front and center</li><li>Lots of content areas for products and services</li><li>Dedicated testimonial page for social proof</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:80:\"Business-like template designed to deliver information fast with high engagement\";s:5:\"pages\";a:6:{s:8:\"id-25059\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-02-home.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-02-home.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/plumber-02/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/plumber-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-25055\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-02-about.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-02-about.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/plumber-02/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/plumber-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25060\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-02-serivces.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-02-serivces.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/plumber-02/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/plumber-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25061\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-02-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2019/07/id-25061-plumber-testimonials-resize.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/plumber-02/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/plumber-02/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25058\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-02-faq.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-02-faq.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/plumber-02/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/plumber-02/faq/\";s:15:\"astra-sites-tag\";a:1:{i:426;s:3:\"faq\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25057\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-02-contact.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/plumber-02/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/plumber-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:20536;s:26:\"related-elementor-template\";i:19915;s:26:\"related-gutenberg-template\";i:48208;}s:8:\"id-20515\";a:22:{s:5:\"title\";s:16:\"Conference Event\";s:2:\"id\";i:20515;s:12:\"publish-date\";i:1545982682;s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2018/03/conference-event-03-revampp.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2018/03/conference-event-03-revampp.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2018/03/conference-event-03-revampp.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/conference-event-05\";s:20:\"astra-site-parent-id\";i:172;s:15:\"astra-sites-tag\";a:6:{i:744;s:10:\"conference\";i:742;s:13:\"event-website\";i:743;s:7:\"meeting\";i:399;s:8:\"one-page\";i:745;s:12:\"organization\";i:463;s:11:\"single-page\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-23626\";a:12:{s:5:\"title\";s:16:\"One Page Website\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2018/03/conference-event-feb-20-home.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2018/03/conference-event-feb-20-home.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/conference-event-05/wp-json/wp/v2/pages/101\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/conference-event-05/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-20536\";a:22:{s:5:\"title\";s:7:\"Plumber\";s:2:\"id\";i:20536;s:12:\"publish-date\";i:1546411115;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-home-screenshot.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-home-screenshot.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-home-screenshot.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/plumber-01\";s:20:\"astra-site-parent-id\";i:295;s:15:\"astra-sites-tag\";a:3:{i:439;s:14:\"local-services\";i:507;s:7:\"plumber\";i:508;s:8:\"plumbing\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-44078\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-home-screenshot.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-home-screenshot.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/plumber-01/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/plumber-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-44075\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-about-screenshot.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-about-screenshot.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/plumber-01/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/plumber-01/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-44079\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-services-screenshot.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-services-screenshot.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/plumber-01/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/plumber-01/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-44080\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-testimonials-screenshot.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-testimonials-screenshot.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/plumber-01/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/plumber-01/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-44077\";a:12:{s:5:\"title\";s:4:\"FAQs\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-faq-screenshot.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-faq-screenshot.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/plumber-01/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/plumber-01/faqs/\";s:15:\"astra-sites-tag\";a:1:{i:426;s:3:\"faq\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-44076\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-contact-screenshot.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/plumber-contact-screenshot.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/plumber-01/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/plumber-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-20475\";a:22:{s:5:\"title\";s:16:\"Co-Working Space\";s:2:\"id\";i:20475;s:12:\"publish-date\";i:1545657562;s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2018/12/id-20475-co-working-space-resize.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2018/12/id-20475-co-working-space-resize.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2018/12/id-20475-co-working-space-resize.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/co-working-space-05\";s:20:\"astra-site-parent-id\";i:235;s:15:\"astra-sites-tag\";a:7:{i:692;s:8:\"business\";i:693;s:4:\"cafe\";i:694;s:16:\"co-working-place\";i:695;s:13:\"collaboration\";i:979;s:7:\"company\";i:812;s:6:\"office\";i:691;s:10:\"work-place\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-24503\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2019/07/id-24503-co-working-space-home-resize.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2019/07/id-24503-co-working-space-home-resize.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/co-working-space-05/wp-json/wp/v2/pages/143\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/co-working-space-05/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-24500\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-02-about-us-page.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-02-about-us-page.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/co-working-space-05/wp-json/wp/v2/pages/147\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/co-working-space-05/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-24501\";a:12:{s:5:\"title\";s:9:\"Amenities\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-02-amenities-page.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-02-amenities-page.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/co-working-space-05/wp-json/wp/v2/pages/150\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/co-working-space-05/amenities/\";s:15:\"astra-sites-tag\";a:1:{i:777;s:9:\"amenities\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-24504\";a:12:{s:5:\"title\";s:7:\"Pricing\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-02-pricing-page.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-02-pricing-page.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/co-working-space-05/wp-json/wp/v2/pages/153\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/co-working-space-05/pricing/\";s:15:\"astra-sites-tag\";a:1:{i:585;s:7:\"pricing\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-24502\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2019/07/id-24502-co-working-space-contact-resize.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2019/07/id-24502-co-working-space-contact-resize.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/co-working-space-05/wp-json/wp/v2/pages/156\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/co-working-space-05/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-19958\";a:22:{s:5:\"title\";s:21:\"Photography Portfolio\";s:2:\"id\";i:19958;s:12:\"publish-date\";i:1545208405;s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2018/12/photographer-portfolio-feb-20-home.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2018/12/photographer-portfolio-feb-20-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2018/12/photographer-portfolio-feb-20-home.jpg\";s:14:\"astra-site-url\";s:44:\"//websitedemos.net/photographer-portfolio-04\";s:20:\"astra-site-parent-id\";i:202;s:15:\"astra-sites-tag\";a:10:{i:513;s:6:\"camera\";i:482;s:7:\"fashion\";i:515;s:4:\"lens\";i:510;s:9:\"modelling\";i:511;s:12:\"photographer\";i:509;s:11:\"photography\";i:444;s:9:\"portfolio\";i:1022;s:12:\"professional\";i:514;s:11:\"videography\";i:512;s:13:\"wedding-shoot\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2790;s:14:\"beauty-fashion\";i:2770;s:8:\"personal\";i:2773;s:11:\"photography\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2485;s:11:\"photography\";i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1002:\"<!-- wp:paragraph -->\n<p>The Photography Portfolio website template uses minimal design to give your images the space to shine. The template has lots of space for images, including an oversize image slider at the top. It’s ideal for photographers, artists and other creatives.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design of the template is purposely kept minimal to not get in the way, yet still manages to provide all the content areas you need to engage the audience and deliver the information you want them to have.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Photography Portfolio template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Attractive portfolio theme where images are the star</li><li>Minimal page design that lets images shine</li><li>Enough content areas to tell your story and engage</li><li>Fully responsive design so scales to any screen size</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:77:\"Attractive portfolio theme where you and your images are the star of the show\";s:5:\"pages\";a:5:{s:8:\"id-24050\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2018/12/photographer-portfolio-feb-20-home.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2018/12/photographer-portfolio-feb-20-home.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/photographer-portfolio-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/photographer-portfolio-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-24047\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2019/07/photographer-portfolio-feb-20-about.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2019/07/photographer-portfolio-feb-20-about.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/photographer-portfolio-04/wp-json/wp/v2/pages/26\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/photographer-portfolio-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-24052\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2019/07/photographer-portfolio-feb-20-services.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2019/07/photographer-portfolio-feb-20-services.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/photographer-portfolio-04/wp-json/wp/v2/pages/27\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/photographer-portfolio-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-24051\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2019/07/photographer-portfolio-feb-20-portfolio.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2019/07/photographer-portfolio-feb-20-portfolio.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/photographer-portfolio-04/wp-json/wp/v2/pages/28\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/photographer-portfolio-04/portfolio/\";s:15:\"astra-sites-tag\";a:2:{i:444;s:9:\"portfolio\";i:424;s:7:\"project\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-24049\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2019/07/photographer-portfolio-feb-20-contact.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2019/07/photographer-portfolio-feb-20-contact.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/photographer-portfolio-04/wp-json/wp/v2/pages/29\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/photographer-portfolio-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:20732;s:26:\"related-elementor-template\";i:19958;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55334\";a:22:{s:5:\"title\";s:7:\"Charity\";s:2:\"id\";i:55334;s:12:\"publish-date\";i:1621888356;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-02-home.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-02-home.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/communities-02\";s:20:\"astra-site-parent-id\";i:2074;s:15:\"astra-sites-tag\";a:11:{i:625;s:7:\"charity\";i:2126;s:20:\"charity-organization\";i:893;s:6:\"church\";i:2125;s:9:\"community\";i:2128;s:16:\"community-center\";i:1013;s:8:\"donation\";i:2124;s:17:\"environmental-ngo\";i:624;s:10:\"foundation\";i:977;s:10:\"non-profit\";i:745;s:12:\"organization\";i:2127;s:10:\"social-ngo\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:39;s:4:\"free\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:4:{i:2786;s:17:\"charity-nonprofit\";i:2864;s:9:\"community\";i:2872;s:19:\"donation-fundraiser\";i:2871;s:3:\"ngo\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2492;s:10:\"non-profit\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:989:\"<!-- wp:paragraph -->\n<p>The Charity template starts strong with an emotive full screen image and bold headline. Scroll past and the homepage opens up with lots of whitespace, complementing colors and a range of content areas to share the story of your charity or nonprofit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pages include a biography section, areas to share your good works, an image gallery and a donation section. All these can be fully customized to suit your particular needs. As can the equally attractive, and effective, supplementary pages.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Charity template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Powerful opening ideal for emotive subjects</li><li>Great use of complementing colors and fonts</li><li>Lots of options for images and storytelling</li><li>Donation section included within each page</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:78:\"Well-designed template perfect for charities and nonprofits to raise awareness\";s:5:\"pages\";a:4:{s:8:\"id-55335\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-02-about.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-02-about.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/communities-02/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/communities-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55336\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-02-contact.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/communities-02/wp-json/wp/v2/pages/19\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/communities-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55337\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-02-home.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-02-home.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/communities-02/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/communities-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-55338\";a:12:{s:5:\"title\";s:10:\"What we do\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-02-what-we-do.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-02-what-we-do.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/communities-02/wp-json/wp/v2/pages/17\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/communities-02/what-we-do/\";s:15:\"astra-sites-tag\";a:2:{i:628;s:10:\"what-we-do\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:55334;s:26:\"related-gutenberg-template\";i:55425;}s:8:\"id-55425\";a:22:{s:5:\"title\";s:7:\"Charity\";s:2:\"id\";i:55425;s:12:\"publish-date\";i:1621889386;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-08-600x1661.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-08-400x1107.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/communities-08\";s:20:\"astra-site-parent-id\";i:2116;s:15:\"astra-sites-tag\";a:11:{i:625;s:7:\"charity\";i:2126;s:20:\"charity-organization\";i:893;s:6:\"church\";i:2125;s:9:\"community\";i:2128;s:16:\"community-center\";i:1013;s:8:\"donation\";i:2124;s:17:\"environmental-ngo\";i:624;s:10:\"foundation\";i:977;s:10:\"non-profit\";i:745;s:12:\"organization\";i:2127;s:10:\"social-ngo\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:39;s:4:\"free\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2492;s:10:\"non-profit\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-55427\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-08-contact-1-600x1191.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/communities-08/wp-json/wp/v2/pages/370\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/communities-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55426\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-08-about-us-600x1984.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/communities-08/wp-json/wp/v2/pages/366\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/communities-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55428\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-08-600x1661.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/communities-08/wp-json/wp/v2/pages/364\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/communities-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55429\";a:12:{s:5:\"title\";s:10:\"What we do\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-08-what-we-do-1.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-08-what-we-do-1-600x1961.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/communities-08/wp-json/wp/v2/pages/368\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/communities-08/what-we-do/\";s:15:\"astra-sites-tag\";a:1:{i:628;s:10:\"what-we-do\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-19959\";a:22:{s:5:\"title\";s:15:\"Sierra Industry\";s:2:\"id\";i:19959;s:12:\"publish-date\";i:1545134505;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-01-home.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-01-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-01-home.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/sierra-industry-01\";s:20:\"astra-site-parent-id\";i:203;s:15:\"astra-sites-tag\";a:4:{i:985;s:7:\"factory\";i:492;s:8:\"industry\";i:490;s:13:\"manufacturing\";i:489;s:10:\"production\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2500;s:12:\"multipurpose\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-44099\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-home.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/sierra-industry-01/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/sierra-industry-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-44097\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-02-about.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-02-about.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/sierra-industry-01/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/sierra-industry-01/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-44100\";a:12:{s:5:\"title\";s:8:\"Products\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-02-product.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-02-product.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/sierra-industry-01/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/sierra-industry-01/services/\";s:15:\"astra-sites-tag\";a:1:{i:540;s:8:\"products\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-44101\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-feb-20-projects.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-feb-20-projects.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/sierra-industry-01/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/sierra-industry-01/projects/\";s:15:\"astra-sites-tag\";a:1:{i:424;s:7:\"project\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-44098\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-02-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-02-contact-1.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/sierra-industry-01/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/sierra-industry-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48132\";a:22:{s:5:\"title\";s:15:\"Sierra Industry\";s:2:\"id\";i:48132;s:12:\"publish-date\";i:1603893474;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08-600x2066.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08-400x1377.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/sierra-industry-08\";s:20:\"astra-site-parent-id\";i:1703;s:15:\"astra-sites-tag\";a:4:{i:985;s:7:\"factory\";i:492;s:8:\"industry\";i:490;s:13:\"manufacturing\";i:489;s:10:\"production\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2500;s:12:\"multipurpose\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48135\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08-600x2066.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/sierra-industry-08/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/sierra-industry-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48133\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08-about-1-600x1341.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/sierra-industry-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/sierra-industry-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48134\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08-contact-1-600x1076.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/sierra-industry-08/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/sierra-industry-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48136\";a:12:{s:5:\"title\";s:8:\"Products\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08-products-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08-products-1-600x1348.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/sierra-industry-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/sierra-industry-08/products/\";s:15:\"astra-sites-tag\";a:1:{i:540;s:8:\"products\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48137\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08-projects-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08-projects-1-600x1322.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/sierra-industry-08/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/sierra-industry-08/projects/\";s:15:\"astra-sites-tag\";a:1:{i:1613;s:8:\"projects\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-19814\";a:22:{s:5:\"title\";s:13:\"Sierra Nature\";s:2:\"id\";i:19814;s:12:\"publish-date\";i:1543901405;s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-nature-home-screenshot.png\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-nature-home-screenshot.png\";s:28:\"fullpage-thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-nature-home-screenshot.png\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/sierra-nature-02\";s:20:\"astra-site-parent-id\";i:110;s:15:\"astra-sites-tag\";a:6:{i:538;s:6:\"forest\";i:537;s:13:\"national-park\";i:535;s:6:\"nature\";i:534;s:11:\"nature-park\";i:539;s:9:\"sanctuary\";i:536;s:10:\"wilderness\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:5:{i:2777;s:8:\"business\";i:2860;s:12:\"multipurpose\";i:2830;s:6:\"nature\";i:2831;s:7:\"service\";i:2797;s:14:\"simple-minimal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2500;s:12:\"multipurpose\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1241:\"<!-- wp:paragraph -->\n<p>The Sierra Nature multipurpose template uses a high quality full screen image to make an impact. Combined with a strong header and contrast color and parallax effect, it sets the scene perfectly for the site that unfolds.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template alternates dark and light content areas with more parallax effects to create an atmosphere. Customizable content areas can help tell your story and outline products, services, good causes or anything you like. It’s a very flexible multipurpose theme!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Sierra Nature template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Powerful opening image with parallax effect</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Alternating dark and light areas within pages works well</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Modern fonts are engaging and easy to read</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Customizable content areas to tell your story</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"Impactful modern design with lots of modern touches for use in any business niche\";s:5:\"pages\";a:5:{s:8:\"id-23008\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-nature-home-screenshot.png\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-nature-home-screenshot.png\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/sierra-nature-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/sierra-nature-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23005\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-nature-about-screenshot.png\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-nature-about-screenshot.png\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/sierra-nature-02/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/sierra-nature-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23010\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-nature-services-screenshot.png\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-nature-services-screenshot.png\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/sierra-nature-02/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/sierra-nature-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23009\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-nature-projects-screenshot.png\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-nature-projects-screenshot.png\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/sierra-nature-02/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/sierra-nature-02/projects/\";s:15:\"astra-sites-tag\";a:1:{i:424;s:7:\"project\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23007\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-nature-contact-screenshot.png\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-nature-contact-screenshot.png\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/sierra-nature-02/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/sierra-nature-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:19881;s:26:\"related-elementor-template\";i:19814;s:26:\"related-gutenberg-template\";i:48103;}}','no'),(247,'astra-sites-and-pages-page-31','a:15:{s:8:\"id-19881\";a:22:{s:5:\"title\";s:13:\"Sierra Nature\";s:2:\"id\";i:19881;s:12:\"publish-date\";i:1544174934;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-home.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-home.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/sierra-nature-01\";s:20:\"astra-site-parent-id\";i:111;s:15:\"astra-sites-tag\";a:6:{i:538;s:6:\"forest\";i:537;s:13:\"national-park\";i:535;s:6:\"nature\";i:534;s:11:\"nature-park\";i:539;s:9:\"sanctuary\";i:536;s:10:\"wilderness\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2500;s:12:\"multipurpose\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-23024\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23024-sierra-nature-home-resize.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23024-sierra-nature-home-resize.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/sierra-nature-01/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/sierra-nature-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-23021\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-nature-about-screenshot.png\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-nature-about-screenshot.png\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/sierra-nature-01/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/sierra-nature-01/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-23026\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-nature-services-screenshot.png\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-nature-services-screenshot.png\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/sierra-nature-01/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/sierra-nature-01/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-23025\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-projects.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-projects.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/sierra-nature-01/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/sierra-nature-01/projects/\";s:15:\"astra-sites-tag\";a:1:{i:424;s:7:\"project\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-23023\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-contact.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/sierra-nature-01/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/sierra-nature-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48103\";a:22:{s:5:\"title\";s:13:\"Sierra Nature\";s:2:\"id\";i:48103;s:12:\"publish-date\";i:1603893479;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-600x1860.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-400x1240.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/sierra-nature-08\";s:20:\"astra-site-parent-id\";i:1701;s:15:\"astra-sites-tag\";a:6:{i:538;s:6:\"forest\";i:537;s:13:\"national-park\";i:535;s:6:\"nature\";i:534;s:11:\"nature-park\";i:539;s:9:\"sanctuary\";i:536;s:10:\"wilderness\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2500;s:12:\"multipurpose\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48104\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-about-2.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-about-2-600x1235.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/sierra-nature-08/wp-json/wp/v2/pages/962\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/sierra-nature-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48105\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-contact-2-600x930.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/sierra-nature-08/wp-json/wp/v2/pages/968\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/sierra-nature-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48106\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-600x1860.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/sierra-nature-08/wp-json/wp/v2/pages/960\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/sierra-nature-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48107\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-projects-2.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-projects-2-600x1203.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/sierra-nature-08/wp-json/wp/v2/pages/966\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/sierra-nature-08/projects/\";s:15:\"astra-sites-tag\";a:1:{i:1613;s:8:\"projects\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48108\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-services-2.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-services-2-600x1140.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/sierra-nature-08/wp-json/wp/v2/pages/964\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/sierra-nature-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-54442\";a:22:{s:5:\"title\";s:11:\"Coffee Shop\";s:2:\"id\";i:54442;s:12:\"publish-date\";i:1621459375;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/05/coffee-shop-08-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/05/coffee-shop-08-1-600x2849.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/05/coffee-shop-08-1-400x1899.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/coffee-shop-08\";s:20:\"astra-site-parent-id\";i:2033;s:15:\"astra-sites-tag\";a:10:{i:693;s:4:\"cafe\";i:2042;s:8:\"cafe-bar\";i:1527;s:9:\"cafeteria\";i:2043;s:12:\"coffee-house\";i:1575;s:11:\"coffee-shop\";i:399;s:8:\"one-page\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:335;s:10:\"restaurant\";i:2041;s:9:\"snack-bar\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-54443\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/05/coffee-shop-08-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/05/coffee-shop-08-1-600x2849.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/coffee-shop-08/wp-json/wp/v2/pages/4\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/coffee-shop-08/\";s:15:\"astra-sites-tag\";a:3:{i:423;s:4:\"home\";i:1718;s:7:\"onepage\";i:463;s:11:\"single-page\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-19790\";a:22:{s:5:\"title\";s:6:\"Agency\";s:2:\"id\";i:19790;s:12:\"publish-date\";i:1543500780;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-starter-site.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-starter-site.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-starter-site.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/agency-05\";s:20:\"astra-site-parent-id\";i:180;s:15:\"astra-sites-tag\";a:6:{i:663;s:6:\"agency\";i:979;s:7:\"company\";i:664;s:16:\"digital-services\";i:812;s:6:\"office\";i:665;s:14:\"service-agency\";i:661;s:7:\"website\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-23678\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-starter-site.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-starter-site.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/agency-05/wp-json/wp/v2/pages/853\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/agency-05/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23676\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-feb-20-about.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-feb-20-about.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/agency-05/wp-json/wp/v2/pages/868\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/agency-05/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23679\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-feb-20-services.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-feb-20-services.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/agency-05/wp-json/wp/v2/pages/876\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/agency-05/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23677\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-feb-20-contact.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-feb-20-contact.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/agency-05/wp-json/wp/v2/pages/878\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/agency-05/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-19796\";a:22:{s:5:\"title\";s:24:\"Personal Fitness Trainer\";s:2:\"id\";i:19796;s:12:\"publish-date\";i:1543500776;s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2018/11/id-19796-fitness-trainer-resize.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2018/11/id-19796-fitness-trainer-resize.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2018/11/id-19796-fitness-trainer-resize.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/fitness-trainer-05\";s:20:\"astra-site-parent-id\";i:174;s:15:\"astra-sites-tag\";a:11:{i:502;s:8:\"exercise\";i:499;s:7:\"fitness\";i:505;s:15:\"fitness-trainer\";i:506;s:19:\"functional-training\";i:500;s:3:\"gym\";i:976;s:14:\"gym-instructor\";i:504;s:11:\"gym-trainer\";i:399;s:8:\"one-page\";i:463;s:11:\"single-page\";i:503;s:7:\"trainer\";i:501;s:8:\"work-out\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-23635\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23635-fitness-trainer-home-resize.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23635-fitness-trainer-home-resize.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/fitness-trainer-05/wp-json/wp/v2/pages/149\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/fitness-trainer-05/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-19798\";a:22:{s:5:\"title\";s:11:\"Electrician\";s:2:\"id\";i:19798;s:12:\"publish-date\";i:1543500776;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-05-home-01.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-05-home-01.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-05-home-01.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/electrician-05\";s:20:\"astra-site-parent-id\";i:245;s:15:\"astra-sites-tag\";a:1:{i:1021;s:14:\"local-business\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-24609\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-05-home-01.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-05-home-01.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/electrician-05/wp-json/wp/v2/pages/550\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/electrician-05/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-24606\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2019/07/id-24606-electrician-about-us-resize.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2019/07/id-24606-electrician-about-us-resize.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/electrician-05/wp-json/wp/v2/pages/558\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/electrician-05/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-24610\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-05-services-01.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-05-services-01.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/electrician-05/wp-json/wp/v2/pages/561\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/electrician-05/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-24608\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/id-24608-electrician-faq-resize.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/id-24608-electrician-faq-resize.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/electrician-05/wp-json/wp/v2/pages/564\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/electrician-05/faq/\";s:15:\"astra-sites-tag\";a:2:{i:426;s:3:\"faq\";i:709;s:9:\"questions\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-24607\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2019/07/id-24607-electrician-contact-resize.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2019/07/id-24607-electrician-contact-resize.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/electrician-05/wp-json/wp/v2/pages/567\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/electrician-05/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-19792\";a:22:{s:5:\"title\";s:12:\"Construction\";s:2:\"id\";i:19792;s:12:\"publish-date\";i:1543500772;s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-02-feb-20-home.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-02-feb-20-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-02-feb-20-home.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/construction-05\";s:20:\"astra-site-parent-id\";i:276;s:15:\"astra-sites-tag\";a:6:{i:435;s:12:\"architecture\";i:979;s:7:\"company\";i:484;s:12:\"construction\";i:436;s:8:\"interior\";i:812;s:6:\"office\";i:485;s:11:\"real-estate\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-24855\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-02-feb-20-home.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-02-feb-20-home.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/construction-05/wp-json/wp/v2/pages/913\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/construction-05/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-24850\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-02-feb-20-about.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-02-feb-20-about.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/construction-05/wp-json/wp/v2/pages/921\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/construction-05/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-24858\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-02-feb-20-services.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-02-feb-20-services.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/construction-05/wp-json/wp/v2/pages/925\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/construction-05/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-24857\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-02-feb-20-projects.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-02-feb-20-projects.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/construction-05/wp-json/wp/v2/pages/929\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/construction-05/projects/\";s:15:\"astra-sites-tag\";a:1:{i:424;s:7:\"project\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-24852\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-02-feb-20-contact.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-02-feb-20-contact.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/construction-05/wp-json/wp/v2/pages/932\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/construction-05/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-19801\";a:22:{s:5:\"title\";s:13:\"Hotel and BnB\";s:2:\"id\";i:19801;s:12:\"publish-date\";i:1543500771;s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2018/11/hotel-05-home.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2018/11/hotel-05-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2018/11/hotel-05-home.jpg\";s:14:\"astra-site-url\";s:27:\"//websitedemos.net/hotel-05\";s:20:\"astra-site-parent-id\";i:248;s:15:\"astra-sites-tag\";a:8:{i:560;s:7:\"cuisine\";i:336;s:4:\"food\";i:350;s:5:\"hotel\";i:712;s:5:\"lodge\";i:711;s:5:\"motel\";i:399;s:8:\"one-page\";i:714;s:6:\"resort\";i:463;s:11:\"single-page\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-24621\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2018/11/hotel-05-home.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2018/11/hotel-05-home.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/hotel-05/wp-json/wp/v2/pages/373\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:28:\"//websitedemos.net/hotel-05/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-19754\";a:22:{s:5:\"title\";s:5:\"Coach\";s:2:\"id\";i:19754;s:12:\"publish-date\";i:1543500769;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-05-home-01.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-05-home-01.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-05-home-01.jpg\";s:14:\"astra-site-url\";s:27:\"//websitedemos.net/coach-05\";s:20:\"astra-site-parent-id\";i:238;s:15:\"astra-sites-tag\";a:5:{i:610;s:8:\"coaching\";i:608;s:8:\"guidance\";i:612;s:10:\"life-coach\";i:609;s:9:\"motivator\";i:611;s:16:\"self-improvement\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-24539\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-05-home-01.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-05-home-01.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/coach-05/wp-json/wp/v2/pages/122\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:28:\"//websitedemos.net/coach-05/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-24534\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-05-about-01.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-05-about-01.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/coach-05/wp-json/wp/v2/pages/131\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/coach-05/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-24538\";a:12:{s:5:\"title\";s:7:\"e-Books\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-05-e-books-01.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-05-e-books-01.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/coach-05/wp-json/wp/v2/pages/137\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/coach-05/e-books/\";s:15:\"astra-sites-tag\";a:1:{i:781;s:6:\"e-book\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-24537\";a:12:{s:5:\"title\";s:7:\"Courses\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-05-courses-01.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-05-courses-01.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/coach-05/wp-json/wp/v2/pages/140\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/coach-05/courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-24536\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-05-contact-01.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-05-contact-01.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/coach-05/wp-json/wp/v2/pages/146\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/coach-05/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-19803\";a:22:{s:5:\"title\";s:14:\"A/C Technician\";s:2:\"id\";i:19803;s:12:\"publish-date\";i:1543500769;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-home.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/ac-technician-05\";s:20:\"astra-site-parent-id\";i:268;s:15:\"astra-sites-tag\";a:4:{i:599;s:9:\"ac-repair\";i:439;s:14:\"local-services\";i:600;s:15:\"repair-services\";i:441;s:10:\"technician\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-24770\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-home.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/ac-technician-05/wp-json/wp/v2/pages/262\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/ac-technician-05/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-24771\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-05-services-01.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-05-services-01.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/ac-technician-05/wp-json/wp/v2/pages/273\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/ac-technician-05/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-24768\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-05-about-01.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-05-about-01.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/ac-technician-05/wp-json/wp/v2/pages/277\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/ac-technician-05/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-24769\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-contact.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-contact.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/ac-technician-05/wp-json/wp/v2/pages/284\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/ac-technician-05/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-19824\";a:22:{s:5:\"title\";s:15:\"Sierra Industry\";s:2:\"id\";i:19824;s:12:\"publish-date\";i:1543500721;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-02-home-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-02-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-02-home-1.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/sierra-industry-02\";s:20:\"astra-site-parent-id\";i:206;s:15:\"astra-sites-tag\";a:4:{i:985;s:7:\"factory\";i:492;s:8:\"industry\";i:490;s:13:\"manufacturing\";i:489;s:10:\"production\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:5:{i:2777;s:8:\"business\";i:2807;s:10:\"industrial\";i:2860;s:12:\"multipurpose\";i:2797;s:14:\"simple-minimal\";i:2817;s:10:\"technology\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2474;s:13:\"manufacturing\";i:2500;s:12:\"multipurpose\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1172:\"<!-- wp:paragraph -->\n<p>The Sierra Industry multipurpose template uses an illustrative full screen image to instantly communicate what it’s about. It also uses simple fonts and a bold contrast color for calls to action to help visitors engage.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template combines dark and light areas with shaded images in a parallax effect to give that professional persona. Each page has fully customizable content areas to show your products or services and to tell your story.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Sierra Industry template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Full screen image communicates instantly</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Combination of subtle fonts and bold colors</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Customizable content areas throughout</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Equally attractive supplementary pages</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"Modern business template that builds authority from the second it loads on screen\";s:5:\"pages\";a:5:{s:8:\"id-24078\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-02-home-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-02-home-1.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/sierra-industry-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/sierra-industry-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24075\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-02-about-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-02-about-1.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/sierra-industry-02/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/sierra-industry-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24079\";a:12:{s:5:\"title\";s:8:\"Products\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-02-products.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-02-products.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/sierra-industry-02/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/sierra-industry-02/product/\";s:15:\"astra-sites-tag\";a:1:{i:540;s:8:\"products\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24080\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-02-projects-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-02-projects-1.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/sierra-industry-02/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/sierra-industry-02/projects/\";s:15:\"astra-sites-tag\";a:1:{i:424;s:7:\"project\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24077\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-02-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/sierra-industry-02-contact-2.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/sierra-industry-02/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/sierra-industry-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:19959;s:26:\"related-elementor-template\";i:19824;s:26:\"related-gutenberg-template\";i:48132;}s:8:\"id-19784\";a:22:{s:5:\"title\";s:6:\"Artist\";s:2:\"id\";i:19784;s:12:\"publish-date\";i:1543323208;s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/10/artist-christine-home-page.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/10/artist-christine-home-page.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/10/artist-christine-home-page.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/artist-05\";s:20:\"astra-site-parent-id\";i:161;s:15:\"astra-sites-tag\";a:5:{i:597;s:3:\"art\";i:339;s:6:\"artist\";i:595;s:10:\"exhibition\";i:614;s:7:\"painter\";i:733;s:4:\"shop\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-23535\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/10/artist-christine-home-page.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/10/artist-christine-home-page.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/artist-05/wp-json/wp/v2/pages/175\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/artist-05/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23533\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/artist-christine-about.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/artist-christine-about.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/artist-05/wp-json/wp/v2/pages/185\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/artist-05/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23534\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/artist-christine-contact.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/artist-christine-contact.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/artist-05/wp-json/wp/v2/pages/189\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/artist-05/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-19719\";a:22:{s:5:\"title\";s:7:\"Charity\";s:2:\"id\";i:19719;s:12:\"publish-date\";i:1541483028;s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-starter-site-brizy.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-starter-site-brizy.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-starter-site-brizy.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/charity-05\";s:20:\"astra-site-parent-id\";i:167;s:15:\"astra-sites-tag\";a:5:{i:625;s:7:\"charity\";i:624;s:10:\"foundation\";i:626;s:6:\"giving\";i:977;s:10:\"non-profit\";i:745;s:12:\"organization\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:39;s:4:\"free\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:4:\"give\";s:4:\"init\";s:13:\"give/give.php\";s:4:\"name\";s:22:\"Give - Donation Plugin\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:7:{s:8:\"id-57941\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/charity-05/wp-json/wp/v2/pages/673\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/charity-05/donor-dashboard/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-23593\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-starter-site-brizy.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-starter-site-brizy.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/charity-05/wp-json/wp/v2/pages/198\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/charity-05/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23596\";a:12:{s:5:\"title\";s:10:\"Who We Are\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-who-we-are.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-who-we-are.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/charity-05/wp-json/wp/v2/pages/208\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/charity-05/who-we-are/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:685;s:10:\"who-we-are\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23595\";a:12:{s:5:\"title\";s:10:\"What We Do\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-what-we-do.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-what-we-do.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/charity-05/wp-json/wp/v2/pages/211\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/charity-05/who-we-do/\";s:15:\"astra-sites-tag\";a:2:{i:628;s:10:\"what-we-do\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23594\";a:12:{s:5:\"title\";s:12:\"Our Partners\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-partners.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-partners.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/charity-05/wp-json/wp/v2/pages/216\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/charity-05/our-partners/\";s:15:\"astra-sites-tag\";a:3:{i:734;s:8:\"partners\";i:486;s:4:\"team\";i:810;s:7:\"workers\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23591\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-contact.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23591-charity-contact-us-resize.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/charity-05/wp-json/wp/v2/pages/220\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/charity-05/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-23592\";a:12:{s:5:\"title\";s:6:\"Donate\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-donate.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23592-charity-donate-resize.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/charity-05/wp-json/wp/v2/pages/223\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/charity-05/donate/\";s:15:\"astra-sites-tag\";a:1:{i:735;s:6:\"donate\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:4:\"give\";s:4:\"init\";s:13:\"give/give.php\";s:4:\"name\";s:22:\"Give - Donation Plugin\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-19496\";a:22:{s:5:\"title\";s:18:\"Italian Restaurant\";s:2:\"id\";i:19496;s:12:\"publish-date\";i:1538655035;s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/italian-restaurant-02-home-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/italian-restaurant-02-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/italian-restaurant-02-home-1.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/italian-restaurant-02\";s:20:\"astra-site-parent-id\";i:127;s:15:\"astra-sites-tag\";a:11:{i:562;s:6:\"bistro\";i:972;s:4:\"club\";i:560;s:7:\"cuisine\";i:561;s:6:\"eatery\";i:336;s:4:\"food\";i:350;s:5:\"hotel\";i:563;s:18:\"italian-restaurant\";i:559;s:6:\"outlet\";i:335;s:10:\"restaurant\";i:970;s:6:\"restro\";i:971;s:10:\"restro-bar\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2785;s:4:\"food\";i:2876;s:13:\"food-ordering\";i:2776;s:10:\"restaurant\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:967:\"<!-- wp:paragraph -->\n<p>The Italian Restaurant template uses an instantly engaging design full of bold colors, welcoming fonts and some strong imagery. All the ingredients you expect from a restaurant or food business website!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template opens with a strong image and graphic overlay to instantly communicate what it’s about. Pages combine dark and light areas and include space for menus, a portfolio, testimonials and an attractive map. Everything is customizable, so you can rebrand it with ease.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Italian Restaurant template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Impactful design with bold colors</li><li>Great use of images throughout eat page</li><li>Attractive menu section and menu page</li><li>Can take bookings with a booking plugin</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"Impactful food business template that dares to make an impact with color and imagery\";s:5:\"pages\";a:4:{s:8:\"id-23208\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/italian-restaurant-02-home-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/italian-restaurant-02-home-1.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/italian-restaurant-02/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/italian-restaurant-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23209\";a:12:{s:5:\"title\";s:4:\"Menu\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/italian-restaurant-02-menu-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/italian-restaurant-02-menu-1.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/italian-restaurant-02/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/italian-restaurant-02/menu/\";s:15:\"astra-sites-tag\";a:1:{i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23205\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/italian-restaurant-02-about-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/italian-restaurant-02-about-1.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/italian-restaurant-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/italian-restaurant-02/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23207\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/italian-restaurant-02-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/italian-restaurant-02-contact-1.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/italian-restaurant-02/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/italian-restaurant-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:19574;s:26:\"related-elementor-template\";i:19496;s:26:\"related-gutenberg-template\";i:47957;}s:8:\"id-19574\";a:22:{s:5:\"title\";s:18:\"Italian Restaurant\";s:2:\"id\";i:19574;s:12:\"publish-date\";i:1540190285;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/italian-starter-site.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/italian-starter-site.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/italian-starter-site.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/italian-restaurant-01\";s:20:\"astra-site-parent-id\";i:130;s:15:\"astra-sites-tag\";a:11:{i:562;s:6:\"bistro\";i:972;s:4:\"club\";i:560;s:7:\"cuisine\";i:561;s:6:\"eatery\";i:336;s:4:\"food\";i:350;s:5:\"hotel\";i:563;s:18:\"italian-restaurant\";i:559;s:6:\"outlet\";i:335;s:10:\"restaurant\";i:970;s:6:\"restro\";i:971;s:10:\"restro-bar\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-23239\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/italian-starter-site.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/italian-starter-site.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/italian-restaurant-01/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/italian-restaurant-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-23240\";a:12:{s:5:\"title\";s:4:\"Menu\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/italian-site-menu.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/italian-site-menu.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/italian-restaurant-01/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/italian-restaurant-01/menu/\";s:15:\"astra-sites-tag\";a:1:{i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-23236\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/italian-restaurant-02-about-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/italian-restaurant-02-about-1.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/italian-restaurant-01/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/italian-restaurant-01/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-23238\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/italian-restaurant-02-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/italian-restaurant-02-contact-1.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/italian-restaurant-01/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/italian-restaurant-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(248,'astra-sites-and-pages-page-32','a:15:{s:8:\"id-19557\";a:22:{s:5:\"title\";s:20:\"Interior Design Firm\";s:2:\"id\";i:19557;s:12:\"publish-date\";i:1540185981;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-02-home.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-02-home.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/interior-firm-02\";s:20:\"astra-site-parent-id\";i:315;s:15:\"astra-sites-tag\";a:8:{i:435;s:12:\"architecture\";i:979;s:7:\"company\";i:436;s:8:\"interior\";i:434;s:15:\"interior-design\";i:981;s:17:\"interior-designer\";i:422;s:11:\"landscaping\";i:812;s:6:\"office\";i:437;s:6:\"zoning\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2795;s:12:\"architecture\";i:2793;s:15:\"interior-design\";i:2768;s:9:\"portfolio\";i:2832;s:8:\"property\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:979:\"<!-- wp:paragraph -->\n<p>The Interior Design Firm template has an inspiring design that builds confidence right away. The combination of dark and light, modest accent colors and bold imagery sets the scene for any type of design firm.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The homepage has a strong hero section with modern sans serif fonts and modest navigation. The rest of the template has a light feel with gray or white backgrounds and subtle content boxes that help tell your story and showcase your work. Ideal for any creative business.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Interior Design Firm template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Inspiring design that combines dark and light</li><li>Crisp modern fonts throughout</li><li>Subtle colors that help build authority</li><li>Portfolio and testimonial sections built-in</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"Upmarket website design ideal for architects, interior designers and design firms\";s:5:\"pages\";a:5:{s:8:\"id-25294\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-02-home.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-02-home.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/interior-firm-02/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/interior-firm-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25295\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-02-project.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-02-project.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/interior-firm-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/interior-firm-02/portfolio/\";s:15:\"astra-sites-tag\";a:2:{i:444;s:9:\"portfolio\";i:424;s:7:\"project\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25291\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-02-about.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-02-about.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/interior-firm-02/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/interior-firm-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25296\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-02-testimonial.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-02-testimonial.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/interior-firm-02/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/interior-firm-02/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25293\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-02-contact.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/interior-firm-02/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/interior-firm-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:19598;s:26:\"related-elementor-template\";i:19557;s:26:\"related-gutenberg-template\";i:64831;}s:8:\"id-19598\";a:22:{s:5:\"title\";s:20:\"Interior Design Firm\";s:2:\"id\";i:19598;s:12:\"publish-date\";i:1543819741;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-01-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-01-homepage.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/interior-firm-01\";s:20:\"astra-site-parent-id\";i:314;s:15:\"astra-sites-tag\";a:8:{i:435;s:12:\"architecture\";i:979;s:7:\"company\";i:436;s:8:\"interior\";i:434;s:15:\"interior-design\";i:981;s:17:\"interior-designer\";i:422;s:11:\"landscaping\";i:812;s:6:\"office\";i:437;s:6:\"zoning\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-25282\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-01-homepage.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/interior-firm-01/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/interior-firm-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-25283\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-01-portfolio.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-01-portfolio.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/interior-firm-01/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/interior-firm-01/portfolio/\";s:15:\"astra-sites-tag\";a:1:{i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-25279\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-01-about.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-01-about.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/interior-firm-01/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/interior-firm-01/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-25284\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-01-testimonials-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-01-testimonials-1.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/interior-firm-01/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/interior-firm-01/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-25281\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-01-contact.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/interior-firm-01-contact.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/interior-firm-01/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/interior-firm-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48496\";a:22:{s:5:\"title\";s:20:\"Interior Design Firm\";s:2:\"id\";i:48496;s:12:\"publish-date\";i:1603984630;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08-600x2293.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08-400x1528.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/interior-firm-08\";s:20:\"astra-site-parent-id\";i:1742;s:15:\"astra-sites-tag\";a:6:{i:435;s:12:\"architecture\";i:436;s:8:\"interior\";i:434;s:15:\"interior-design\";i:422;s:11:\"landscaping\";i:1022;s:12:\"professional\";i:437;s:6:\"zoning\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:2:{i:2488;s:9:\"portfolio\";i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48499\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08-600x2293.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/interior-firm-08/wp-json/wp/v2/pages/1224\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/interior-firm-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48500\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08-projects.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08-projects-600x1792.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/interior-firm-08/wp-json/wp/v2/pages/1182\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/interior-firm-08/portfolio/\";s:15:\"astra-sites-tag\";a:1:{i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48497\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08-about-1-600x1592.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/interior-firm-08/wp-json/wp/v2/pages/1184\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/interior-firm-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48501\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08-testimonial.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08-testimonial-600x1090.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/interior-firm-08/wp-json/wp/v2/pages/1186\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/interior-firm-08/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48498\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08-contact-1-600x1316.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/interior-firm-08/wp-json/wp/v2/pages/1188\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/interior-firm-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-19111\";a:22:{s:5:\"title\";s:14:\"A/C Technician\";s:2:\"id\";i:19111;s:12:\"publish-date\";i:1535102708;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-home.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/ac-technician-01\";s:20:\"astra-site-parent-id\";i:292;s:15:\"astra-sites-tag\";a:4:{i:599;s:9:\"ac-repair\";i:439;s:14:\"local-services\";i:600;s:15:\"repair-services\";i:441;s:10:\"technician\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-25048\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-home.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/ac-technician-01/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/ac-technician-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-25049\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-01-services02.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-01-services02.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/ac-technician-01/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/ac-technician-01/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-25045\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-about.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-about.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/ac-technician-01/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/ac-technician-01/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-25047\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-contact.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-contact.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/ac-technician-01/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/ac-technician-01/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47957\";a:22:{s:5:\"title\";s:18:\"Italian Restaurant\";s:2:\"id\";i:47957;s:12:\"publish-date\";i:1603828772;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/italian-restaurant-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/italian-restaurant-08-600x2375.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/italian-restaurant-08-400x1583.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/italian-restaurant-08\";s:20:\"astra-site-parent-id\";i:1689;s:15:\"astra-sites-tag\";a:10:{i:562;s:6:\"bistro\";i:972;s:4:\"club\";i:560;s:7:\"cuisine\";i:561;s:6:\"eatery\";i:336;s:4:\"food\";i:350;s:5:\"hotel\";i:563;s:18:\"italian-restaurant\";i:559;s:6:\"outlet\";i:335;s:10:\"restaurant\";i:970;s:6:\"restro\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-47960\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/italian-restaurant-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/italian-restaurant-08-600x2375.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/italian-restaurant-08/wp-json/wp/v2/pages/56\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/italian-restaurant-08/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47961\";a:12:{s:5:\"title\";s:4:\"Menu\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/italian-restaurant-08-menu-2.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/italian-restaurant-08-menu-2-600x2011.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/italian-restaurant-08/wp-json/wp/v2/pages/54\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/italian-restaurant-08/menu/\";s:15:\"astra-sites-tag\";a:2:{i:1579;s:9:\"food-menu\";i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47958\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/italian-restaurant-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/italian-restaurant-08-about-us-600x1754.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/italian-restaurant-08/wp-json/wp/v2/pages/53\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/italian-restaurant-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47959\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/italian-restaurant-08-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2020/10/italian-restaurant-08-contact-2-600x1278.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/italian-restaurant-08/wp-json/wp/v2/pages/55\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/italian-restaurant-08/contact/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18762\";a:22:{s:5:\"title\";s:14:\"A/C Technician\";s:2:\"id\";i:18762;s:12:\"publish-date\";i:1535102425;s:18:\"featured-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-elementor-homepage-sceenshot.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-elementor-homepage-sceenshot.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-elementor-homepage-sceenshot.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/ac-technician-02\";s:20:\"astra-site-parent-id\";i:294;s:15:\"astra-sites-tag\";a:5:{i:599;s:9:\"ac-repair\";i:1021;s:14:\"local-business\";i:439;s:14:\"local-services\";i:600;s:15:\"repair-services\";i:441;s:10:\"technician\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2831;s:7:\"service\";i:2817;s:10:\"technology\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:941:\"<!-- wp:paragraph -->\n<p>The A/C Technician template is a business-like design with a bold homepage and an illustrative image in the hero section. Combined with a direct call to action in the schedule button, it accomplishes its core goal immediately.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The rest of the template offers opportunities to outline products and services, areas of specialization and testimonials. All things a contractor, trade or business website needs to convert visitors into new customers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the A/C Technician template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Simple, effective website design ideal for the trades</li><li>Effective hero image with call to action</li><li>Customizable content areas for extra content</li><li>Attractive contact form</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:71:\"Effective small business website for tradespeople or service businesses\";s:5:\"pages\";a:4:{s:8:\"id-25072\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-elementor-homepage-sceenshot.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-elementor-homepage-sceenshot.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/ac-technician-02/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/ac-technician-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25073\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-02-services.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-02-services.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/ac-technician-02/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/ac-technician-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25069\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-02-about.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-02-about.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/ac-technician-02/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/ac-technician-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25071\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/ac-technician-02-contact.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/ac-technician-02/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/ac-technician-02/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:19111;s:26:\"related-elementor-template\";i:18762;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18887\";a:22:{s:5:\"title\";s:15:\"MultiMed Clinic\";s:2:\"id\";i:18887;s:12:\"publish-date\";i:1534767021;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-04-home.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-04-home.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/multimed-04\";s:20:\"astra-site-parent-id\";i:261;s:15:\"astra-sites-tag\";a:7:{i:337;s:6:\"clinic\";i:601;s:6:\"doctor\";i:604;s:10:\"healthcare\";i:605;s:8:\"hospital\";i:603;s:7:\"medical\";i:606;s:15:\"medical-science\";i:607;s:9:\"treatment\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2867;s:6:\"doctor\";i:2834;s:10:\"healthcare\";i:2780;s:8:\"hospital\";i:2841;s:14:\"medical-clinic\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2490;s:10:\"healthcare\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1019:\"<!-- wp:paragraph -->\n<p>The MultiMed Clinic template engages instantly with a simple header with shaded background image. The use of colors related to medicine tells you exactly what this design is all about, without saying a word.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Talking of words, there are flexible content areas throughout that you can customize to suit your clinic. You can effortlessly outline products and services, surgery times, opening hours, departments and all the information you need to communicate with your audience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the MultiMed Clinic template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Bold opening with colors linked to medicine</li><li>Instantly communicates a message before you read a word</li><li>Customizable content areas throughout the template</li><li>Includes most sections you would expect to see for a clinic</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"Clean, modern medical website template ideal for clinics, surgeries and hospitals\";s:5:\"pages\";a:6:{s:8:\"id-24729\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-04-home.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-04-home.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/multimed-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/multimed-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24724\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-04-about.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-04-about.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/multimed-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/multimed-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24727\";a:12:{s:5:\"title\";s:11:\"Departments\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-04-dept.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-04-dept.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/multimed-04/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/multimed-04/departments/\";s:15:\"astra-sites-tag\";a:1:{i:602;s:11:\"departments\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24728\";a:12:{s:5:\"title\";s:7:\"Doctors\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-04-doctors.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-04-doctors.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/multimed-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/multimed-04/doctors/\";s:15:\"astra-sites-tag\";a:1:{i:601;s:6:\"doctor\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24730\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-04-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-04-testimonials.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/multimed-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/multimed-04/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24726\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-04-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-04-contact-2.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/multimed-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/multimed-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:18933;s:26:\"related-elementor-template\";i:18887;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18933\";a:22:{s:5:\"title\";s:15:\"Multimed Clinic\";s:2:\"id\";i:18933;s:12:\"publish-date\";i:1533540957;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-site-03.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-site-03.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-site-03.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/multimed-03\";s:20:\"astra-site-parent-id\";i:262;s:15:\"astra-sites-tag\";a:7:{i:337;s:6:\"clinic\";i:601;s:6:\"doctor\";i:604;s:10:\"healthcare\";i:605;s:8:\"hospital\";i:603;s:7:\"medical\";i:606;s:15:\"medical-science\";i:607;s:9:\"treatment\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2490;s:10:\"healthcare\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-24743\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-site-03.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-site-03.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/multimed-03/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/multimed-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24738\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-03-about-site.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-03-about-site.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/multimed-03/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/multimed-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24741\";a:12:{s:5:\"title\";s:11:\"Departments\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-03-departments-site.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-03-departments-site.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/multimed-03/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/multimed-03/departments/\";s:15:\"astra-sites-tag\";a:1:{i:602;s:11:\"departments\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24742\";a:12:{s:5:\"title\";s:7:\"Doctors\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-03-doctors-site.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-03-doctors-site.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/multimed-03/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/multimed-03/doctors/\";s:15:\"astra-sites-tag\";a:1:{i:601;s:6:\"doctor\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24744\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-03-testimonials-site.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-03-testimonials-site.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/multimed-03/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/multimed-03/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24740\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-03-contact-site.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/multimed-03-contact-site.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/multimed-03/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/multimed-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18881\";a:22:{s:5:\"title\";s:10:\"University\";s:2:\"id\";i:18881;s:12:\"publish-date\";i:1533194157;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/university-04-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/university-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/university-04-home.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/university-04\";s:20:\"astra-site-parent-id\";i:286;s:15:\"astra-sites-tag\";a:5:{i:457;s:7:\"college\";i:459;s:9:\"education\";i:460;s:8:\"learning\";i:456;s:6:\"school\";i:458;s:10:\"university\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2840;s:18:\"college-university\";i:2772;s:9:\"education\";i:2782;s:6:\"school\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2491;s:22:\"educational-institutes\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:952:\"<!-- wp:paragraph -->\n<p>The University template opens with an emotive success image that sets the scene. Combined with a central menu and simple header, it achieves a lot with very little. The homepage is largely grayscale but uses color for graphics buttons and images to help them stand out.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The rest of the template is fully customizable with flexible content areas, dedicated course and teacher pages and the opportunity to move, add or change anything you see on the page.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the University template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Makes an impact as soon as the homepage loads</li><li>Combines grayscale and color for maximum impact</li><li>Additional course and teacher pages</li><li>Customize everything you see on the page</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:79:\"Well-designed template ideal for schools, colleges and educational institutions\";s:5:\"pages\";a:6:{s:8:\"id-24975\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/university-04-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/university-04-home.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/university-04/wp-json/wp/v2/pages/4\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/university-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24970\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/university-04-about-us.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/university-04-about-us.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/university-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/university-04/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24973\";a:12:{s:5:\"title\";s:7:\"Courses\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/university-04-our-courses.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/university-04-our-courses.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/university-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/university-04/our-courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24976\";a:12:{s:5:\"title\";s:8:\"Teachers\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/university-04-teachers.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/university-04-teachers.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/university-04/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/university-04/teachers/\";s:15:\"astra-sites-tag\";a:1:{i:464;s:7:\"teacher\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24974\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/university-04-gallery.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/university-04-gallery.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/university-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/university-04/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24972\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/university-04-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/university-04-contact-1.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/university-04/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/university-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:18917;s:26:\"related-elementor-template\";i:18881;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18917\";a:22:{s:5:\"title\";s:10:\"University\";s:2:\"id\";i:18917;s:12:\"publish-date\";i:1533194022;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/university-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/university-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/university-03-homepage.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/university-03\";s:20:\"astra-site-parent-id\";i:287;s:15:\"astra-sites-tag\";a:5:{i:457;s:7:\"college\";i:459;s:9:\"education\";i:460;s:8:\"learning\";i:456;s:6:\"school\";i:458;s:10:\"university\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2491;s:22:\"educational-institutes\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-24989\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/university-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/university-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/university-03/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/university-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24984\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/university-03-about-us-1.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/university-03-about-us-1.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/university-03/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/university-03/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24987\";a:12:{s:5:\"title\";s:7:\"Courses\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/university-03-our-courses.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/university-03-our-courses.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/university-03/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/university-03/our-courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24990\";a:12:{s:5:\"title\";s:8:\"Teachers\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/university-03-teachers.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/university-03-teachers.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/university-03/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/university-03/teachers/\";s:15:\"astra-sites-tag\";a:1:{i:464;s:7:\"teacher\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24988\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/university-03-gallery.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/university-03-gallery.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/university-03/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/university-03/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24986\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/university-03-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/university-03-contact-1.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/university-03/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/university-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18924\";a:22:{s:5:\"title\";s:12:\"Kindergarten\";s:2:\"id\";i:18924;s:12:\"publish-date\";i:1533194016;s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-03-homepage.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/kindergarten-03\";s:20:\"astra-site-parent-id\";i:254;s:15:\"astra-sites-tag\";a:4:{i:459;s:9:\"education\";i:617;s:12:\"kindergarten\";i:460;s:8:\"learning\";i:456;s:6:\"school\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2491;s:22:\"educational-institutes\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-24658\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/kindergarten-03/wp-json/wp/v2/pages/110\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/kindergarten-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24654\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-03-about.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-03-about.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/kindergarten-03/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/kindergarten-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24656\";a:12:{s:5:\"title\";s:7:\"Classes\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-03-classes.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-03-classes.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/kindergarten-03/wp-json/wp/v2/pages/25\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/kindergarten-03/classes/\";s:15:\"astra-sites-tag\";a:1:{i:557;s:7:\"classes\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-43553\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/02/kindergarten-03-faq.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/02/kindergarten-03-faq.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/kindergarten-03/wp-json/wp/v2/pages/26\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/kindergarten-03/faq/\";s:15:\"astra-sites-tag\";a:1:{i:426;s:3:\"faq\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-43554\";a:12:{s:5:\"title\";s:7:\"Reviews\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/02/kindergarten-03-reviews.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/02/kindergarten-03-reviews.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/kindergarten-03/wp-json/wp/v2/pages/27\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/kindergarten-03/reviews/\";s:15:\"astra-sites-tag\";a:2:{i:432;s:6:\"review\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24657\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-03-contact.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/kindergarten-03/wp-json/wp/v2/pages/23\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/kindergarten-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18880\";a:22:{s:5:\"title\";s:12:\"Kindergarten\";s:2:\"id\";i:18880;s:12:\"publish-date\";i:1532087995;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-04-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-04-home.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/kindergarten-04\";s:20:\"astra-site-parent-id\";i:257;s:15:\"astra-sites-tag\";a:4:{i:459;s:9:\"education\";i:617;s:12:\"kindergarten\";i:460;s:8:\"learning\";i:456;s:6:\"school\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2772;s:9:\"education\";i:2862;s:22:\"preschool-kindergarten\";i:2782;s:6:\"school\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2491;s:22:\"educational-institutes\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1024:\"<!-- wp:paragraph -->\n<p>The Kindergarten web template has a youthful, friendly appearance that’s perfect for the niche. It’s light, bright and welcoming while providing all the information a parent needs to engage.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The use of bold colors helps create an instant atmosphere, while the whitespace relaxes the eyes and helps separate imagery from the content. It’s a well-balanced design that mixes images and graphics seamlessly, while creating an accessible, inclusive feel that will resonate well with your target audience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Kindergarten template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Bold, bright and youthful design throughout</li><li>Great mix of modern and handwritten fonts</li><li>Images ands graphics combine to create a sense of fun</li><li>Flexible content areas you can change in seconds</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:86:\"Happy, youthful web design ideal for the kindergarten, early school or preschool niche\";s:5:\"pages\";a:6:{s:8:\"id-24686\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-04-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-04-home.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/kindergarten-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/kindergarten-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24682\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-04-about-1.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-04-about-1.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/kindergarten-04/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/kindergarten-04/about/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24684\";a:12:{s:5:\"title\";s:7:\"Classes\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-04-classes.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-04-classes.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/kindergarten-04/wp-json/wp/v2/pages/25\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/kindergarten-04/classes/\";s:15:\"astra-sites-tag\";a:3:{i:557;s:7:\"classes\";i:425;s:8:\"services\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-31638\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-04-faq.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23462-kindergarten-faq-resize.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/kindergarten-04/wp-json/wp/v2/pages/26\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/kindergarten-04/faq/\";s:15:\"astra-sites-tag\";a:2:{i:426;s:3:\"faq\";i:709;s:9:\"questions\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-31639\";a:12:{s:5:\"title\";s:7:\"Reviews\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-04-reviews.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23464-kindergarten-reviews-resize.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/kindergarten-04/wp-json/wp/v2/pages/27\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/kindergarten-04/reviews/\";s:15:\"astra-sites-tag\";a:2:{i:432;s:6:\"review\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24685\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/kindergarten-04-contact.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/kindergarten-04/wp-json/wp/v2/pages/23\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/kindergarten-04/contact/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:18924;s:26:\"related-elementor-template\";i:18880;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18790\";a:22:{s:5:\"title\";s:8:\"Ayurveda\";s:2:\"id\";i:18790;s:12:\"publish-date\";i:1531225345;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/ayurveda-04-home-1.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/ayurveda-04-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/ayurveda-04-home-1.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/ayurveda-04\";s:20:\"astra-site-parent-id\";i:226;s:15:\"astra-sites-tag\";a:19:{i:618;s:9:\"ayurvedic\";i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2419;s:9:\"eshopping\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:967;s:13:\"product-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:607;s:9:\"treatment\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2769;s:9:\"ecommerce\";i:2830;s:6:\"nature\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:7:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:5;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:6;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1262:\"<!-- wp:paragraph -->\n<p>The Ayurveda template has been created for the health and wellness niche. It uses calm colors, high quality images and a mixture of attractive fonts to make you feel instantly welcome and receptive to the message.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The use of green, while customizable, helps create a feeling of relaxation expected of the niche. All pages combine content areas, whitespace, calls to action, images and content to help engage. The web template can integrate seamlessly with WooCommerce to create a fully working online store too!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Ayurveda template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Relaxed design ideal for health and wellness</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Laid back vibe while delivering your core message</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Lots of options for adding content and images</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Can integrate with WooCommerce for an online store</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:70:\"Relaxed website theme ideal for the healthy, wellness and beauty niche\";s:5:\"pages\";a:3:{s:8:\"id-24438\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/ayurveda-04-home-1.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/ayurveda-04-home-1.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/ayurveda-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/ayurveda-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-24435\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/ayurveda-04-about-1.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/ayurveda-04-about-1.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/ayurveda-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/ayurveda-04/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-24437\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/ayurveda-04-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/ayurveda-04-contact-1.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/ayurveda-04/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/ayurveda-04/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:18872;s:26:\"related-elementor-template\";i:18790;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18872\";a:22:{s:5:\"title\";s:8:\"Ayurveda\";s:2:\"id\";i:18872;s:12:\"publish-date\";i:1531199534;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/ayurveda-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/ayurveda-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/ayurveda-03-homepage.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/ayurveda-03\";s:20:\"astra-site-parent-id\";i:228;s:15:\"astra-sites-tag\";a:19:{i:618;s:9:\"ayurvedic\";i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2419;s:9:\"eshopping\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:967;s:13:\"product-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:607;s:9:\"treatment\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:7:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:3;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:4;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:5;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:6;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-24461\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/ayurveda-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/ayurveda-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/ayurveda-03/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/ayurveda-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-24458\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/ayurveda-03-about-us.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/ayurveda-03-about-us.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/ayurveda-03/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/ayurveda-03/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-24460\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/ayurveda-03-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/ayurveda-03-contact-us.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/ayurveda-03/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/ayurveda-03/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18871\";a:22:{s:5:\"title\";s:17:\"Gym &amp; Fitness\";s:2:\"id\";i:18871;s:12:\"publish-date\";i:1531199526;s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-03-homepage.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/fitness-center-03\";s:20:\"astra-site-parent-id\";i:104;s:15:\"astra-sites-tag\";a:9:{i:502;s:8:\"exercise\";i:499;s:7:\"fitness\";i:505;s:15:\"fitness-trainer\";i:506;s:19:\"functional-training\";i:500;s:3:\"gym\";i:976;s:14:\"gym-instructor\";i:504;s:11:\"gym-trainer\";i:503;s:7:\"trainer\";i:501;s:8:\"work-out\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2480;s:16:\"fitness-wellness\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-22955\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/fitness-center-03/wp-json/wp/v2/pages/130\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/fitness-center-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-22952\";a:12:{s:5:\"title\";s:7:\"Classes\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-03-classes.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-03-classes.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/fitness-center-03/wp-json/wp/v2/pages/41\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/fitness-center-03/classes/\";s:15:\"astra-sites-tag\";a:1:{i:557;s:7:\"classes\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-22950\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-03-about.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-03-about.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/fitness-center-03/wp-json/wp/v2/pages/40\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/fitness-center-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-22954\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-03-contact.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/fitness-center-03/wp-json/wp/v2/pages/43\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/fitness-center-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(249,'astra-sites-and-pages-page-33','a:15:{s:8:\"id-18738\";a:22:{s:5:\"title\";s:17:\"Gym &amp; Fitness\";s:2:\"id\";i:18738;s:12:\"publish-date\";i:1531199416;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-04-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-04-home.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/fitness-center-04\";s:20:\"astra-site-parent-id\";i:101;s:15:\"astra-sites-tag\";a:10:{i:502;s:8:\"exercise\";i:499;s:7:\"fitness\";i:505;s:15:\"fitness-trainer\";i:847;s:5:\"green\";i:500;s:3:\"gym\";i:976;s:14:\"gym-instructor\";i:504;s:11:\"gym-trainer\";i:1020;s:8:\"personal\";i:503;s:7:\"trainer\";i:501;s:8:\"work-out\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:2:{i:2787;s:11:\"gym-fitness\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2480;s:16:\"fitness-wellness\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:9:\"cartflows\";s:4:\"init\";s:23:\"cartflows/cartflows.php\";s:4:\"name\";s:9:\"CartFlows\";}i:3;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1084:\"<!-- wp:paragraph -->\n<p>The Gym &amp; Fitness template uses powerful dark design to portray the qualities expected in the niche. It’s a youthful template with dark background, bold white and strong colors along with emotive images to help paint the picture.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The homepage includes some flexible content areas where you can showcase your courses, sessions, equipment or anything you like. All pages reflect the overall aesthetic while offering the information visitors need to engage, book a session or get in touch. It’s the complete package!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Gym &amp; Fitness template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Dark, powerful website theme designs specifically for the niche</li><li>Great use of dark design to create an awesome first impression</li><li>Customizable colors and content areas throughout</li><li>Can integrate with WooCommerce for selling products</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"Dark modern web design that’s ideal for use in the exercise, gym and fitness niche\";s:5:\"pages\";a:4:{s:8:\"id-22930\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-04-home.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-04-home.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/fitness-center-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/fitness-center-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22928\";a:12:{s:5:\"title\";s:7:\"Classes\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-04-classes.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-04-classes.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/fitness-center-04/wp-json/wp/v2/pages/41\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/fitness-center-04/classes/\";s:15:\"astra-sites-tag\";a:2:{i:557;s:7:\"classes\";i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22926\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-04-about.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-04-about.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/fitness-center-04/wp-json/wp/v2/pages/40\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/fitness-center-04/about/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:455;s:8:\"about-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-22929\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-04-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/fitness-center-04-contact-2.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/fitness-center-04/wp-json/wp/v2/pages/43\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/fitness-center-04/contact/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}}s:19:\"related-bb-template\";i:18871;s:26:\"related-elementor-template\";i:18738;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18854\";a:22:{s:5:\"title\";s:12:\"Psychiatrist\";s:2:\"id\";i:18854;s:12:\"publish-date\";i:1530855088;s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/psychiatrist-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/psychiatrist-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/psychiatrist-03-homepage.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/psychiatrist-03\";s:20:\"astra-site-parent-id\";i:204;s:15:\"astra-sites-tag\";a:6:{i:608;s:8:\"guidance\";i:399;s:8:\"one-page\";i:621;s:12:\"psychiatrist\";i:622;s:13:\"psychotherapy\";i:463;s:11:\"single-page\";i:619;s:8:\"wellness\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2490;s:10:\"healthcare\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-24071\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/psychiatrist-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/psychiatrist-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/psychiatrist-03/wp-json/wp/v2/pages/422\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/psychiatrist-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18812\";a:22:{s:5:\"title\";s:12:\"Psychiatrist\";s:2:\"id\";i:18812;s:12:\"publish-date\";i:1530079532;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/psychiatrist-04-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/psychiatrist-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/psychiatrist-04-home.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/psychiatrist-04\";s:20:\"astra-site-parent-id\";i:205;s:15:\"astra-sites-tag\";a:7:{i:608;s:8:\"guidance\";i:399;s:8:\"one-page\";i:1020;s:8:\"personal\";i:621;s:12:\"psychiatrist\";i:622;s:13:\"psychotherapy\";i:463;s:11:\"single-page\";i:619;s:8:\"wellness\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:5:{i:2867;s:6:\"doctor\";i:2834;s:10:\"healthcare\";i:2770;s:8:\"personal\";i:2831;s:7:\"service\";i:2833;s:20:\"therapy-psychologist\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2490;s:10:\"healthcare\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1024:\"<!-- wp:paragraph -->\n<p>The Psychiatrist template is a light, welcoming design within a boxed layout. It displays the calm, inclusive design we would expect from the niche along with the essential information you need to communicate to potential patients or partners.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template uses lots of whitespace combined with a calm green color associated with the medical field. The homepage includes lots of space for services, testimonials, calls to action, session outlines and all the information you need to communicate to your audience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Psychiatrist template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Light, welcoming design ideal for the medical niche</li><li>Lots of whitespace and calm colors throughout</li><li>Flexible content areas throughout</li><li>Supplementary pages communicate extra information</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:82:\"Modern template ideal for psychiatrists or professionals in the medical profession\";s:5:\"pages\";a:1:{s:8:\"id-24073\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/psychiatrist-04-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/psychiatrist-04-home.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/psychiatrist-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/psychiatrist-04/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:746;s:13:\"one-page-site\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:18854;s:26:\"related-elementor-template\";i:18812;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18696\";a:22:{s:5:\"title\";s:31:\"eCourse &#8211; Learn Photoshop\";s:2:\"id\";i:18696;s:12:\"publish-date\";i:1527509495;s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-03-homepage.jpg\";s:14:\"astra-site-url\";s:45:\"//websitedemos.net/ecourse-learn-photoshop-03\";s:20:\"astra-site-parent-id\";i:274;s:15:\"astra-sites-tag\";a:5:{i:468;s:9:\"elearning\";i:719;s:15:\"online-coaching\";i:975;s:15:\"online-learning\";i:721;s:8:\"training\";i:720;s:9:\"tutorials\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-24839\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/ecourse-learn-photoshop-03/wp-json/wp/v2/pages/64\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/ecourse-learn-photoshop-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24836\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-03-about-1.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-03-about-1.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/ecourse-learn-photoshop-03/wp-json/wp/v2/pages/65\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/ecourse-learn-photoshop-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24838\";a:12:{s:5:\"title\";s:7:\"Courses\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-03-courses.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-03-courses.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/ecourse-learn-photoshop-03/wp-json/wp/v2/pages/85\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/ecourse-learn-photoshop-03/courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24841\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-03-testimonials-1.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-03-testimonials-1.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/ecourse-learn-photoshop-03/wp-json/wp/v2/pages/86\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:59:\"//websitedemos.net/ecourse-learn-photoshop-03/testimonials/\";s:15:\"astra-sites-tag\";a:2:{i:432;s:6:\"review\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24840\";a:12:{s:5:\"title\";s:7:\"Pricing\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-03-pricing.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-03-pricing.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/ecourse-learn-photoshop-03/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/ecourse-learn-photoshop-03/pricing/\";s:15:\"astra-sites-tag\";a:1:{i:585;s:7:\"pricing\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18622\";a:22:{s:5:\"title\";s:20:\"Food and Drinks Blog\";s:2:\"id\";i:18622;s:12:\"publish-date\";i:1526300269;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2018/05/fnb-blogger-03-home.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2018/05/fnb-blogger-03-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2018/05/fnb-blogger-03-home.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/fnb-blogger-03\";s:20:\"astra-site-parent-id\";i:888;s:15:\"astra-sites-tag\";a:6:{i:728;s:8:\"beverage\";i:729;s:8:\"blogging\";i:336;s:4:\"food\";i:883;s:23:\"food-and-drinks-blogger\";i:890;s:12:\"food-blogger\";i:730;s:7:\"recipes\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:37;s:4:\"blog\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:3;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:29:\"Ultimate Addons for Gutenberg\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:2:{s:8:\"id-31836\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2018/05/fnb-blogger-03-about-me.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2018/05/fnb-blogger-03-about-me.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/fnb-blogger-03/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/fnb-blogger-03/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-31837\";a:12:{s:5:\"title\";s:19:\"Let&#8217;s Connect\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/09/fnb-blogger-03-lets-connect-01.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/09/fnb-blogger-03-lets-connect.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/fnb-blogger-03/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/fnb-blogger-03/lets-connect/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18624\";a:22:{s:5:\"title\";s:6:\"Author\";s:2:\"id\";i:18624;s:12:\"publish-date\";i:1526299822;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/author-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/author-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/author-03-homepage.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/author-03\";s:20:\"astra-site-parent-id\";i:222;s:15:\"astra-sites-tag\";a:5:{i:724;s:6:\"author\";i:726;s:10:\"literature\";i:723;s:8:\"novelist\";i:722;s:4:\"poet\";i:725;s:6:\"writer\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-24404\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/author-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/author-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/author-03/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/author-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24402\";a:12:{s:5:\"title\";s:5:\"Books\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/author-03-books.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/author-03-books.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/author-03/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/author-03/books/\";s:15:\"astra-sites-tag\";a:1:{i:727;s:4:\"book\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24400\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/author-03-about.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/author-03-about.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/author-03/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/author-03/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24403\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/author-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/author-03-contact.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/author-03/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/author-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18636\";a:22:{s:5:\"title\";s:9:\"Jewellery\";s:2:\"id\";i:18636;s:12:\"publish-date\";i:1526295229;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/jewellery-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/jewellery-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/jewellery-03-homepage.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/jewellery-03\";s:20:\"astra-site-parent-id\";i:249;s:15:\"astra-sites-tag\";a:18:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2419;s:9:\"eshopping\";i:2382;s:15:\"jewellery-store\";i:2529;s:13:\"jewelry-store\";i:2383;s:22:\"online-jewellery-store\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:3;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:4;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-24626\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/jewellery-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/jewellery-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/jewellery-03/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/jewellery-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}s:8:\"id-24624\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/jewellery-03-about-us-1.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/jewellery-03-about-us-1.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/jewellery-03/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/jewellery-03/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24625\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/jewellery-03-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2019/07/id-24625-jewellery-contact-us-resize.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/jewellery-03/wp-json/wp/v2/pages/53\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/jewellery-03/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18548\";a:22:{s:5:\"title\";s:15:\"Wedding Planner\";s:2:\"id\";i:18548;s:12:\"publish-date\";i:1525174042;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-04-home-2.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-04-home-2.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-04-home-2.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/wedding-planner-04\";s:20:\"astra-site-parent-id\";i:272;s:15:\"astra-sites-tag\";a:3:{i:717;s:13:\"event-planner\";i:697;s:7:\"wedding\";i:716;s:15:\"wedding-planner\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2784;s:5:\"event\";i:2831;s:7:\"service\";i:2792;s:7:\"wedding\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2489;s:16:\"event-invitation\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:3;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1034:\"<!-- wp:paragraph -->\n<p>The Wedding Planner template has an elegant design ideal for the niche. It balances a romantic feel with a clean look that delivers wide appeal across the varied wedding niche.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes well balanced pages with flexible content areas to show your products and services, showcase previous weddings you planned, include testimonials and all those things we expect from a website like this. With a built-in portfolio, attractive contact page and that composed look, this template is a real winner!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Wedding Planner template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Elegant design ideal for weddings and wedding planners</li><li>Calm, composed design with instant appeal</li><li>Lots of flexible content areas to add your services</li><li>Portfolio and gallery pages already included</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:61:\"Lovely web template designed for weddings, and event planners\";s:5:\"pages\";a:6:{s:8:\"id-24812\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-04-home-2.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-04-home-2.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/wedding-planner-04/wp-json/wp/v2/pages/173\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/wedding-planner-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-24808\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-04-about.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-04-about.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/wedding-planner-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/wedding-planner-04/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-24813\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-04-services-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-04-services-1.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/wedding-planner-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/wedding-planner-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-24811\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-04-gallery-2.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-04-gallery-2.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/wedding-planner-04/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/wedding-planner-04/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-24814\";a:12:{s:5:\"title\";s:6:\"Venues\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-04-venues.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-04-venues.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/wedding-planner-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/wedding-planner-04/venues/\";s:15:\"astra-sites-tag\";a:1:{i:696;s:5:\"venue\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-24810\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-04-contact.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/wedding-planner-04/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/wedding-planner-04/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:18556;s:26:\"related-elementor-template\";i:18548;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18574\";a:22:{s:5:\"title\";s:31:\"eCourse &#8211; Learn Photoshop\";s:2:\"id\";i:18574;s:12:\"publish-date\";i:1525174025;s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-04-home-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-04-home-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-04-home-1.jpg\";s:14:\"astra-site-url\";s:45:\"//websitedemos.net/ecourse-learn-photoshop-04\";s:20:\"astra-site-parent-id\";i:275;s:15:\"astra-sites-tag\";a:5:{i:468;s:9:\"elearning\";i:719;s:15:\"online-coaching\";i:975;s:15:\"online-learning\";i:721;s:8:\"training\";i:720;s:9:\"tutorials\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2825;s:8:\"coaching\";i:2835;s:9:\"elearning\";i:2880;s:10:\"membership\";i:2827;s:13:\"online-course\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1047:\"<!-- wp:paragraph -->\n<p>The eCourse &amp; Learn Photoshop template is a crisp, modern template ideal for online learning. It uses reassuring colors and a clean layout with alternating shaded and white areas with a bold color for calls to action.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes a strong homepage with optional content areas and dedicated course pages to help outline your courses, offer demos, encourage purchase or generally help engagement. It’s a professional-looking design that should help build confidence in your brand.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the eCourse &amp; Learn Photoshop template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Professional design with wide appeal</li><li>Designed for online learning with dedicated course pages</li><li>Can be adapted for any type of course or niche</li><li>Full compatibility with WooCommerce for selling or subscriptions</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:78:\"Professional web template for LMS, course websites and online learning portals\";s:5:\"pages\";a:5:{s:8:\"id-24853\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-04-home-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-04-home-1.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/ecourse-learn-photoshop-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/ecourse-learn-photoshop-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24848\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-04-about.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-04-about.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/ecourse-learn-photoshop-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/ecourse-learn-photoshop-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24851\";a:12:{s:5:\"title\";s:7:\"Courses\";s:18:\"featured-image-url\";s:103:\"https://websitedemos.net/wp-content/uploads/2019/07/id-24851-ecourse-learn-photoshop-courses-resize.jpg\";s:19:\"thumbnail-image-url\";s:103:\"https://websitedemos.net/wp-content/uploads/2019/07/id-24851-ecourse-learn-photoshop-courses-resize.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/ecourse-learn-photoshop-04/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/ecourse-learn-photoshop-04/courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24856\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-04-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2019/07/ecourse-learn-photoshop-04-testimonials.jpg\";s:18:\"astra-page-api-url\";s:73:\"https://websitedemos.net/ecourse-learn-photoshop-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:59:\"//websitedemos.net/ecourse-learn-photoshop-04/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24854\";a:12:{s:5:\"title\";s:7:\"Pricing\";s:18:\"featured-image-url\";s:103:\"https://websitedemos.net/wp-content/uploads/2019/07/id-24854-ecourse-learn-photoshop-pricing-resize.jpg\";s:19:\"thumbnail-image-url\";s:103:\"https://websitedemos.net/wp-content/uploads/2019/07/id-24854-ecourse-learn-photoshop-pricing-resize.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/ecourse-learn-photoshop-04/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/ecourse-learn-photoshop-04/pricing/\";s:15:\"astra-sites-tag\";a:1:{i:585;s:7:\"pricing\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";i:18696;s:26:\"related-elementor-template\";i:18574;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18423\";a:22:{s:5:\"title\";s:6:\"Author\";s:2:\"id\";i:18423;s:12:\"publish-date\";i:1524117769;s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2019/07/author-home.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2019/07/author-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2019/07/author-home.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/author-04\";s:20:\"astra-site-parent-id\";i:224;s:15:\"astra-sites-tag\";a:6:{i:724;s:6:\"author\";i:726;s:10:\"literature\";i:723;s:8:\"novelist\";i:1020;s:8:\"personal\";i:722;s:4:\"poet\";i:725;s:6:\"writer\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2839;s:13:\"author-writer\";i:2814;s:9:\"bookstore\";i:2769;s:9:\"ecommerce\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:949:\"<!-- wp:paragraph -->\n<p>The Author template is ideal for any creative that wants to promote their work. While set up for books, you could promote anything with minimal effort thanks to full page builder compatibility.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design is light and easygoing, with a new release front and center with a shaded image in the background. Gentle complementing colors draws attention while keeping you relaxed and entices you to explore the template more. Just what you want when showcasing your work!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Author template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Calm, composed website design</li><li>Configured for creatives to showcase their work</li><li>Tasteful color and font choices throughout</li><li>Book pages let you add a lot of detail</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:83:\"Tasteful web template for freelancers, creatives or agencies to show off their work\";s:5:\"pages\";a:4:{s:8:\"id-24419\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2019/07/author-home.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2019/07/author-home.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/author-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/author-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24417\";a:12:{s:5:\"title\";s:5:\"Books\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2019/07/author-books.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2019/07/author-books.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/author-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/author-04/books/\";s:15:\"astra-sites-tag\";a:1:{i:727;s:4:\"book\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24415\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2019/07/author-about.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2019/07/author-about.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/author-04/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/author-04/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24418\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/author-contact.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/author-contact.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/author-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/author-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";i:18624;s:26:\"related-elementor-template\";i:18423;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18556\";a:22:{s:5:\"title\";s:15:\"Wedding Planner\";s:2:\"id\";i:18556;s:12:\"publish-date\";i:1524117767;s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-03-homepage.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/wedding-planner-03\";s:20:\"astra-site-parent-id\";i:273;s:15:\"astra-sites-tag\";a:3:{i:717;s:13:\"event-planner\";i:697;s:7:\"wedding\";i:716;s:15:\"wedding-planner\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2489;s:16:\"event-invitation\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1034:\"<!-- wp:paragraph -->\n<p>The Wedding Planner template has an elegant design ideal for the niche. It balances a romantic feel with a clean look that delivers wide appeal across the varied wedding niche.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes well balanced pages with flexible content areas to show your products and services, showcase previous weddings you planned, include testimonials and all those things we expect from a website like this. With a built-in portfolio, attractive contact page and that composed look, this template is a real winner!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Wedding Planner template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Elegant design ideal for weddings and wedding planners</li><li>Calm, composed design with instant appeal</li><li>Lots of flexible content areas to add your services</li><li>Portfolio and gallery pages already included</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:80:\"Lovely web template designed for weddings, planners and the entire wedding niche\";s:5:\"pages\";a:6:{s:8:\"id-24826\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/wedding-planner-03/wp-json/wp/v2/pages/4\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/wedding-planner-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24822\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-03-about.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-03-about.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/wedding-planner-03/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/wedding-planner-03/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24827\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-03-services-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-03-services-1.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/wedding-planner-03/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/wedding-planner-03/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24825\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-03-gallery-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-03-gallery-1.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/wedding-planner-03/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/wedding-planner-03/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24828\";a:12:{s:5:\"title\";s:6:\"Venues\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-03-venues-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-03-venues-1.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/wedding-planner-03/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/wedding-planner-03/venues/\";s:15:\"astra-sites-tag\";a:1:{i:696;s:5:\"venue\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24824\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-03-contact-us-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-planner-03-contact-us-1.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/wedding-planner-03/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/wedding-planner-03/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18507\";a:22:{s:5:\"title\";s:20:\"Food and Drinks Blog\";s:2:\"id\";i:18507;s:12:\"publish-date\";i:1524033185;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2018/04/fnb-blogger-04-1.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2018/04/fnb-blogger-04-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2018/04/fnb-blogger-04-1.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/fnb-blogger-04\";s:20:\"astra-site-parent-id\";i:355;s:15:\"astra-sites-tag\";a:8:{i:728;s:8:\"beverage\";i:729;s:8:\"blogging\";i:882;s:6:\"drinks\";i:336;s:4:\"food\";i:883;s:23:\"food-and-drinks-blogger\";i:1020;s:8:\"personal\";i:2904;s:6:\"recipe\";i:730;s:7:\"recipes\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:37;s:4:\"blog\";}s:29:\"astra-sites-template-category\";a:3:{i:2828;s:4:\"blog\";i:2785;s:4:\"food\";i:2813;s:6:\"winery\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:3;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:29:\"Ultimate Addons for Gutenberg\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1018:\"<!-- wp:paragraph -->\n<p>The Food and Drinks Blog template has a great design that sets it apart from the usual. It opens with a full screen image with space for a headline and call to action before opening out into a traditional blog layout. This helps create a fantastic first impression.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The rest of the template uses a mix of fonts and a well-blended design that mixes the brand colors with minimal layout that lets the blog images shine. A smart sidebar with lots of widget spaces and a range of pre-made category pages completes the look.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Food and Drinks Blog template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Full screen image makes an instant impact</li><li>Composed design combines color and minimalism</li><li>Overall design lets images shine</li><li>Sidebars have lots of space for widgets</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:80:\"Colorful responsive web template for food, drink, entertainment or leisure blogs\";s:5:\"pages\";a:2:{s:8:\"id-28358\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/fnb-blogger-04-about-me-2.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/fnb-blogger-04-about-me-2.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/fnb-blogger-04/wp-json/wp/v2/pages/4\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/fnb-blogger-04/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-28360\";a:12:{s:5:\"title\";s:19:\"Let&#8217;s Connect\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/fnb-blogger-04-lets-connect-2.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/fnb-blogger-04-lets-connect-2.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/fnb-blogger-04/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/fnb-blogger-04/lets-connect/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:18622;s:26:\"related-elementor-template\";i:18507;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18492\";a:22:{s:5:\"title\";s:9:\"Jewellery\";s:2:\"id\";i:18492;s:12:\"publish-date\";i:1523528992;s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2019/07/jewellery-04.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2019/07/jewellery-04.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2019/07/jewellery-04.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/jewellery-04\";s:20:\"astra-site-parent-id\";i:252;s:15:\"astra-sites-tag\";a:18:{i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2419;s:9:\"eshopping\";i:2382;s:15:\"jewellery-store\";i:2529;s:13:\"jewelry-store\";i:2383;s:22:\"online-jewellery-store\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:3:{i:2769;s:9:\"ecommerce\";i:2838;s:9:\"jewellery\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:3;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:4;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:5;a:3:{s:4:\"slug\";s:9:\"cartflows\";s:4:\"init\";s:23:\"cartflows/cartflows.php\";s:4:\"name\";s:9:\"CartFlows\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:992:\"<!-- wp:paragraph -->\n<p>The Jewellery template uses a dark design to communicate luxury while showcasing your wares using impactful images. Complementary light fonts with gold accent color helps create a feeling of exclusivity.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The homepage has lots of opportunities to show off your stock using monochrome images, but you could convert them to color if you wanted. Everything about the template can be changed without touching code and the template is fully compatible with WooCommerce so you could start selling immediately.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Jewellery template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Dark design with gold accent creates a luxury feel</li><li>Strong images help sell your items</li><li>Category and product pages included with the template</li><li>WooCommerce-compatible</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"Luxurious dark web template for selling jewellery, watches and other items online\";s:5:\"pages\";a:3:{s:8:\"id-24635\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2019/07/jewellery-04.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2019/07/jewellery-04.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/jewellery-04/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/jewellery-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-24633\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/jewellery-04-about-us.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/jewellery-04-about-us.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/jewellery-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/jewellery-04/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-24634\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/jewellery-04-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/jewellery-04-contact-us.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/jewellery-04/wp-json/wp/v2/pages/53\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/jewellery-04/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}}s:19:\"related-bb-template\";i:18636;s:26:\"related-elementor-template\";i:18492;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18399\";a:22:{s:5:\"title\";s:5:\"Hotel\";s:2:\"id\";i:18399;s:12:\"publish-date\";i:1522060654;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-03-homepage.jpg\";s:14:\"astra-site-url\";s:27:\"//websitedemos.net/hotel-03\";s:20:\"astra-site-parent-id\";i:279;s:15:\"astra-sites-tag\";a:6:{i:560;s:7:\"cuisine\";i:336;s:4:\"food\";i:350;s:5:\"hotel\";i:712;s:5:\"lodge\";i:711;s:5:\"motel\";i:714;s:6:\"resort\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2498;s:12:\"hotel-travel\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-24893\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/hotel-03/wp-json/wp/v2/pages/128\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:28:\"//websitedemos.net/hotel-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24894\";a:12:{s:5:\"title\";s:5:\"Rooms\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-03-rooms.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-03-rooms.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/hotel-03/wp-json/wp/v2/pages/129\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/hotel-03/rooms/\";s:15:\"astra-sites-tag\";a:1:{i:715;s:5:\"rooms\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24895\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-03-services.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-03-services.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/hotel-03/wp-json/wp/v2/pages/130\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/hotel-03/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24892\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-03-gallery.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-03-gallery.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/hotel-03/wp-json/wp/v2/pages/131\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/hotel-03/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24896\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-03-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-03-testimonials.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/hotel-03/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/hotel-03/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24891\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-03-contact.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/hotel-03/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/hotel-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18394\";a:22:{s:5:\"title\";s:5:\"Hotel\";s:2:\"id\";i:18394;s:12:\"publish-date\";i:1522060425;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-04-feb-20-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-04-feb-20-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-04-feb-20-home.jpg\";s:14:\"astra-site-url\";s:27:\"//websitedemos.net/hotel-04\";s:20:\"astra-site-parent-id\";i:282;s:15:\"astra-sites-tag\";a:4:{i:350;s:5:\"hotel\";i:712;s:5:\"lodge\";i:711;s:5:\"motel\";i:714;s:6:\"resort\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:2:{i:2788;s:9:\"hotel-bnb\";i:2775;s:14:\"travel-tourism\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2498;s:12:\"hotel-travel\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1071:\"<!-- wp:paragraph -->\n<p>The Hotel template provides an upmarket feel from the off. It opens with a calm blue color with images of a hotel in the background. The rest of the homepage includes classic fonts and colors outlining all the key information you would want from a hotel along with supplementary pages for rooms, services and booking.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The default theme includes all the essential ingredients for a hotel website but can easily be customized thanks to full compatibility with page builders. Use a booking plugin and you could take room bookings directly off the website too!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Key features of the Hotel template</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Upmarket template designed for the niche</li><li>All page elements you would expect to see on a hotel website</li><li>Can take bookings alongside a booking plugin</li><li>Excellent service and room pages</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:79:\"Classic website design with great colors designed to showcase your hotel or BnB\";s:5:\"pages\";a:6:{s:8:\"id-24925\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-04-feb-20-home.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-04-feb-20-home.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/hotel-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:28:\"//websitedemos.net/hotel-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24926\";a:12:{s:5:\"title\";s:5:\"Rooms\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-04-feb-20-rooms.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-04-feb-20-rooms.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/hotel-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/hotel-04/rooms/\";s:15:\"astra-sites-tag\";a:1:{i:715;s:5:\"rooms\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24927\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-04-feb-20-services.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-04-feb-20-services.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/hotel-04/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/hotel-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24924\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-04-feb-20-gallery.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-04-feb-20-gallery.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/hotel-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/hotel-04/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24928\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-04-feb-20-testimonial.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-04-feb-20-testimonial.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/hotel-04/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/hotel-04/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24923\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-04-feb-20-contact.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-04-feb-20-contact.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/hotel-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/hotel-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:18399;s:26:\"related-elementor-template\";i:18394;s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(250,'astra-sites-and-pages-page-34','a:15:{s:8:\"id-18388\";a:22:{s:5:\"title\";s:7:\"eCourse\";s:2:\"id\";i:18388;s:12:\"publish-date\";i:1522057120;s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-03.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-03.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-03.jpg\";s:14:\"astra-site-url\";s:27:\"//websitedemos.net/teach-03\";s:20:\"astra-site-parent-id\";i:216;s:15:\"astra-sites-tag\";a:5:{i:468;s:9:\"elearning\";i:719;s:15:\"online-coaching\";i:975;s:15:\"online-learning\";i:721;s:8:\"training\";i:720;s:9:\"tutorials\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-24331\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-03.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-03.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/teach-03/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:28:\"//websitedemos.net/teach-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24328\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-03-about.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-03-about.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/teach-03/wp-json/wp/v2/pages/50\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/teach-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24332\";a:12:{s:5:\"title\";s:7:\"Lessons\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-03-lessons.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-03-lessons.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/teach-03/wp-json/wp/v2/pages/81\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/teach-03/lessons/\";s:15:\"astra-sites-tag\";a:1:{i:747;s:7:\"lessons\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24333\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-03-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-03-testimonials.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/teach-03/wp-json/wp/v2/pages/53\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/teach-03/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24330\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/teach-03-contact.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/teach-03/wp-json/wp/v2/pages/55\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/teach-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18373\";a:22:{s:5:\"title\";s:12:\"Kids Charity\";s:2:\"id\";i:18373;s:12:\"publish-date\";i:1522056794;s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/kids-charity-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/kids-charity-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/kids-charity-03-homepage.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/kids-charity-03\";s:20:\"astra-site-parent-id\";i:169;s:15:\"astra-sites-tag\";a:6:{i:625;s:7:\"charity\";i:978;s:10:\"child-care\";i:624;s:10:\"foundation\";i:626;s:6:\"giving\";i:977;s:10:\"non-profit\";i:745;s:12:\"organization\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2492;s:10:\"non-profit\";}s:16:\"required-plugins\";a:5:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:4:\"give\";s:4:\"init\";s:13:\"give/give.php\";s:4:\"name\";s:22:\"Give - Donation Plugin\";}i:3;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:4;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:7:{s:8:\"id-57942\";a:12:{s:5:\"title\";s:15:\"Donor Dashboard\";s:18:\"featured-image-url\";s:0:\"\";s:19:\"thumbnail-image-url\";s:0:\"\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/kids-charity-03/wp-json/wp/v2/pages/627\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/kids-charity-03/donor-dashboard/\";s:15:\"astra-sites-tag\";a:0:{}s:15:\"site-pages-type\";a:0:{}s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:0:{}s:16:\"required-plugins\";s:0:\"\";}s:8:\"id-23608\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/kids-charity-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/kids-charity-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/kids-charity-03/wp-json/wp/v2/pages/121\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/kids-charity-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23611\";a:12:{s:5:\"title\";s:10:\"Who we are\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/kids-charity-03-who-we-are.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/kids-charity-03-who-we-are.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/kids-charity-03/wp-json/wp/v2/pages/122\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/kids-charity-03/who-we-are/\";s:15:\"astra-sites-tag\";a:2:{i:352;s:5:\"about\";i:685;s:10:\"who-we-are\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23610\";a:12:{s:5:\"title\";s:10:\"What we do\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/kids-charity-03-what-we-do.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/kids-charity-03-what-we-do.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/kids-charity-03/wp-json/wp/v2/pages/123\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/kids-charity-03/what-we-do/\";s:15:\"astra-sites-tag\";a:2:{i:628;s:10:\"what-we-do\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23609\";a:12:{s:5:\"title\";s:12:\"Our Partners\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/kids-charity-03-partners.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/kids-charity-03-partners.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/kids-charity-03/wp-json/wp/v2/pages/124\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/kids-charity-03/our-partners/\";s:15:\"astra-sites-tag\";a:2:{i:734;s:8:\"partners\";i:486;s:4:\"team\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23606\";a:12:{s:5:\"title\";s:10:\"Contact us\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/kids-charity-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/kids-charity-03-contact.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/kids-charity-03/wp-json/wp/v2/pages/125\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/kids-charity-03/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-23607\";a:12:{s:5:\"title\";s:6:\"Donate\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/kids-charity-03-donate.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/kids-charity-03-donate.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/kids-charity-03/wp-json/wp/v2/pages/103\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/kids-charity-03/donate/\";s:15:\"astra-sites-tag\";a:1:{i:735;s:6:\"donate\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:4:\"give\";s:4:\"init\";s:13:\"give/give.php\";s:4:\"name\";s:22:\"Give - Donation Plugin\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18363\";a:22:{s:5:\"title\";s:9:\"theAgency\";s:2:\"id\";i:18363;s:12:\"publish-date\";i:1521183423;s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-03-homepage.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/wordpress-agency-03\";s:20:\"astra-site-parent-id\";i:133;s:15:\"astra-sites-tag\";a:6:{i:663;s:6:\"agency\";i:979;s:7:\"company\";i:664;s:16:\"digital-services\";i:812;s:6:\"office\";i:665;s:14:\"service-agency\";i:661;s:7:\"website\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-23274\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/wordpress-agency-03/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/wordpress-agency-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23271\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-03-about-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-03-about-1.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/wordpress-agency-03/wp-json/wp/v2/pages/25\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/wordpress-agency-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23276\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-03-services-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-03-services-1.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/wordpress-agency-03/wp-json/wp/v2/pages/26\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/wordpress-agency-03/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23275\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-03-projects-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-03-projects-1.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/wordpress-agency-03/wp-json/wp/v2/pages/27\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/wordpress-agency-03/projects/\";s:15:\"astra-sites-tag\";a:1:{i:424;s:7:\"project\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23277\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-03-testimonials-3.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-03-testimonials-3.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/wordpress-agency-03/wp-json/wp/v2/pages/28\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/wordpress-agency-03/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23273\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-03-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-03-contact-2.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/wordpress-agency-03/wp-json/wp/v2/pages/29\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/wordpress-agency-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18372\";a:22:{s:5:\"title\";s:5:\"Coach\";s:2:\"id\";i:18372;s:12:\"publish-date\";i:1521183405;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-03-homepage.jpg\";s:14:\"astra-site-url\";s:27:\"//websitedemos.net/coach-03\";s:20:\"astra-site-parent-id\";i:236;s:15:\"astra-sites-tag\";a:6:{i:854;s:5:\"coach\";i:610;s:8:\"coaching\";i:608;s:8:\"guidance\";i:612;s:10:\"life-coach\";i:609;s:9:\"motivator\";i:611;s:16:\"self-improvement\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-24510\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/coach-03/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:28:\"//websitedemos.net/coach-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24505\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-03-about-1.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-03-about-1.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/coach-03/wp-json/wp/v2/pages/20\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/coach-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24509\";a:12:{s:5:\"title\";s:7:\"e-Books\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-03-e-books.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-03-e-books.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/coach-03/wp-json/wp/v2/pages/21\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/coach-03/e-books/\";s:15:\"astra-sites-tag\";a:1:{i:781;s:6:\"e-book\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24508\";a:12:{s:5:\"title\";s:7:\"Courses\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-03-courses.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-03-courses.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/coach-03/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/coach-03/courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24507\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-03-contact.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/coach-03/wp-json/wp/v2/pages/24\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/coach-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18361\";a:22:{s:5:\"title\";s:17:\"Five Days Website\";s:2:\"id\";i:18361;s:12:\"publish-date\";i:1521183383;s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/creative-agency-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/creative-agency-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/creative-agency-03-homepage.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/creative-agency-03\";s:20:\"astra-site-parent-id\";i:178;s:15:\"astra-sites-tag\";a:4:{i:663;s:6:\"agency\";i:664;s:16:\"digital-services\";i:665;s:14:\"service-agency\";i:661;s:7:\"website\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-23665\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/creative-agency-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/creative-agency-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/creative-agency-03/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/creative-agency-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23667\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/creative-agency-03-services.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/creative-agency-03-services.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/creative-agency-03/wp-json/wp/v2/pages/28\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/creative-agency-03/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23663\";a:12:{s:5:\"title\";s:12:\"Case Studies\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/creative-agency-03-case-studies.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/creative-agency-03-case-studies.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/creative-agency-03/wp-json/wp/v2/pages/31\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/creative-agency-03/case-studies/\";s:15:\"astra-sites-tag\";a:1:{i:780;s:12:\"case-studies\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23669\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-03-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-03-testimonials.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/creative-agency-03/wp-json/wp/v2/pages/30\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/creative-agency-03/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23666\";a:12:{s:5:\"title\";s:6:\"Prices\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/creative-agency-03-prices.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/creative-agency-03-prices.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/creative-agency-03/wp-json/wp/v2/pages/29\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/creative-agency-03/prices/\";s:15:\"astra-sites-tag\";a:2:{i:815;s:5:\"price\";i:585;s:7:\"pricing\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23664\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/creative-agency-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/creative-agency-03-contact.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/creative-agency-03/wp-json/wp/v2/pages/32\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/creative-agency-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18375\";a:22:{s:5:\"title\";s:16:\"Conference Event\";s:2:\"id\";i:18375;s:12:\"publish-date\";i:1521183449;s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/conference-event-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/conference-event-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/conference-event-03-homepage.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/conference-event-03\";s:20:\"astra-site-parent-id\";i:175;s:15:\"astra-sites-tag\";a:6:{i:744;s:10:\"conference\";i:742;s:13:\"event-website\";i:743;s:7:\"meeting\";i:399;s:8:\"one-page\";i:745;s:12:\"organization\";i:463;s:11:\"single-page\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2489;s:16:\"event-invitation\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-23637\";a:12:{s:5:\"title\";s:16:\"One Page Website\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/conference-event-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/conference-event-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/conference-event-03/wp-json/wp/v2/pages/72\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/conference-event-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18310\";a:22:{s:5:\"title\";s:17:\"Five Days Website\";s:2:\"id\";i:18310;s:12:\"publish-date\";i:1520407757;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2018/03/creative-agency-04-1.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2018/03/creative-agency-04-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2018/03/creative-agency-04-1.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/creative-agency-04\";s:20:\"astra-site-parent-id\";i:181;s:15:\"astra-sites-tag\";a:4:{i:663;s:6:\"agency\";i:664;s:16:\"digital-services\";i:665;s:14:\"service-agency\";i:661;s:7:\"website\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:2:{i:2812;s:14:\"digital-agency\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:931:\"<!-- wp:paragraph -->\n<p>The Five Days Website template makes its case right away with a bold, informative banner. That is complemented by a corresponding image and use of modern colors to make everything stand out.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The rest of the template continues that theme with the contrast colors standing out against the whitespace while giving you room to tell your story, share your products and services and communicate with your audience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Key features of the Five Days Website template</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Communicate your purpose from the very beginning</li><li>Simple, elegant layout with bold colors</li><li>Whitespace counters the boldness to achieve balance</li><li>Flexible layouts and content areas</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"Energetic web template for digital agencies with bright colors and instant appeal\";s:5:\"pages\";a:6:{s:8:\"id-23703\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2018/03/creative-agency-04-1.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2018/03/creative-agency-04-1.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/creative-agency-04/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/creative-agency-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23705\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23705-five-days-website-services-resize.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2019/07/id-23705-five-days-website-services-resize.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/creative-agency-04/wp-json/wp/v2/pages/28\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/creative-agency-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23701\";a:12:{s:5:\"title\";s:12:\"Case Studies\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/creative-agency-04-case-studies.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/creative-agency-04-case-studies.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/creative-agency-04/wp-json/wp/v2/pages/31\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/creative-agency-04/case-studies/\";s:15:\"astra-sites-tag\";a:1:{i:736;s:7:\"studies\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23707\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/creative-agency-04-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/creative-agency-04-testimonials.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/creative-agency-04/wp-json/wp/v2/pages/30\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/creative-agency-04/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23704\";a:12:{s:5:\"title\";s:6:\"Prices\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/creative-agency-04-prices.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/creative-agency-04-prices.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/creative-agency-04/wp-json/wp/v2/pages/29\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/creative-agency-04/prices/\";s:15:\"astra-sites-tag\";a:1:{i:585;s:7:\"pricing\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23702\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/creative-agency-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/creative-agency-04-contact.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/creative-agency-04/wp-json/wp/v2/pages/32\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/creative-agency-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:18361;s:26:\"related-elementor-template\";i:18310;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18306\";a:22:{s:5:\"title\";s:9:\"theAgency\";s:2:\"id\";i:18306;s:12:\"publish-date\";i:1520407419;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-04-2.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-04-2.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-04-2.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/wordpress-agency-04\";s:20:\"astra-site-parent-id\";i:141;s:15:\"astra-sites-tag\";a:6:{i:663;s:6:\"agency\";i:979;s:7:\"company\";i:664;s:16:\"digital-services\";i:812;s:6:\"office\";i:665;s:14:\"service-agency\";i:661;s:7:\"website\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2812;s:14:\"digital-agency\";i:2768;s:9:\"portfolio\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1178:\"<!-- wp:paragraph -->\n<p>theAgency template is a modern dark theme that reflects the cutting-edge nature of many digital agencies. It uses a simple shaded image to great effect along with sans serif fonts and a green colorway to add interest.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The rest of the website template uses darkspace and content areas well and provides lots of opportunities to tell your story, share products and services and use imagery to promote your brand. It’s a very composed template!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the theAgency template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Contemporary dark theme with modern appeal</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Good use of sans serif fonts and color to create atmosphere</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Flexible layout with lots of content space</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Imagery can really stand out</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:91:\"Dark, atmospheric design that’s perfect for digital agencies who want to tell their story\";s:5:\"pages\";a:6:{s:8:\"id-23344\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-04-2.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-04-2.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/wordpress-agency-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/wordpress-agency-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23341\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-04-about-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-04-about-1.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/wordpress-agency-04/wp-json/wp/v2/pages/25\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/wordpress-agency-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23346\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-04-services-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-04-services-1.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/wordpress-agency-04/wp-json/wp/v2/pages/26\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/wordpress-agency-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23345\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-04-projects-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-04-projects-1.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/wordpress-agency-04/wp-json/wp/v2/pages/27\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/wordpress-agency-04/projects/\";s:15:\"astra-sites-tag\";a:1:{i:424;s:7:\"project\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23347\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-04-testimonials-3.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-04-testimonials-3.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/wordpress-agency-04/wp-json/wp/v2/pages/28\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:52:\"//websitedemos.net/wordpress-agency-04/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23343\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-04-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/wordpress-agency-04-contact-1.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/wordpress-agency-04/wp-json/wp/v2/pages/29\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/wordpress-agency-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:18363;s:26:\"related-elementor-template\";i:18306;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18325\";a:22:{s:5:\"title\";s:16:\"Conference Event\";s:2:\"id\";i:18325;s:12:\"publish-date\";i:1520407164;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2018/03/conference-event-02-1.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2018/03/conference-event-02-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2018/03/conference-event-02-1.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/conference-event-02\";s:20:\"astra-site-parent-id\";i:168;s:15:\"astra-sites-tag\";a:6:{i:744;s:10:\"conference\";i:742;s:13:\"event-website\";i:743;s:7:\"meeting\";i:399;s:8:\"one-page\";i:745;s:12:\"organization\";i:463;s:11:\"single-page\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2811;s:10:\"conference\";i:2784;s:5:\"event\";i:2771;s:8:\"one-page\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2489;s:16:\"event-invitation\";i:2927;s:8:\"one-page\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:983:\"<!-- wp:paragraph -->\n<p>The Conference Event web template uses a minimal scheme with well-chosen fonts to create a professional persona. It utilizes a large image on the homepage to communicate instantly what it’s about to leave little doubt for visitors</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The rest of the template is minimal with flexible content areas, an event schedule section, speaker biography area and supplementary information delegates would need to know along with a booking form and ticketing options.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Conference Event template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Creates a professional persona right away</li><li>Uses images and fonts to communicate intent immediately</li><li>Areas for schedules, speakers and supporting content</li><li>Contact and booking form within the design</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:75:\"Accessible, modern template ideal for conferences or event company websites\";s:5:\"pages\";a:1:{s:8:\"id-23603\";a:12:{s:5:\"title\";s:16:\"One Page Website\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2018/03/conference-event-02-1.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2018/03/conference-event-02-1.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/conference-event-02/wp-json/wp/v2/pages/4\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/conference-event-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";i:18375;s:26:\"related-elementor-template\";i:18325;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18284\";a:22:{s:5:\"title\";s:7:\"eCourse\";s:2:\"id\";i:18284;s:12:\"publish-date\";i:1519723055;s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/01/teach-04.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/01/teach-04.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/01/teach-04.jpg\";s:14:\"astra-site-url\";s:27:\"//websitedemos.net/teach-04\";s:20:\"astra-site-parent-id\";i:218;s:15:\"astra-sites-tag\";a:5:{i:468;s:9:\"elearning\";i:719;s:15:\"online-coaching\";i:975;s:15:\"online-learning\";i:721;s:8:\"training\";i:720;s:9:\"tutorials\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2825;s:8:\"coaching\";i:2835;s:9:\"elearning\";i:2880;s:10:\"membership\";i:2827;s:13:\"online-course\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2494;s:9:\"elearning\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:958:\"<!-- wp:paragraph -->\n<p>The eCourse template uses a pleasant full screen header that’s mainly color and a heading to set the scene. It’s a confidence-inspiring opening that is reflected elsewhere in the template.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is an eLearning template and has been configured as such, with course listings, course pages, course samples and a video on the main page. Supporting pages build on the first impression by delivering the information you would expect to see on an eLearning website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the eCourse template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Carefully selected colors to inspire confidence</li><li>Content-rich homepage ready to instantly engage</li><li>Options for video and audio within pages</li><li>Well designed supplementary pages</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:68:\"eLearning template that’s ideal for online course websites and LMS\";s:5:\"pages\";a:5:{s:8:\"id-39985\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/01/teach-04.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/01/teach-04.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/teach-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:28:\"//websitedemos.net/teach-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-39983\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/teach-04-about.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/01/teach-04-about.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/teach-04/wp-json/wp/v2/pages/50\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/teach-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-39986\";a:12:{s:5:\"title\";s:7:\"Lessons\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/teach-04-lessons.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/teach-04-lessons.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/teach-04/wp-json/wp/v2/pages/81\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/teach-04/lessons/\";s:15:\"astra-sites-tag\";a:1:{i:747;s:7:\"lessons\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-39987\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/teach-04-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/teach-04-testimonials.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/teach-04/wp-json/wp/v2/pages/53\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/teach-04/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-39984\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/teach-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/01/teach-04-contact.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/teach-04/wp-json/wp/v2/pages/55\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/teach-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:18388;s:26:\"related-elementor-template\";i:59004;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18265\";a:22:{s:5:\"title\";s:5:\"Coach\";s:2:\"id\";i:18265;s:12:\"publish-date\";i:1518672171;s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-02.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-02.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-02.jpg\";s:14:\"astra-site-url\";s:27:\"//websitedemos.net/coach-02\";s:20:\"astra-site-parent-id\";i:220;s:15:\"astra-sites-tag\";a:6:{i:610;s:8:\"coaching\";i:608;s:8:\"guidance\";i:612;s:10:\"life-coach\";i:609;s:9:\"motivator\";i:1020;s:8:\"personal\";i:611;s:16:\"self-improvement\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2825;s:8:\"coaching\";i:2835;s:9:\"elearning\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:958:\"<!-- wp:paragraph -->\n<p>The Coach template uses a reassuring blue color known to give confidence. That’s a great choice for a coach, trainer or instructor but can be changed to fit your brand with ease.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The web template uses a standard business layout with a strong hero section and call to action before opening out into service sections, testimonials and a biography section. You can easily add or remove elements with ease and design every page to fit your own.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Coach template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Inspires confidence as soon as it loads</li><li>Includes all page sections you would expect from a business website</li><li>Good use of complementary colors throughout</li><li>Full range of pages you’ll likely need</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:79:\"Confidence-inspiring template with bright colors and strong professional design\";s:5:\"pages\";a:5:{s:8:\"id-24381\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-02.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-02.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/coach-02/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:28:\"//websitedemos.net/coach-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24376\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-02-about.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-02-about.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/coach-02/wp-json/wp/v2/pages/20\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/coach-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24380\";a:12:{s:5:\"title\";s:7:\"e-Books\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-02-e-books.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-02-e-books.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/coach-02/wp-json/wp/v2/pages/21\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/coach-02/e-books/\";s:15:\"astra-sites-tag\";a:2:{i:727;s:4:\"book\";i:748;s:5:\"ebook\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24379\";a:12:{s:5:\"title\";s:7:\"Courses\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-02-courses.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-02-courses.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/coach-02/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/coach-02/courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24378\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/coach-02-contact.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/coach-02/wp-json/wp/v2/pages/24\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/coach-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:18372;s:26:\"related-elementor-template\";i:18265;s:26:\"related-gutenberg-template\";i:48342;}s:8:\"id-18266\";a:22:{s:5:\"title\";s:20:\"Motivational Speaker\";s:2:\"id\";i:18266;s:12:\"publish-date\";i:1518672041;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2018/02/motivational-speaker-02-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2018/02/motivational-speaker-02-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2018/02/motivational-speaker-02-1.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/motivational-speaker-02\";s:20:\"astra-site-parent-id\";i:179;s:15:\"astra-sites-tag\";a:6:{i:610;s:8:\"coaching\";i:608;s:8:\"guidance\";i:612;s:10:\"life-coach\";i:609;s:9:\"motivator\";i:1020;s:8:\"personal\";i:611;s:16:\"self-improvement\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2825;s:8:\"coaching\";i:2835;s:9:\"elearning\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:971:\"<!-- wp:paragraph -->\n<p>The Motivational Speaker template just oozes positivity, ideal for a motivational speaker or similar niche. It starts off bold with a full screen image and bright colors before opening out into a high contrast business website layout.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s an engaging design with strong colors, lots of content areas, a testimonial section and calls to action. Supporting pages are equally well designed and deliver a fully operational website for very little effort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Motivational Speaker template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Bold opening that instantly captivates</li><li>Bright, positive vibe that’s perfect for the niche</li><li>Plenty of whitespace to balance the brightness</li><li>Lots of content areas to tell your story</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:88:\"Light, bright template that oozes the positivity and engagement we expect from a speaker\";s:5:\"pages\";a:5:{s:8:\"id-23675\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2018/02/motivational-speaker-02-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2018/02/motivational-speaker-02-1.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/motivational-speaker-02/wp-json/wp/v2/pages/19\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/motivational-speaker-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23670\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-02-about.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-02-about.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/motivational-speaker-02/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/motivational-speaker-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23674\";a:12:{s:5:\"title\";s:7:\"e-Books\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-02-e-books.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-02-e-books.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/motivational-speaker-02/wp-json/wp/v2/pages/24\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/motivational-speaker-02/e-books/\";s:15:\"astra-sites-tag\";a:2:{i:727;s:4:\"book\";i:748;s:5:\"ebook\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23673\";a:12:{s:5:\"title\";s:7:\"Courses\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-02-courses.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-02-courses.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/motivational-speaker-02/wp-json/wp/v2/pages/25\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/motivational-speaker-02/courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23672\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-02-contact.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/motivational-speaker-02/wp-json/wp/v2/pages/27\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/motivational-speaker-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:18384;s:26:\"related-elementor-template\";i:18266;s:26:\"related-gutenberg-template\";i:48231;}s:8:\"id-18384\";a:22:{s:5:\"title\";s:20:\"Motivational Speaker\";s:2:\"id\";i:18384;s:12:\"publish-date\";i:1522057475;s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-03-homepage.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/motivational-speaker-03\";s:20:\"astra-site-parent-id\";i:195;s:15:\"astra-sites-tag\";a:6:{i:610;s:8:\"coaching\";i:608;s:8:\"guidance\";i:612;s:10:\"life-coach\";i:855;s:20:\"motivational-speaker\";i:609;s:9:\"motivator\";i:611;s:16:\"self-improvement\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-23996\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:70:\"https://websitedemos.net/motivational-speaker-03/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/motivational-speaker-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23991\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-03-about-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-03-about-1.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/motivational-speaker-03/wp-json/wp/v2/pages/20\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/motivational-speaker-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23995\";a:12:{s:5:\"title\";s:7:\"e-Books\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-03-e-books-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-03-e-books-1.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/motivational-speaker-03/wp-json/wp/v2/pages/21\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/motivational-speaker-03/e-books/\";s:15:\"astra-sites-tag\";a:2:{i:727;s:4:\"book\";i:781;s:6:\"e-book\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23994\";a:12:{s:5:\"title\";s:7:\"Courses\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-03-courses-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-03-courses-1.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/motivational-speaker-03/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/motivational-speaker-03/courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23993\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-03-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-03-contact-1.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/motivational-speaker-03/wp-json/wp/v2/pages/24\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/motivational-speaker-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-19755\";a:22:{s:5:\"title\";s:20:\"Motivational Speaker\";s:2:\"id\";i:19755;s:12:\"publish-date\";i:1543500768;s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-feb-20-home.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-feb-20-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-feb-20-home.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/motivational-speaker-05\";s:20:\"astra-site-parent-id\";i:176;s:15:\"astra-sites-tag\";a:5:{i:610;s:8:\"coaching\";i:608;s:8:\"guidance\";i:612;s:10:\"life-coach\";i:609;s:9:\"motivator\";i:611;s:16:\"self-improvement\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-23645\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-feb-20-home.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-feb-20-home.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/motivational-speaker-05/wp-json/wp/v2/pages/122\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/motivational-speaker-05/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23640\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-feb-20-about.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-feb-20-about.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/motivational-speaker-05/wp-json/wp/v2/pages/131\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/motivational-speaker-05/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23644\";a:12:{s:5:\"title\";s:7:\"e-Books\";s:18:\"featured-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-feb-20-ebooks.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-feb-20-ebooks.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/motivational-speaker-05/wp-json/wp/v2/pages/137\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/motivational-speaker-05/e-books/\";s:15:\"astra-sites-tag\";a:1:{i:781;s:6:\"e-book\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23643\";a:12:{s:5:\"title\";s:7:\"Courses\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-feb-20-courses.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-feb-20-courses.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/motivational-speaker-05/wp-json/wp/v2/pages/140\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/motivational-speaker-05/courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-23642\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-feb-20-contact.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2019/07/motivational-speaker-feb-20-contact.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/motivational-speaker-05/wp-json/wp/v2/pages/146\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/motivational-speaker-05/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48342\";a:22:{s:5:\"title\";s:5:\"Coach\";s:2:\"id\";i:48342;s:12:\"publish-date\";i:1603908987;s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08-600x1970.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08-400x1313.jpg\";s:14:\"astra-site-url\";s:27:\"//websitedemos.net/coach-08\";s:20:\"astra-site-parent-id\";i:1723;s:15:\"astra-sites-tag\";a:5:{i:610;s:8:\"coaching\";i:608;s:8:\"guidance\";i:612;s:10:\"life-coach\";i:609;s:9:\"motivator\";i:611;s:16:\"self-improvement\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48347\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08-600x1970.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/coach-08/wp-json/wp/v2/pages/389\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:28:\"//websitedemos.net/coach-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48343\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08-about-1-600x1638.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/coach-08/wp-json/wp/v2/pages/391\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/coach-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48346\";a:12:{s:5:\"title\";s:6:\"e-Book\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08-ebook.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08-ebook-600x1161.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/coach-08/wp-json/wp/v2/pages/393\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/coach-08/e-book/\";s:15:\"astra-sites-tag\";a:1:{i:748;s:5:\"ebook\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48345\";a:12:{s:5:\"title\";s:7:\"Courses\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08-courses-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08-courses-1-600x1018.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/coach-08/wp-json/wp/v2/pages/395\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/coach-08/courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48344\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08-contact-1-600x855.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/coach-08/wp-json/wp/v2/pages/397\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/coach-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(251,'astra-sites-and-pages-page-35','a:15:{s:8:\"id-18222\";a:22:{s:5:\"title\";s:14:\"Brandstore Pro\";s:2:\"id\";i:18222;s:12:\"publish-date\";i:1516857804;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/store-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/store-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/store-03-homepage.jpg\";s:14:\"astra-site-url\";s:27:\"//websitedemos.net/store-03\";s:20:\"astra-site-parent-id\";i:267;s:15:\"astra-sites-tag\";a:20:{i:639;s:11:\"accessories\";i:638;s:11:\"brand-store\";i:880;s:9:\"cartflows\";i:640;s:11:\"cloth-store\";i:637;s:8:\"clothing\";i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:967;s:13:\"product-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:7:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:3;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:4;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:5;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:6;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-24762\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/store-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/store-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/store-03/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:28:\"//websitedemos.net/store-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}s:8:\"id-24763\";a:12:{s:5:\"title\";s:11:\"Lookbook 18\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/store-03-lookbook-1.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/store-03-lookbook-1.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/store-03/wp-json/wp/v2/pages/592\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/store-03/lookbook/\";s:15:\"astra-sites-tag\";a:2:{i:752;s:8:\"lookbook\";i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24760\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/store-03-about.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/store-03-about.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/store-03/wp-json/wp/v2/pages/25\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/store-03/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24761\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/store-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/store-03-contact.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/store-03/wp-json/wp/v2/pages/27\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/store-03/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18201\";a:22:{s:5:\"title\";s:23:\"Wanderlust Travel Diary\";s:2:\"id\";i:18201;s:12:\"publish-date\";i:1516775748;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2018/01/blog-06-homepage.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2018/01/blog-06-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2018/01/blog-06-homepage.jpg\";s:14:\"astra-site-url\";s:26:\"//websitedemos.net/blog-06\";s:20:\"astra-site-parent-id\";i:231;s:15:\"astra-sites-tag\";a:6:{i:544;s:9:\"adventure\";i:480;s:4:\"blog\";i:751;s:11:\"exploration\";i:430;s:7:\"tourism\";i:427;s:6:\"travel\";i:750;s:11:\"travel-blog\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:37;s:4:\"blog\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:2:{s:8:\"id-24469\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/net-blog-06-about.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/net-blog-06-about.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/blog-06/wp-json/wp/v2/pages/26\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/blog-06/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24470\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/blog-06-contact.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/blog-06-contact.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/blog-06/wp-json/wp/v2/pages/27\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/blog-06/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18124\";a:22:{s:5:\"title\";s:23:\"Wanderlust Travel Diary\";s:2:\"id\";i:18124;s:12:\"publish-date\";i:1516616741;s:18:\"featured-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2018/01/id-18124-wanderlust-travel-diary-resize.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2018/01/id-18124-wanderlust-travel-diary-resize.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2018/01/id-18124-wanderlust-travel-diary-resize.jpg\";s:14:\"astra-site-url\";s:45:\"//websitedemos.net/wanderlust-travel-diary-04\";s:20:\"astra-site-parent-id\";i:232;s:15:\"astra-sites-tag\";a:6:{i:544;s:9:\"adventure\";i:480;s:4:\"blog\";i:751;s:11:\"exploration\";i:430;s:7:\"tourism\";i:427;s:6:\"travel\";i:750;s:11:\"travel-blog\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:37;s:4:\"blog\";}s:29:\"astra-sites-template-category\";a:3:{i:2828;s:4:\"blog\";i:2830;s:6:\"nature\";i:2775;s:14:\"travel-tourism\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1197:\"<!-- wp:paragraph -->\n<p>The Wanderlust Travel Diary template uses a blog layout with strong header image and attractive center navigation. The main page opens up to a traditional blog layout that can be customized however you like.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template is light, airy and engaging and uses a minimal design to allow your posts and images to stand out without getting in the way. All while providing all the engaging features visitors expect.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Wanderlust Travel Diary template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Winning header design with suggestive image and fonts</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Minimal design combined with strong images to create interest</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Subtle widget areas to enable posts to be front and center</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Can be configured for any type of blog</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with leading page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:85:\"Crisp blog template that delivers the simplicity you’re looking for in storytelling\";s:5:\"pages\";a:2:{s:8:\"id-24476\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:104:\"https://websitedemos.net/wp-content/uploads/2019/07/id-24476-wanderlust-travel-diary-about-us-resize.jpg\";s:19:\"thumbnail-image-url\";s:104:\"https://websitedemos.net/wp-content/uploads/2019/07/id-24476-wanderlust-travel-diary-about-us-resize.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/wanderlust-travel-diary-04/wp-json/wp/v2/pages/26\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/wanderlust-travel-diary-04/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24477\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:103:\"https://websitedemos.net/wp-content/uploads/2019/07/id-24477-wanderlust-travel-diary-contact-resize.jpg\";s:19:\"thumbnail-image-url\";s:103:\"https://websitedemos.net/wp-content/uploads/2019/07/id-24477-wanderlust-travel-diary-contact-resize.jpg\";s:18:\"astra-page-api-url\";s:74:\"https://websitedemos.net/wanderlust-travel-diary-04/wp-json/wp/v2/pages/27\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:54:\"//websitedemos.net/wanderlust-travel-diary-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:18201;s:26:\"related-elementor-template\";i:18124;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48231\";a:22:{s:5:\"title\";s:20:\"Motivational Speaker\";s:2:\"id\";i:48231;s:12:\"publish-date\";i:1603901316;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/motivational-speaker-08-1.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/motivational-speaker-08-1-600x1831.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/motivational-speaker-08-1-400x1220.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/motivational-speaker-08\";s:20:\"astra-site-parent-id\";i:1708;s:15:\"astra-sites-tag\";a:3:{i:1545;s:21:\"inspirational-speaker\";i:855;s:20:\"motivational-speaker\";i:1709;s:7:\"speaker\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:37;s:4:\"blog\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-48235\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/motivational-speaker-08-1.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/motivational-speaker-08-1-600x1831.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/motivational-speaker-08/wp-json/wp/v2/pages/624\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/motivational-speaker-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48232\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/motivational-speaker-08-about-2.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2020/10/motivational-speaker-08-about-2-600x1154.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/motivational-speaker-08/wp-json/wp/v2/pages/626\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/motivational-speaker-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48233\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/motivational-speaker-08-blog-2.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/motivational-speaker-08-blog-2-600x1063.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/motivational-speaker-08/wp-json/wp/v2/pages/628\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/motivational-speaker-08/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48234\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/motivational-speaker-08-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/motivational-speaker-08-contact.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/motivational-speaker-08/wp-json/wp/v2/pages/630\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/motivational-speaker-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18137\";a:22:{s:5:\"title\";s:14:\"Brandstore Pro\";s:2:\"id\";i:18137;s:12:\"publish-date\";i:1516080827;s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2018/01/store-04-1.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2018/01/store-04-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2018/01/store-04-1.jpg\";s:14:\"astra-site-url\";s:27:\"//websitedemos.net/store-04\";s:20:\"astra-site-parent-id\";i:269;s:15:\"astra-sites-tag\";a:20:{i:639;s:11:\"accessories\";i:638;s:11:\"brand-store\";i:880;s:9:\"cartflows\";i:640;s:11:\"cloth-store\";i:637;s:8:\"clothing\";i:2418;s:8:\"commerce\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:967;s:13:\"product-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:38;s:9:\"ecommerce\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2769;s:9:\"ecommerce\";i:2858;s:16:\"fashion-clothing\";i:2857;s:15:\"online-shopping\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:4;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:5;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:943:\"<!-- wp:paragraph -->\n<p>The Brandstore Pro template is a strong eCommerce design that provides a full screen slideshow to show off your latest products. The homepage then opens out into colorful product sections balanced by whitespace.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The overall impression created by this template is high quality. This gives confidence to visitors and will help engage and hopefully, convert them into customers. The template is fully compatible with WooCommerce.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Brandstore Pro template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Very engaging storefront design</li><li>Includes lots of options for showcasing products through images</li><li>Feature products section to highlight profitable items</li><li>Fully compatible with WooCommerce</li><li>Full compatibility with leading page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:82:\"Engaging eCommerce template that could work perfectly for any type of online store\";s:5:\"pages\";a:4:{s:8:\"id-34098\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2018/01/store-04-1.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2018/01/store-04-1.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/store-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:28:\"//websitedemos.net/store-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}}}s:8:\"id-24775\";a:12:{s:5:\"title\";s:8:\"Lookbook\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2018/01/store-04-lookbook.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2018/01/store-04-lookbook.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/store-04/wp-json/wp/v2/pages/568\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/store-04/lookbook/\";s:15:\"astra-sites-tag\";a:2:{i:727;s:4:\"book\";i:752;s:8:\"lookbook\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24772\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2018/01/store-04-about-us.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2018/01/store-04-about-us.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/store-04/wp-json/wp/v2/pages/25\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/store-04/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24773\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2018/01/store-04-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2018/01/store-04-contact-us.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/store-04/wp-json/wp/v2/pages/27\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/store-04/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:64;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:18222;s:26:\"related-elementor-template\";i:18137;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-21589\";a:22:{s:5:\"title\";s:22:\"Fashion Lifestyle Blog\";s:2:\"id\";i:21589;s:12:\"publish-date\";i:1557898277;s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/fashion-lifestyle-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/fashion-lifestyle-02-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/fashion-lifestyle-02-homepage.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/fashion-lifestyle-02\";s:20:\"astra-site-parent-id\";i:137;s:15:\"astra-sites-tag\";a:6:{i:480;s:4:\"blog\";i:482;s:7:\"fashion\";i:479;s:9:\"lifestyle\";i:1020;s:8:\"personal\";i:483;s:16:\"styling-shopping\";i:481;s:5:\"trend\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:37;s:4:\"blog\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2790;s:14:\"beauty-fashion\";i:2828;s:4:\"blog\";i:2794;s:10:\"consulting\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:29:\"Ultimate Addons for Gutenberg\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:942:\"<!-- wp:paragraph -->\n<p>The Fashion Lifestyle Blog template has a feminine feel with soft colors and fonts and alternating whitespace and content areas. It’s a very stylish design that suits fashion and lifestyle perfectly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While designed as a blog, the design could be easily adapted for a website and be used to showcase your creations and even sell them online. All without having to touch a line of code. It really does have everything!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Fashion Lifestyle Blog template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Stylish feminine blog theme ideal for fashion or lifestyle</li><li>Lovely colors and fonts</li><li>Good use of images throughout the design</li><li>Can be customized to suit any use with minimal effort</li><li>Full compatibility with drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"Lifestyle blog template design to instantly create a connection with the audience\";s:5:\"pages\";a:3:{s:8:\"id-23319\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/fashion-lifestyle-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/fashion-lifestyle-02-homepage.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/fashion-lifestyle-02/wp-json/wp/v2/pages/855\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/fashion-lifestyle-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23317\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/fashion-lifestyle-02-blog.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2019/07/fashion-lifestyle-02-blog.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/fashion-lifestyle-02/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/fashion-lifestyle-02/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:29:\"Ultimate Addons for Gutenberg\";}}}s:8:\"id-23318\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/fashion-lifestyle-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/fashion-lifestyle-02-contact.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/fashion-lifestyle-02/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/fashion-lifestyle-02/contact-me/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18108\";a:22:{s:5:\"title\";s:10:\"Sweet Shop\";s:2:\"id\";i:18108;s:12:\"publish-date\";i:1515139635;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-home.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-home.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/sweet-shop-04\";s:20:\"astra-site-parent-id\";i:270;s:15:\"astra-sites-tag\";a:5:{i:758;s:6:\"bakery\";i:383;s:12:\"online-store\";i:749;s:5:\"store\";i:756;s:10:\"sweet-shop\";i:757;s:6:\"sweets\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:3:{i:2804;s:11:\"cafe-bakery\";i:2785;s:4:\"food\";i:2776;s:10:\"restaurant\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2478;s:17:\"local-storefronts\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:23:\"header-footer-elementor\";s:4:\"init\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";}i:2;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:954:\"<!-- wp:paragraph -->\n<p>The Sweet Shop website template starts off subtle before opening into bold colors, lovely images and the vibrant atmosphere you would expect from a sweet shop or bakery. It engages from the very moment it loads.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design is a mix of dark and light, minimalism and bold areas with the option to add product and service areas, showcase your creations, engage with your audience, take orders online and even sell online should you wish to.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Sweet Shop template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Attractive design with a mix of influences</li><li>Lots of opportunities to let imagery sell your products</li><li>Bold, happy colors and fonts help create the mood</li><li>Online order form to boost sales</li><li>Full compatibility with drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:89:\"Delightful template full of color, happiness and life, ideal for sweet shops and bakeries\";s:5:\"pages\";a:5:{s:8:\"id-24788\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-home.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-home.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/sweet-shop-04/wp-json/wp/v2/pages/212\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/sweet-shop-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-24784\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-about.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-about.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/sweet-shop-04/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/sweet-shop-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-24787\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-gallery.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-gallery.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/sweet-shop-04/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/sweet-shop-04/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-24789\";a:12:{s:5:\"title\";s:9:\"Our Cakes\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-cakes.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-cakes.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/sweet-shop-04/wp-json/wp/v2/pages/25\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/sweet-shop-04/our-cakes/\";s:15:\"astra-sites-tag\";a:1:{i:783;s:4:\"cake\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-24786\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-contact.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-contact.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/sweet-shop-04/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/sweet-shop-04/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:17618;s:26:\"related-elementor-template\";i:18108;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18040\";a:22:{s:5:\"title\";s:10:\"Freelancer\";s:2:\"id\";i:18040;s:12:\"publish-date\";i:1514438765;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/freelancer-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/freelancer-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/freelancer-03-homepage.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/freelancer-03\";s:20:\"astra-site-parent-id\";i:194;s:15:\"astra-sites-tag\";a:6:{i:339;s:6:\"artist\";i:670;s:8:\"designer\";i:669;s:10:\"freelancer\";i:399;s:8:\"one-page\";i:671;s:16:\"service-provider\";i:463;s:11:\"single-page\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-23987\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/freelancer-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/freelancer-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/freelancer-03/wp-json/wp/v2/pages/325\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/freelancer-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18103\";a:22:{s:5:\"title\";s:7:\"Charity\";s:2:\"id\";i:18103;s:12:\"publish-date\";i:1515137293;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-04-home.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-04-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-04-home.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/charity-04\";s:20:\"astra-site-parent-id\";i:145;s:15:\"astra-sites-tag\";a:5:{i:625;s:7:\"charity\";i:624;s:10:\"foundation\";i:626;s:6:\"giving\";i:977;s:10:\"non-profit\";i:745;s:12:\"organization\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:3:{i:2786;s:17:\"charity-nonprofit\";i:2872;s:19:\"donation-fundraiser\";i:2871;s:3:\"ngo\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2492;s:10:\"non-profit\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:932:\"<!-- wp:paragraph -->\n<p>The Charity template opens with an emotive image and headline that sets the mood immediately. It’s a bright, positive template that lets you share your messages while maintaining a giving frame of mind.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes service sections, a portfolio to showcase your good works, a donor section to give thanks, call to action sections to help encourage donations and lots of places to add any content you like.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Charity template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Positive and emotive design that engages well</li><li>Balance of colors, images, content and whitespace</li><li>Opportunities to encourage giving throughout</li><li>Donor section for thanks and encouragement</li><li>Full compatibility with drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:82:\"Well-balanced charity template that encourages giving to charities and good causes\";s:5:\"pages\";a:4:{s:8:\"id-23378\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-04-home.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-04-home.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/charity-04/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/charity-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23379\";a:12:{s:5:\"title\";s:10:\"What We Do\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-04-what-we-do.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-04-what-we-do.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/charity-04/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/charity-04/what-we-do/\";s:15:\"astra-sites-tag\";a:2:{i:628;s:10:\"what-we-do\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23377\";a:12:{s:5:\"title\";s:15:\"Creating Impact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-04-making-difference.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-04-making-difference.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/charity-04/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/charity-04/creating-impact/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23376\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-04-contact.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/charity-04/wp-json/wp/v2/pages/18\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/charity-04/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:17631;s:26:\"related-elementor-template\";i:55334;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18041\";a:22:{s:5:\"title\";s:6:\"Agency\";s:2:\"id\";i:18041;s:12:\"publish-date\";i:1514438706;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-03-homepage.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/agency-03\";s:20:\"astra-site-parent-id\";i:214;s:15:\"astra-sites-tag\";a:6:{i:663;s:6:\"agency\";i:979;s:7:\"company\";i:664;s:16:\"digital-services\";i:812;s:6:\"office\";i:665;s:14:\"service-agency\";i:661;s:7:\"website\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:2;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:3;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-24305\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/agency-03/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/agency-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24302\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-03-about-2.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-03-about-2.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/agency-03/wp-json/wp/v2/pages/62\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/agency-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24308\";a:12:{s:5:\"title\";s:8:\"Websites\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-03-websites-2.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-03-websites-2.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/agency-03/wp-json/wp/v2/pages/97\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/agency-03/websites/\";s:15:\"astra-sites-tag\";a:2:{i:444;s:9:\"portfolio\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24307\";a:12:{s:5:\"title\";s:7:\"Support\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-03-support-1.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-03-support-1.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/agency-03/wp-json/wp/v2/pages/112\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/agency-03/support/\";s:15:\"astra-sites-tag\";a:1:{i:765;s:7:\"support\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24306\";a:12:{s:5:\"title\";s:7:\"Pricing\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-03-pricing-1.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-03-pricing-1.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/agency-03/wp-json/wp/v2/pages/132\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/agency-03/pricing/\";s:15:\"astra-sites-tag\";a:1:{i:585;s:7:\"pricing\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24304\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-03-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-03-contact-2.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/agency-03/wp-json/wp/v2/pages/164\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/agency-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-18036\";a:22:{s:5:\"title\";s:6:\"Artist\";s:2:\"id\";i:18036;s:12:\"publish-date\";i:1514381521;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/artist-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/artist-01-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/artist-01-homepage.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/artist-01\";s:20:\"astra-site-parent-id\";i:146;s:15:\"astra-sites-tag\";a:8:{i:597;s:3:\"art\";i:339;s:6:\"artist\";i:595;s:10:\"exhibition\";i:614;s:7:\"painter\";i:861;s:9:\"paintings\";i:967;s:13:\"product-store\";i:733;s:4:\"shop\";i:966;s:12:\"woo-commerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:3;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-23392\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/artist-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/artist-01-homepage.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/artist-01/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/artist-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-23389\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/artist-01-about.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/artist-01-about.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/artist-01/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/artist-01/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-23391\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/artist-01-contact.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/artist-01-contact.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/artist-01/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/artist-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-17985\";a:22:{s:5:\"title\";s:16:\"Freelance Artist\";s:2:\"id\";i:17985;s:12:\"publish-date\";i:1513833063;s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/10/artist-christine-home-page.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/10/artist-christine-home-page.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/10/artist-christine-home-page.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/artist-02\";s:20:\"astra-site-parent-id\";i:144;s:15:\"astra-sites-tag\";a:9:{i:597;s:3:\"art\";i:339;s:6:\"artist\";i:496;s:9:\"ecommerce\";i:595;s:10:\"exhibition\";i:614;s:7:\"painter\";i:1020;s:8:\"personal\";i:967;s:13:\"product-store\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2802;s:6:\"artist\";i:2769;s:9:\"ecommerce\";i:2810;s:9:\"freelance\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:971:\"<!-- wp:paragraph -->\n<p>The Freelance Artist template is instantly engaging. The hero section on the homepage can include an image of you at work to set the scene, along with a short introduction to orient the visitor and engage them.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The rest of the page, and the template, uses minimal design with lots of places to add content, showcase your work in a portfolio, add calls to action and even sell your work online. It’s a complete website template all ready to go!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Freelance Artist template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Hero section on homepage is very engaging</li><li>Use of strong color and minimalist design makes a statement</li><li>Lots of places to add content</li><li>Can be used with WooCommerce to sell your work online</li><li>Full compatibility with drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"Imaginative template ideal for artists and other creatives to showcase their work\";s:5:\"pages\";a:3:{s:8:\"id-34089\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/10/artist-christine-home-page.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/10/artist-christine-home-page.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/artist-02/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/artist-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23371\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/artist-christine-about.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/artist-christine-about.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/artist-02/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/artist-02/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-23373\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/artist-christine-contact.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/artist-christine-contact.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/artist-02/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/artist-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-17931\";a:22:{s:5:\"title\";s:10:\"Home Decor\";s:2:\"id\";i:17931;s:12:\"publish-date\";i:1511864213;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2017/11/blog-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2017/11/blog-04-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2017/11/blog-04-homepage.jpg\";s:14:\"astra-site-url\";s:26:\"//websitedemos.net/blog-04\";s:20:\"astra-site-parent-id\";i:233;s:15:\"astra-sites-tag\";a:5:{i:480;s:4:\"blog\";i:863;s:10:\"decor-blog\";i:862;s:10:\"home-decor\";i:434;s:15:\"interior-design\";i:864;s:21:\"interior-design-blogs\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:37;s:4:\"blog\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:35:\"recent-posts-widget-with-thumbnails\";s:4:\"init\";s:75:\"recent-posts-widget-with-thumbnails/recent-posts-widget-with-thumbnails.php\";s:4:\"name\";s:35:\"Recent Posts Widget With Thumbnails\";}i:2;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:3;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:2:{s:8:\"id-24482\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/blog-04-about-1.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/blog-04-about-1.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/blog-04/wp-json/wp/v2/pages/1884\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/blog-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24483\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/blog-04-contact.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2019/07/id-24483-home-decor-contact-resize.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/blog-04/wp-json/wp/v2/pages/1821\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/blog-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-17911\";a:22:{s:5:\"title\";s:10:\"Home Decor\";s:2:\"id\";i:17911;s:12:\"publish-date\";i:1511529926;s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2017/11/blog-02-1.jpg\";s:19:\"thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2017/11/blog-02-1.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2017/11/blog-02-1.jpg\";s:14:\"astra-site-url\";s:26:\"//websitedemos.net/blog-02\";s:20:\"astra-site-parent-id\";i:255;s:15:\"astra-sites-tag\";a:5:{i:435;s:12:\"architecture\";i:480;s:4:\"blog\";i:436;s:8:\"interior\";i:434;s:15:\"interior-design\";i:422;s:11:\"landscaping\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:37;s:4:\"blog\";}s:29:\"astra-sites-template-category\";a:3:{i:2795;s:12:\"architecture\";i:2828;s:4:\"blog\";i:2793;s:15:\"interior-design\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:35:\"recent-posts-widget-with-thumbnails\";s:4:\"init\";s:75:\"recent-posts-widget-with-thumbnails/recent-posts-widget-with-thumbnails.php\";s:4:\"name\";s:35:\"Recent Posts Widget With Thumbnails\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:945:\"<!-- wp:paragraph -->\n<p>The Home Décor template has a stark, crisp appearance that screams modernity from the off. Sans serif fonts, dark and light areas and a bold contrast color are only the beginning.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This template would work well for furniture bloggers, interior decorators and anyone that could use bold design and the opportunity to show off their images and blog posts within an attractive website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Home Decor template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Contemporary blog design with dark and light colors</li><li>Bold contrast color makes buttons and calls to action stand out</li><li>Minimalist design allows your posts to stand proud</li><li>Includes most functions you would expect from a blog built in</li><li>Full compatibility with drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:82:\"Bold modern blog theme that’s ideal for any niche including homes and lifestyles\";s:5:\"pages\";a:2:{s:8:\"id-24664\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2019/07/blog-02-about.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2019/07/blog-02-about.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/blog-02/wp-json/wp/v2/pages/1884\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/blog-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24666\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/blog-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/blog-02-contact.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/blog-02/wp-json/wp/v2/pages/1821\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/blog-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:74;s:4:\"blog\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";i:17931;s:26:\"related-elementor-template\";i:17911;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-17697\";a:22:{s:5:\"title\";s:3:\"Spa\";s:2:\"id\";i:17697;s:12:\"publish-date\";i:1509615020;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-04-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-04-homepage.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/lotus-spa-04\";s:20:\"astra-site-parent-id\";i:188;s:15:\"astra-sites-tag\";a:11:{i:532;s:11:\"acupressure\";i:1023;s:6:\"beauty\";i:474;s:8:\"grooming\";i:528;s:7:\"massage\";i:527;s:17:\"massage-therapist\";i:529;s:13:\"physiotherapy\";i:531;s:11:\"reflexology\";i:533;s:10:\"relaxation\";i:650;s:5:\"salon\";i:651;s:8:\"skincare\";i:530;s:3:\"spa\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2790;s:14:\"beauty-fashion\";i:2821;s:14:\"feminine-girly\";i:2822;s:15:\"massage-therapy\";i:2856;s:3:\"spa\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2479;s:6:\"beauty\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:884:\"<!-- wp:paragraph -->\n<p>The Spa website template has a relaxed vibe ideal for the industry. It uses comfortable colors, reassuring fonts and images and helps create that caring feel the industry is well known for.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design includes lots of opportunities to add products and services, testimonials, price lists and booking features. It’s the only template you need to create an online presence for your spa or treatment business.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Spa template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Professional layout with calming design</li><li>Balanced colors and fonts</li><li>Lots of content areas for products and services</li><li>Can integrate with booking plugins</li><li>Full compatibility with drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"Calm, inviting web design designed especially for spas, salons and beauty businesses\";s:5:\"pages\";a:4:{s:8:\"id-23888\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-04-homepage.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/lotus-spa-04/wp-json/wp/v2/pages/2202\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/lotus-spa-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-23885\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-04-about-1.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-04-about-1.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/lotus-spa-04/wp-json/wp/v2/pages/2208\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/lotus-spa-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}}}s:8:\"id-23889\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-04-services-1.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-04-services-1.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/lotus-spa-04/wp-json/wp/v2/pages/2210\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/lotus-spa-04/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-23887\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-04-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-04-contact-1.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/lotus-spa-04/wp-json/wp/v2/pages/2449\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/lotus-spa-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:18:\"ultimate-elementor\";s:4:\"init\";s:41:\"ultimate-elementor/ultimate-elementor.php\";s:4:\"name\";s:29:\"Ultimate Addons for Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:17562;s:26:\"related-elementor-template\";i:17697;s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(252,'astra-sites-and-pages-page-36','a:15:{s:8:\"id-17702\";a:22:{s:5:\"title\";s:6:\"Agency\";s:2:\"id\";i:17702;s:12:\"publish-date\";i:1509463383;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-04-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-04-homepage.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/agency-04\";s:20:\"astra-site-parent-id\";i:213;s:15:\"astra-sites-tag\";a:6:{i:663;s:6:\"agency\";i:979;s:7:\"company\";i:664;s:16:\"digital-services\";i:812;s:6:\"office\";i:665;s:14:\"service-agency\";i:661;s:7:\"website\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2777;s:8:\"business\";i:2812;s:14:\"digital-agency\";i:2768;s:9:\"portfolio\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:895:\"<!-- wp:paragraph -->\n<p>The Agency template has been configured for web design agencies but could easily be tweaked for any type of digital agency. It’s colorful, calming and inspires confidence, which should help conversion.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pages are nicely balanced with a good mix of whitespace and content areas. A range of product and service sections combine to deliver the information visitors need and a reason for them to engage.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Agency template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Calm, collected website design</li><li>Great use of colors and fonts</li><li>Nicely balanced pages with everything a visitor would need</li><li>Additional pages are also ideal for agencies</li><li>Full compatibility with drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:83:\"Clean modern website designed for digital agencies of all kinds to tell their story\";s:5:\"pages\";a:6:{s:8:\"id-24173\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-04-homepage.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/agency-04/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/agency-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24170\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-04-about-1.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-04-about-1.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/agency-04/wp-json/wp/v2/pages/62\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/agency-04/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24178\";a:12:{s:5:\"title\";s:8:\"Websites\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-04-websites-1.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-04-websites-1.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/agency-04/wp-json/wp/v2/pages/97\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/agency-04/websites/\";s:15:\"astra-sites-tag\";a:1:{i:661;s:7:\"website\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24176\";a:12:{s:5:\"title\";s:7:\"Support\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-04-support-1.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-04-support-1.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/agency-04/wp-json/wp/v2/pages/112\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/agency-04/support/\";s:15:\"astra-sites-tag\";a:1:{i:765;s:7:\"support\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24175\";a:12:{s:5:\"title\";s:7:\"Pricing\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-04-pricing.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-04-pricing.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/agency-04/wp-json/wp/v2/pages/132\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/agency-04/pricing/\";s:15:\"astra-sites-tag\";a:1:{i:585;s:7:\"pricing\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24172\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-04-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/agency-04-contact-1.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/agency-04/wp-json/wp/v2/pages/164\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/agency-04/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:18041;s:26:\"related-elementor-template\";i:17702;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-17638\";a:22:{s:5:\"title\";s:10:\"Freelancer\";s:2:\"id\";i:17638;s:12:\"publish-date\";i:1507635210;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/freelancer-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/freelancer-04-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/freelancer-04-homepage.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/freelancer-04\";s:20:\"astra-site-parent-id\";i:192;s:15:\"astra-sites-tag\";a:5:{i:339;s:6:\"artist\";i:670;s:8:\"designer\";i:669;s:10:\"freelancer\";i:1020;s:8:\"personal\";i:671;s:16:\"service-provider\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:4:{i:2802;s:6:\"artist\";i:2810;s:9:\"freelance\";i:2768;s:9:\"portfolio\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:971:\"<!-- wp:paragraph -->\n<p>The Freelancer template is an attractive portfolio design ideal for freelancers or small agencies. It uses a creative graphic with bold color and a mixture of fonts to create a first impression before opening out into an attractive light design.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pages include lots of white space interspersed with content areas, animations, a portfolio, calls to action and a contact form. All the essential ingredients a budding freelancer needs in their website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Key features of the Freelancer template</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Engaging design with bold colors</li><li>Nice mix of handwritten and standard fonts</li><li>Plenty of white space to make content stand out</li><li>Portfolio, contact form and calls to action included</li><li>Full compatibility with drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:85:\"Bold, light template ideal for freelancers or new agencies to showcase their services\";s:5:\"pages\";a:1:{s:8:\"id-23977\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/freelancer-04-homepage.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/freelancer-04-homepage.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/freelancer-04/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/freelancer-04/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:18040;s:26:\"related-elementor-template\";i:17638;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-17631\";a:22:{s:5:\"title\";s:7:\"Charity\";s:2:\"id\";i:17631;s:12:\"publish-date\";i:1507628801;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-03-homepage.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/charity-03\";s:20:\"astra-site-parent-id\";i:171;s:15:\"astra-sites-tag\";a:5:{i:625;s:7:\"charity\";i:624;s:10:\"foundation\";i:626;s:6:\"giving\";i:977;s:10:\"non-profit\";i:745;s:12:\"organization\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2492;s:10:\"non-profit\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:932:\"<!-- wp:paragraph -->\n<p>The Charity template opens with an emotive image and headline that sets the mood immediately. It’s a bright, positive template that lets you share your messages while maintaining a giving frame of mind.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes service sections, a portfolio to showcase your good works, a donor section to give thanks, call to action sections to help encourage donations and lots of places to add any content you like.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Charity template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Positive and emotive design that engages well</li><li>Balance of colors, images, content and whitespace</li><li>Opportunities to encourage giving throughout</li><li>Donor section for thanks and encouragement</li><li>Full compatibility with drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:82:\"Well-balanced charity template that encourages giving to charities and good causes\";s:5:\"pages\";a:4:{s:8:\"id-23624\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/charity-03/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/charity-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23625\";a:12:{s:5:\"title\";s:10:\"What We Do\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-03-what-we-do.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-03-what-we-do.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/charity-03/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/charity-03/what-we-do/\";s:15:\"astra-sites-tag\";a:3:{i:352;s:5:\"about\";i:628;s:10:\"what-we-do\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23623\";a:12:{s:5:\"title\";s:15:\"Creating Impact\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-03-creating.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-03-creating.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/charity-03/wp-json/wp/v2/pages/18\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/charity-03/creating-impact/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23622\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/charity-03-contact.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/charity-03/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/charity-03/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:139;s:5:\"other\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-17624\";a:22:{s:5:\"title\";s:10:\"Car Repair\";s:2:\"id\";i:17624;s:12:\"publish-date\";i:1507201150;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-02-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-02-homepage.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/car-repair-02\";s:20:\"astra-site-parent-id\";i:296;s:15:\"astra-sites-tag\";a:5:{i:588;s:8:\"car-care\";i:587;s:13:\"car-detailing\";i:666;s:10:\"car-repair\";i:1021;s:14:\"local-business\";i:667;s:11:\"repair-shop\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2800;s:14:\"car-automotive\";i:2777;s:8:\"business\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2475;s:10:\"automotive\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:907:\"<!-- wp:paragraph -->\n<p>The Car Repair template has a light, refreshing design that draws you in from the very beginning. It opens with a large car image to set the scene, along with a strong call to action to deliver visitor intent.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The rest of the page delivers all the information you need to communicate with the option of adding more if required. Supplementary pages are equally attractive, especially the contact page!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Car Repair template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Refreshingly modern design ideal for business</li><li>Instant engagement with the strong hero section</li><li>Clear service sections to deliver visitor intent</li><li>Attractive colors and effects</li><li>Full compatibility with drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:63:\"Engaging web template ideal for car repair or the auto industry\";s:5:\"pages\";a:5:{s:8:\"id-25096\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-02-homepage.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-02-homepage.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/car-repair-02/wp-json/wp/v2/pages/355\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/car-repair-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-25093\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-02-about-1.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-02-about-1.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/car-repair-02/wp-json/wp/v2/pages/193\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/car-repair-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25098\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-02-services-1.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-02-services-1.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/car-repair-02/wp-json/wp/v2/pages/217\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/car-repair-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25097\";a:12:{s:5:\"title\";s:9:\"Our Staff\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-02-our-staff.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-02-our-staff.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/car-repair-02/wp-json/wp/v2/pages/230\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/car-repair-02/our-staff/\";s:15:\"astra-sites-tag\";a:2:{i:668;s:5:\"staff\";i:486;s:4:\"team\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25095\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-02-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-02-contact-1.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/car-repair-02/wp-json/wp/v2/pages/649\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/car-repair-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-17630\";a:22:{s:5:\"title\";s:11:\"Electrician\";s:2:\"id\";i:17630;s:12:\"publish-date\";i:1507201098;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-01-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-01-homepage.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/electrician-01\";s:20:\"astra-site-parent-id\";i:234;s:15:\"astra-sites-tag\";a:3:{i:341;s:11:\"electrician\";i:439;s:14:\"local-services\";i:671;s:16:\"service-provider\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-24489\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-01-homepage.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/electrician-01/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/electrician-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-24485\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-01-about.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-01-about.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/electrician-01/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/electrician-01/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-24490\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-01-services.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-01-services.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/electrician-01/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/electrician-01/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-24488\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-01-faq.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-01-faq.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/electrician-01/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/electrician-01/faq/\";s:15:\"astra-sites-tag\";a:2:{i:426;s:3:\"faq\";i:709;s:9:\"questions\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-24487\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-01-contact.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-01-contact.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/electrician-01/wp-json/wp/v2/pages/18\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/electrician-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-17618\";a:22:{s:5:\"title\";s:10:\"Sweet Shop\";s:2:\"id\";i:17618;s:12:\"publish-date\";i:1507027450;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-03-homepage.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/sweet-shop-03\";s:20:\"astra-site-parent-id\";i:271;s:15:\"astra-sites-tag\";a:7:{i:758;s:6:\"bakery\";i:496;s:9:\"ecommerce\";i:383;s:12:\"online-store\";i:749;s:5:\"store\";i:756;s:10:\"sweet-shop\";i:757;s:6:\"sweets\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2478;s:17:\"local-storefronts\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-24800\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/sweet-shop-03/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/sweet-shop-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24796\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-03-about-2.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-03-about-2.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/sweet-shop-03/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/sweet-shop-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24799\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-03-gallery.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-03-gallery.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/sweet-shop-03/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/sweet-shop-03/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24801\";a:12:{s:5:\"title\";s:9:\"Our Cakes\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-03-our-cakes.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-03-our-cakes.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/sweet-shop-03/wp-json/wp/v2/pages/25\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/sweet-shop-03/our-cakes/\";s:15:\"astra-sites-tag\";a:1:{i:783;s:4:\"cake\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-24798\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/sweet-shop-03-contact.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/sweet-shop-03/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/sweet-shop-03/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-17619\";a:22:{s:5:\"title\";s:18:\"Wedding Invitation\";s:2:\"id\";i:17619;s:12:\"publish-date\";i:1507027381;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-01-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-01-homepage.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/wedding-01\";s:20:\"astra-site-parent-id\";i:265;s:15:\"astra-sites-tag\";a:5:{i:698;s:10:\"engagement\";i:699;s:10:\"invitation\";i:399;s:8:\"one-page\";i:463;s:11:\"single-page\";i:697;s:7:\"wedding\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:1:{i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2489;s:16:\"event-invitation\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-24756\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-01-homepage.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/wedding-01/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/wedding-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-17616\";a:22:{s:5:\"title\";s:6:\"Lawyer\";s:2:\"id\";i:17616;s:12:\"publish-date\";i:1507027353;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/law-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/law-01-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/law-01-homepage.jpg\";s:14:\"astra-site-url\";s:25:\"//websitedemos.net/law-01\";s:20:\"astra-site-parent-id\";i:353;s:15:\"astra-sites-tag\";a:7:{i:704;s:13:\"corporate-law\";i:701;s:12:\"criminal-law\";i:703;s:11:\"enforcement\";i:968;s:7:\"justice\";i:702;s:8:\"law-firm\";i:706;s:6:\"lawyer\";i:778;s:5:\"legal\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2482;s:3:\"law\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-28283\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/law-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2019/07/law-01-homepage.jpg\";s:18:\"astra-page-api-url\";s:53:\"https://websitedemos.net/law-01/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:26:\"//websitedemos.net/law-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-28280\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/law-01-about-1.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2019/07/law-01-about-1.jpg\";s:18:\"astra-page-api-url\";s:53:\"https://websitedemos.net/law-01/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/law-01/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-28284\";a:12:{s:5:\"title\";s:13:\"Practice Area\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/law-01-practice-area-1.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/law-01-practice-area-1.jpg\";s:18:\"astra-page-api-url\";s:54:\"https://websitedemos.net/law-01/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/law-01/practice-area/\";s:15:\"astra-sites-tag\";a:2:{i:708;s:4:\"area\";i:707;s:13:\"practice-area\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-36136\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/law-01-faq.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/01/law-01-faq.jpg\";s:18:\"astra-page-api-url\";s:54:\"https://websitedemos.net/law-01/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/law-01/faq/\";s:15:\"astra-sites-tag\";a:1:{i:426;s:3:\"faq\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-28282\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/law-01-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/law-01-contact-2.jpg\";s:18:\"astra-page-api-url\";s:54:\"https://websitedemos.net/law-01/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/law-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-17562\";a:22:{s:5:\"title\";s:3:\"Spa\";s:2:\"id\";i:17562;s:12:\"publish-date\";i:1505912623;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-03-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-03-homepage.jpg\";s:14:\"astra-site-url\";s:31:\"//websitedemos.net/lotus-spa-03\";s:20:\"astra-site-parent-id\";i:191;s:15:\"astra-sites-tag\";a:10:{i:532;s:11:\"acupressure\";i:474;s:8:\"grooming\";i:528;s:7:\"massage\";i:527;s:17:\"massage-therapist\";i:529;s:13:\"physiotherapy\";i:531;s:11:\"reflexology\";i:533;s:10:\"relaxation\";i:650;s:5:\"salon\";i:651;s:8:\"skincare\";i:530;s:3:\"spa\";}s:16:\"astra-sites-type\";s:11:\"agency-mini\";s:19:\"astra-site-category\";a:1:{i:27;s:8:\"business\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2479;s:6:\"beauty\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:11:\"astra-addon\";s:4:\"init\";s:27:\"astra-addon/astra-addon.php\";s:4:\"name\";s:9:\"Astra Pro\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-23970\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-03-homepage.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-03-homepage.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/lotus-spa-03/wp-json/wp/v2/pages/2202\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/lotus-spa-03/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23967\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-03-about.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-03-about.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/lotus-spa-03/wp-json/wp/v2/pages/2208\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/lotus-spa-03/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23971\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-03-services.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-03-services.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/lotus-spa-03/wp-json/wp/v2/pages/2210\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/lotus-spa-03/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}s:8:\"id-23969\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-03-contact.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/lotus-spa-03-contact.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/lotus-spa-03/wp-json/wp/v2/pages/2449\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/lotus-spa-03/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:11:\"agency-mini\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:60;s:8:\"business\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:4:\"init\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-17524\";a:22:{s:5:\"title\";s:13:\"Dental Clinic\";s:2:\"id\";i:17524;s:12:\"publish-date\";i:1505903441;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/dental-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/dental-01-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/dental-01-homepage.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/dental-01\";s:20:\"astra-site-parent-id\";i:229;s:15:\"astra-sites-tag\";a:7:{i:623;s:7:\"dentist\";i:601;s:6:\"doctor\";i:604;s:10:\"healthcare\";i:605;s:8:\"hospital\";i:399;s:8:\"one-page\";i:463;s:11:\"single-page\";i:607;s:9:\"treatment\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2490;s:10:\"healthcare\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-24462\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/dental-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2019/07/dental-01-homepage.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/dental-01/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/dental-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-17534\";a:22:{s:5:\"title\";s:14:\"Digital Agency\";s:2:\"id\";i:17534;s:12:\"publish-date\";i:1505892622;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/digital-agency-homepage.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/digital-agency-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/digital-agency-homepage.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/agency-02\";s:20:\"astra-site-parent-id\";i:210;s:15:\"astra-sites-tag\";a:6:{i:663;s:6:\"agency\";i:979;s:7:\"company\";i:686;s:9:\"corporate\";i:664;s:16:\"digital-services\";i:812;s:6:\"office\";i:665;s:14:\"service-agency\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2812;s:14:\"digital-agency\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1281:\"<!-- wp:paragraph -->\n<p>The Digital Agency template has a thoroughly modern feel with a strong homepage and bold colors. Combined with modern sans serif fonts and complementary design throughout the page, this template is perfect for both startups and more established organizations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pages are well laid out and contain everything a visitor would expect to see. All pages are fully customizable using your favorite page builder and can be fully customized to match your brand.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Digital Agency template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Contemporary design ideal for new or more established businesses</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Engaging colors and fonts</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Customizable pages and layout</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Built-in portfolio section and contact forms</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Effective calls to action throughout</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Full compatibility with drag and drop page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:83:\"Fresh, modern template ideal for showcasing upstarts, startups and digital agencies\";s:5:\"pages\";a:4:{s:8:\"id-24112\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/digital-agency-homepage.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/digital-agency-homepage.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/agency-02/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/agency-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24109\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2017/09/agency-02-about.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2017/09/agency-02-about.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/agency-02/wp-json/wp/v2/pages/19\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/agency-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24113\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/digital-agency-services-page.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/digital-agency-services-page.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/agency-02/wp-json/wp/v2/pages/21\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/agency-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24111\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2017/09/agency-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2017/09/agency-02-contact.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/agency-02/wp-json/wp/v2/pages/25\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/agency-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-17535\";a:22:{s:5:\"title\";s:27:\"Gardening &amp; Landscaping\";s:2:\"id\";i:17535;s:12:\"publish-date\";i:1505892461;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-02-home.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-02-home.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/gardener-02\";s:20:\"astra-site-parent-id\";i:307;s:15:\"astra-sites-tag\";a:8:{i:416;s:11:\"garden-care\";i:421;s:18:\"garden-maintenance\";i:420;s:9:\"gardening\";i:422;s:11:\"landscaping\";i:417;s:9:\"lawn-care\";i:1021;s:14:\"local-business\";i:419;s:8:\"planting\";i:418;s:12:\"weed-control\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:5:{i:2777;s:8:\"business\";i:2853;s:17:\"florist-gardening\";i:2852;s:11:\"landscaping\";i:2830;s:6:\"nature\";i:2768;s:9:\"portfolio\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2476;s:9:\"gardening\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1032:\"<!-- wp:paragraph -->\n<p>The Gardening &amp; Landscaping website template is perfect for any business involved with gardening, landscaping, growing or farming. It uses sympathetic green colors throughout but could be easily customized to fit your brand.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pages are very well-balanced with plenty of content areas and images, calls to action and buttons to help engage. It’s easy to add new content blocks and entire pages thanks to full page builder compatibility.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Gardening &amp; Landscaping template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Well designed pages with flexible content areas</li><li>Fresh design with universal appeal</li><li>Sympathetic colors ideal for the niche</li><li>Lots of opportunities to add extra information or on-page features</li><li>Light, welcoming feel throughout every page</li><li>Full compatibility with drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:80:\"Showcase your gardening or landscaping business with this lovely template design\";s:5:\"pages\";a:5:{s:8:\"id-25221\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-02-home.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-02-home.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/gardener-02/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/gardener-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25217\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-02-about.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-02-about.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/gardener-02/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/gardener-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25222\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-02-services.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-02-services.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/gardener-02/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/gardener-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25220\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-02-gallery.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-02-gallery.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/gardener-02/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/gardener-02/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25219\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-02-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-02-contact-1.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/gardener-02/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/gardener-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:17535;s:26:\"related-gutenberg-template\";i:48562;}s:8:\"id-17531\";a:22:{s:5:\"title\";s:27:\"Gardening &amp; Landscaping\";s:2:\"id\";i:17531;s:12:\"publish-date\";i:1505991876;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-01-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-01-homepage.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/gardener-01\";s:20:\"astra-site-parent-id\";i:305;s:15:\"astra-sites-tag\";a:7:{i:416;s:11:\"garden-care\";i:421;s:18:\"garden-maintenance\";i:420;s:9:\"gardening\";i:422;s:11:\"landscaping\";i:417;s:9:\"lawn-care\";i:419;s:8:\"planting\";i:418;s:12:\"weed-control\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2476;s:9:\"gardening\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-25194\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-01-homepage.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/gardener-01/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/gardener-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-25190\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-01-about.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-01-about.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/gardener-01/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/gardener-01/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-25195\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-01-services.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-01-services.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/gardener-01/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/gardener-01/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-25193\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-01-gallery.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-01-gallery.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/gardener-01/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/gardener-01/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-25192\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-01-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-01-contact-2.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/gardener-01/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/gardener-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48562\";a:22:{s:5:\"title\";s:27:\"Gardening &amp; Landscaping\";s:2:\"id\";i:48562;s:12:\"publish-date\";i:1603984618;s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08-600x2558.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08-400x1705.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/gardener-08\";s:20:\"astra-site-parent-id\";i:1746;s:15:\"astra-sites-tag\";a:7:{i:416;s:11:\"garden-care\";i:421;s:18:\"garden-maintenance\";i:420;s:9:\"gardening\";i:422;s:11:\"landscaping\";i:417;s:9:\"lawn-care\";i:419;s:8:\"planting\";i:418;s:12:\"weed-control\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2476;s:9:\"gardening\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48566\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08-600x2558.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/gardener-08/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/gardener-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48563\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08-about-1-600x1625.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/gardener-08/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/gardener-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48567\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08-services-1-600x1611.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/gardener-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/gardener-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48565\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08-gallery-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08-gallery-1-600x994.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/gardener-08/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/gardener-08/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48564\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08-contact-1-600x987.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/gardener-08/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/gardener-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-19791\";a:22:{s:5:\"title\";s:27:\"Gardening &amp; Landscaping\";s:2:\"id\";i:19791;s:12:\"publish-date\";i:1543500773;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/gardenr-landscaping.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/gardenr-landscaping.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/gardenr-landscaping.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/gardener-05\";s:20:\"astra-site-parent-id\";i:277;s:15:\"astra-sites-tag\";a:7:{i:416;s:11:\"garden-care\";i:421;s:18:\"garden-maintenance\";i:420;s:9:\"gardening\";i:422;s:11:\"landscaping\";i:417;s:9:\"lawn-care\";i:419;s:8:\"planting\";i:418;s:12:\"weed-control\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-24873\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/gardenr-landscaping.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/gardenr-landscaping.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/gardener-05/wp-json/wp/v2/pages/750\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/gardener-05/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-24870\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-02-feb-20-about.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-02-feb-20-about.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/gardener-05/wp-json/wp/v2/pages/759\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/gardener-05/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-24874\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-02-feb-20-services.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-02-feb-20-services.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/gardener-05/wp-json/wp/v2/pages/763\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/gardener-05/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-24872\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-02-feb-20-gallery.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-02-feb-20-gallery.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/gardener-05/wp-json/wp/v2/pages/767\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/gardener-05/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-24871\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-02-feb-20-contact.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/gardener-02-feb-20-contact.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/gardener-05/wp-json/wp/v2/pages/770\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/gardener-05/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(253,'astra-sites-and-pages-page-37','a:15:{s:8:\"id-55358\";a:22:{s:5:\"title\";s:17:\"Web Design Agency\";s:2:\"id\";i:55358;s:12:\"publish-date\";i:1621624720;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/demo-screenshot.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/05/demo-screenshot-600x1886.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/05/demo-screenshot-400x1257.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/web-design-agency-08\";s:20:\"astra-site-parent-id\";i:2095;s:15:\"astra-sites-tag\";a:4:{i:663;s:6:\"agency\";i:399;s:8:\"one-page\";i:463;s:11:\"single-page\";i:2159;s:17:\"web-design-agency\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:39;s:4:\"free\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:0:{}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-55567\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/web-design-agency-08.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/web-design-agency-08.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/web-design-agency-08/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/web-design-agency-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:0:{}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-17529\";a:22:{s:5:\"title\";s:12:\"Construction\";s:2:\"id\";i:17529;s:12:\"publish-date\";i:1505892280;s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-01-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-01-homepage.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/construction-01\";s:20:\"astra-site-parent-id\";i:300;s:15:\"astra-sites-tag\";a:6:{i:435;s:12:\"architecture\";i:979;s:7:\"company\";i:484;s:12:\"construction\";i:436;s:8:\"interior\";i:812;s:6:\"office\";i:485;s:11:\"real-estate\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-25144\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-01-homepage.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/construction-01/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/construction-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-25141\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-01-about.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-01-about.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/construction-01/wp-json/wp/v2/pages/71\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/construction-01/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-25146\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-01-services.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-01-services.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/construction-01/wp-json/wp/v2/pages/72\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/construction-01/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-25145\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-01-projects.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-01-projects.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/construction-01/wp-json/wp/v2/pages/74\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/construction-01/projects/\";s:15:\"astra-sites-tag\";a:1:{i:424;s:7:\"project\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-25143\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-01-contact.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-01-contact.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/construction-01/wp-json/wp/v2/pages/73\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/construction-01/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-17536\";a:22:{s:5:\"title\";s:12:\"Construction\";s:2:\"id\";i:17536;s:12:\"publish-date\";i:1505892261;s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-co-homepage.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-co-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-co-homepage.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/construction-02\";s:20:\"astra-site-parent-id\";i:302;s:15:\"astra-sites-tag\";a:7:{i:435;s:12:\"architecture\";i:979;s:7:\"company\";i:484;s:12:\"construction\";i:436;s:8:\"interior\";i:812;s:6:\"office\";i:485;s:11:\"real-estate\";i:687;s:6:\"realty\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:5:{i:2795;s:12:\"architecture\";i:2836;s:12:\"construction\";i:2793;s:15:\"interior-design\";i:2768;s:9:\"portfolio\";i:2778;s:11:\"real-estate\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1038:\"<!-- wp:paragraph -->\n<p>The Construction template is very clean and crisp, ideal for forward-looking businesses. While set up for construction, you could easily use it for architecture, real estate and other business types.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design uses bright colors and whitespace along with great imagery to create a positive first impression. Something continued effortlessly throughout the template. Thanks to full compatibility with page builders, you can transform this template without touching a line of code!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Construction template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Clean, crisp business template ideal for business</li><li>Fantastic use of colors, images and whitespace</li><li>Equally attractive extra pages to continue the feel</li><li>Standout engagement buttons</li><li>Flexible content areas on every page</li><li>Full compatibility with drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:81:\"Inspire confidence in new clients with this clean and crisp construction template\";s:5:\"pages\";a:5:{s:8:\"id-25166\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-co-homepage.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-co-homepage.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/construction-02/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/construction-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25163\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-02-about.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-02-about.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/construction-02/wp-json/wp/v2/pages/71\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/construction-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25168\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-co-services.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-co-services.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/construction-02/wp-json/wp/v2/pages/72\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/construction-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25167\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-02-projects.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-02-projects.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/construction-02/wp-json/wp/v2/pages/74\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/construction-02/projects/\";s:15:\"astra-sites-tag\";a:1:{i:424;s:7:\"project\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-25165\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/construction-02-contact.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/construction-02/wp-json/wp/v2/pages/73\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/construction-02/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:58953;s:26:\"related-gutenberg-template\";i:48225;}s:8:\"id-48225\";a:22:{s:5:\"title\";s:12:\"Construction\";s:2:\"id\";i:48225;s:12:\"publish-date\";i:1603905869;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08-600x3030.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08-400x2020.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/construction-08\";s:20:\"astra-site-parent-id\";i:1707;s:15:\"astra-sites-tag\";a:6:{i:435;s:12:\"architecture\";i:979;s:7:\"company\";i:484;s:12:\"construction\";i:436;s:8:\"interior\";i:812;s:6:\"office\";i:485;s:11:\"real-estate\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48228\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08-600x3030.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/construction-08/wp-json/wp/v2/pages/1815\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/construction-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48226\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08-about.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08-about-600x1830.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/construction-08/wp-json/wp/v2/pages/1816\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/construction-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48230\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08-services.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08-services-600x1372.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/construction-08/wp-json/wp/v2/pages/1817\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/construction-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48229\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08-projects.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08-projects-600x1712.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/construction-08/wp-json/wp/v2/pages/1818\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/construction-08/projects/\";s:15:\"astra-sites-tag\";a:1:{i:1613;s:8:\"projects\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48227\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08-contact-us-600x1078.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/construction-08/wp-json/wp/v2/pages/1819\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/construction-08/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:454;s:10:\"contact-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-17504\";a:22:{s:5:\"title\";s:16:\"Co-Working Space\";s:2:\"id\";i:17504;s:12:\"publish-date\";i:1505739194;s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-02-home.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-02-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-02-home.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/co-working-space-02\";s:20:\"astra-site-parent-id\";i:215;s:15:\"astra-sites-tag\";a:7:{i:692;s:8:\"business\";i:693;s:4:\"cafe\";i:694;s:16:\"co-working-place\";i:695;s:13:\"collaboration\";i:979;s:7:\"company\";i:812;s:6:\"office\";i:691;s:10:\"work-place\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:1:{i:2777;s:8:\"business\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:976:\"<!-- wp:paragraph -->\n<p>The Co-Working Space template provides all the ingredients you need to build an engaging business website. While configured for a coworking space, it could easily be personalized to suit any organization.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The use of modern fonts, clean colors and whitespace throughout keeps the design accessible and engaging. You have lots of options for adding or removing page features and pages thanks to full compatibility with page builders.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Co-Working Space template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Clean, modern business template ideal for any niche</li><li>Great use of imagery and layout</li><li>Includes essential content areas and pages</li><li>Attractive contact page with form</li><li>Designed to be quickly customizable</li><li>Full compatibility with drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:90:\"Light and modern business template designed for real estate businesses or coworking spaces\";s:5:\"pages\";a:5:{s:8:\"id-24320\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-02-home.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-02-home.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/co-working-space-02/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/co-working-space-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24316\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-about-page.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-about-page.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/co-working-space-02/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/co-working-space-02/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24317\";a:12:{s:5:\"title\";s:9:\"Amenities\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-02-aminities.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-02-aminities.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/co-working-space-02/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/co-working-space-02/amenities/\";s:15:\"astra-sites-tag\";a:1:{i:777;s:9:\"amenities\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24321\";a:12:{s:5:\"title\";s:7:\"Pricing\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-02-pricing.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-02-pricing.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/co-working-space-02/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/co-working-space-02/pricing/\";s:15:\"astra-sites-tag\";a:1:{i:585;s:7:\"pricing\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24319\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-02-contact.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/co-working-space-02/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/co-working-space-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:45466;s:26:\"related-gutenberg-template\";i:48374;}s:8:\"id-17363\";a:22:{s:5:\"title\";s:16:\"Co-Working Space\";s:2:\"id\";i:17363;s:12:\"publish-date\";i:1503041658;s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-01-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-01-homepage.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/co-working-space-01\";s:20:\"astra-site-parent-id\";i:217;s:15:\"astra-sites-tag\";a:7:{i:692;s:8:\"business\";i:693;s:4:\"cafe\";i:694;s:16:\"co-working-place\";i:695;s:13:\"collaboration\";i:979;s:7:\"company\";i:812;s:6:\"office\";i:691;s:10:\"work-place\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-24344\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-01-homepage.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/co-working-space-01/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/co-working-space-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-24340\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-01-about-us.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-01-about-us.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/co-working-space-01/wp-json/wp/v2/pages/37\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/co-working-space-01/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-24341\";a:12:{s:5:\"title\";s:9:\"Amenities\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-01-amenities.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-01-amenities.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/co-working-space-01/wp-json/wp/v2/pages/39\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/co-working-space-01/amenities/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-24345\";a:12:{s:5:\"title\";s:7:\"Pricing\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-01-pricing.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-01-pricing.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/co-working-space-01/wp-json/wp/v2/pages/40\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/co-working-space-01/pricing/\";s:15:\"astra-sites-tag\";a:1:{i:585;s:7:\"pricing\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-24343\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-01-contact.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/co-working-space-01-contact.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/co-working-space-01/wp-json/wp/v2/pages/41\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/co-working-space-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48374\";a:22:{s:5:\"title\";s:16:\"Co-Working Space\";s:2:\"id\";i:48374;s:12:\"publish-date\";i:1603963845;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08-600x2179.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08-400x1453.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/co-working-space-08\";s:20:\"astra-site-parent-id\";i:1729;s:15:\"astra-sites-tag\";a:5:{i:692;s:8:\"business\";i:694;s:16:\"co-working-place\";i:695;s:13:\"collaboration\";i:1453;s:15:\"coworking-space\";i:691;s:10:\"work-place\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48375\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08-about-us-600x1618.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/co-working-space-08/wp-json/wp/v2/pages/1131\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/co-working-space-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48376\";a:12:{s:5:\"title\";s:9:\"Amenities\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08-amenities.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08-amenities-600x1915.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/co-working-space-08/wp-json/wp/v2/pages/1132\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/co-working-space-08/amenities/\";s:15:\"astra-sites-tag\";a:1:{i:777;s:9:\"amenities\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48377\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08-contact-us-600x1305.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/co-working-space-08/wp-json/wp/v2/pages/1133\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/co-working-space-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48378\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08-600x2179.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/co-working-space-08/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/co-working-space-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48379\";a:12:{s:5:\"title\";s:7:\"Pricing\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08-pricing-plans.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08-pricing-plans-600x2176.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/co-working-space-08/wp-json/wp/v2/pages/1134\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/co-working-space-08/pricing/\";s:15:\"astra-sites-tag\";a:1:{i:585;s:7:\"pricing\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-17354\";a:22:{s:5:\"title\";s:18:\"Wedding Invitation\";s:2:\"id\";i:17354;s:12:\"publish-date\";i:1503490197;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-invite-onepage.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-invite-onepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-invite-onepage.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/wedding-02\";s:20:\"astra-site-parent-id\";i:264;s:15:\"astra-sites-tag\";a:5:{i:698;s:10:\"engagement\";i:699;s:10:\"invitation\";i:399;s:8:\"one-page\";i:463;s:11:\"single-page\";i:697;s:7:\"wedding\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:1:{i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2771;s:8:\"one-page\";i:2792;s:7:\"wedding\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:2:{i:2489;s:16:\"event-invitation\";i:2927;s:8:\"one-page\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:2;a:3:{s:4:\"slug\";s:6:\"leadin\";s:4:\"init\";s:17:\"leadin/leadin.php\";s:4:\"name\";s:55:\"HubSpot All-In-One Marketing - Forms, Popups, Live Chat\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1031:\"<!-- wp:paragraph -->\n<p>The Wedding Invitation template is a single page that has a romantic design with an engaging header image ideal for showing the happy couple. It’s accompanied by an informative headline and a helpful ‘add to calendar’ button for ease of use.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Further down the page are customizable content blocks for telling your story and for covering the when and where of the wedding. There’s also a helpful map, RSVP form and all the information guests need to know.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Wedding Invitation template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Attractive one page template ideal for weddings</li><li>Romantic colors and design</li><li>Includes all the information you need to communicate</li><li>RSVP form and map within the template</li><li>Fully customizable colors to match your wedding theme</li><li>Full compatibility with drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"Elegant one-page wedding invitation template with everything you need to communicate\";s:5:\"pages\";a:1:{s:8:\"id-24754\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-invite-onepage.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/wedding-invite-onepage.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/wedding-02/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/wedding-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:45592;s:26:\"related-elementor-template\";i:58999;s:26:\"related-gutenberg-template\";i:48297;}s:8:\"id-48297\";a:22:{s:5:\"title\";s:18:\"Wedding Invitation\";s:2:\"id\";i:48297;s:12:\"publish-date\";i:1603905879;s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/10/wedding-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/wedding-08-600x2270.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/wedding-08-400x1513.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/wedding-08\";s:20:\"astra-site-parent-id\";i:1716;s:15:\"astra-sites-tag\";a:5:{i:699;s:10:\"invitation\";i:746;s:13:\"one-page-site\";i:463;s:11:\"single-page\";i:697;s:7:\"wedding\";i:1457;s:18:\"wedding-invitation\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:1:{i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2489;s:16:\"event-invitation\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-48298\";a:12:{s:5:\"title\";s:18:\"Wedding Invitation\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/10/wedding-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/wedding-08-600x2270.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/wedding-08/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/wedding-08/\";s:15:\"astra-sites-tag\";a:3:{i:423;s:4:\"home\";i:1718;s:7:\"onepage\";i:1457;s:18:\"wedding-invitation\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-17366\";a:22:{s:5:\"title\";s:10:\"Car Repair\";s:2:\"id\";i:17366;s:12:\"publish-date\";i:1503484873;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-01-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-01-homepage.jpg\";s:14:\"astra-site-url\";s:32:\"//websitedemos.net/car-repair-01\";s:20:\"astra-site-parent-id\";i:298;s:15:\"astra-sites-tag\";a:4:{i:588;s:8:\"car-care\";i:587;s:13:\"car-detailing\";i:666;s:10:\"car-repair\";i:667;s:11:\"repair-shop\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2475;s:10:\"automotive\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-25114\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-01-homepage.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/car-repair-01/wp-json/wp/v2/pages/4\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:33:\"//websitedemos.net/car-repair-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-25111\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-01-about-1.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-01-about-1.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/car-repair-01/wp-json/wp/v2/pages/193\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/car-repair-01/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-25116\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-01-services.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-01-services.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/car-repair-01/wp-json/wp/v2/pages/217\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/car-repair-01/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-25115\";a:12:{s:5:\"title\";s:9:\"Our Staff\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-01-our-staff.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-01-our-staff.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/car-repair-01/wp-json/wp/v2/pages/230\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/car-repair-01/our-staff/\";s:15:\"astra-sites-tag\";a:2:{i:668;s:5:\"staff\";i:486;s:4:\"team\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-25113\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-01-contact.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/car-repair-01-contact.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/car-repair-01/wp-json/wp/v2/pages/28\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/car-repair-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-56731\";a:22:{s:5:\"title\";s:13:\"Prime Lawyers\";s:2:\"id\";i:56731;s:12:\"publish-date\";i:1626107534;s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-1.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-1-600x2347.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-1-400x1565.jpg\";s:14:\"astra-site-url\";s:25:\"//websitedemos.net/law-08\";s:20:\"astra-site-parent-id\";i:2255;s:15:\"astra-sites-tag\";a:7:{i:704;s:13:\"corporate-law\";i:701;s:12:\"criminal-law\";i:703;s:11:\"enforcement\";i:968;s:7:\"justice\";i:702;s:8:\"law-firm\";i:706;s:6:\"lawyer\";i:1022;s:12:\"professional\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2482;s:3:\"law\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-56732\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-about-1-600x1425.jpg\";s:18:\"astra-page-api-url\";s:53:\"https://websitedemos.net/law-08/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/law-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56733\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-contact-1-600x875.jpg\";s:18:\"astra-page-api-url\";s:54:\"https://websitedemos.net/law-08/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/law-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56734\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-faq-1.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-faq-1-600x1042.jpg\";s:18:\"astra-page-api-url\";s:54:\"https://websitedemos.net/law-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/law-08/faq/\";s:15:\"astra-sites-tag\";a:2:{i:426;s:3:\"faq\";i:1476;s:26:\"frequently-asked-questions\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56735\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-1.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-1-600x2347.jpg\";s:18:\"astra-page-api-url\";s:53:\"https://websitedemos.net/law-08/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:26:\"//websitedemos.net/law-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56736\";a:12:{s:5:\"title\";s:13:\"Practice Area\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-practice-area-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-practice-area-1-600x1813.jpg\";s:18:\"astra-page-api-url\";s:53:\"https://websitedemos.net/law-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/law-08/practice-area/\";s:15:\"astra-sites-tag\";a:2:{i:707;s:13:\"practice-area\";i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-17337\";a:22:{s:5:\"title\";s:13:\"Prime Lawyers\";s:2:\"id\";i:17337;s:12:\"publish-date\";i:1502425391;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/law-firm-homepage.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/law-firm-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/law-firm-homepage.jpg\";s:14:\"astra-site-url\";s:25:\"//websitedemos.net/law-02\";s:20:\"astra-site-parent-id\";i:253;s:15:\"astra-sites-tag\";a:7:{i:704;s:13:\"corporate-law\";i:701;s:12:\"criminal-law\";i:703;s:11:\"enforcement\";i:968;s:7:\"justice\";i:702;s:8:\"law-firm\";i:706;s:6:\"lawyer\";i:1022;s:12:\"professional\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2777;s:8:\"business\";i:2824;s:8:\"law-firm\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2482;s:3:\"law\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1050:\"<!-- wp:paragraph -->\n<p>The Prime Lawyers template delivers that professional gravity your firm deserves from the moment you open the page. It’s a professionally-designed template complete with sober colors, lots of content areas and service sections and plenty of space to outline your areas of expertise.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is a dark theme that portrays the seriousness of the law without being overbearing. It can be quickly customized to suit any type of lawyer, which is why it’s so popular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Prime Lawyers template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Well-designed template ideal for the legal profession</li><li>Suitable for law firms, individual lawyers or legal advice</li><li>Lots of areas to outline services and expertise</li><li>Can be customized to suit any brand identity</li><li>Great balance between light and dark</li><li>Full compatibility with drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"Professional template with sober colors, nice layout and confidence-inspiring design\";s:5:\"pages\";a:5:{s:8:\"id-24652\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/law-firm-homepage.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/law-firm-homepage.jpg\";s:18:\"astra-page-api-url\";s:53:\"https://websitedemos.net/law-02/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:26:\"//websitedemos.net/law-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24648\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/law-firm-aboutus.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/law-firm-aboutus.jpg\";s:18:\"astra-page-api-url\";s:53:\"https://websitedemos.net/law-02/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/law-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24653\";a:12:{s:5:\"title\";s:13:\"Practice Area\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/law-firm-practice-area-page.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2019/07/law-firm-practice-area-page.jpg\";s:18:\"astra-page-api-url\";s:54:\"https://websitedemos.net/law-02/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/law-02/practice-area/\";s:15:\"astra-sites-tag\";a:2:{i:708;s:4:\"area\";i:707;s:13:\"practice-area\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24651\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2019/07/law-02-faq-1.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2019/07/law-02-faq-1.jpg\";s:18:\"astra-page-api-url\";s:54:\"https://websitedemos.net/law-02/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/law-02/faq/\";s:15:\"astra-sites-tag\";a:2:{i:426;s:3:\"faq\";i:709;s:9:\"questions\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24650\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/law-02-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2019/07/law-02-contact-2.jpg\";s:18:\"astra-page-api-url\";s:54:\"https://websitedemos.net/law-02/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/law-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:17337;s:26:\"related-gutenberg-template\";i:56731;}s:8:\"id-17326\";a:22:{s:5:\"title\";s:11:\"Electrician\";s:2:\"id\";i:17326;s:12:\"publish-date\";i:1502182802;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-home-page.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-home-page.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-home-page.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/electrician-02\";s:20:\"astra-site-parent-id\";i:237;s:15:\"astra-sites-tag\";a:4:{i:341;s:11:\"electrician\";i:1021;s:14:\"local-business\";i:439;s:14:\"local-services\";i:671;s:16:\"service-provider\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2815;s:11:\"electrician\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1050:\"<!-- wp:paragraph -->\n<p>The Electrician website template is simple but effective and wastes no time getting to the point. It opens strong, with a bold full screen image with contact form front and center. The homepage then opens out to include service sections, another contact form and an attractive interactive footer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Electrician template also includes service pages, about, FAQs and contact page. You can add more pages in seconds thanks to full compatibility with drag and drop page builders.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Electrician template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Simple, effective electrician template ideal for the industry</li><li>Lots of options for engagement and adding content</li><li>Multiple contact forms to attract leads</li><li>Good use of colors and imagery</li><li>Can be rebranded in minutes to fit your business</li><li>Fully compatible with drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:86:\"Concise and professional electrician template with user intent at the center of it all\";s:5:\"pages\";a:5:{s:8:\"id-24526\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-home-page.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-home-page.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/electrician-02/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/electrician-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-24522\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-about-page.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-about-page.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/electrician-02/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/electrician-02/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24527\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-service-page.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-service-page.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/electrician-02/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/electrician-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24525\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-faq-screenshot.png\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-faq-screenshot.png\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/electrician-02/wp-json/wp/v2/pages/16\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/electrician-02/faq/\";s:15:\"astra-sites-tag\";a:1:{i:426;s:3:\"faq\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-24524\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-contact-screenshot.png\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/07/electrician-contact-screenshot.png\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/electrician-02/wp-json/wp/v2/pages/18\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/electrician-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}}s:19:\"related-bb-template\";i:17630;s:26:\"related-elementor-template\";i:17326;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-17300\";a:22:{s:5:\"title\";s:13:\"Dental Clinic\";s:2:\"id\";i:17300;s:12:\"publish-date\";i:1501666669;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/dental-clinic-home-page.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/dental-clinic-home-page.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/dental-clinic-home-page.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/dental-02\";s:20:\"astra-site-parent-id\";i:230;s:15:\"astra-sites-tag\";a:8:{i:623;s:7:\"dentist\";i:601;s:6:\"doctor\";i:604;s:10:\"healthcare\";i:605;s:8:\"hospital\";i:399;s:8:\"one-page\";i:1022;s:12:\"professional\";i:463;s:11:\"single-page\";i:607;s:9:\"treatment\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2799;s:7:\"dentist\";i:2867;s:6:\"doctor\";i:2834;s:10:\"healthcare\";i:2780;s:8:\"hospital\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2490;s:10:\"healthcare\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1331:\"<!-- wp:paragraph -->\n<p>The Dental Clinic template is clean, modern and gentle, which is exactly the first impression dentists need to make to engage their audience. The design uses a friendly white and blue design with engaging images throughout.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template has a range of complementing colors along with a call to action banner, information blocks and a fully operational contact form. Plus, you have the option to move, add or change all blocks and pages across your website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Dental Clinic template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Clever design reflects the medical nature of the dentist niche</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Clean, modern layout creates a positive first impression</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Good use of colors, fonts and white space</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Includes contact forms and calls to action</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Can be completely customized to fit your brand</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Fully compatible with drag and drop page builders</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"Stay on target and on trend with this appealing and welcoming dental clinic template\";s:5:\"pages\";a:1:{s:8:\"id-24468\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/dental-clinic-home-page.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/07/dental-clinic-home-page.jpg\";s:18:\"astra-page-api-url\";s:56:\"https://websitedemos.net/dental-02/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/dental-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:17524;s:26:\"related-elementor-template\";i:17300;s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-38739\";a:22:{s:5:\"title\";s:13:\"Makeup Artist\";s:2:\"id\";i:38739;s:12:\"publish-date\";i:1579109371;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/01/makeup-artist-homepage.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/01/makeup-artist-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/01/makeup-artist-homepage.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/makeup-artist-02\";s:20:\"astra-site-parent-id\";i:1125;s:15:\"astra-sites-tag\";a:6:{i:579;s:14:\"bridal-make-up\";i:477;s:9:\"hair-care\";i:575;s:11:\"hair-styles\";i:1126;s:7:\"make-up\";i:1128;s:14:\"make-up-artist\";i:1127;s:9:\"skin-care\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:7:{i:2802;s:6:\"artist\";i:2790;s:14:\"beauty-fashion\";i:2821;s:14:\"feminine-girly\";i:2890;s:15:\"makeup-cosmetic\";i:2768;s:9:\"portfolio\";i:2837;s:5:\"salon\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2479;s:6:\"beauty\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1017:\"<!-- wp:paragraph -->\n<p>The Makeup Artist template is a chic design with a strong homepage and complementing service pages. The homepage opens with a strong image and attractive colors before unfolding into a clean, flat template with lots of whitespace to make your content really stand out.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design includes some well-chosen fonts and colors, but you can easily customize it to suit your brand. Services are front and center and complemented with a price list and review section. Exactly what you expect to see!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Makeup Artist template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Engaging design that’s perfect for the beauty niche</li><li>Great use of colors, fonts and whitespace</li><li>Engaging service section, pricing and review blocks</li><li>Awesome header and footer all ready to go</li><li>Fully compatible with drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:82:\"Appealing and stylish, two words that sum up the makeup artist template perfectly!\";s:5:\"pages\";a:5:{s:8:\"id-38742\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/01/makeup-artist-homepage.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/01/makeup-artist-homepage.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/makeup-artist-02/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/makeup-artist-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-38740\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/01/makeup-artist-02-about.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/01/makeup-artist-02-about.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/makeup-artist-02/wp-json/wp/v2/pages/43\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/makeup-artist-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-38744\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/01/makeup-artist-02-services.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/01/makeup-artist-02-services.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/makeup-artist-02/wp-json/wp/v2/pages/44\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/makeup-artist-02/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-38743\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/makeup-artist-02-portfolio.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/01/makeup-artist-02-portfolio.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/makeup-artist-02/wp-json/wp/v2/pages/45\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/makeup-artist-02/portfolio/\";s:15:\"astra-sites-tag\";a:2:{i:997;s:8:\"our-work\";i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-38741\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/01/makeup-artist-02-contact.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/01/makeup-artist-02-contact.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/makeup-artist-02/wp-json/wp/v2/pages/46\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/makeup-artist-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:38733;s:26:\"related-elementor-template\";i:38739;s:26:\"related-gutenberg-template\";i:48263;}}','no'),(254,'astra-sites-and-pages-page-38','a:14:{s:8:\"id-38733\";a:22:{s:5:\"title\";s:13:\"Makeup Artist\";s:2:\"id\";i:38733;s:12:\"publish-date\";i:1579109395;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/02/makeup-artist-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/02/makeup-artist-01-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/02/makeup-artist-01-homepage.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/makeup-artist-01\";s:20:\"astra-site-parent-id\";i:1124;s:15:\"astra-sites-tag\";a:5:{i:579;s:14:\"bridal-make-up\";i:477;s:9:\"hair-care\";i:575;s:11:\"hair-styles\";i:982;s:11:\"hairstylist\";i:577;s:13:\"makeup-artist\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2479;s:6:\"beauty\";}s:16:\"required-plugins\";a:4:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:2;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:3;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-44089\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/02/makeup-artist-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/02/makeup-artist-01-homepage.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/makeup-artist-01/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/makeup-artist-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-44087\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/02/makeup-artist-01-about.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/02/makeup-artist-01-about.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/makeup-artist-01/wp-json/wp/v2/pages/43\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/makeup-artist-01/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-44091\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/02/makeup-artist-01-services.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/02/makeup-artist-01-services.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/makeup-artist-01/wp-json/wp/v2/pages/44\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/makeup-artist-01/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-44090\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/02/makeup-artist-01-portfolio.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/02/makeup-artist-01-portfolio.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/makeup-artist-01/wp-json/wp/v2/pages/45\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/makeup-artist-01/portfolio/\";s:15:\"astra-sites-tag\";a:2:{i:444;s:9:\"portfolio\";i:424;s:7:\"project\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-44088\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/02/makeup-artist-01-contact.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/02/makeup-artist-01-contact.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/makeup-artist-01/wp-json/wp/v2/pages/46\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/makeup-artist-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48263\";a:22:{s:5:\"title\";s:13:\"Makeup Artist\";s:2:\"id\";i:48263;s:12:\"publish-date\";i:1603908979;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-1-600x2017.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-1-400x1344.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/makeup-artist-08\";s:20:\"astra-site-parent-id\";i:1713;s:15:\"astra-sites-tag\";a:6:{i:579;s:14:\"bridal-make-up\";i:477;s:9:\"hair-care\";i:575;s:11:\"hair-styles\";i:982;s:11:\"hairstylist\";i:577;s:13:\"makeup-artist\";i:1728;s:13:\"makeup-studio\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2479;s:6:\"beauty\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48266\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-1-600x2017.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/makeup-artist-08/wp-json/wp/v2/pages/1299\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/makeup-artist-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48264\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-about-1-600x1155.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/makeup-artist-08/wp-json/wp/v2/pages/1300\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/makeup-artist-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48268\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-services-1-600x1450.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/makeup-artist-08/wp-json/wp/v2/pages/1301\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/makeup-artist-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48267\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-portfolio-1.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-portfolio-1-600x1205.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/makeup-artist-08/wp-json/wp/v2/pages/1302\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/makeup-artist-08/portfolio/\";s:15:\"astra-sites-tag\";a:1:{i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48265\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-contact-1-600x866.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/makeup-artist-08/wp-json/wp/v2/pages/1303\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/makeup-artist-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-19799\";a:22:{s:5:\"title\";s:13:\"Makeup Artist\";s:2:\"id\";i:19799;s:12:\"publish-date\";i:1543500772;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/makeup-artist-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/makeup-artist-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/makeup-artist-home.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/makeup-artist-05\";s:20:\"astra-site-parent-id\";i:278;s:15:\"astra-sites-tag\";a:5:{i:579;s:14:\"bridal-make-up\";i:477;s:9:\"hair-care\";i:575;s:11:\"hair-styles\";i:982;s:11:\"hairstylist\";i:577;s:13:\"makeup-artist\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-24882\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/makeup-artist-home.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/01/makeup-artist-home.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/makeup-artist-05/wp-json/wp/v2/pages/962\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/makeup-artist-05/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-24880\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/makeup-artist-about.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/01/makeup-artist-about.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/makeup-artist-05/wp-json/wp/v2/pages/968\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/makeup-artist-05/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-24884\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/01/makeup-artist-services.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/01/makeup-artist-services.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/makeup-artist-05/wp-json/wp/v2/pages/972\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/makeup-artist-05/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-24883\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/makeup-artist-portfolio.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/01/makeup-artist-portfolio.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/makeup-artist-05/wp-json/wp/v2/pages/977\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/makeup-artist-05/portfolio/\";s:15:\"astra-sites-tag\";a:1:{i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-24881\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/01/makeup-artist-contact.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2019/07/id-24881-makeup-artist-contact-resize.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/makeup-artist-05/wp-json/wp/v2/pages/983\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/makeup-artist-05/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-43271\";a:22:{s:5:\"title\";s:17:\"Cleaning Services\";s:2:\"id\";i:43271;s:12:\"publish-date\";i:1580979456;s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-services-home-page.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-services-home-page.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-services-home-page.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/cleaner-02\";s:20:\"astra-site-parent-id\";i:1406;s:15:\"astra-sites-tag\";a:7:{i:680;s:8:\"cleaning\";i:679;s:17:\"cleaning-services\";i:673;s:19:\"commercial-cleaning\";i:674;s:17:\"domestic-cleaning\";i:1407;s:13:\"house-keeping\";i:676;s:11:\"maintenance\";i:677;s:7:\"washing\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2819;s:8:\"cleaning\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2477;s:13:\"home-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1005:\"<!-- wp:paragraph -->\n<p>The Cleaning Services template is a strong, modern design with contrasting colors and bold fonts that makes an instant impression. The rest of the design reflects that first impression and includes lots of service sections and optional blocks for extra content.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The template includes readymade service pages, contact pages and about page. You can also quickly add extra pages to suit your particular needs using a drag and drop page builder.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Cleaning Services template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Bold design with characterful contrasting colors</li><li>Service sections and pages already built</li><li>Attractive contact page and calls to action</li><li>Flexible design with limitless customizations</li><li>Testimonial section on the main page</li><li>Fully compatible with drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:80:\"Build instant confidence with this crisp, professional cleaning service template\";s:5:\"pages\";a:5:{s:8:\"id-43275\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-services-home-page.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-services-home-page.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/cleaner-02/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/cleaner-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-43272\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-services-about-page.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-services-about-page.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/cleaner-02/wp-json/wp/v2/pages/21\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/cleaner-02/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-43276\";a:12:{s:5:\"title\";s:11:\"Residential\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-service-residential-page.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-service-residential-page.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/cleaner-02/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/cleaner-02/residential/\";s:15:\"astra-sites-tag\";a:2:{i:682;s:11:\"residential\";i:1408;s:7:\"service\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-43273\";a:12:{s:5:\"title\";s:10:\"Commercial\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-service-commercial-page.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-service-commercial-page.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/cleaner-02/wp-json/wp/v2/pages/23\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/cleaner-02/commercial/\";s:15:\"astra-sites-tag\";a:2:{i:681;s:10:\"commercial\";i:1408;s:7:\"service\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}}}s:8:\"id-43274\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaner-02-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaner-02-contact-1.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/cleaner-02/wp-json/wp/v2/pages/24\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/cleaner-02/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";i:21331;s:26:\"related-gutenberg-template\";i:48269;}s:8:\"id-43284\";a:22:{s:5:\"title\";s:16:\"Cleaning Service\";s:2:\"id\";i:43284;s:12:\"publish-date\";i:1580981779;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/08/cleaner-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/08/cleaner-01-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/08/cleaner-01-homepage.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/cleaner-01\";s:20:\"astra-site-parent-id\";i:1409;s:15:\"astra-sites-tag\";a:7:{i:680;s:8:\"cleaning\";i:679;s:17:\"cleaning-services\";i:673;s:19:\"commercial-cleaning\";i:674;s:17:\"domestic-cleaning\";i:1407;s:13:\"house-keeping\";i:676;s:11:\"maintenance\";i:677;s:7:\"washing\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2477;s:13:\"home-services\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-47208\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/08/cleaner-01-about-1.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/08/cleaner-01-about-1.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/cleaner-01/wp-json/wp/v2/pages/21\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/cleaner-01/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-47209\";a:12:{s:5:\"title\";s:10:\"Commercial\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/08/cleaner-01-commercial-1.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/08/cleaner-01-commercial-1.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/cleaner-01/wp-json/wp/v2/pages/23\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/cleaner-01/commercial/\";s:15:\"astra-sites-tag\";a:1:{i:681;s:10:\"commercial\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-47210\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/08/cleaner-01-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/08/cleaner-01-contact-1.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/cleaner-01/wp-json/wp/v2/pages/24\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/cleaner-01/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47211\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/08/cleaner-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/08/cleaner-01-homepage.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/cleaner-01/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/cleaner-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}s:8:\"id-47212\";a:12:{s:5:\"title\";s:11:\"Residential\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/08/cleaner-01-residential-1.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/08/cleaner-01-residential-1.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/cleaner-01/wp-json/wp/v2/pages/22\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/cleaner-01/residential/\";s:15:\"astra-sites-tag\";a:1:{i:682;s:11:\"residential\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48269\";a:22:{s:5:\"title\";s:17:\"Cleaning Services\";s:2:\"id\";i:48269;s:12:\"publish-date\";i:1603905875;s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08-600x2372.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08-400x1581.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/cleaner-08\";s:20:\"astra-site-parent-id\";i:1714;s:15:\"astra-sites-tag\";a:7:{i:680;s:8:\"cleaning\";i:679;s:17:\"cleaning-services\";i:673;s:19:\"commercial-cleaning\";i:674;s:17:\"domestic-cleaning\";i:1407;s:13:\"house-keeping\";i:676;s:11:\"maintenance\";i:677;s:7:\"washing\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2477;s:13:\"home-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48273\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08-600x2372.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/cleaner-08/wp-json/wp/v2/pages/1696\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/cleaner-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48270\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08-about-1-600x2045.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/cleaner-08/wp-json/wp/v2/pages/1352\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/cleaner-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48274\";a:12:{s:5:\"title\";s:11:\"Residential\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08-residential-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08-residential-1-600x1338.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/cleaner-08/wp-json/wp/v2/pages/1348\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/cleaner-08/residential/\";s:15:\"astra-sites-tag\";a:1:{i:776;s:20:\"residential-cleaning\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48271\";a:12:{s:5:\"title\";s:10:\"Commercial\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08-commercial-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08-commercial-1-600x1498.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/cleaner-08/wp-json/wp/v2/pages/1350\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/cleaner-08/commercial/\";s:15:\"astra-sites-tag\";a:1:{i:673;s:19:\"commercial-cleaning\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48272\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08-contact-1-600x1054.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/cleaner-08/wp-json/wp/v2/pages/1354\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/cleaner-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-43296\";a:22:{s:5:\"title\";s:35:\"Residential and Commercial Cleaning\";s:2:\"id\";i:43296;s:12:\"publish-date\";i:1580982304;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-05-home.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-05-home.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-05-home.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/cleaning-05\";s:20:\"astra-site-parent-id\";i:1410;s:15:\"astra-sites-tag\";a:7:{i:680;s:8:\"cleaning\";i:679;s:17:\"cleaning-services\";i:673;s:19:\"commercial-cleaning\";i:674;s:17:\"domestic-cleaning\";i:1407;s:13:\"house-keeping\";i:676;s:11:\"maintenance\";i:677;s:7:\"washing\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:5:\"brizy\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-43300\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-05-home.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-05-home.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/cleaning-05/wp-json/wp/v2/pages/664\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/cleaning-05/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-43297\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-05-about.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-05-about.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/cleaning-05/wp-json/wp/v2/pages/674\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/cleaning-05/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-43301\";a:12:{s:5:\"title\";s:11:\"Residential\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-05-residential.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-05-residential.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/cleaning-05/wp-json/wp/v2/pages/679\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/cleaning-05/residential/\";s:15:\"astra-sites-tag\";a:2:{i:679;s:17:\"cleaning-services\";i:776;s:20:\"residential-cleaning\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-43298\";a:12:{s:5:\"title\";s:10:\"Commercial\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-05-commercial.jpg\";s:19:\"thumbnail-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-05-commercial.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/cleaning-05/wp-json/wp/v2/pages/682\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/cleaning-05/commercial/\";s:15:\"astra-sites-tag\";a:2:{i:679;s:17:\"cleaning-services\";i:673;s:19:\"commercial-cleaning\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}}}s:8:\"id-43299\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-05-contact.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/02/cleaning-05-contact.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/cleaning-05/wp-json/wp/v2/pages/687\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/cleaning-05/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:5:\"brizy\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:5:\"brizy\";s:4:\"init\";s:15:\"brizy/brizy.php\";s:4:\"name\";s:5:\"Brizy\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-54447\";a:22:{s:5:\"title\";s:22:\"Health &#038; Wellness\";s:2:\"id\";i:54447;s:12:\"publish-date\";i:1621454260;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-home-08.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-home-08-600x2273.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-home-08-400x1515.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/health-wellness-08\";s:20:\"astra-site-parent-id\";i:2034;s:15:\"astra-sites-tag\";a:11:{i:337;s:6:\"clinic\";i:338;s:6:\"dental\";i:2047;s:13:\"dental-clinic\";i:601;s:6:\"doctor\";i:2045;s:6:\"health\";i:604;s:10:\"healthcare\";i:603;s:7:\"medical\";i:2046;s:14:\"medical-clinic\";i:621;s:12:\"psychiatrist\";i:2044;s:9:\"therapist\";i:619;s:8:\"wellness\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2490;s:10:\"healthcare\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-54449\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-contact-08.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-contact-08-600x852.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/health-wellness-08/wp-json/wp/v2/pages/130\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/health-wellness-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-54450\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-home-08.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-home-08-600x2273.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/health-wellness-08/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/health-wellness-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-54448\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-about-08.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-about-08-600x1484.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/health-wellness-08/wp-json/wp/v2/pages/87\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/health-wellness-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-54451\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-services-08.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-services-08-600x1214.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/health-wellness-08/wp-json/wp/v2/pages/120\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/health-wellness-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-17299\";a:22:{s:5:\"title\";s:13:\"Hotel and BnB\";s:2:\"id\";i:17299;s:12:\"publish-date\";i:1501666668;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2017/08/hotel-mountain-homepage.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2017/08/hotel-mountain-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2017/08/hotel-mountain-homepage.jpg\";s:14:\"astra-site-url\";s:27:\"//websitedemos.net/hotel-02\";s:20:\"astra-site-parent-id\";i:250;s:15:\"astra-sites-tag\";a:5:{i:1534;s:3:\"bnb\";i:350;s:5:\"hotel\";i:399;s:8:\"one-page\";i:714;s:6:\"resort\";i:463;s:11:\"single-page\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:2:{i:2785;s:4:\"food\";i:2788;s:9:\"hotel-bnb\";}s:23:\"astra-site-page-builder\";s:9:\"elementor\";s:10:\"categories\";a:1:{i:2498;s:12:\"hotel-travel\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:1096:\"<!-- wp:paragraph -->\n<p>The Hotel and BnB template welcomes you with open arms and provides the warm reception you want from a hotel or BnB website template. The homepage contains all the information guests need while painting the picture of a lifestyle, ideal for the niche.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The design is modern with great balance and all the page features you need to introduce your property and engage with guests. There is also a clear call to action, a gallery page, booking form options and the opportunity to add anything you like to your website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key features of the Hotel and BnB template</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Welcoming home page that creates a positive first impression</li><li>Delivers everything visitors need quickly</li><li>Attractive call to action and enquiry buttons</li><li>Portfolio and amenities sections all ready to go</li><li>Fully responsive and works on any screen</li><li>Fully compatible with drag and drop page builders</li></ul>\n<!-- /wp:list -->\";s:12:\"post-excerpt\";s:84:\"Engaging hospitality template that welcomes your hotel and BnB guests with open arms\";s:5:\"pages\";a:1:{s:8:\"id-24627\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2017/08/hotel-mountain-homepage.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2017/08/hotel-mountain-homepage.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/hotel-02/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:28:\"//websitedemos.net/hotel-02/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"elementor\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";i:17506;s:26:\"related-elementor-template\";i:17299;s:26:\"related-gutenberg-template\";i:48093;}s:8:\"id-17506\";a:22:{s:5:\"title\";s:13:\"Hotel and BnB\";s:2:\"id\";i:17506;s:12:\"publish-date\";i:1505739180;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-01-homepage.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-01-homepage.jpg\";s:14:\"astra-site-url\";s:27:\"//websitedemos.net/hotel-01\";s:20:\"astra-site-parent-id\";i:247;s:15:\"astra-sites-tag\";a:8:{i:560;s:7:\"cuisine\";i:336;s:4:\"food\";i:350;s:5:\"hotel\";i:712;s:5:\"lodge\";i:711;s:5:\"motel\";i:399;s:8:\"one-page\";i:714;s:6:\"resort\";i:463;s:11:\"single-page\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:14:\"beaver-builder\";s:10:\"categories\";a:1:{i:2498;s:12:\"hotel-travel\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-24620\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-01-homepage.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/07/hotel-01-homepage.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/hotel-01/wp-json/wp/v2/pages/2\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:28:\"//websitedemos.net/hotel-01/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:14:\"beaver-builder\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:27:\"beaver-builder-lite-version\";s:4:\"init\";s:42:\"beaver-builder-lite-version/fl-builder.php\";s:4:\"name\";s:36:\"Beaver Builder Plugin (Lite Version)\";}i:1;a:3:{s:4:\"slug\";s:39:\"ultimate-addons-for-beaver-builder-lite\";s:4:\"init\";s:61:\"ultimate-addons-for-beaver-builder-lite/bb-ultimate-addon.php\";s:4:\"name\";s:41:\"Ultimate Addons for Beaver Builder - Lite\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48093\";a:22:{s:5:\"title\";s:13:\"Hotel and BnB\";s:2:\"id\";i:48093;s:12:\"publish-date\";i:1603893483;s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/10/hotel-08.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/hotel-08-600x2604.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/hotel-08-400x1736.jpg\";s:14:\"astra-site-url\";s:27:\"//websitedemos.net/hotel-08\";s:20:\"astra-site-parent-id\";i:1700;s:15:\"astra-sites-tag\";a:8:{i:560;s:7:\"cuisine\";i:336;s:4:\"food\";i:350;s:5:\"hotel\";i:712;s:5:\"lodge\";i:711;s:5:\"motel\";i:399;s:8:\"one-page\";i:714;s:6:\"resort\";i:463;s:11:\"single-page\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2498;s:12:\"hotel-travel\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-48094\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/10/hotel-08.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/hotel-08-600x2604.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/hotel-08/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:28:\"//websitedemos.net/hotel-08/\";s:15:\"astra-sites-tag\";a:3:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";i:463;s:11:\"single-page\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48304\";a:22:{s:5:\"title\";s:20:\"Health &amp; Fitness\";s:2:\"id\";i:48304;s:12:\"publish-date\";i:1603905166;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/health-fitness-08-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/health-fitness-08-1-600x2095.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/health-fitness-08-1-400x1396.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/health-fitness-08\";s:20:\"astra-site-parent-id\";i:1720;s:15:\"astra-sites-tag\";a:4:{i:499;s:7:\"fitness\";i:521;s:12:\"fitness-blog\";i:1721;s:11:\"health-blog\";i:519;s:14:\"healthy-living\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:37;s:4:\"blog\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:6:{i:2828;s:4:\"blog\";i:2825;s:8:\"coaching\";i:2787;s:11:\"gym-fitness\";i:2875;s:12:\"health-coach\";i:2834;s:10:\"healthcare\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2480;s:16:\"fitness-wellness\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-48307\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/health-fitness-08-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/health-fitness-08-1-600x2095.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/health-fitness-08/wp-json/wp/v2/pages/910\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/health-fitness-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48306\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/health-fitness-08-blogs.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/health-fitness-08-blogs-600x999.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/health-fitness-08/wp-json/wp/v2/pages/914\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/health-fitness-08/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48305\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/health-fitness-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/health-fitness-08-about-1-600x1437.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/health-fitness-08/wp-json/wp/v2/pages/912\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/health-fitness-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47918\";a:22:{s:5:\"title\";s:11:\"Travel Blog\";s:2:\"id\";i:47918;s:12:\"publish-date\";i:1603828787;s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2020/10/travel-08.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/travel-08-600x2232.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/travel-08-400x1488.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/travel-08\";s:20:\"astra-site-parent-id\";i:1682;s:15:\"astra-sites-tag\";a:5:{i:480;s:4:\"blog\";i:430;s:7:\"tourism\";i:427;s:6:\"travel\";i:750;s:11:\"travel-blog\";i:1683;s:14:\"travel-blogger\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:37;s:4:\"blog\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2828;s:4:\"blog\";i:2777;s:8:\"business\";i:2831;s:7:\"service\";i:2775;s:14:\"travel-tourism\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-47922\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2020/10/travel-08.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/travel-08-600x2232.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/travel-08/wp-json/wp/v2/pages/1718\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/travel-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47920\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/10/travel-08-blog-1.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/travel-08-blog-1-600x890.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/travel-08/wp-json/wp/v2/pages/1722\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/travel-08/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47919\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/travel-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/travel-08-about-1-600x1258.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/travel-08/wp-json/wp/v2/pages/1720\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/travel-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47921\";a:12:{s:5:\"title\";s:11:\"Destination\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/travel-08-destinations-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/travel-08-destinations-1-600x1525.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/travel-08/wp-json/wp/v2/pages/1724\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/travel-08/destination/\";s:15:\"astra-sites-tag\";a:2:{i:785;s:11:\"destination\";i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47942\";a:22:{s:5:\"title\";s:8:\"Pet Care\";s:2:\"id\";i:47942;s:12:\"publish-date\";i:1603828778;s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-care-08.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-care-08-600x1649.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-care-08-400x1099.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/pet-care-08\";s:20:\"astra-site-parent-id\";i:1685;s:15:\"astra-sites-tag\";a:7:{i:1688;s:8:\"pet-blog\";i:374;s:8:\"pet-care\";i:1686;s:13:\"pet-care-blog\";i:372;s:11:\"pet-minding\";i:371;s:11:\"pet-sitting\";i:373;s:12:\"pet-training\";i:1687;s:11:\"pet-walking\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:37;s:4:\"blog\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2809;s:10:\"pet-animal\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2472;s:4:\"pets\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-47945\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-care-08.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-care-08-600x1649.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/pet-care-08/wp-json/wp/v2/pages/1040\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/pet-care-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47943\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-care-08-about-me.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-care-08-about-me-600x748.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/pet-care-08/wp-json/wp/v2/pages/1042\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/pet-care-08/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47944\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-care-08-blog-2.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-care-08-blog-2-600x1095.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/pet-care-08/wp-json/wp/v2/pages/1044\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/pet-care-08/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(255,'astra-sites-and-pages-page-39','a:0:{}','no'),(256,'astra-sites-and-pages-page-40','a:0:{}','no'),(279,'WPLANG','','yes'),(280,'new_admin_email','admin@divyayogamonteregie.org','yes'),(281,'st-brizy-builder-flag','','yes'),(282,'bsf_analytics_optin','yes','no'),(365,'GTranslate','a:39:{s:11:\"pro_version\";s:0:\"\";s:18:\"enterprise_version\";s:0:\"\";s:16:\"wrapper_selector\";s:19:\".gtranslate_wrapper\";s:14:\"custom_domains\";s:0:\"\";s:19:\"custom_domains_data\";s:0:\"\";s:15:\"url_translation\";s:0:\"\";s:17:\"add_hreflang_tags\";s:0:\"\";s:17:\"email_translation\";s:0:\"\";s:23:\"email_translation_debug\";s:0:\"\";s:12:\"show_in_menu\";s:0:\"\";s:26:\"floating_language_selector\";s:2:\"no\";s:21:\"native_language_names\";s:0:\"\";s:10:\"enable_cdn\";s:0:\"\";s:23:\"detect_browser_language\";s:0:\"\";s:12:\"add_new_line\";i:1;s:21:\"select_language_label\";s:15:\"Select Language\";s:10:\"custom_css\";s:0:\"\";s:16:\"default_language\";s:2:\"es\";s:11:\"widget_look\";s:5:\"float\";s:9:\"flag_size\";i:24;s:10:\"flag_style\";s:2:\"2d\";s:10:\"globe_size\";i:60;s:11:\"globe_color\";s:7:\"#66aaff\";s:10:\"incl_langs\";a:10:{i:0;s:2:\"ar\";i:1;s:5:\"zh-CN\";i:2;s:2:\"nl\";i:3;s:2:\"en\";i:4;s:2:\"fr\";i:5;s:2:\"de\";i:6;s:2:\"it\";i:7;s:2:\"pt\";i:8;s:2:\"ru\";i:9;s:2:\"es\";}s:11:\"fincl_langs\";a:10:{i:0;s:2:\"ar\";i:1;s:5:\"zh-CN\";i:2;s:2:\"nl\";i:3;s:2:\"en\";i:4;s:2:\"fr\";i:5;s:2:\"de\";i:6;s:2:\"it\";i:7;s:2:\"pt\";i:8;s:2:\"ru\";i:9;s:2:\"es\";}s:9:\"alt_flags\";a:0:{}s:19:\"switcher_text_color\";s:4:\"#666\";s:20:\"switcher_arrow_color\";s:4:\"#666\";s:21:\"switcher_border_color\";s:4:\"#ccc\";s:25:\"switcher_background_color\";s:4:\"#fff\";s:32:\"switcher_background_shadow_color\";s:7:\"#efefef\";s:31:\"switcher_background_hover_color\";s:4:\"#fff\";s:19:\"dropdown_text_color\";s:4:\"#000\";s:20:\"dropdown_hover_color\";s:4:\"#fff\";s:25:\"dropdown_background_color\";s:4:\"#eee\";s:29:\"float_switcher_open_direction\";s:3:\"top\";s:23:\"switcher_open_direction\";s:3:\"top\";s:14:\"language_codes\";s:320:\"af,sq,am,ar,hy,az,eu,be,bn,bs,bg,ca,ceb,ny,zh-CN,zh-TW,co,hr,cs,da,nl,en,eo,et,tl,fi,fr,fy,gl,ka,de,el,gu,ht,ha,haw,iw,hi,hmn,hu,is,ig,id,ga,it,ja,jw,kn,kk,km,ko,ku,ky,lo,la,lv,lt,lb,mk,mg,ms,ml,mt,mi,mr,mn,my,ne,no,ps,fa,pl,pt,pa,ro,ru,sm,gd,sr,st,sn,sd,si,sk,sl,so,es,su,sw,sv,tg,ta,te,th,tr,uk,ur,uz,vi,cy,xh,yi,yo,zu\";s:15:\"language_codes2\";s:320:\"af,sq,am,ar,hy,az,eu,be,bn,bs,bg,ca,ceb,ny,zh-CN,zh-TW,co,hr,cs,da,nl,en,eo,et,tl,fi,fr,fy,gl,ka,de,el,gu,ht,ha,haw,iw,hi,hmn,hu,is,ig,id,ga,it,ja,jw,kn,kk,km,ko,ku,ky,lo,la,lv,lt,lb,mk,mg,ms,ml,mt,mi,mr,mn,my,ne,no,ps,fa,pl,pt,pa,ro,ru,sm,gd,sr,st,sn,sd,si,sk,sl,so,es,su,sw,sv,tg,ta,te,th,tr,uk,ur,uz,vi,cy,xh,yi,yo,zu\";}','yes'),(366,'widget_gtranslate','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(367,'gtranslate_admin_notice','a:2:{s:15:\"two_week_review\";a:2:{s:5:\"start\";s:8:\"5/5/2023\";s:3:\"int\";i:5;}s:12:\"upgrade_tips\";a:2:{s:5:\"start\";s:8:\"5/2/2023\";s:3:\"int\";i:2;}}','yes'),(301,'eael_admin_menu_notice','5','no'),(298,'wpdeveloper_plugins_data','a:1:{s:25:\"essential_adons_elementor\";a:3:{s:16:\"notice_will_show\";a:2:{s:6:\"opt_in\";i:1733562918;s:6:\"review\";i:1728443656;}s:4:\"time\";i:1686766887;s:7:\"version\";s:5:\"5.8.0\";}}','yes'),(299,'eael_version','5.8.0','yes'),(302,'elementor_version','3.13.4','yes'),(303,'elementor_install_history','a:4:{s:6:\"3.12.2\";i:1682816380;s:6:\"3.13.2\";i:1684002485;s:6:\"3.13.3\";i:1684854326;s:6:\"3.13.4\";i:1686273428;}','yes'),(304,'elementor_events_db_version','1.0.0','no'),(306,'elementor_onboarded','1','yes'),(307,'_elementor_installed_time','1682816458','yes'),(309,'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'),(310,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes');
INSERT INTO `wpjv_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (311,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:27:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}s:4:\"sets\";a:5:{i:0;s:11:\"Boxing Club\";i:1;s:19:\"Business Consultant\";i:2;s:16:\"Marketing Agency\";i:3;s:9:\"Wireframe\";i:4;s:15:\"Workshop Center\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}s:2:\"lb\";a:1:{s:10:\"categories\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}}}s:10:\"categories\";a:27:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:19:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:19:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:19:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:19:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:19:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:19:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:19:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:19:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:19:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:19:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:19:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:19:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:19:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:19:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:19:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:19:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:19:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:19:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:19:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:19:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:19:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:19:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:19:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:19:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:19:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:19:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:19:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:19:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:19:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:19:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:19:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:19:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:19:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:19:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:19:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:19:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:19:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:19:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:19:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:19:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:19:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:19:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:19:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:19:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:19:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:19:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:19:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:19:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:19:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:19:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:19:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:19:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:19:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:19:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:19:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:19:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:19:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:19:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:19:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:19:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:19:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:19:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:19:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:19:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:19:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:19:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:19:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:19:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:19:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:19:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:19:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:19:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:19:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:19:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:19:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:19:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:19:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:19:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:19:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:19:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:19:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:19:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:19:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:19:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:19:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:19:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:19:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:19:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:19:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:19:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:19:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:19:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:19:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:19:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:19:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:19:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:19:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:19:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:19:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:19:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:19:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:19:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:19:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:19:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:19:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:19:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:19:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:19:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:19:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:19:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:19:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:19:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:19:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:19:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:19:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:19:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:19:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:19:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:19:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:19:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:19:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:19:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:19:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:19:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:19:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:19:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:19:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:19:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:19:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:19:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details  | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:19:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:19:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:19:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:19:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:19:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:19:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:19:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:19:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:19:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:19:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:19:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:19:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:19:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:19:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic |  Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:19:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:19:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:19:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:19:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic |  Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:19:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:19:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:19:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:19:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:19:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:19:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:19:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:19:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:19:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:19:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:19:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:19:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:19:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:19:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:19:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:19:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:19:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:19:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:19:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:19:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:19:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:19:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:19:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:19:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:19:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:19:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:19:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:19:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:19:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:19:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:19:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:19:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:19:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:19:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:19:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:19:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:19:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:19:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:19:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:19:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:19:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:19:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:19:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:19:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:19:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:19:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:19:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:19:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:19:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:19:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:19:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:19:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:19:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:19:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:19:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:19:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:19:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:19:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:19:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:19:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:19:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:19:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:19:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:19:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:19:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:19:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:19:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:19:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:19:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:19:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:19:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:19:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:19:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:19:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:19:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:19:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:19:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:19:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:19:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:19:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:19:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:19:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:19:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:19:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:19:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:19:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:19:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:19:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:19:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:19:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:19:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:19:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:19:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:19:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:19:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:19:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:19:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:19:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:19:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:19:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:19:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:19:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:19:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:19:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:19:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:19:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:19:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:19:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:19:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:19:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:19:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:19:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:19:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:19:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:19:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:19:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:19:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:19:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:19:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:19:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:19:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:19:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:19:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:19:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:19:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:19:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:19:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:19:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:19:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:19:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:19:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:19:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:19:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:19:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:19:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:19:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:19:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:19:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:19:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:19:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:19:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:19:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:19:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:19:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:19:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:19:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:19:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:19:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:19:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:19:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:19:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:19:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:19:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:19:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:19:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:19:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:19:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:19:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:19:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:19:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:19:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:19:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:19:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:19:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:19:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:19:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:19:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:19:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:19:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:19:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:19:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:19:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:19:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:19:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:19:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:19:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:19:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:19:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:19:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:19:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:19:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:19:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:19:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:19:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:19:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:19:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:19:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:19:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:19:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:19:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:19:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:19:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:19:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:19:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:19:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:19:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:19:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:19:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:19:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:19:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:19:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:19:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:19:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:19:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:19:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:19:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:19:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:19:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:19:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:19:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:19:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:19:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:19:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:19:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:19:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:19:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:19:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:19:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:19:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:19:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:19:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:19:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:19:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:19:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:19:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:19:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:19:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:19:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:19:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:19:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:19:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:19:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:19:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:19:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:19:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:19:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:19:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:19:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:19:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:19:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:19:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:19:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:19:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:19:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:19:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:19:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:19:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:19:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:19:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:19:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:19:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:19:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:19:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:19:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:19:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:19:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:19:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:19:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:19:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:19:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:19:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:19:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:19:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:19:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:19:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:19:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:19:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:19:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:19:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:19:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:19:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:19:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:19:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:19:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:19:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:19:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:19:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:19:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:19:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:19:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:19:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:19:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:19:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:19:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:19:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:19:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:19:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:19:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:19:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:19:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:19:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:19:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:19:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:19:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:19:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:19:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:19:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:19:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:19:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:19:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:19:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:19:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:19:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:19:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:19:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:19:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:19:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:19:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:19:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:19:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:19:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:19:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:19:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:19:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:19:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:19:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:19:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:19:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:19:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:19:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:19:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:19:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:19:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:19:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:19:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:19:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:19:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:19:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:19:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:19:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:19:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:19:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:19:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:19:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:19:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:19:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:19:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:19:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:19:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:19:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:19:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:19:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:19:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:19:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:19:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:19:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:19:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:19:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:19:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:19:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:19:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:19:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:19:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:19:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:19:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:19:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:19:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:19:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:19:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:19:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:19:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:19:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:19:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:19:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:19:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:19:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:19:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:19:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:19:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:19:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:19:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:19:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:19:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:19:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:19:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:19:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:19:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:19:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:19:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:19:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:19:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:19:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:19:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:19:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:19:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:19:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:19:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:19:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:19:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:19:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:19:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:19:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:19:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:19:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:19:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:19:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:19:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:19:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:19:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:19:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:19:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:19:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:19:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:19:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:19:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:19:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:19:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:19:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:19:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:19:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:19:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:19:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:19:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:19:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:19:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:19:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:19:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:19:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:19:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:19:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:19:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:19:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:19:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:19:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:19:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:19:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:19:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:19:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:19:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:19:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:19:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:19:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:19:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:19:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:19:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:19:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:19:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:19:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:19:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:19:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:19:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:19:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:19:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:19:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:19:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:19:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:19:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:19:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:19:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:19:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:19:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:19:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:19:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:19:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:19:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:19:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:19:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:19:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:19:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:19:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:19:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:19:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:19:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:19:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:19:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:19:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:19:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:19:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:19:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:19:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:19:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:19:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:19:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:19:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:19:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:19:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:400;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:19:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:403;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:19:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:19:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:19:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:19:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:19:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:19:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:19:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:19:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:19:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:19:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:19:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:19:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:19:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:19:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:19:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:19:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:19:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:19:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:19:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:19:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:19:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:19:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:19:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:19:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:19:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:19:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:19:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:19:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:19:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:19:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:19:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:461;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:19:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:19:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:19:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:19:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:19:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:19:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:19:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:19:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:19:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:19:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:19:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:483;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:19:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:484;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:19:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:487;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:19:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:489;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:19:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:491;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:19:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:19:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:19:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:19:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:19:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:500;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:19:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:503;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:19:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:504;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:19:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:507;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:19:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:509;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:19:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:511;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:19:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:513;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:19:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:515;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:19:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:517;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:19:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:519;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:19:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:521;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:19:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:523;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:19:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:524;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:19:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:527;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:19:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:529;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:19:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:530;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:19:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:532;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:19:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:534;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:19:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:537;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:19:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:539;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:19:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:540;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:19:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:543;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:19:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:545;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:19:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:547;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:19:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:549;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:19:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:551;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:19:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:553;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:19:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:554;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:19:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:557;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:19:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:559;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:19:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:19:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:19:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:19:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:19:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:19:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:19:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:19:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:19:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:19:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:570;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:19:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:571;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:19:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:572;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:19:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:573;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:19:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:574;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:19:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:575;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:19:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:576;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:19:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:577;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:19:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:578;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:19:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:579;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:19:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:580;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:19:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:581;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:19:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:582;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:19:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:583;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:19:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:584;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:19:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:585;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:19:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:586;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:19:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:587;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:19:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:588;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:19:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:589;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:19:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:590;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:19:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:591;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:19:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:592;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:19:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:593;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:19:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:594;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:19:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:595;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:19:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:596;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:19:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:597;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:19:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:598;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:19:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:599;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:19:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:600;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:19:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:601;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:19:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:602;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:19:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:603;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:19:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:604;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:19:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:605;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:19:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:610;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:751;a:19:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:611;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:19:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:19:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:19:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:19:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:19:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:19:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:19:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:19:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:19:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:616;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:19:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:617;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:19:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:618;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:19:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:619;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:19:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:620;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:19:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:621;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:19:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:622;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:19:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:623;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:19:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:624;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:19:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:625;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:19:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:626;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:19:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:627;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:19:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:628;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:19:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:629;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:19:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:630;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:19:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:631;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:19:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:632;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:19:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:633;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:19:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:634;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:19:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:635;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:19:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:636;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:19:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:637;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:19:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:638;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:19:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:639;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:19:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:640;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:19:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:641;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:19:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:642;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:19:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:643;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:19:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:644;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:19:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:645;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:19:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:646;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:19:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:647;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:19:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:648;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:19:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:649;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:19:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:650;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:19:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:651;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:19:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:652;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:19:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:653;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:19:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:654;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:19:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:655;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:19:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:656;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:19:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:657;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:19:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:658;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:19:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:659;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:19:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:660;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:19:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:661;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:19:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:662;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:19:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:663;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:19:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:664;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:19:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:665;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:19:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:19:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:19:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:19:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:19:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:19:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:671;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:19:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:19:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:19:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:19:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:19:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:19:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:19:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','off'),(312,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:69:\"Elementor\'s 2023 Black Friday Sale: The Deals You\'ve Been Waiting For\";s:7:\"excerpt\";s:152:\"Why settle for less when you can unlock the full power of Elementor? This Black Friday, we\'re offering deals so good, they\'ll make you do a double-take.\";s:7:\"created\";i:1700561623;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:130:\"https://elementor.com/blog/black-friday-cyber-monday-2023/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:86:\"New in Elementor 3.17 - Enhance Visitor Experience With AJAX, Faster Websites and More\";s:7:\"excerpt\";s:173:\"Elementor 3.17 introduces AJAX Loading for Loop Grids, improves image loading speed, adds the ability to access past prompts and content generated by Elementor AI, and more.\";s:7:\"created\";i:1698835967;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:150:\"https://elementor.com/blog/elementor-317-loop-grid-ajax-loading-rating-widget/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:73:\"Elementor 3.16 - Faster Performance, Flexible Design, and more Accessible\";s:7:\"excerpt\";s:210:\"Elementor 3.16 activates Flexbox Containers by default for new websites, improves site loading speed with performance enhancements, increases accessibility for visitors who use assistive technologies, and more.\";s:7:\"created\";i:1695134049;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:152:\"https://elementor.com/blog/316-faster-performance-flexible-design-accessibility/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','off'),(315,'ast-block-templates-last-export-checksums-latest','XySINs3hUOrA','no'),(316,'ast-block-templates-blocks-2','a:100:{s:8:\"id-55965\";a:10:{s:5:\"title\";s:8:\"About 20\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/06/about-20g.jpg\";s:19:\"thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/06/about-20g.jpg\";s:3:\"url\";s:48:\"https://websitedemos.net/astra-blocks/about-20g/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-55960\";a:10:{s:5:\"title\";s:8:\"About 19\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/07/about-19g.jpg\";s:19:\"thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/07/about-19g.jpg\";s:3:\"url\";s:48:\"https://websitedemos.net/astra-blocks/about-19g/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-55959\";a:10:{s:5:\"title\";s:8:\"About 18\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/07/about-18g.jpg\";s:19:\"thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/07/about-18g.jpg\";s:3:\"url\";s:48:\"https://websitedemos.net/astra-blocks/about-18g/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-55958\";a:10:{s:5:\"title\";s:8:\"About 17\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/07/about-17g.jpg\";s:19:\"thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/07/about-17g.jpg\";s:3:\"url\";s:48:\"https://websitedemos.net/astra-blocks/about-17g/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-55952\";a:10:{s:5:\"title\";s:8:\"About 16\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/07/about-16g.jpg\";s:19:\"thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/07/about-16g.jpg\";s:3:\"url\";s:48:\"https://websitedemos.net/astra-blocks/about-16g/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-55951\";a:10:{s:5:\"title\";s:8:\"About 15\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/07/about-15g.jpg\";s:19:\"thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/07/about-15g.jpg\";s:3:\"url\";s:48:\"https://websitedemos.net/astra-blocks/about-15g/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-55949\";a:10:{s:5:\"title\";s:8:\"About 14\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/07/about-14g.jpg\";s:19:\"thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/07/about-14g.jpg\";s:3:\"url\";s:48:\"https://websitedemos.net/astra-blocks/about-14g/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-55102\";a:10:{s:5:\"title\";s:14:\"Single Quote 4\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/single-quote-4g.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/single-quote-4g.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-4g/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-55097\";a:10:{s:5:\"title\";s:14:\"Single Quote 3\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/single-quote-3g.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/single-quote-3g.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-3g/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-55086\";a:10:{s:5:\"title\";s:14:\"Single Quote 2\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/single-quote-2g.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/single-quote-2g.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-2g/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-55081\";a:10:{s:5:\"title\";s:14:\"Single Quote 1\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/single-quote-1g.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/single-quote-1g.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-1g/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-54165\";a:10:{s:5:\"title\";s:9:\"Clients 1\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/clients-1g.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/clients-1g.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/clients-1g/\";s:3:\"tag\";a:1:{i:1090;s:7:\"clients\";}s:8:\"category\";i:1091;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-55983\";a:10:{s:5:\"title\";s:8:\"About 26\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/07/about-26g.jpg\";s:19:\"thumbnail-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2021/07/about-26g.jpg\";s:3:\"url\";s:48:\"https://websitedemos.net/astra-blocks/about-26g/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-55987\";a:10:{s:5:\"title\";s:17:\"Call To Action 10\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/06/call-to-action-10g.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/06/call-to-action-10g.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/call-to-action-10g/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56036\";a:10:{s:5:\"title\";s:5:\"FAQ 9\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/06/faq-9g.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/06/faq-9g.jpg\";s:3:\"url\";s:45:\"https://websitedemos.net/astra-blocks/faq-9g/\";s:3:\"tag\";a:1:{i:822;s:3:\"faq\";}s:8:\"category\";i:1001;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56035\";a:10:{s:5:\"title\";s:5:\"FAQ 8\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/06/faq-8g.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/06/faq-8g.jpg\";s:3:\"url\";s:45:\"https://websitedemos.net/astra-blocks/faq-8g/\";s:3:\"tag\";a:1:{i:822;s:3:\"faq\";}s:8:\"category\";i:1001;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56034\";a:10:{s:5:\"title\";s:5:\"FAQ 7\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/06/faq-7g.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/06/faq-7g.jpg\";s:3:\"url\";s:45:\"https://websitedemos.net/astra-blocks/faq-7g/\";s:3:\"tag\";a:1:{i:822;s:3:\"faq\";}s:8:\"category\";i:1001;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56033\";a:10:{s:5:\"title\";s:5:\"FAQ 6\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/06/faq-6g.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/06/faq-6g.jpg\";s:3:\"url\";s:45:\"https://websitedemos.net/astra-blocks/faq-6g/\";s:3:\"tag\";a:1:{i:822;s:3:\"faq\";}s:8:\"category\";i:1001;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56020\";a:10:{s:5:\"title\";s:10:\"Clients 10\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/clients-10g.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/clients-10g.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/clients-10g/\";s:3:\"tag\";a:1:{i:1090;s:7:\"clients\";}s:8:\"category\";i:1091;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56019\";a:10:{s:5:\"title\";s:9:\"Clients 9\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/06/clients-9g.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/06/clients-9g.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/clients-9g/\";s:3:\"tag\";a:1:{i:1090;s:7:\"clients\";}s:8:\"category\";i:1091;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56018\";a:10:{s:5:\"title\";s:9:\"Clients 8\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/06/clients-8g.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/06/clients-8g.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/clients-8g/\";s:3:\"tag\";a:1:{i:1090;s:7:\"clients\";}s:8:\"category\";i:1091;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56021\";a:10:{s:5:\"title\";s:9:\"Clients 7\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/06/clients-7g.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/06/clients-7g.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/clients-7g/\";s:3:\"tag\";a:1:{i:1090;s:7:\"clients\";}s:8:\"category\";i:1091;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56016\";a:10:{s:5:\"title\";s:9:\"Clients 6\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/06/clients-6g.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/06/clients-6g.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/clients-6g/\";s:3:\"tag\";a:1:{i:1090;s:7:\"clients\";}s:8:\"category\";i:1091;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56008\";a:10:{s:5:\"title\";s:17:\"Call To Action 17\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/06/call-to-action-17g.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/06/call-to-action-17g.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/call-to-action-17g/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56009\";a:10:{s:5:\"title\";s:17:\"Call To Action 18\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/06/call-to-action-18g.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/06/call-to-action-18g.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/call-to-action-18g/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56007\";a:10:{s:5:\"title\";s:17:\"Call To Action 16\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/06/call-to-action-16g.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/06/call-to-action-16g.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/call-to-action-16g/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56001\";a:10:{s:5:\"title\";s:17:\"Call To Action 13\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/06/call-to-action-13g.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/06/call-to-action-13g.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/call-to-action-13g/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56002\";a:10:{s:5:\"title\";s:17:\"Call To Action 14\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/06/call-to-action-14g.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/06/call-to-action-14g.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/call-to-action-14g/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56003\";a:10:{s:5:\"title\";s:17:\"Call To Action 15\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/06/call-to-action-15g.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/06/call-to-action-15g.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/call-to-action-15g/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-55989\";a:10:{s:5:\"title\";s:17:\"Call To Action 12\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/06/call-to-action-12g.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/06/call-to-action-12g.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/call-to-action-12g/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-55988\";a:10:{s:5:\"title\";s:17:\"Call To Action 11\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/06/call-to-action-11g.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/06/call-to-action-11g.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/call-to-action-11g/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56519\";a:10:{s:5:\"title\";s:11:\"Services 18\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/services-18.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/services-18.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/services-18g/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56234\";a:10:{s:5:\"title\";s:7:\"Hero 11\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/07/hero-11w.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/07/hero-11w.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/hero-11w/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56196\";a:10:{s:5:\"title\";s:10:\"Contact 10\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/06/contact-5w.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/06/contact-5w.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/contact-10g/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56451\";a:10:{s:5:\"title\";s:11:\"Portfolio 8\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/portfolio-8.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/portfolio-8.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/portfolio-8g/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56455\";a:10:{s:5:\"title\";s:11:\"Portfolio 7\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/portfolio-7.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/portfolio-7.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/portfolio-7g/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56449\";a:10:{s:5:\"title\";s:11:\"Portfolio 6\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/portfolio-6.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/portfolio-6.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/portfolio-6g/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56437\";a:10:{s:5:\"title\";s:17:\"Subscribe Form 12\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/subscribe-form-12.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/subscribe-form-12.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/subscribe-form-12g/\";s:3:\"tag\";a:1:{i:1956;s:14:\"subscribe-form\";}s:8:\"category\";i:1953;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56436\";a:10:{s:5:\"title\";s:17:\"Subscribe Form 11\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/subscribe-form-11.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/subscribe-form-11.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/subscribe-form-11g/\";s:3:\"tag\";a:1:{i:1956;s:14:\"subscribe-form\";}s:8:\"category\";i:1953;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56435\";a:10:{s:5:\"title\";s:17:\"Subscribe Form 10\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/subscribe-form-10.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/subscribe-form-10.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/subscribe-form-10g/\";s:3:\"tag\";a:1:{i:1956;s:14:\"subscribe-form\";}s:8:\"category\";i:1953;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56421\";a:10:{s:5:\"title\";s:16:\"Subscribe Form 9\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/06/subscribe-form-9.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/06/subscribe-form-9.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/subscribe-form-9g/\";s:3:\"tag\";a:1:{i:1956;s:14:\"subscribe-form\";}s:8:\"category\";i:1953;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56423\";a:10:{s:5:\"title\";s:20:\"Location And Hours 6\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/06/location-hours-6.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/06/location-hours-6.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/location-and-hours-6g/\";s:3:\"tag\";a:1:{i:1957;s:18:\"location-and-hours\";}s:8:\"category\";i:1950;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56424\";a:10:{s:5:\"title\";s:20:\"Location And Hours 7\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/06/location-hours-7.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/06/location-hours-7.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/location-and-hours-7g/\";s:3:\"tag\";a:1:{i:1957;s:18:\"location-and-hours\";}s:8:\"category\";i:1950;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56425\";a:10:{s:5:\"title\";s:20:\"Location And Hours 8\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/06/location-hours-8.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/06/location-hours-8.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/location-and-hours-8g/\";s:3:\"tag\";a:1:{i:1957;s:18:\"location-and-hours\";}s:8:\"category\";i:1950;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56426\";a:10:{s:5:\"title\";s:20:\"Location And Hours 9\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/06/location-hours-9.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/06/location-hours-9.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/location-and-hours-9g/\";s:3:\"tag\";a:1:{i:1957;s:18:\"location-and-hours\";}s:8:\"category\";i:1950;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56422\";a:10:{s:5:\"title\";s:21:\"Location And Hours 10\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/location-hours-10.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/location-hours-10.jpg\";s:3:\"url\";s:61:\"https://websitedemos.net/astra-blocks/location-and-hours-10g/\";s:3:\"tag\";a:1:{i:1957;s:18:\"location-and-hours\";}s:8:\"category\";i:1950;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56420\";a:10:{s:5:\"title\";s:16:\"Subscribe Form 8\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/06/subscribe-form-8.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/06/subscribe-form-8.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/subscribe-form-8g/\";s:3:\"tag\";a:1:{i:1956;s:14:\"subscribe-form\";}s:8:\"category\";i:1953;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56419\";a:10:{s:5:\"title\";s:16:\"Subscribe Form 7\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/06/subscribe-form-7.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/06/subscribe-form-7.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/subscribe-form-7g/\";s:3:\"tag\";a:1:{i:1956;s:14:\"subscribe-form\";}s:8:\"category\";i:1953;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56403\";a:10:{s:5:\"title\";s:7:\"Team 16\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/team-16.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/team-16.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/team-16g/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56396\";a:10:{s:5:\"title\";s:7:\"Team 15\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/team-15.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/team-15.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/team-15g/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56388\";a:10:{s:5:\"title\";s:7:\"Team 14\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/team-14.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/team-14.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/team-14g/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56452\";a:10:{s:5:\"title\";s:11:\"Portfolio 9\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/portfolio-9.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/portfolio-9.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/portfolio-9g/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56453\";a:10:{s:5:\"title\";s:12:\"Portfolio 10\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/06/portfolio-10.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/06/portfolio-10.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/portfolio-10g/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56518\";a:10:{s:5:\"title\";s:11:\"Services 17\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/services-17.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/services-17.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/services-17g/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56517\";a:10:{s:5:\"title\";s:11:\"Services 16\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/services-16.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/services-16.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/services-16g/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56510\";a:10:{s:5:\"title\";s:11:\"Services 14\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/services-14.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/services-14.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/services-14g/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56511\";a:10:{s:5:\"title\";s:11:\"Services 15\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/services-15.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/services-15.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/services-15g/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56509\";a:10:{s:5:\"title\";s:11:\"Services 13\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/services-13.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/services-13.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/services-13g/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56504\";a:10:{s:5:\"title\";s:11:\"Services 12\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/services-12.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/services-12.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/services-12g/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56503\";a:10:{s:5:\"title\";s:11:\"Services 11\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/services-11.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/services-11.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/services-11g/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56502\";a:10:{s:5:\"title\";s:11:\"Services 10\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/services-10.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/06/services-10.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/services-10g/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56497\";a:10:{s:5:\"title\";s:14:\"Single Quote 8\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/single-quote-8g.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/single-quote-8g.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-8g/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56490\";a:10:{s:5:\"title\";s:14:\"Single Quote 7\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/single-quote-7g.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/single-quote-7g.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-7g/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56489\";a:10:{s:5:\"title\";s:14:\"Single Quote 6\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/single-quote-6g.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/single-quote-6g.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-6g/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56488\";a:10:{s:5:\"title\";s:14:\"Single Quote 5\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/single-quote-5g.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/single-quote-5g.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/single-quote-5g/\";s:3:\"tag\";a:1:{i:1423;s:12:\"single-quote\";}s:8:\"category\";i:1424;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56482\";a:10:{s:5:\"title\";s:13:\"Statistics 10\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/06/statistics-10g.jpg\";s:19:\"thumbnail-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/06/statistics-10g.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/statistics-10g/\";s:3:\"tag\";a:1:{i:924;s:10:\"statistics\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56481\";a:10:{s:5:\"title\";s:12:\"Statistics 9\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/06/statistics-9g.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/06/statistics-9g.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/statistics-9g/\";s:3:\"tag\";a:1:{i:924;s:10:\"statistics\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56474\";a:10:{s:5:\"title\";s:12:\"Statistics 8\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/06/statistics-8g.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/06/statistics-8g.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/statistics-8g/\";s:3:\"tag\";a:1:{i:924;s:10:\"statistics\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56473\";a:10:{s:5:\"title\";s:12:\"Statistics 7\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/06/statistics-7g.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/06/statistics-7g.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/statistics-7g/\";s:3:\"tag\";a:1:{i:924;s:10:\"statistics\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56472\";a:10:{s:5:\"title\";s:12:\"Statistics 6\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/06/statistics-6g.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/06/statistics-6g.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/statistics-6g/\";s:3:\"tag\";a:1:{i:924;s:10:\"statistics\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56376\";a:10:{s:5:\"title\";s:7:\"Team 13\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/team-13.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/team-13.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/team-13g/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56375\";a:10:{s:5:\"title\";s:7:\"Team 12\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/team-12.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/team-12.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/team-12g/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56235\";a:10:{s:5:\"title\";s:7:\"Hero 12\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/07/hero-12.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/07/hero-12.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/hero-12w/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56297\";a:10:{s:5:\"title\";s:14:\"Main Banner 17\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/07/main-banner-17g.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/07/main-banner-17g.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/main-banner-17g/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56287\";a:10:{s:5:\"title\";s:15:\"Testimonials 16\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/testimonials-16.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/testimonials-16.jpg\";s:3:\"url\";s:55:\"https://websitedemos.net/astra-blocks/testimonials-16g/\";s:3:\"tag\";a:1:{i:2238;s:12:\"testimonials\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56296\";a:10:{s:5:\"title\";s:14:\"Main Banner 16\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/07/main-banner-16g.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/07/main-banner-16g.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/main-banner-16g/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56295\";a:10:{s:5:\"title\";s:14:\"Main Banner 15\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/07/main-banner-15g.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/07/main-banner-15g.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/main-banner-15g/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56286\";a:10:{s:5:\"title\";s:15:\"Testimonials 15\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/testimonials-15.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/testimonials-15.jpg\";s:3:\"url\";s:55:\"https://websitedemos.net/astra-blocks/testimonials-15g/\";s:3:\"tag\";a:1:{i:2238;s:12:\"testimonials\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56285\";a:10:{s:5:\"title\";s:15:\"Testimonials 14\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/testimonials-14.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/testimonials-14.jpg\";s:3:\"url\";s:55:\"https://websitedemos.net/astra-blocks/testimonials-14g/\";s:3:\"tag\";a:1:{i:2238;s:12:\"testimonials\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56260\";a:10:{s:5:\"title\";s:15:\"Testimonials 13\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/testimonials-13.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/testimonials-13.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/testimonials-13g-2/\";s:3:\"tag\";a:1:{i:2238;s:12:\"testimonials\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56265\";a:10:{s:5:\"title\";s:14:\"Main Banner 14\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/07/main-banner-14g.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/07/main-banner-14g.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/main-banner-14g/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56264\";a:10:{s:5:\"title\";s:14:\"Main Banner 13\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/07/main-banner-13g.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/07/main-banner-13g.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/main-banner-13g/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56263\";a:10:{s:5:\"title\";s:14:\"Main Banner 12\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/07/main-banner-12g.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/07/main-banner-12g.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/main-banner-12g/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56262\";a:10:{s:5:\"title\";s:14:\"Main Banner 11\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/07/main-banner-11g.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/07/main-banner-11g.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/main-banner-11g/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56259\";a:10:{s:5:\"title\";s:15:\"Testimonials 12\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/testimonials-12.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/testimonials-12.jpg\";s:3:\"url\";s:55:\"https://websitedemos.net/astra-blocks/testimonials-12g/\";s:3:\"tag\";a:1:{i:2238;s:12:\"testimonials\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56258\";a:10:{s:5:\"title\";s:15:\"Testimonials 11\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/testimonials-11.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/testimonials-11.jpg\";s:3:\"url\";s:55:\"https://websitedemos.net/astra-blocks/testimonials-11g/\";s:3:\"tag\";a:1:{i:2238;s:12:\"testimonials\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56261\";a:10:{s:5:\"title\";s:14:\"Main Banner 10\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/07/main-banner-10g.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/07/main-banner-10g.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/main-banner-10g/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56298\";a:10:{s:5:\"title\";s:14:\"Main Banner 18\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/07/main-banner-18g.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/07/main-banner-18g.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/main-banner-18g/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56323\";a:10:{s:5:\"title\";s:15:\"Testimonials 17\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/testimonials-17.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/testimonials-17.jpg\";s:3:\"url\";s:55:\"https://websitedemos.net/astra-blocks/testimonials-17g/\";s:3:\"tag\";a:1:{i:2238;s:12:\"testimonials\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56369\";a:10:{s:5:\"title\";s:17:\"Image and Text 18\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/image-and-text-18.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/image-and-text-18.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/image-and-text-18g/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56368\";a:10:{s:5:\"title\";s:17:\"Image and Text 17\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/image-and-text-17.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/image-and-text-17.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/image-and-text-17g/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56367\";a:10:{s:5:\"title\";s:17:\"Image and Text 16\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/image-and-text-16.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/image-and-text-16.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/image-and-text-16g/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56361\";a:10:{s:5:\"title\";s:7:\"Team 11\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/team-11.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/team-11.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/team-11g/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56360\";a:10:{s:5:\"title\";s:7:\"Team 10\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/team-10.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/06/team-10.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/team-10g/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56359\";a:10:{s:5:\"title\";s:6:\"Team 9\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/06/team-9.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/06/team-9.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-9g/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56330\";a:10:{s:5:\"title\";s:17:\"Image and Text 15\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/image-and-text-15.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/image-and-text-15.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/image-and-text-15g/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56329\";a:10:{s:5:\"title\";s:17:\"Image and Text 14\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/image-and-text-14.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/image-and-text-14.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/image-and-text-14g/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56327\";a:10:{s:5:\"title\";s:17:\"Image and Text 12\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/image-and-text-12.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/image-and-text-12.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/image-and-text-12g/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56370\";a:10:{s:5:\"title\";s:17:\"Image and Text 19\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/image-and-text-19.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/image-and-text-19.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/image-and-text-19g/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56328\";a:10:{s:5:\"title\";s:17:\"Image and Text 13\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/image-and-text-13.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/image-and-text-13.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/image-and-text-13g/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}}','no'),(317,'ast-block-templates-blocks-3','a:100:{s:8:\"id-56326\";a:10:{s:5:\"title\";s:17:\"Image and Text 11\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/image-and-text-11.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/image-and-text-11.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/image-and-text-11g/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56336\";a:10:{s:5:\"title\";s:15:\"Testimonials 20\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/testimonials-20.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/testimonials-20.jpg\";s:3:\"url\";s:55:\"https://websitedemos.net/astra-blocks/testimonials-20g/\";s:3:\"tag\";a:1:{i:2238;s:12:\"testimonials\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56325\";a:10:{s:5:\"title\";s:15:\"Testimonials 19\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/testimonials-19.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/testimonials-19.jpg\";s:3:\"url\";s:55:\"https://websitedemos.net/astra-blocks/testimonials-19g/\";s:3:\"tag\";a:1:{i:2238;s:12:\"testimonials\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56324\";a:10:{s:5:\"title\";s:15:\"Testimonials 18\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/testimonials-18.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/06/testimonials-18.jpg\";s:3:\"url\";s:55:\"https://websitedemos.net/astra-blocks/testimonials-18g/\";s:3:\"tag\";a:1:{i:2238;s:12:\"testimonials\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-56371\";a:10:{s:5:\"title\";s:17:\"Image and Text 20\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/image-and-text-20.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/06/image-and-text-20.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/image-and-text-20g/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-54170\";a:10:{s:5:\"title\";s:9:\"Clients 2\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/clients-2g.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/clients-2g.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/clients-2g/\";s:3:\"tag\";a:1:{i:1090;s:7:\"clients\";}s:8:\"category\";i:1091;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-54167\";a:10:{s:5:\"title\";s:9:\"Clients 3\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/clients-3g.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/clients-3g.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/clients-3g/\";s:3:\"tag\";a:1:{i:1090;s:7:\"clients\";}s:8:\"category\";i:1091;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-54168\";a:10:{s:5:\"title\";s:9:\"Clients 4\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/clients-4g.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/clients-4g.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/clients-4g/\";s:3:\"tag\";a:1:{i:1090;s:7:\"clients\";}s:8:\"category\";i:1091;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-54120\";a:10:{s:5:\"title\";s:12:\"Statistics 1\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/statistics-1g.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/statistics-1g.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/statistics-1g/\";s:3:\"tag\";a:1:{i:924;s:10:\"statistics\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-54121\";a:10:{s:5:\"title\";s:12:\"Statistics 2\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/statistics-2g.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/statistics-2g.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/statistics-2g/\";s:3:\"tag\";a:1:{i:924;s:10:\"statistics\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-54122\";a:10:{s:5:\"title\";s:12:\"Statistics 3\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/statistics-3g.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/statistics-3g.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/statistics-3g/\";s:3:\"tag\";a:1:{i:924;s:10:\"statistics\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-54123\";a:10:{s:5:\"title\";s:12:\"Statistics 4\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/statistics-4g.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/statistics-4g.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/statistics-4g/\";s:3:\"tag\";a:1:{i:924;s:10:\"statistics\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-54108\";a:10:{s:5:\"title\";s:14:\"Testimonials 7\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/testimonial-1gb.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/testimonial-1gb.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-1g/\";s:3:\"tag\";a:1:{i:2238;s:12:\"testimonials\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-54102\";a:10:{s:5:\"title\";s:14:\"Testimonials 8\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/testimonial-2gb.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/testimonial-2gb.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-2g/\";s:3:\"tag\";a:1:{i:2238;s:12:\"testimonials\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-54099\";a:10:{s:5:\"title\";s:14:\"Testimonials 9\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/testimonial-3gb.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/testimonial-3gb.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-3g/\";s:3:\"tag\";a:1:{i:2238;s:12:\"testimonials\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-54083\";a:10:{s:5:\"title\";s:15:\"Testimonials 10\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/testimonial-4gb.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/testimonial-4gb.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/testimonial-4g/\";s:3:\"tag\";a:1:{i:2238;s:12:\"testimonials\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-54039\";a:10:{s:5:\"title\";s:6:\"Team 5\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/team-1gb.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/team-1gb.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-1g/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-54032\";a:10:{s:5:\"title\";s:6:\"Team 6\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/team-2gb.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/team-2gb.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-2g/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-54034\";a:10:{s:5:\"title\";s:6:\"Team 7\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/team-3gb.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/team-3gb.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-3g/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-54036\";a:10:{s:5:\"title\";s:6:\"Team 8\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/team-4gb.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/team-4gb.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/team-4g/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-54033\";a:10:{s:5:\"title\";s:10:\"Features 2\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/features-1g-1.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/features-1g-1.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/features-1g/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-54035\";a:10:{s:5:\"title\";s:10:\"Features 4\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/05/features-2g.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/05/features-2g.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/features-2g/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-54037\";a:10:{s:5:\"title\";s:10:\"Features 6\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/features-3g-1.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/features-3g-1.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/features-3g/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-54038\";a:10:{s:5:\"title\";s:10:\"Features 7\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/features-4g-1.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/features-4g-1.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/features-4g/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-54040\";a:10:{s:5:\"title\";s:10:\"Features 9\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/features-5g-1.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/features-5g-1.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/features-5g/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-54041\";a:10:{s:5:\"title\";s:11:\"Features 11\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/features-6g-1.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2021/05/features-6g-1.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/features-6g/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53311\";a:10:{s:5:\"title\";s:17:\"Image and Text 10\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-10g.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-10g.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/image-and-text-10g/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53300\";a:10:{s:5:\"title\";s:16:\"Image and Text 9\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-9g.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-9g.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/image-and-text-9g/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53277\";a:10:{s:5:\"title\";s:16:\"Image and Text 8\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-8g.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-8g.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/image-and-text-8g/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53261\";a:10:{s:5:\"title\";s:16:\"Image and Text 7\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-7g-1.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-7g-1.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/image-and-text-7g/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53248\";a:10:{s:5:\"title\";s:10:\"Services 9\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/05/services-5gb.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/05/services-5gb.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/services-5g/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53247\";a:10:{s:5:\"title\";s:10:\"Services 8\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/05/services-4gb.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/05/services-4gb.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/services-4g/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53246\";a:10:{s:5:\"title\";s:10:\"Services 7\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/05/services-3gb.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/05/services-3gb.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/services-3g/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53238\";a:10:{s:5:\"title\";s:16:\"Subscribe Form 6\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/subscribe-form-6g-1.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/subscribe-form-6g-1.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/subscribe-form-6g/\";s:3:\"tag\";a:1:{i:1956;s:14:\"subscribe-form\";}s:8:\"category\";i:1953;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-53245\";a:10:{s:5:\"title\";s:10:\"Services 2\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/05/services-2g.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/05/services-2g.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/services-2g/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53244\";a:10:{s:5:\"title\";s:10:\"Services 6\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/05/services-1g.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2021/05/services-1g.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/services-1g/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53236\";a:10:{s:5:\"title\";s:16:\"Subscribe Form 5\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/subscribe-form-5g-1.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/subscribe-form-5g-1.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/subscribe-form-5g/\";s:3:\"tag\";a:1:{i:1956;s:14:\"subscribe-form\";}s:8:\"category\";i:1953;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-53235\";a:10:{s:5:\"title\";s:16:\"Subscribe Form 4\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/subscribe-form-4g.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/subscribe-form-4g.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/subscribe-form-4g/\";s:3:\"tag\";a:1:{i:1956;s:14:\"subscribe-form\";}s:8:\"category\";i:1953;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-53240\";a:10:{s:5:\"title\";s:16:\"Subscribe Form 3\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/subscribe-form-3g-1.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/subscribe-form-3g-1.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/subscribe-form-3g/\";s:3:\"tag\";a:1:{i:1956;s:14:\"subscribe-form\";}s:8:\"category\";i:1953;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-53237\";a:10:{s:5:\"title\";s:16:\"Subscribe Form 2\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/subscribe-form-2g-1.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/subscribe-form-2g-1.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/subscribe-form-2g/\";s:3:\"tag\";a:1:{i:1956;s:14:\"subscribe-form\";}s:8:\"category\";i:1953;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-53239\";a:10:{s:5:\"title\";s:16:\"Subscribe Form 1\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/subscribe-form-1g.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/subscribe-form-1g.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/subscribe-form-1g/\";s:3:\"tag\";a:1:{i:1956;s:14:\"subscribe-form\";}s:8:\"category\";i:1953;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-53227\";a:10:{s:5:\"title\";s:16:\"Image and Text 6\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-6g-1.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-6g-1.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/image-and-text-6g/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53220\";a:10:{s:5:\"title\";s:16:\"Image and Text 5\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-5g-1.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-5g-1.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/image-and-text-5g/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53204\";a:10:{s:5:\"title\";s:16:\"Image and Text 4\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-4g-1.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-4g-1.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/image-and-text-4g/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53180\";a:10:{s:5:\"title\";s:16:\"Image and Text 3\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-3g-1.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-3g-1.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/image-and-text-3g/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53093\";a:10:{s:5:\"title\";s:20:\"Location And Hours 1\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/location-and-hours-1g.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/location-and-hours-1g.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/location-and-hours-1g/\";s:3:\"tag\";a:2:{i:823;s:7:\"contact\";i:1957;s:18:\"location-and-hours\";}s:8:\"category\";i:1950;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53112\";a:10:{s:5:\"title\";s:13:\"Main Banner 9\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-9gb.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-9gb.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/main-banner-9g/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53111\";a:10:{s:5:\"title\";s:13:\"Main Banner 8\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-8gb.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-8gb.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/main-banner-8g/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53094\";a:10:{s:5:\"title\";s:20:\"Location And Hours 2\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/location-and-hours-2g.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/location-and-hours-2g.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/location-and-hours-2g/\";s:3:\"tag\";a:2:{i:823;s:7:\"contact\";i:1957;s:18:\"location-and-hours\";}s:8:\"category\";i:1950;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53110\";a:10:{s:5:\"title\";s:13:\"Main Banner 7\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-7gb.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-7gb.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/main-banner-7g/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53109\";a:10:{s:5:\"title\";s:13:\"Main Banner 6\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-6gb.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-6gb.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/main-banner-6g/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53095\";a:10:{s:5:\"title\";s:20:\"Location And Hours 3\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/location-and-hours-3g.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/location-and-hours-3g.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/location-and-hours-3g/\";s:3:\"tag\";a:2:{i:823;s:7:\"contact\";i:1957;s:18:\"location-and-hours\";}s:8:\"category\";i:1950;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53108\";a:10:{s:5:\"title\";s:13:\"Main Banner 5\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-5gb.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-5gb.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/main-banner-5g/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53107\";a:10:{s:5:\"title\";s:13:\"Main Banner 4\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-4gb.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-4gb.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/main-banner-4g/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53096\";a:10:{s:5:\"title\";s:20:\"Location And Hours 4\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/location-and-hours-4g.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/location-and-hours-4g.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/location-and-hours-4g/\";s:3:\"tag\";a:2:{i:823;s:7:\"contact\";i:1957;s:18:\"location-and-hours\";}s:8:\"category\";i:1950;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53105\";a:10:{s:5:\"title\";s:13:\"Main Banner 3\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-3gb.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-3gb.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/main-banner-3g/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53104\";a:10:{s:5:\"title\";s:13:\"Main Banner 2\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-2gb.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-2gb.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/main-banner-2g/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53097\";a:10:{s:5:\"title\";s:20:\"Location And Hours 5\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/location-and-hours-5g.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/location-and-hours-5g.jpg\";s:3:\"url\";s:60:\"https://websitedemos.net/astra-blocks/location-and-hours-5g/\";s:3:\"tag\";a:2:{i:823;s:7:\"contact\";i:1957;s:18:\"location-and-hours\";}s:8:\"category\";i:1950;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53103\";a:10:{s:5:\"title\";s:13:\"Main Banner 1\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-1gb.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/main-banner-1gb.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/main-banner-1g/\";s:3:\"tag\";a:1:{i:1952;s:11:\"main-banner\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53063\";a:10:{s:5:\"title\";s:16:\"Image and Text 2\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-2g-1.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-2g-1.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/image-and-text-2g/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53056\";a:10:{s:5:\"title\";s:16:\"Image and Text 1\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-1g-1.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/image-and-text-1g-1.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/image-and-text-1g/\";s:3:\"tag\";a:1:{i:1949;s:14:\"image-and-text\";}s:8:\"category\";i:1948;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53053\";a:10:{s:5:\"title\";s:6:\"Text 9\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/05/text-9g.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/05/text-9g.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/text-9g/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53049\";a:10:{s:5:\"title\";s:6:\"Text 8\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/05/text-8g.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/05/text-8g.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/text-8g/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53045\";a:10:{s:5:\"title\";s:6:\"Text 7\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/05/text-7g.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/05/text-7g.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/text-7g/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53043\";a:10:{s:5:\"title\";s:6:\"Text 6\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/05/text-6g.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/05/text-6g.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/text-6g/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53039\";a:10:{s:5:\"title\";s:6:\"Text 5\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/05/text-5g.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/05/text-5g.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/text-5g/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53034\";a:10:{s:5:\"title\";s:6:\"Text 4\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/05/text-4g.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/05/text-4g.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/text-4g/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-53030\";a:10:{s:5:\"title\";s:6:\"Text 3\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/05/text-3g.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/05/text-3g.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/text-3g/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52993\";a:10:{s:5:\"title\";s:6:\"Text 2\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/05/text-2g.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/05/text-2g.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/text-2g/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52968\";a:10:{s:5:\"title\";s:5:\"FAQ 5\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/faq-5g-1.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/faq-5g-1.jpg\";s:3:\"url\";s:45:\"https://websitedemos.net/astra-blocks/faq-5g/\";s:3:\"tag\";a:2:{i:822;s:3:\"faq\";i:821;s:26:\"frequently-asked-questions\";}s:8:\"category\";i:1001;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52965\";a:10:{s:5:\"title\";s:5:\"FAQ 4\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/faq-4g.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/faq-4g.jpg\";s:3:\"url\";s:45:\"https://websitedemos.net/astra-blocks/faq-4g/\";s:3:\"tag\";a:2:{i:822;s:3:\"faq\";i:821;s:26:\"frequently-asked-questions\";}s:8:\"category\";i:1001;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52964\";a:10:{s:5:\"title\";s:5:\"FAQ 3\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/faq-3g.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/faq-3g.jpg\";s:3:\"url\";s:45:\"https://websitedemos.net/astra-blocks/faq-3g/\";s:3:\"tag\";a:2:{i:822;s:3:\"faq\";i:821;s:26:\"frequently-asked-questions\";}s:8:\"category\";i:1001;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52963\";a:10:{s:5:\"title\";s:5:\"FAQ 2\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/faq-2g.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/faq-2g.jpg\";s:3:\"url\";s:45:\"https://websitedemos.net/astra-blocks/faq-2g/\";s:3:\"tag\";a:2:{i:822;s:3:\"faq\";i:821;s:26:\"frequently-asked-questions\";}s:8:\"category\";i:1001;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52975\";a:10:{s:5:\"title\";s:7:\"About 8\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/about-8g.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/about-8g.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-8g/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52974\";a:10:{s:5:\"title\";s:8:\"About 13\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/about-7g.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/about-7g.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-7g/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52973\";a:10:{s:5:\"title\";s:8:\"About 12\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/about-6g.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/about-6g.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-6g/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52971\";a:10:{s:5:\"title\";s:7:\"About 5\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/about-5g.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/about-5g.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-5g/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52970\";a:10:{s:5:\"title\";s:8:\"About 11\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/about-4g.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/about-4g.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-4g/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52969\";a:10:{s:5:\"title\";s:8:\"About 10\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/about-3g-1.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/about-3g-1.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-3g/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52962\";a:10:{s:5:\"title\";s:5:\"FAQ 1\";s:18:\"featured-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/faq-1g.jpg\";s:19:\"thumbnail-image-url\";s:62:\"https://websitedemos.net/wp-content/uploads/2021/05/faq-1g.jpg\";s:3:\"url\";s:45:\"https://websitedemos.net/astra-blocks/faq-1g/\";s:3:\"tag\";a:2:{i:822;s:3:\"faq\";i:821;s:26:\"frequently-asked-questions\";}s:8:\"category\";i:1001;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52967\";a:10:{s:5:\"title\";s:7:\"About 9\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/about-2g-1.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/about-2g-1.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-2g/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52966\";a:10:{s:5:\"title\";s:7:\"About 1\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/about-1g-1.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/about-1g-1.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/about-1g/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52951\";a:10:{s:5:\"title\";s:14:\"Contact Form 4\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/contact-form-4g.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/contact-form-4g.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/contact-form-4g/\";s:3:\"tag\";a:2:{i:823;s:7:\"contact\";i:1955;s:12:\"contact-form\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-52933\";a:10:{s:5:\"title\";s:14:\"Contact Form 3\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/contact-form-3g.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/contact-form-3g.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/contact-form-3g/\";s:3:\"tag\";a:2:{i:823;s:7:\"contact\";i:1955;s:12:\"contact-form\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-52921\";a:10:{s:5:\"title\";s:14:\"Contact Form 2\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/contact-form-2g.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/contact-form-2g.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/contact-form-2g/\";s:3:\"tag\";a:2:{i:823;s:7:\"contact\";i:1955;s:12:\"contact-form\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-52908\";a:10:{s:5:\"title\";s:14:\"Contact Form 1\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/contact-form-1g.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/contact-form-1g.jpg\";s:3:\"url\";s:54:\"https://websitedemos.net/astra-blocks/contact-form-1g/\";s:3:\"tag\";a:2:{i:823;s:7:\"contact\";i:1955;s:12:\"contact-form\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-52893\";a:10:{s:5:\"title\";s:16:\"Call to Action 5\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/call-to-action-5g.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/call-to-action-5g.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/call-to-action-5g/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52895\";a:10:{s:5:\"title\";s:16:\"Call to Action 9\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/call-to-action-4gb.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/call-to-action-4gb.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/call-to-action-4g/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52896\";a:10:{s:5:\"title\";s:16:\"Call to Action 8\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/call-to-action-3gb.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/call-to-action-3gb.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/call-to-action-3g/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52897\";a:10:{s:5:\"title\";s:16:\"Call To Action 2\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/call-to-action-2g.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/call-to-action-2g.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/call-to-action-2g/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52894\";a:10:{s:5:\"title\";s:16:\"Call to Action 7\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/call-to-action-1g.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/call-to-action-1g.jpg\";s:3:\"url\";s:56:\"https://websitedemos.net/astra-blocks/call-to-action-1g/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-52816\";a:10:{s:5:\"title\";s:6:\"Text 1\";s:18:\"featured-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/05/text-1g.jpg\";s:19:\"thumbnail-image-url\";s:63:\"https://websitedemos.net/wp-content/uploads/2021/05/text-1g.jpg\";s:3:\"url\";s:46:\"https://websitedemos.net/astra-blocks/text-1g/\";s:3:\"tag\";a:1:{i:1947;s:4:\"text\";}s:8:\"category\";i:1946;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47355\";a:10:{s:5:\"title\";s:14:\"Testimonials 1\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/09/testimonials-gb-1w-1.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/09/testimonials-gb-1w-1.jpg\";s:3:\"url\";s:55:\"https://websitedemos.net/astra-blocks/testimonials-1gw/\";s:3:\"tag\";a:1:{i:2238;s:12:\"testimonials\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47437\";a:10:{s:5:\"title\";s:6:\"Hero 4\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/09/hero-gb-4w-1.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/09/hero-gb-4w-1.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/hero-4gw/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47433\";a:10:{s:5:\"title\";s:14:\"Testimonials 4\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/09/testimonials-gb-4w-1.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/09/testimonials-gb-4w-1.jpg\";s:3:\"url\";s:55:\"https://websitedemos.net/astra-blocks/testimonials-4gw/\";s:3:\"tag\";a:1:{i:2238;s:12:\"testimonials\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47438\";a:10:{s:5:\"title\";s:6:\"Hero 5\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/09/hero-5gb.jpg\";s:19:\"thumbnail-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/09/hero-5gb.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/hero-5gb/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47445\";a:10:{s:5:\"title\";s:14:\"Testimonials 5\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/09/testimonials-gb-5w-1.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/09/testimonials-gb-5w-1.jpg\";s:3:\"url\";s:55:\"https://websitedemos.net/astra-blocks/testimonials-5gw/\";s:3:\"tag\";a:1:{i:2238;s:12:\"testimonials\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47439\";a:10:{s:5:\"title\";s:6:\"Hero 6\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/09/hero-gb-6b-1.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/09/hero-gb-6b-1.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/hero-6gb/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47449\";a:10:{s:5:\"title\";s:14:\"Testimonials 6\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/09/testimonials-gb-6w-1.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/09/testimonials-gb-6w-1.jpg\";s:3:\"url\";s:55:\"https://websitedemos.net/astra-blocks/testimonials-6gw/\";s:3:\"tag\";a:1:{i:2238;s:12:\"testimonials\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47527\";a:10:{s:5:\"title\";s:10:\"Services 5\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/09/services-gb-5w-1.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/09/services-gb-5w-1.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/services-5gw/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}}','no'),(318,'ast-block-templates-blocks-4','a:43:{s:8:\"id-47419\";a:10:{s:5:\"title\";s:10:\"Features 1\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/09/features-gb-1w-1.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/09/features-gb-1w-1.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/features-1gw/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47434\";a:10:{s:5:\"title\";s:6:\"Hero 1\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/09/hero-gb-1w-1.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/09/hero-gb-1w-1.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/hero-1gw/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47424\";a:10:{s:5:\"title\";s:11:\"Features 10\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/09/features-gb-6w-1.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/09/features-gb-6w-1.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/features-6gw/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47423\";a:10:{s:5:\"title\";s:10:\"Features 8\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/09/features-gb-5w-1.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/09/features-gb-5w-1.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/features-5gw/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47360\";a:10:{s:5:\"title\";s:14:\"Testimonials 2\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/09/testimonials-gb-2w-1.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/09/testimonials-gb-2w-1.jpg\";s:3:\"url\";s:55:\"https://websitedemos.net/astra-blocks/testimonials-2gw/\";s:3:\"tag\";a:1:{i:844;s:11:\"testimonial\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47380\";a:10:{s:5:\"title\";s:9:\"Contact 2\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/09/contact-gb-2w.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/09/contact-gb-2w.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/contact-2gw/\";s:3:\"tag\";a:2:{i:823;s:7:\"contact\";i:1955;s:12:\"contact-form\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47420\";a:10:{s:5:\"title\";s:10:\"Features 3\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/09/features-gb-2w-1.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/09/features-gb-2w-1.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/features-2gw/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47421\";a:10:{s:5:\"title\";s:10:\"Features 5\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/09/features-gb-3w-1.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/09/features-gb-3w-1.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/features-3gw/\";s:3:\"tag\";a:1:{i:920;s:8:\"features\";}s:8:\"category\";i:919;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47427\";a:10:{s:5:\"title\";s:14:\"Testimonials 3\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/09/testimonials-gb-3w-1.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/09/testimonials-gb-3w-1.jpg\";s:3:\"url\";s:55:\"https://websitedemos.net/astra-blocks/testimonials-3gw/\";s:3:\"tag\";a:1:{i:2238;s:12:\"testimonials\";}s:8:\"category\";i:830;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47459\";a:10:{s:5:\"title\";s:6:\"Team 1\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/09/team-gb-1w.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/09/team-gb-1w.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/team-1gw/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47472\";a:10:{s:5:\"title\";s:6:\"Team 2\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/09/team-gb-2w.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/09/team-gb-2w.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/team-2gw/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47474\";a:10:{s:5:\"title\";s:6:\"Team 3\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/09/team-gb-3w.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/09/team-gb-3w.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/team-3gw/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47522\";a:10:{s:5:\"title\";s:10:\"Services 3\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/09/services-gb-3w-1.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/09/services-gb-3w-1.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/services-3gw/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47518\";a:10:{s:5:\"title\";s:10:\"Services 1\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/09/services-gb-1w-1.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/09/services-gb-1w-1.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/services-1gw/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47498\";a:10:{s:5:\"title\";s:12:\"Statistics 5\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/09/statistics-gb-5w.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/09/statistics-gb-5w.jpg\";s:3:\"url\";s:53:\"https://websitedemos.net/astra-blocks/statistics-5gw/\";s:3:\"tag\";a:1:{i:924;s:10:\"statistics\";}s:8:\"category\";i:1096;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47524\";a:10:{s:5:\"title\";s:10:\"Services 4\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/09/services-gb-4w-1.jpg\";s:19:\"thumbnail-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/09/services-gb-4w-1.jpg\";s:3:\"url\";s:51:\"https://websitedemos.net/astra-blocks/services-4gw/\";s:3:\"tag\";a:1:{i:953;s:8:\"services\";}s:8:\"category\";i:952;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47478\";a:10:{s:5:\"title\";s:6:\"Team 4\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/09/team-gb-4w.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/09/team-gb-4w.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/team-4gw/\";s:3:\"tag\";a:1:{i:927;s:4:\"team\";}s:8:\"category\";i:829;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47435\";a:10:{s:5:\"title\";s:6:\"Hero 2\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/09/hero-gb-2w-1.jpg\";s:19:\"thumbnail-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2020/09/hero-gb-2w-1.jpg\";s:3:\"url\";s:47:\"https://websitedemos.net/astra-blocks/hero-2gw/\";s:3:\"tag\";a:1:{i:817;s:4:\"hero\";}s:8:\"category\";i:831;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47392\";a:10:{s:5:\"title\";s:16:\"Call To Action 1\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/09/call-to-action-gb-1w.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/09/call-to-action-gb-1w.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/call-to-action-1gw/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47394\";a:10:{s:5:\"title\";s:16:\"Call To Action 2\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/09/call-to-action-gb-2w.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/09/call-to-action-gb-2w.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/call-to-action-2gw/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47397\";a:10:{s:5:\"title\";s:16:\"Call To Action 3\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/09/call-to-action-gb-3w.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/09/call-to-action-gb-3w.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/call-to-action-3gw/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47399\";a:10:{s:5:\"title\";s:16:\"Call To Action 4\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/09/call-to-action-gb-4w.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/09/call-to-action-gb-4w.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/call-to-action-4gw/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47404\";a:10:{s:5:\"title\";s:16:\"Call To Action 6\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/09/call-to-action-gb-6w.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/09/call-to-action-gb-6w.jpg\";s:3:\"url\";s:57:\"https://websitedemos.net/astra-blocks/call-to-action-6gw/\";s:3:\"tag\";a:1:{i:819;s:14:\"call-to-action\";}s:8:\"category\";i:832;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47378\";a:10:{s:5:\"title\";s:9:\"Contact 1\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/09/contact-gb-1w.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/09/contact-gb-1w.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/contact-1gw/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47383\";a:10:{s:5:\"title\";s:9:\"Contact 3\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/09/contact-gb-3w.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/09/contact-gb-3w.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/contact-3gw/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47385\";a:10:{s:5:\"title\";s:9:\"Contact 4\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/09/contact-gb-4w.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/09/contact-gb-4w.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/contact-4gw/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47389\";a:10:{s:5:\"title\";s:9:\"Contact 5\";s:18:\"featured-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/09/contact-gb-5b.jpg\";s:19:\"thumbnail-image-url\";s:69:\"https://websitedemos.net/wp-content/uploads/2020/09/contact-gb-5b.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/contact-5gb/\";s:3:\"tag\";a:1:{i:823;s:7:\"contact\";}s:8:\"category\";i:1416;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47373\";a:10:{s:5:\"title\";s:9:\"Clients 5\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/09/clients-4g.jpg\";s:19:\"thumbnail-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/09/clients-4g.jpg\";s:3:\"url\";s:49:\"https://websitedemos.net/astra-blocks/clients-5g/\";s:3:\"tag\";a:1:{i:1090;s:7:\"clients\";}s:8:\"category\";i:1091;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47337\";a:10:{s:5:\"title\";s:7:\"About 2\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/09/about-gb-2w.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/09/about-gb-2w.jpg\";s:3:\"url\";s:48:\"https://websitedemos.net/astra-blocks/about-2gw/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47352\";a:10:{s:5:\"title\";s:7:\"About 7\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/09/about-gb-7b.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/09/about-gb-7b.jpg\";s:3:\"url\";s:48:\"https://websitedemos.net/astra-blocks/about-7gb/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:4:\"dark\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47343\";a:10:{s:5:\"title\";s:7:\"About 4\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/09/about-gb-4w.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/09/about-gb-4w.jpg\";s:3:\"url\";s:48:\"https://websitedemos.net/astra-blocks/about-4gw/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47350\";a:10:{s:5:\"title\";s:7:\"About 6\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/09/about-gb-6w.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/09/about-gb-6w.jpg\";s:3:\"url\";s:48:\"https://websitedemos.net/astra-blocks/about-6gw/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47339\";a:10:{s:5:\"title\";s:7:\"About 3\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/09/about-gb-3w.jpg\";s:19:\"thumbnail-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/09/about-gb-3w.jpg\";s:3:\"url\";s:48:\"https://websitedemos.net/astra-blocks/about-3gw/\";s:3:\"tag\";a:1:{i:818;s:5:\"about\";}s:8:\"category\";i:825;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47457\";a:10:{s:5:\"title\";s:9:\"Heading 4\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/09/heading-gb-4w-1.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/09/heading-gb-4w-1.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/heading-4gw/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47471\";a:10:{s:5:\"title\";s:11:\"Portfolio 5\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/09/portfolio-gb-5w-1.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/09/portfolio-gb-5w-1.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/portfolio-5gw/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47470\";a:10:{s:5:\"title\";s:11:\"Portfolio 4\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/09/portfolio-gb-4w-1.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/09/portfolio-gb-4w-1.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/portfolio-4gw/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47456\";a:10:{s:5:\"title\";s:9:\"Heading 3\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/09/heading-gb-3w-1.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/09/heading-gb-3w-1.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/heading-3gw/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47469\";a:10:{s:5:\"title\";s:11:\"Portfolio 3\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/09/portfolio-gb-3w-1.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/09/portfolio-gb-3w-1.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/portfolio-3gw/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47468\";a:10:{s:5:\"title\";s:11:\"Portfolio 2\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/09/portfolio-gb-2w-1.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/09/portfolio-gb-2w-1.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/portfolio-2gw/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47467\";a:10:{s:5:\"title\";s:11:\"Portfolio 1\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/09/portfolio-gb-1w-1.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/09/portfolio-gb-1w-1.jpg\";s:3:\"url\";s:52:\"https://websitedemos.net/astra-blocks/portfolio-1gw/\";s:3:\"tag\";a:1:{i:1426;s:9:\"portfolio\";}s:8:\"category\";i:1425;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47458\";a:10:{s:5:\"title\";s:9:\"Heading 5\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/09/heading-gb-5w-1.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/09/heading-gb-5w-1.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/heading-5gw/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47455\";a:10:{s:5:\"title\";s:9:\"Heading 2\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/09/heading-gb-2w-1.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/09/heading-gb-2w-1.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/heading-2gw/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}s:8:\"id-47454\";a:10:{s:5:\"title\";s:9:\"Heading 1\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/09/heading-gb-1w-1.jpg\";s:19:\"thumbnail-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/09/heading-gb-1w-1.jpg\";s:3:\"url\";s:50:\"https://websitedemos.net/astra-blocks/heading-1gw/\";s:3:\"tag\";a:1:{i:1093;s:7:\"heading\";}s:8:\"category\";i:1094;s:9:\"wireframe\";a:0:{}s:12:\"page-builder\";s:9:\"gutenberg\";s:6:\"filter\";s:5:\"light\";s:16:\"required-plugins\";a:0:{}}}','no'),(319,'ast-block-templates-sites-2','a:35:{s:8:\"id-47862\";a:22:{s:5:\"title\";s:11:\"Pet Sitting\";s:2:\"id\";i:47862;s:12:\"publish-date\";i:1603821511;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-sitting-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-sitting-08-600x2415.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-sitting-08-400x1610.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/pet-sitting-08\";s:20:\"astra-site-parent-id\";i:1680;s:15:\"astra-sites-tag\";a:5:{i:374;s:8:\"pet-care\";i:372;s:11:\"pet-minding\";i:371;s:11:\"pet-sitting\";i:373;s:12:\"pet-training\";i:1687;s:11:\"pet-walking\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2472;s:4:\"pets\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-47864\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-sitting-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-sitting-08-600x2415.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/pet-sitting-08/wp-json/wp/v2/pages/506\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/pet-sitting-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47866\";a:12:{s:5:\"title\";s:10:\"Who We Are\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-sitting-08-who-we-are.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-sitting-08-who-we-are-600x2193.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/pet-sitting-08/wp-json/wp/v2/pages/508\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/pet-sitting-08/who-we-are/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47865\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-sitting-08-services.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-sitting-08-services-600x2250.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/pet-sitting-08/wp-json/wp/v2/pages/509\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/pet-sitting-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47863\";a:12:{s:5:\"title\";s:12:\"Get In Touch\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-sitting-08-get-in-touch.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-sitting-08-get-in-touch-600x1036.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/pet-sitting-08/wp-json/wp/v2/pages/510\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/pet-sitting-08/get-in-touch/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48300\";a:22:{s:5:\"title\";s:15:\"Custom Printing\";s:2:\"id\";i:48300;s:12:\"publish-date\";i:1603905872;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/custom-printing-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/custom-printing-08-600x2002.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/custom-printing-08-400x1335.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/custom-printing-08\";s:20:\"astra-site-parent-id\";i:1719;s:15:\"astra-sites-tag\";a:20:{i:2418;s:8:\"commerce\";i:400;s:15:\"custom-printing\";i:1017;s:10:\"e-commerce\";i:496;s:9:\"ecommerce\";i:1817;s:15:\"ecommerce-store\";i:2419;s:9:\"eshopping\";i:881;s:12:\"mug-printing\";i:2422;s:13:\"online-market\";i:732;s:11:\"online-shop\";i:2420;s:15:\"online-shopping\";i:383;s:12:\"online-store\";i:967;s:13:\"product-store\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:733;s:4:\"shop\";i:2416;s:8:\"shopping\";i:749;s:5:\"store\";i:405;s:16:\"t-shirt-printing\";i:966;s:12:\"woo-commerce\";i:1024;s:11:\"woocommerce\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:38;s:9:\"ecommerce\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2495;s:9:\"ecommerce\";}s:16:\"required-plugins\";a:6:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:11:\"woocommerce\";s:4:\"init\";s:27:\"woocommerce/woocommerce.php\";s:4:\"name\";s:11:\"WooCommerce\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:3;a:3:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:4:\"init\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:4:\"name\";s:37:\"WooCommerce Cart Abandonment Recovery\";}i:4;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:5;a:3:{s:4:\"slug\";s:22:\"variation-swatches-woo\";s:4:\"init\";s:49:\"variation-swatches-woo/variation-swatches-woo.php\";s:4:\"name\";s:34:\"Variation Swatches for WooCommerce\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-48303\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/custom-printing-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/custom-printing-08-600x2002.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/custom-printing-08/wp-json/wp/v2/pages/2089\";s:12:\"dynamic-page\";s:3:\"yes\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/custom-printing-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48301\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/custom-printing-08-about.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/custom-printing-08-about-600x1552.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/custom-printing-08/wp-json/wp/v2/pages/2161\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/custom-printing-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48302\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/custom-printing-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/custom-printing-08-contact-600x554.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/custom-printing-08/wp-json/wp/v2/pages/2162\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/custom-printing-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:64;s:9:\"ecommerce\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55455\";a:22:{s:5:\"title\";s:21:\"Professional Services\";s:2:\"id\";i:55455;s:12:\"publish-date\";i:1621891263;s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/professional-services-08-2.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/05/professional-services-08-2-600x1765.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/05/professional-services-08-2-400x1177.jpg\";s:14:\"astra-site-url\";s:43:\"//websitedemos.net/professional-services-08\";s:20:\"astra-site-parent-id\";i:2123;s:15:\"astra-sites-tag\";a:7:{i:2131;s:15:\"accounting-firm\";i:2135;s:17:\"advisory-services\";i:2134;s:8:\"advocate\";i:2133;s:13:\"advocate-firm\";i:2132;s:13:\"auditing-firm\";i:2136;s:17:\"business-coaching\";i:2129;s:21:\"professional-coaching\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-55459\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/05/professional-services-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:100:\"https://websitedemos.net/wp-content/uploads/2021/05/professional-services-08-services-1-600x1034.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/professional-services-08/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/professional-services-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55456\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/05/professional-services-08-about-us-1.jpg\";s:19:\"thumbnail-image-url\";s:100:\"https://websitedemos.net/wp-content/uploads/2021/05/professional-services-08-about-us-1-600x1490.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/professional-services-08/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/professional-services-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55457\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2021/05/professional-services-08-contact-us-1.jpg\";s:19:\"thumbnail-image-url\";s:102:\"https://websitedemos.net/wp-content/uploads/2021/05/professional-services-08-contact-us-1-600x1010.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/professional-services-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:55:\"//websitedemos.net/professional-services-08/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55458\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/professional-services-08-2.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2021/05/professional-services-08-2-600x1765.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/professional-services-08/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/professional-services-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-22317\";a:22:{s:5:\"title\";s:12:\"Photographer\";s:2:\"id\";i:22317;s:12:\"publish-date\";i:1561719372;s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/06/photographer-08-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/06/photographer-08-1-600x2538.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/06/photographer-08-1-400x1692.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/photographer-08\";s:20:\"astra-site-parent-id\";i:75;s:15:\"astra-sites-tag\";a:9:{i:513;s:6:\"camera\";i:482;s:7:\"fashion\";i:515;s:4:\"lens\";i:510;s:9:\"modelling\";i:511;s:12:\"photographer\";i:509;s:11:\"photography\";i:444;s:9:\"portfolio\";i:514;s:11:\"videography\";i:512;s:13:\"wedding-shoot\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:37;s:4:\"blog\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2770;s:8:\"personal\";i:2773;s:11:\"photography\";i:2768;s:9:\"portfolio\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:2:{i:2485;s:11:\"photography\";i:2488;s:9:\"portfolio\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-22320\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2019/06/photographer-08-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2019/06/photographer-08-1-600x2538.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/photographer-08/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/photographer-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-22318\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2019/06/photographer-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2019/06/photographer-08-about-1-600x1349.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/photographer-08/wp-json/wp/v2/pages/26\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/photographer-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-22319\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2019/06/photographer-08-blog-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2019/06/photographer-08-blog-1-600x961.jpg\";s:18:\"astra-page-api-url\";s:64:\"https://websitedemos.net/photographer-08/wp-json/wp/v2/pages/267\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/photographer-08/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48391\";a:22:{s:5:\"title\";s:29:\"Windows &#038; Doors Services\";s:2:\"id\";i:48391;s:12:\"publish-date\";i:1603911926;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-1-600x2034.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-1-400x1356.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/windows-and-doors-08\";s:20:\"astra-site-parent-id\";i:1730;s:15:\"astra-sites-tag\";a:7:{i:435;s:12:\"architecture\";i:440;s:5:\"doors\";i:436;s:8:\"interior\";i:1021;s:14:\"local-business\";i:439;s:14:\"local-services\";i:441;s:10:\"technician\";i:438;s:7:\"windows\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2795;s:12:\"architecture\";i:2777;s:8:\"business\";i:2768;s:9:\"portfolio\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-48395\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-1-600x2034.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/windows-and-doors-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/windows-and-doors-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48392\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-about-1-600x1247.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/windows-and-doors-08/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/windows-and-doors-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48397\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-services-1-600x1696.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/windows-and-doors-08/wp-json/wp/v2/pages/15\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/windows-and-doors-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48396\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-portfolio-1.jpg\";s:19:\"thumbnail-image-url\";s:97:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-portfolio-1-600x1310.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/windows-and-doors-08/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/windows-and-doors-08/portfolio/\";s:15:\"astra-sites-tag\";a:1:{i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48394\";a:12:{s:5:\"title\";s:4:\"FAQs\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-faqs-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-faqs-1-600x810.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/windows-and-doors-08/wp-json/wp/v2/pages/171\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/windows-and-doors-08/faqs/\";s:15:\"astra-sites-tag\";a:1:{i:426;s:3:\"faq\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48393\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/windows-and-doors-08-contact-1-600x792.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/windows-and-doors-08/wp-json/wp/v2/pages/180\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/windows-and-doors-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55398\";a:22:{s:5:\"title\";s:15:\"Salon &amp; Spa\";s:2:\"id\";i:55398;s:12:\"publish-date\";i:1621884270;s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-08-600x2474.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-08-400x1649.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/stylist-08\";s:20:\"astra-site-parent-id\";i:2101;s:15:\"astra-sites-tag\";a:11:{i:2102;s:10:\"beautician\";i:2121;s:13:\"beauty-parlor\";i:2106;s:12:\"beauty-salon\";i:2120;s:18:\"fashion-and-beauty\";i:1642;s:10:\"hair-salon\";i:2108;s:11:\"hairdresser\";i:577;s:13:\"makeup-artist\";i:2119;s:13:\"salon-and-spa\";i:530;s:3:\"spa\";i:2107;s:7:\"stylist\";i:619;s:8:\"wellness\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2479;s:6:\"beauty\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-55400\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-contact-08.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-contact-08-600x879.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/stylist-08/wp-json/wp/v2/pages/904\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/stylist-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55399\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-about-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-about-08-600x1247.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/stylist-08/wp-json/wp/v2/pages/900\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/stylist-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55402\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-services-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-services-08-600x1642.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/stylist-08/wp-json/wp/v2/pages/902\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/stylist-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55401\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2021/05/stylist-08-600x2474.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/stylist-08/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/stylist-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48580\";a:22:{s:5:\"title\";s:8:\"Car Wash\";s:2:\"id\";i:48580;s:12:\"publish-date\";i:1603984622;s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08-600x2367.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08-400x1578.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/car-wash-08\";s:20:\"astra-site-parent-id\";i:1747;s:15:\"astra-sites-tag\";a:7:{i:1749;s:9:\"bike-care\";i:1750;s:9:\"bike-wash\";i:588;s:8:\"car-care\";i:587;s:13:\"car-detailing\";i:1751;s:15:\"car-maintenance\";i:586;s:8:\"car-wash\";i:1021;s:14:\"local-business\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2475;s:10:\"automotive\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48583\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08-600x2367.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/car-wash-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/car-wash-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48584\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08-services-1-600x1405.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/car-wash-08/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/car-wash-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48581\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08-about-1-600x1322.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/car-wash-08/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/car-wash-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48585\";a:12:{s:5:\"title\";s:9:\"Wash Menu\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08-wash-menu-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08-wash-menu-1-600x1138.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/car-wash-08/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/car-wash-08/wash-menu/\";s:15:\"astra-sites-tag\";a:3:{i:585;s:7:\"pricing\";i:761;s:9:\"wash-menu\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48582\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/car-wash-08-contact-1-600x1241.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/car-wash-08/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/car-wash-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55310\";a:22:{s:5:\"title\";s:20:\"Travel &amp; Tourism\";s:2:\"id\";i:55310;s:12:\"publish-date\";i:1621612162;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-08-600x2616.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-08-400x1744.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/travel-and-tourism-08\";s:20:\"astra-site-parent-id\";i:2065;s:15:\"astra-sites-tag\";a:17:{i:2073;s:13:\"accommodation\";i:2076;s:18:\"apartments-hostels\";i:1534;s:3:\"bnb\";i:2078;s:14:\"business-hotel\";i:2079;s:10:\"guesthouse\";i:2080;s:8:\"homestay\";i:350;s:5:\"hotel\";i:2081;s:13:\"island-resort\";i:2082;s:12:\"luxury-hotel\";i:714;s:6:\"resort\";i:2077;s:12:\"tour-company\";i:430;s:7:\"tourism\";i:427;s:6:\"travel\";i:428;s:13:\"travel-agency\";i:2075;s:15:\"travel-services\";i:2083;s:8:\"urban-bb\";i:2084;s:15:\"vacation-rental\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2498;s:12:\"hotel-travel\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-55311\";a:12:{s:5:\"title\";s:9:\"Amenities\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-08-amenities-1.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-08-amenities-1-600x2270.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/travel-and-tourism-08/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/travel-and-tourism-08/amenities/\";s:15:\"astra-sites-tag\";a:2:{i:777;s:9:\"amenities\";i:1599;s:10:\"facilities\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55312\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-08-contact-600x963.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/travel-and-tourism-08/wp-json/wp/v2/pages/14\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/travel-and-tourism-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55313\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-08-600x2616.jpg\";s:18:\"astra-page-api-url\";s:68:\"https://websitedemos.net/travel-and-tourism-08/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/travel-and-tourism-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55314\";a:12:{s:5:\"title\";s:5:\"Rooms\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-08-rooms-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2021/05/travel-and-tourism-08-rooms-1-600x1709.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/travel-and-tourism-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/travel-and-tourism-08/rooms/\";s:15:\"astra-sites-tag\";a:2:{i:2073;s:13:\"accommodation\";i:715;s:5:\"rooms\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55436\";a:22:{s:5:\"title\";s:18:\"Event Landing Page\";s:2:\"id\";i:55436;s:12:\"publish-date\";i:1621881999;s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/event-08.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/event-08-600x2182.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/event-08-400x1455.jpg\";s:14:\"astra-site-url\";s:27:\"//websitedemos.net/event-08\";s:20:\"astra-site-parent-id\";i:2118;s:15:\"astra-sites-tag\";a:11:{i:2141;s:19:\"business-conference\";i:2138;s:16:\"conference-event\";i:2146;s:17:\"design-conference\";i:2137;s:13:\"event-landing\";i:2140;s:15:\"marketing-event\";i:2145;s:6:\"meetup\";i:648;s:12:\"presentation\";i:2142;s:14:\"product-launch\";i:2139;s:7:\"seminar\";i:2144;s:15:\"tech-conference\";i:2143;s:20:\"webinar-landing-page\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:39;s:4:\"free\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2489;s:16:\"event-invitation\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-55437\";a:12:{s:5:\"title\";s:12:\"Landing Page\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/05/event-08.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/05/event-08-600x2182.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/event-08/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:28:\"//websitedemos.net/event-08/\";s:15:\"astra-sites-tag\";a:2:{i:850;s:12:\"landing-page\";i:463;s:11:\"single-page\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48398\";a:22:{s:5:\"title\";s:18:\"Garden Maintenance\";s:2:\"id\";i:48398;s:12:\"publish-date\";i:1603963842;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-600x2113.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-400x1409.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/garden-maintenance-08\";s:20:\"astra-site-parent-id\";i:1731;s:15:\"astra-sites-tag\";a:7:{i:416;s:11:\"garden-care\";i:421;s:18:\"garden-maintenance\";i:420;s:9:\"gardening\";i:422;s:11:\"landscaping\";i:417;s:9:\"lawn-care\";i:419;s:8:\"planting\";i:418;s:12:\"weed-control\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2476;s:9:\"gardening\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-48402\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-600x2113.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/garden-maintenance-08/wp-json/wp/v2/pages/31\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/garden-maintenance-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48399\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-about.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-about-600x1294.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/garden-maintenance-08/wp-json/wp/v2/pages/32\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/garden-maintenance-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48404\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-services.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-services-600x1452.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/garden-maintenance-08/wp-json/wp/v2/pages/33\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/garden-maintenance-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48403\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-projects.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-projects-600x1060.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/garden-maintenance-08/wp-json/wp/v2/pages/35\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:50:\"//websitedemos.net/garden-maintenance-08/projects/\";s:15:\"astra-sites-tag\";a:1:{i:1613;s:8:\"projects\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48401\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-faq.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-faq-600x778.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/garden-maintenance-08/wp-json/wp/v2/pages/37\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/garden-maintenance-08/faq/\";s:15:\"astra-sites-tag\";a:1:{i:426;s:3:\"faq\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48400\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/garden-maintenance-08-contact-600x776.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/garden-maintenance-08/wp-json/wp/v2/pages/36\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/garden-maintenance-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48208\";a:22:{s:5:\"title\";s:7:\"Plumber\";s:2:\"id\";i:48208;s:12:\"publish-date\";i:1603905881;s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-600x1930.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-400x1287.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/plumber-08\";s:20:\"astra-site-parent-id\";i:1706;s:15:\"astra-sites-tag\";a:6:{i:1712;s:19:\"commercial-plumbing\";i:439;s:14:\"local-services\";i:507;s:7:\"plumber\";i:508;s:8:\"plumbing\";i:1711;s:18:\"remolding-services\";i:1710;s:20:\"residential-plumbing\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2471;s:16:\"local-technician\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-48212\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-600x1930.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/plumber-08/wp-json/wp/v2/pages/34\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/plumber-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48209\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-about-2.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-about-2-600x1093.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/plumber-08/wp-json/wp/v2/pages/29\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/plumber-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48213\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-services-2.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-services-2-600x1603.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/plumber-08/wp-json/wp/v2/pages/30\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/plumber-08/services/\";s:15:\"astra-sites-tag\";a:2:{i:425;s:8:\"services\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48214\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-testimonials-600x1293.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/plumber-08/wp-json/wp/v2/pages/31\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/plumber-08/testimonials/\";s:15:\"astra-sites-tag\";a:2:{i:432;s:6:\"review\";i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48211\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-faq-2.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-faq-2-600x1751.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/plumber-08/wp-json/wp/v2/pages/32\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/plumber-08/faq/\";s:15:\"astra-sites-tag\";a:2:{i:426;s:3:\"faq\";i:1476;s:26:\"frequently-asked-questions\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48210\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/plumber-08-contact-2-600x998.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/plumber-08/wp-json/wp/v2/pages/33\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/plumber-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48188\";a:22:{s:5:\"title\";s:17:\"Interior Designer\";s:2:\"id\";i:48188;s:12:\"publish-date\";i:1603905861;s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-600x1322.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-400x881.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/interior-designer-08\";s:20:\"astra-site-parent-id\";i:1705;s:15:\"astra-sites-tag\";a:6:{i:435;s:12:\"architecture\";i:436;s:8:\"interior\";i:434;s:15:\"interior-design\";i:422;s:11:\"landscaping\";i:1022;s:12:\"professional\";i:437;s:6:\"zoning\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:2:{i:2488;s:9:\"portfolio\";i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:6:{s:8:\"id-48191\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-600x1322.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/interior-designer-08/wp-json/wp/v2/pages/688\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/interior-designer-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48189\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-about.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-about-600x1240.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/interior-designer-08/wp-json/wp/v2/pages/689\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/interior-designer-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48193\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-services.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-services-600x1104.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/interior-designer-08/wp-json/wp/v2/pages/690\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/interior-designer-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48192\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-projects.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-projects-600x1736.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/interior-designer-08/wp-json/wp/v2/pages/691\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/interior-designer-08/projects/\";s:15:\"astra-sites-tag\";a:1:{i:424;s:7:\"project\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48194\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-testimonials.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-testimonials-600x1335.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/interior-designer-08/wp-json/wp/v2/pages/692\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/interior-designer-08/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48190\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-designer-08-contact-600x862.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/interior-designer-08/wp-json/wp/v2/pages/693\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/interior-designer-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48703\";a:22:{s:5:\"title\";s:15:\"Growth Marketer\";s:2:\"id\";i:48703;s:12:\"publish-date\";i:1605205567;s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/11/content-marketing-08-2.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/11/content-marketing-08-2-600x2199.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/11/content-marketing-08-2-400x1466.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/content-marketing-08\";s:20:\"astra-site-parent-id\";i:1764;s:15:\"astra-sites-tag\";a:3:{i:470;s:17:\"content-marketing\";i:472;s:6:\"growth\";i:471;s:8:\"strategy\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-48706\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/11/content-marketing-08-2.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/11/content-marketing-08-2-600x2199.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/content-marketing-08/wp-json/wp/v2/pages/25247\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/content-marketing-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48704\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/11/content-marketing-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/11/content-marketing-08-about-1-600x1131.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/content-marketing-08/wp-json/wp/v2/pages/25248\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/content-marketing-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48707\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/11/content-marketing-08-testimonials-1.jpg\";s:19:\"thumbnail-image-url\";s:99:\"https://websitedemos.net/wp-content/uploads/2020/11/content-marketing-08-testimonials-1-600x902.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/content-marketing-08/wp-json/wp/v2/pages/25249\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:53:\"//websitedemos.net/content-marketing-08/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48705\";a:12:{s:5:\"title\";s:7:\"Hire Me\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/11/content-marketing-08-hire-me-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/11/content-marketing-08-hire-me-1-600x582.jpg\";s:18:\"astra-page-api-url\";s:71:\"https://websitedemos.net/content-marketing-08/wp-json/wp/v2/pages/25250\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/content-marketing-08/hire-me/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:773;s:7:\"hire-me\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48530\";a:22:{s:5:\"title\";s:11:\"Barber Shop\";s:2:\"id\";i:48530;s:12:\"publish-date\";i:1603984624;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08-600x2737.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08-400x1825.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/barber-shop-08\";s:20:\"astra-site-parent-id\";i:1745;s:15:\"astra-sites-tag\";a:6:{i:478;s:6:\"barber\";i:474;s:8:\"grooming\";i:477;s:9:\"hair-care\";i:984;s:9:\"hairstyle\";i:982;s:11:\"hairstylist\";i:1021;s:14:\"local-business\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2479;s:6:\"beauty\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48535\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08-600x2737.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/barber-shop-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/barber-shop-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48531\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08-about.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08-about-600x1302.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/barber-shop-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/barber-shop-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48532\";a:12:{s:5:\"title\";s:7:\"Barbers\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08-barbers.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08-barbers-600x1247.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/barber-shop-08/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/barber-shop-08/barbers/\";s:15:\"astra-sites-tag\";a:2:{i:478;s:6:\"barber\";i:486;s:4:\"team\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48534\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08-gallery.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08-gallery-600x1791.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/barber-shop-08/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/barber-shop-08/gallery/\";s:15:\"astra-sites-tag\";a:2:{i:461;s:7:\"gallery\";i:451;s:4:\"work\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48533\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08-contact.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/barber-shop-08-contact-600x1076.jpg\";s:18:\"astra-page-api-url\";s:62:\"https://websitedemos.net/barber-shop-08/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/barber-shop-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55425\";a:22:{s:5:\"title\";s:7:\"Charity\";s:2:\"id\";i:55425;s:12:\"publish-date\";i:1621889386;s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-08-600x1661.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-08-400x1107.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/communities-08\";s:20:\"astra-site-parent-id\";i:2116;s:15:\"astra-sites-tag\";a:11:{i:625;s:7:\"charity\";i:2126;s:20:\"charity-organization\";i:893;s:6:\"church\";i:2125;s:9:\"community\";i:2128;s:16:\"community-center\";i:1013;s:8:\"donation\";i:2124;s:17:\"environmental-ngo\";i:624;s:10:\"foundation\";i:977;s:10:\"non-profit\";i:745;s:12:\"organization\";i:2127;s:10:\"social-ngo\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:39;s:4:\"free\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2492;s:10:\"non-profit\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-55427\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-08-contact-1-600x1191.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/communities-08/wp-json/wp/v2/pages/370\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/communities-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-55426\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-08-about-us-600x1984.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/communities-08/wp-json/wp/v2/pages/366\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/communities-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55428\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-08.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-08-600x1661.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/communities-08/wp-json/wp/v2/pages/364\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/communities-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-55429\";a:12:{s:5:\"title\";s:10:\"What we do\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-08-what-we-do-1.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2021/05/communities-08-what-we-do-1-600x1961.jpg\";s:18:\"astra-page-api-url\";s:63:\"https://websitedemos.net/communities-08/wp-json/wp/v2/pages/368\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/communities-08/what-we-do/\";s:15:\"astra-sites-tag\";a:1:{i:628;s:10:\"what-we-do\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48132\";a:22:{s:5:\"title\";s:15:\"Sierra Industry\";s:2:\"id\";i:48132;s:12:\"publish-date\";i:1603893474;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08-600x2066.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08-400x1377.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/sierra-industry-08\";s:20:\"astra-site-parent-id\";i:1703;s:15:\"astra-sites-tag\";a:4:{i:985;s:7:\"factory\";i:492;s:8:\"industry\";i:490;s:13:\"manufacturing\";i:489;s:10:\"production\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2500;s:12:\"multipurpose\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48135\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08-600x2066.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/sierra-industry-08/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/sierra-industry-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48133\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08-about-1-600x1341.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/sierra-industry-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/sierra-industry-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48134\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08-contact-1-600x1076.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/sierra-industry-08/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/sierra-industry-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48136\";a:12:{s:5:\"title\";s:8:\"Products\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08-products-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08-products-1-600x1348.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/sierra-industry-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/sierra-industry-08/products/\";s:15:\"astra-sites-tag\";a:1:{i:540;s:8:\"products\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48137\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08-projects-1.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-industry-08-projects-1-600x1322.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/sierra-industry-08/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/sierra-industry-08/projects/\";s:15:\"astra-sites-tag\";a:1:{i:1613;s:8:\"projects\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48103\";a:22:{s:5:\"title\";s:13:\"Sierra Nature\";s:2:\"id\";i:48103;s:12:\"publish-date\";i:1603893479;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-600x1860.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-400x1240.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/sierra-nature-08\";s:20:\"astra-site-parent-id\";i:1701;s:15:\"astra-sites-tag\";a:6:{i:538;s:6:\"forest\";i:537;s:13:\"national-park\";i:535;s:6:\"nature\";i:534;s:11:\"nature-park\";i:539;s:9:\"sanctuary\";i:536;s:10:\"wilderness\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2500;s:12:\"multipurpose\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48104\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-about-2.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-about-2-600x1235.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/sierra-nature-08/wp-json/wp/v2/pages/962\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/sierra-nature-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48105\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-contact-2-600x930.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/sierra-nature-08/wp-json/wp/v2/pages/968\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/sierra-nature-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48106\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-600x1860.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/sierra-nature-08/wp-json/wp/v2/pages/960\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/sierra-nature-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48107\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-projects-2.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-projects-2-600x1203.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/sierra-nature-08/wp-json/wp/v2/pages/966\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/sierra-nature-08/projects/\";s:15:\"astra-sites-tag\";a:1:{i:1613;s:8:\"projects\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48108\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-services-2.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/sierra-nature-08-services-2-600x1140.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/sierra-nature-08/wp-json/wp/v2/pages/964\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/sierra-nature-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-54442\";a:22:{s:5:\"title\";s:11:\"Coffee Shop\";s:2:\"id\";i:54442;s:12:\"publish-date\";i:1621459375;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/05/coffee-shop-08-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/05/coffee-shop-08-1-600x2849.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/05/coffee-shop-08-1-400x1899.jpg\";s:14:\"astra-site-url\";s:33:\"//websitedemos.net/coffee-shop-08\";s:20:\"astra-site-parent-id\";i:2033;s:15:\"astra-sites-tag\";a:10:{i:693;s:4:\"cafe\";i:2042;s:8:\"cafe-bar\";i:1527;s:9:\"cafeteria\";i:2043;s:12:\"coffee-house\";i:1575;s:11:\"coffee-shop\";i:399;s:8:\"one-page\";i:2421;s:9:\"purchases\";i:2417;s:8:\"reseller\";i:335;s:10:\"restaurant\";i:2041;s:9:\"snack-bar\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-54443\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/05/coffee-shop-08-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2021/05/coffee-shop-08-1-600x2849.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/coffee-shop-08/wp-json/wp/v2/pages/4\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/coffee-shop-08/\";s:15:\"astra-sites-tag\";a:3:{i:423;s:4:\"home\";i:1718;s:7:\"onepage\";i:463;s:11:\"single-page\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48496\";a:22:{s:5:\"title\";s:20:\"Interior Design Firm\";s:2:\"id\";i:48496;s:12:\"publish-date\";i:1603984630;s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08-600x2293.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08-400x1528.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/interior-firm-08\";s:20:\"astra-site-parent-id\";i:1742;s:15:\"astra-sites-tag\";a:6:{i:435;s:12:\"architecture\";i:436;s:8:\"interior\";i:434;s:15:\"interior-design\";i:422;s:11:\"landscaping\";i:1022;s:12:\"professional\";i:437;s:6:\"zoning\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:2:{i:2488;s:9:\"portfolio\";i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48499\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08-600x2293.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/interior-firm-08/wp-json/wp/v2/pages/1224\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/interior-firm-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48500\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08-projects.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08-projects-600x1792.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/interior-firm-08/wp-json/wp/v2/pages/1182\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/interior-firm-08/portfolio/\";s:15:\"astra-sites-tag\";a:1:{i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48497\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08-about-1-600x1592.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/interior-firm-08/wp-json/wp/v2/pages/1184\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/interior-firm-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48501\";a:12:{s:5:\"title\";s:12:\"Testimonials\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08-testimonial.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08-testimonial-600x1090.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/interior-firm-08/wp-json/wp/v2/pages/1186\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/interior-firm-08/testimonials/\";s:15:\"astra-sites-tag\";a:1:{i:433;s:12:\"testimonials\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48498\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/interior-firm-08-contact-1-600x1316.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/interior-firm-08/wp-json/wp/v2/pages/1188\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/interior-firm-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47957\";a:22:{s:5:\"title\";s:18:\"Italian Restaurant\";s:2:\"id\";i:47957;s:12:\"publish-date\";i:1603828772;s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/italian-restaurant-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/italian-restaurant-08-600x2375.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/italian-restaurant-08-400x1583.jpg\";s:14:\"astra-site-url\";s:40:\"//websitedemos.net/italian-restaurant-08\";s:20:\"astra-site-parent-id\";i:1689;s:15:\"astra-sites-tag\";a:10:{i:562;s:6:\"bistro\";i:972;s:4:\"club\";i:560;s:7:\"cuisine\";i:561;s:6:\"eatery\";i:336;s:4:\"food\";i:350;s:5:\"hotel\";i:563;s:18:\"italian-restaurant\";i:559;s:6:\"outlet\";i:335;s:10:\"restaurant\";i:970;s:6:\"restro\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2496;s:15:\"restaurant-food\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-47960\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/italian-restaurant-08.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/italian-restaurant-08-600x2375.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/italian-restaurant-08/wp-json/wp/v2/pages/56\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/italian-restaurant-08/\";s:15:\"astra-sites-tag\";a:2:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47961\";a:12:{s:5:\"title\";s:4:\"Menu\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/italian-restaurant-08-menu-2.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/italian-restaurant-08-menu-2-600x2011.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/italian-restaurant-08/wp-json/wp/v2/pages/54\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/italian-restaurant-08/menu/\";s:15:\"astra-sites-tag\";a:2:{i:1579;s:9:\"food-menu\";i:565;s:4:\"menu\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47958\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/italian-restaurant-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/italian-restaurant-08-about-us-600x1754.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/italian-restaurant-08/wp-json/wp/v2/pages/53\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/italian-restaurant-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47959\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/italian-restaurant-08-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2020/10/italian-restaurant-08-contact-2-600x1278.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/italian-restaurant-08/wp-json/wp/v2/pages/55\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/italian-restaurant-08/contact/\";s:15:\"astra-sites-tag\";a:2:{i:415;s:7:\"contact\";i:454;s:10:\"contact-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48342\";a:22:{s:5:\"title\";s:5:\"Coach\";s:2:\"id\";i:48342;s:12:\"publish-date\";i:1603908987;s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08-600x1970.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08-400x1313.jpg\";s:14:\"astra-site-url\";s:27:\"//websitedemos.net/coach-08\";s:20:\"astra-site-parent-id\";i:1723;s:15:\"astra-sites-tag\";a:5:{i:610;s:8:\"coaching\";i:608;s:8:\"guidance\";i:612;s:10:\"life-coach\";i:609;s:9:\"motivator\";i:611;s:16:\"self-improvement\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48347\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08-600x1970.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/coach-08/wp-json/wp/v2/pages/389\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:28:\"//websitedemos.net/coach-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48343\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08-about-1-600x1638.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/coach-08/wp-json/wp/v2/pages/391\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/coach-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48346\";a:12:{s:5:\"title\";s:6:\"e-Book\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08-ebook.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08-ebook-600x1161.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/coach-08/wp-json/wp/v2/pages/393\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/coach-08/e-book/\";s:15:\"astra-sites-tag\";a:1:{i:748;s:5:\"ebook\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48345\";a:12:{s:5:\"title\";s:7:\"Courses\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08-courses-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08-courses-1-600x1018.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/coach-08/wp-json/wp/v2/pages/395\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/coach-08/courses/\";s:15:\"astra-sites-tag\";a:1:{i:462;s:7:\"courses\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48344\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/coach-08-contact-1-600x855.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/coach-08/wp-json/wp/v2/pages/397\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/coach-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48231\";a:22:{s:5:\"title\";s:20:\"Motivational Speaker\";s:2:\"id\";i:48231;s:12:\"publish-date\";i:1603901316;s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/motivational-speaker-08-1.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/motivational-speaker-08-1-600x1831.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/motivational-speaker-08-1-400x1220.jpg\";s:14:\"astra-site-url\";s:42:\"//websitedemos.net/motivational-speaker-08\";s:20:\"astra-site-parent-id\";i:1708;s:15:\"astra-sites-tag\";a:3:{i:1545;s:21:\"inspirational-speaker\";i:855;s:20:\"motivational-speaker\";i:1709;s:7:\"speaker\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:37;s:4:\"blog\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2483;s:15:\"expert-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-48235\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/motivational-speaker-08-1.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/motivational-speaker-08-1-600x1831.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/motivational-speaker-08/wp-json/wp/v2/pages/624\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/motivational-speaker-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48232\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/motivational-speaker-08-about-2.jpg\";s:19:\"thumbnail-image-url\";s:96:\"https://websitedemos.net/wp-content/uploads/2020/10/motivational-speaker-08-about-2-600x1154.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/motivational-speaker-08/wp-json/wp/v2/pages/626\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/motivational-speaker-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48233\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/motivational-speaker-08-blog-2.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/motivational-speaker-08-blog-2-600x1063.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/motivational-speaker-08/wp-json/wp/v2/pages/628\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/motivational-speaker-08/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48234\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/motivational-speaker-08-contact-2.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/motivational-speaker-08-contact.jpg\";s:18:\"astra-page-api-url\";s:72:\"https://websitedemos.net/motivational-speaker-08/wp-json/wp/v2/pages/630\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:51:\"//websitedemos.net/motivational-speaker-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48562\";a:22:{s:5:\"title\";s:27:\"Gardening &amp; Landscaping\";s:2:\"id\";i:48562;s:12:\"publish-date\";i:1603984618;s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08-600x2558.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08-400x1705.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/gardener-08\";s:20:\"astra-site-parent-id\";i:1746;s:15:\"astra-sites-tag\";a:7:{i:416;s:11:\"garden-care\";i:421;s:18:\"garden-maintenance\";i:420;s:9:\"gardening\";i:422;s:11:\"landscaping\";i:417;s:9:\"lawn-care\";i:419;s:8:\"planting\";i:418;s:12:\"weed-control\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2476;s:9:\"gardening\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:2;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48566\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08-600x2558.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/gardener-08/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/gardener-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48563\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08-about-1-600x1625.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/gardener-08/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/gardener-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48567\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08-services-1-600x1611.jpg\";s:18:\"astra-page-api-url\";s:58:\"https://websitedemos.net/gardener-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/gardener-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48565\";a:12:{s:5:\"title\";s:7:\"Gallery\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08-gallery-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08-gallery-1-600x994.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/gardener-08/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/gardener-08/gallery/\";s:15:\"astra-sites-tag\";a:1:{i:461;s:7:\"gallery\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48564\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/gardener-08-contact-1-600x987.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/gardener-08/wp-json/wp/v2/pages/13\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/gardener-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-55358\";a:22:{s:5:\"title\";s:17:\"Web Design Agency\";s:2:\"id\";i:55358;s:12:\"publish-date\";i:1621624720;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2021/05/demo-screenshot.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/05/demo-screenshot-600x1886.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/05/demo-screenshot-400x1257.jpg\";s:14:\"astra-site-url\";s:39:\"//websitedemos.net/web-design-agency-08\";s:20:\"astra-site-parent-id\";i:2095;s:15:\"astra-sites-tag\";a:4:{i:663;s:6:\"agency\";i:399;s:8:\"one-page\";i:463;s:11:\"single-page\";i:2159;s:17:\"web-design-agency\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:39;s:4:\"free\";i:36;s:5:\"other\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2487;s:6:\"agency\";}s:16:\"required-plugins\";a:0:{}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-55567\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/web-design-agency-08.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2021/05/web-design-agency-08.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/web-design-agency-08/wp-json/wp/v2/pages/5\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/web-design-agency-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:61;s:4:\"free\";i:139;s:5:\"other\";}s:16:\"required-plugins\";a:0:{}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48225\";a:22:{s:5:\"title\";s:12:\"Construction\";s:2:\"id\";i:48225;s:12:\"publish-date\";i:1603905869;s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08-600x3030.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08-400x2020.jpg\";s:14:\"astra-site-url\";s:34:\"//websitedemos.net/construction-08\";s:20:\"astra-site-parent-id\";i:1707;s:15:\"astra-sites-tag\";a:6:{i:435;s:12:\"architecture\";i:979;s:7:\"company\";i:484;s:12:\"construction\";i:436;s:8:\"interior\";i:812;s:6:\"office\";i:485;s:11:\"real-estate\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2484;s:11:\"real-estate\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48228\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:71:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08-600x3030.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/construction-08/wp-json/wp/v2/pages/1815\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/construction-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48226\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08-about.jpg\";s:19:\"thumbnail-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08-about-600x1830.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/construction-08/wp-json/wp/v2/pages/1816\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/construction-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48230\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08-services.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08-services-600x1372.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/construction-08/wp-json/wp/v2/pages/1817\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/construction-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48229\";a:12:{s:5:\"title\";s:8:\"Projects\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08-projects.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08-projects-600x1712.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/construction-08/wp-json/wp/v2/pages/1818\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/construction-08/projects/\";s:15:\"astra-sites-tag\";a:1:{i:1613;s:8:\"projects\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48227\";a:12:{s:5:\"title\";s:10:\"Contact Us\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:91:\"https://websitedemos.net/wp-content/uploads/2020/10/construction-08-contact-us-600x1078.jpg\";s:18:\"astra-page-api-url\";s:65:\"https://websitedemos.net/construction-08/wp-json/wp/v2/pages/1819\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/construction-08/contact-us/\";s:15:\"astra-sites-tag\";a:1:{i:454;s:10:\"contact-us\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48374\";a:22:{s:5:\"title\";s:16:\"Co-Working Space\";s:2:\"id\";i:48374;s:12:\"publish-date\";i:1603963845;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08-600x2179.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08-400x1453.jpg\";s:14:\"astra-site-url\";s:38:\"//websitedemos.net/co-working-space-08\";s:20:\"astra-site-parent-id\";i:1729;s:15:\"astra-sites-tag\";a:5:{i:692;s:8:\"business\";i:694;s:16:\"co-working-place\";i:695;s:13:\"collaboration\";i:1453;s:15:\"coworking-space\";i:691;s:10:\"work-place\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:0:{}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48375\";a:12:{s:5:\"title\";s:8:\"About Us\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08-about-us.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08-about-us-600x1618.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/co-working-space-08/wp-json/wp/v2/pages/1131\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:48:\"//websitedemos.net/co-working-space-08/about-us/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48376\";a:12:{s:5:\"title\";s:9:\"Amenities\";s:18:\"featured-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08-amenities.jpg\";s:19:\"thumbnail-image-url\";s:94:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08-amenities-600x1915.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/co-working-space-08/wp-json/wp/v2/pages/1132\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:49:\"//websitedemos.net/co-working-space-08/amenities/\";s:15:\"astra-sites-tag\";a:1:{i:777;s:9:\"amenities\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48377\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08-contact-us.jpg\";s:19:\"thumbnail-image-url\";s:95:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08-contact-us-600x1305.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/co-working-space-08/wp-json/wp/v2/pages/1133\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/co-working-space-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48378\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08-600x2179.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/co-working-space-08/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:39:\"//websitedemos.net/co-working-space-08/\";s:15:\"astra-sites-tag\";a:1:{i:814;s:8:\"homepage\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48379\";a:12:{s:5:\"title\";s:7:\"Pricing\";s:18:\"featured-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08-pricing-plans.jpg\";s:19:\"thumbnail-image-url\";s:98:\"https://websitedemos.net/wp-content/uploads/2020/10/co-working-space-08-pricing-plans-600x2176.jpg\";s:18:\"astra-page-api-url\";s:69:\"https://websitedemos.net/co-working-space-08/wp-json/wp/v2/pages/1134\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/co-working-space-08/pricing/\";s:15:\"astra-sites-tag\";a:1:{i:585;s:7:\"pricing\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48297\";a:22:{s:5:\"title\";s:18:\"Wedding Invitation\";s:2:\"id\";i:48297;s:12:\"publish-date\";i:1603905879;s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/10/wedding-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/wedding-08-600x2270.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/wedding-08-400x1513.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/wedding-08\";s:20:\"astra-site-parent-id\";i:1716;s:15:\"astra-sites-tag\";a:5:{i:699;s:10:\"invitation\";i:746;s:13:\"one-page-site\";i:463;s:11:\"single-page\";i:697;s:7:\"wedding\";i:1457;s:18:\"wedding-invitation\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:1:{i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2489;s:16:\"event-invitation\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-48298\";a:12:{s:5:\"title\";s:18:\"Wedding Invitation\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/10/wedding-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/wedding-08-600x2270.jpg\";s:18:\"astra-page-api-url\";s:57:\"https://websitedemos.net/wedding-08/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/wedding-08/\";s:15:\"astra-sites-tag\";a:3:{i:423;s:4:\"home\";i:1718;s:7:\"onepage\";i:1457;s:18:\"wedding-invitation\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:1:{i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-56731\";a:22:{s:5:\"title\";s:13:\"Prime Lawyers\";s:2:\"id\";i:56731;s:12:\"publish-date\";i:1626107534;s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-1.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-1-600x2347.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-1-400x1565.jpg\";s:14:\"astra-site-url\";s:25:\"//websitedemos.net/law-08\";s:20:\"astra-site-parent-id\";i:2255;s:15:\"astra-sites-tag\";a:7:{i:704;s:13:\"corporate-law\";i:701;s:12:\"criminal-law\";i:703;s:11:\"enforcement\";i:968;s:7:\"justice\";i:702;s:8:\"law-firm\";i:706;s:6:\"lawyer\";i:1022;s:12:\"professional\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2482;s:3:\"law\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-56732\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:70:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-about-1-600x1425.jpg\";s:18:\"astra-page-api-url\";s:53:\"https://websitedemos.net/law-08/wp-json/wp/v2/pages/8\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:32:\"//websitedemos.net/law-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56733\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-contact-1-600x875.jpg\";s:18:\"astra-page-api-url\";s:54:\"https://websitedemos.net/law-08/wp-json/wp/v2/pages/11\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/law-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-56734\";a:12:{s:5:\"title\";s:3:\"FAQ\";s:18:\"featured-image-url\";s:68:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-faq-1.jpg\";s:19:\"thumbnail-image-url\";s:77:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-faq-1-600x1042.jpg\";s:18:\"astra-page-api-url\";s:54:\"https://websitedemos.net/law-08/wp-json/wp/v2/pages/10\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/law-08/faq/\";s:15:\"astra-sites-tag\";a:2:{i:426;s:3:\"faq\";i:1476;s:26:\"frequently-asked-questions\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56735\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-1.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-1-600x2347.jpg\";s:18:\"astra-page-api-url\";s:53:\"https://websitedemos.net/law-08/wp-json/wp/v2/pages/7\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:26:\"//websitedemos.net/law-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-56736\";a:12:{s:5:\"title\";s:13:\"Practice Area\";s:18:\"featured-image-url\";s:78:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-practice-area-1.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2021/07/law-08-practice-area-1-600x1813.jpg\";s:18:\"astra-page-api-url\";s:53:\"https://websitedemos.net/law-08/wp-json/wp/v2/pages/9\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/law-08/practice-area/\";s:15:\"astra-sites-tag\";a:2:{i:707;s:13:\"practice-area\";i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48263\";a:22:{s:5:\"title\";s:13:\"Makeup Artist\";s:2:\"id\";i:48263;s:12:\"publish-date\";i:1603908979;s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-1-600x2017.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-1-400x1344.jpg\";s:14:\"astra-site-url\";s:35:\"//websitedemos.net/makeup-artist-08\";s:20:\"astra-site-parent-id\";i:1713;s:15:\"astra-sites-tag\";a:6:{i:579;s:14:\"bridal-make-up\";i:477;s:9:\"hair-care\";i:575;s:11:\"hair-styles\";i:982;s:11:\"hairstylist\";i:577;s:13:\"makeup-artist\";i:1728;s:13:\"makeup-studio\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2479;s:6:\"beauty\";}s:16:\"required-plugins\";a:3:{i:0;a:3:{s:4:\"slug\";s:13:\"astra-widgets\";s:4:\"init\";s:31:\"astra-widgets/astra-widgets.php\";s:4:\"name\";s:13:\"Astra Widgets\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:2;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48266\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-1-600x2017.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/makeup-artist-08/wp-json/wp/v2/pages/1299\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/makeup-artist-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48264\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-about-1-600x1155.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/makeup-artist-08/wp-json/wp/v2/pages/1300\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/makeup-artist-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48268\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-services-1.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-services-1-600x1450.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/makeup-artist-08/wp-json/wp/v2/pages/1301\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:45:\"//websitedemos.net/makeup-artist-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48267\";a:12:{s:5:\"title\";s:9:\"Portfolio\";s:18:\"featured-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-portfolio-1.jpg\";s:19:\"thumbnail-image-url\";s:93:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-portfolio-1-600x1205.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/makeup-artist-08/wp-json/wp/v2/pages/1302\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/makeup-artist-08/portfolio/\";s:15:\"astra-sites-tag\";a:1:{i:444;s:9:\"portfolio\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48265\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/makeup-artist-08-contact-1-600x866.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/makeup-artist-08/wp-json/wp/v2/pages/1303\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/makeup-artist-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48269\";a:22:{s:5:\"title\";s:17:\"Cleaning Services\";s:2:\"id\";i:48269;s:12:\"publish-date\";i:1603905875;s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08-600x2372.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08-400x1581.jpg\";s:14:\"astra-site-url\";s:29:\"//websitedemos.net/cleaner-08\";s:20:\"astra-site-parent-id\";i:1714;s:15:\"astra-sites-tag\";a:7:{i:680;s:8:\"cleaning\";i:679;s:17:\"cleaning-services\";i:673;s:19:\"commercial-cleaning\";i:674;s:17:\"domestic-cleaning\";i:1407;s:13:\"house-keeping\";i:676;s:11:\"maintenance\";i:677;s:7:\"washing\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2477;s:13:\"home-services\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:5:{s:8:\"id-48273\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:66:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08.jpg\";s:19:\"thumbnail-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08-600x2372.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/cleaner-08/wp-json/wp/v2/pages/1696\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:30:\"//websitedemos.net/cleaner-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48270\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08-about-1-600x2045.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/cleaner-08/wp-json/wp/v2/pages/1352\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/cleaner-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48274\";a:12:{s:5:\"title\";s:11:\"Residential\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08-residential-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08-residential-1-600x1338.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/cleaner-08/wp-json/wp/v2/pages/1348\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/cleaner-08/residential/\";s:15:\"astra-sites-tag\";a:1:{i:776;s:20:\"residential-cleaning\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48271\";a:12:{s:5:\"title\";s:10:\"Commercial\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08-commercial-1.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08-commercial-1-600x1498.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/cleaner-08/wp-json/wp/v2/pages/1350\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/cleaner-08/commercial/\";s:15:\"astra-sites-tag\";a:1:{i:673;s:19:\"commercial-cleaning\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-48272\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08-contact-1.jpg\";s:19:\"thumbnail-image-url\";s:85:\"https://websitedemos.net/wp-content/uploads/2020/10/cleaner-08-contact-1-600x1054.jpg\";s:18:\"astra-page-api-url\";s:60:\"https://websitedemos.net/cleaner-08/wp-json/wp/v2/pages/1354\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/cleaner-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-54447\";a:22:{s:5:\"title\";s:22:\"Health &#038; Wellness\";s:2:\"id\";i:54447;s:12:\"publish-date\";i:1621454260;s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-home-08.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-home-08-600x2273.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-home-08-400x1515.jpg\";s:14:\"astra-site-url\";s:37:\"//websitedemos.net/health-wellness-08\";s:20:\"astra-site-parent-id\";i:2034;s:15:\"astra-sites-tag\";a:11:{i:337;s:6:\"clinic\";i:338;s:6:\"dental\";i:2047;s:13:\"dental-clinic\";i:601;s:6:\"doctor\";i:2045;s:6:\"health\";i:604;s:10:\"healthcare\";i:603;s:7:\"medical\";i:2046;s:14:\"medical-clinic\";i:621;s:12:\"psychiatrist\";i:2044;s:9:\"therapist\";i:619;s:8:\"wellness\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2490;s:10:\"healthcare\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-54449\";a:12:{s:5:\"title\";s:7:\"Contact\";s:18:\"featured-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-contact-08.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-contact-08-600x852.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/health-wellness-08/wp-json/wp/v2/pages/130\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:46:\"//websitedemos.net/health-wellness-08/contact/\";s:15:\"astra-sites-tag\";a:1:{i:415;s:7:\"contact\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-54450\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-home-08.jpg\";s:19:\"thumbnail-image-url\";s:88:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-home-08-600x2273.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/health-wellness-08/wp-json/wp/v2/pages/12\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:38:\"//websitedemos.net/health-wellness-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-54448\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-about-08.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-about-08-600x1484.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/health-wellness-08/wp-json/wp/v2/pages/87\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:44:\"//websitedemos.net/health-wellness-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-54451\";a:12:{s:5:\"title\";s:8:\"Services\";s:18:\"featured-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-services-08.jpg\";s:19:\"thumbnail-image-url\";s:92:\"https://websitedemos.net/wp-content/uploads/2021/05/health-wellness-services-08-600x1214.jpg\";s:18:\"astra-page-api-url\";s:67:\"https://websitedemos.net/health-wellness-08/wp-json/wp/v2/pages/120\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:47:\"//websitedemos.net/health-wellness-08/services/\";s:15:\"astra-sites-tag\";a:1:{i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48093\";a:22:{s:5:\"title\";s:13:\"Hotel and BnB\";s:2:\"id\";i:48093;s:12:\"publish-date\";i:1603893483;s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/10/hotel-08.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/hotel-08-600x2604.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/hotel-08-400x1736.jpg\";s:14:\"astra-site-url\";s:27:\"//websitedemos.net/hotel-08\";s:20:\"astra-site-parent-id\";i:1700;s:15:\"astra-sites-tag\";a:8:{i:560;s:7:\"cuisine\";i:336;s:4:\"food\";i:350;s:5:\"hotel\";i:712;s:5:\"lodge\";i:711;s:5:\"motel\";i:399;s:8:\"one-page\";i:714;s:6:\"resort\";i:463;s:11:\"single-page\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:27;s:8:\"business\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:0:{}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2498;s:12:\"hotel-travel\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:1:{s:8:\"id-48094\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:64:\"https://websitedemos.net/wp-content/uploads/2020/10/hotel-08.jpg\";s:19:\"thumbnail-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/hotel-08-600x2604.jpg\";s:18:\"astra-page-api-url\";s:55:\"https://websitedemos.net/hotel-08/wp-json/wp/v2/pages/6\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:28:\"//websitedemos.net/hotel-08/\";s:15:\"astra-sites-tag\";a:3:{i:423;s:4:\"home\";i:814;s:8:\"homepage\";i:463;s:11:\"single-page\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:60;s:8:\"business\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-48304\";a:22:{s:5:\"title\";s:20:\"Health &amp; Fitness\";s:2:\"id\";i:48304;s:12:\"publish-date\";i:1603905166;s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/health-fitness-08-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/health-fitness-08-1-600x2095.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/health-fitness-08-1-400x1396.jpg\";s:14:\"astra-site-url\";s:36:\"//websitedemos.net/health-fitness-08\";s:20:\"astra-site-parent-id\";i:1720;s:15:\"astra-sites-tag\";a:4:{i:499;s:7:\"fitness\";i:521;s:12:\"fitness-blog\";i:1721;s:11:\"health-blog\";i:519;s:14:\"healthy-living\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:37;s:4:\"blog\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:6:{i:2828;s:4:\"blog\";i:2825;s:8:\"coaching\";i:2787;s:11:\"gym-fitness\";i:2875;s:12:\"health-coach\";i:2834;s:10:\"healthcare\";i:2770;s:8:\"personal\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2480;s:16:\"fitness-wellness\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-48307\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:75:\"https://websitedemos.net/wp-content/uploads/2020/10/health-fitness-08-1.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/health-fitness-08-1-600x2095.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/health-fitness-08/wp-json/wp/v2/pages/910\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:37:\"//websitedemos.net/health-fitness-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48306\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:79:\"https://websitedemos.net/wp-content/uploads/2020/10/health-fitness-08-blogs.jpg\";s:19:\"thumbnail-image-url\";s:87:\"https://websitedemos.net/wp-content/uploads/2020/10/health-fitness-08-blogs-600x999.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/health-fitness-08/wp-json/wp/v2/pages/914\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:42:\"//websitedemos.net/health-fitness-08/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-48305\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:81:\"https://websitedemos.net/wp-content/uploads/2020/10/health-fitness-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:90:\"https://websitedemos.net/wp-content/uploads/2020/10/health-fitness-08-about-1-600x1437.jpg\";s:18:\"astra-page-api-url\";s:66:\"https://websitedemos.net/health-fitness-08/wp-json/wp/v2/pages/912\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:43:\"//websitedemos.net/health-fitness-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47918\";a:22:{s:5:\"title\";s:11:\"Travel Blog\";s:2:\"id\";i:47918;s:12:\"publish-date\";i:1603828787;s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2020/10/travel-08.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/travel-08-600x2232.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/travel-08-400x1488.jpg\";s:14:\"astra-site-url\";s:28:\"//websitedemos.net/travel-08\";s:20:\"astra-site-parent-id\";i:1682;s:15:\"astra-sites-tag\";a:5:{i:480;s:4:\"blog\";i:430;s:7:\"tourism\";i:427;s:6:\"travel\";i:750;s:11:\"travel-blog\";i:1683;s:14:\"travel-blogger\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:37;s:4:\"blog\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:4:{i:2828;s:4:\"blog\";i:2777;s:8:\"business\";i:2831;s:7:\"service\";i:2775;s:14:\"travel-tourism\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2497;s:4:\"blog\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:4:{s:8:\"id-47922\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:65:\"https://websitedemos.net/wp-content/uploads/2020/10/travel-08.jpg\";s:19:\"thumbnail-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/travel-08-600x2232.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/travel-08/wp-json/wp/v2/pages/1718\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:29:\"//websitedemos.net/travel-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47920\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:72:\"https://websitedemos.net/wp-content/uploads/2020/10/travel-08-blog-1.jpg\";s:19:\"thumbnail-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/travel-08-blog-1-600x890.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/travel-08/wp-json/wp/v2/pages/1722\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:34:\"//websitedemos.net/travel-08/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47919\";a:12:{s:5:\"title\";s:5:\"About\";s:18:\"featured-image-url\";s:73:\"https://websitedemos.net/wp-content/uploads/2020/10/travel-08-about-1.jpg\";s:19:\"thumbnail-image-url\";s:82:\"https://websitedemos.net/wp-content/uploads/2020/10/travel-08-about-1-600x1258.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/travel-08/wp-json/wp/v2/pages/1720\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:35:\"//websitedemos.net/travel-08/about/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47921\";a:12:{s:5:\"title\";s:11:\"Destination\";s:18:\"featured-image-url\";s:80:\"https://websitedemos.net/wp-content/uploads/2020/10/travel-08-destinations-1.jpg\";s:19:\"thumbnail-image-url\";s:89:\"https://websitedemos.net/wp-content/uploads/2020/10/travel-08-destinations-1-600x1525.jpg\";s:18:\"astra-page-api-url\";s:59:\"https://websitedemos.net/travel-08/wp-json/wp/v2/pages/1724\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:41:\"//websitedemos.net/travel-08/destination/\";s:15:\"astra-sites-tag\";a:2:{i:785;s:11:\"destination\";i:425;s:8:\"services\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}s:8:\"id-47942\";a:22:{s:5:\"title\";s:8:\"Pet Care\";s:2:\"id\";i:47942;s:12:\"publish-date\";i:1603828778;s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-care-08.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-care-08-600x1649.jpg\";s:28:\"fullpage-thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-care-08-400x1099.jpg\";s:14:\"astra-site-url\";s:30:\"//websitedemos.net/pet-care-08\";s:20:\"astra-site-parent-id\";i:1685;s:15:\"astra-sites-tag\";a:7:{i:1688;s:8:\"pet-blog\";i:374;s:8:\"pet-care\";i:1686;s:13:\"pet-care-blog\";i:372;s:11:\"pet-minding\";i:371;s:11:\"pet-sitting\";i:373;s:12:\"pet-training\";i:1687;s:11:\"pet-walking\";}s:16:\"astra-sites-type\";s:4:\"free\";s:19:\"astra-site-category\";a:2:{i:37;s:4:\"blog\";i:39;s:4:\"free\";}s:29:\"astra-sites-template-category\";a:3:{i:2777;s:8:\"business\";i:2809;s:10:\"pet-animal\";i:2831;s:7:\"service\";}s:23:\"astra-site-page-builder\";s:9:\"gutenberg\";s:10:\"categories\";a:1:{i:2472;s:4:\"pets\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}i:1;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}s:11:\"post-status\";s:7:\"publish\";s:12:\"post-content\";s:0:\"\";s:12:\"post-excerpt\";s:0:\"\";s:5:\"pages\";a:3:{s:8:\"id-47945\";a:12:{s:5:\"title\";s:4:\"Home\";s:18:\"featured-image-url\";s:67:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-care-08.jpg\";s:19:\"thumbnail-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-care-08-600x1649.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/pet-care-08/wp-json/wp/v2/pages/1040\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:31:\"//websitedemos.net/pet-care-08/\";s:15:\"astra-sites-tag\";a:1:{i:423;s:4:\"home\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}}s:8:\"id-47943\";a:12:{s:5:\"title\";s:8:\"About Me\";s:18:\"featured-image-url\";s:76:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-care-08-about-me.jpg\";s:19:\"thumbnail-image-url\";s:84:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-care-08-about-me-600x748.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/pet-care-08/wp-json/wp/v2/pages/1042\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:40:\"//websitedemos.net/pet-care-08/about-me/\";s:15:\"astra-sites-tag\";a:1:{i:352;s:5:\"about\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}s:8:\"id-47944\";a:12:{s:5:\"title\";s:4:\"Blog\";s:18:\"featured-image-url\";s:74:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-care-08-blog-2.jpg\";s:19:\"thumbnail-image-url\";s:83:\"https://websitedemos.net/wp-content/uploads/2020/10/pet-care-08-blog-2-600x1095.jpg\";s:18:\"astra-page-api-url\";s:61:\"https://websitedemos.net/pet-care-08/wp-json/wp/v2/pages/1044\";s:12:\"dynamic-page\";s:2:\"no\";s:14:\"astra-page-url\";s:36:\"//websitedemos.net/pet-care-08/blog/\";s:15:\"astra-sites-tag\";a:1:{i:480;s:4:\"blog\";}s:15:\"site-pages-type\";s:4:\"free\";s:23:\"site-pages-page-builder\";s:9:\"gutenberg\";s:19:\"site-pages-category\";a:0:{}s:26:\"site-pages-parent-category\";a:2:{i:74;s:4:\"blog\";i:61;s:4:\"free\";}s:16:\"required-plugins\";a:1:{i:0;a:3:{s:4:\"slug\";s:29:\"ultimate-addons-for-gutenberg\";s:4:\"init\";s:63:\"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php\";s:4:\"name\";s:7:\"Spectra\";}}}}s:19:\"related-bb-template\";s:0:\"\";s:26:\"related-elementor-template\";s:0:\"\";s:26:\"related-gutenberg-template\";s:0:\"\";}}','no'),(320,'ast-block-templates-last-export-checksums','XySINs3hUOrA','no'),(321,'ast-block-templates-last-export-checksums-time','1684871359','no'),(1410,'elementor_maintenance_mode_exclude_mode','logged_in','yes'),(1424,'theme_switch_menu_locations','a:0:{}','yes'),(4118,'db_upgraded','1','yes'),(2228,'_elementor_editor_upgrade_notice_dismissed','1728097366','yes'),(2348,'api_key','pub_68e39b915e2a99c95eaa9b89857c9de1','yes'),(2349,'source_language','en','yes'),(2350,'target_languages','a:1:{i:0;s:2:\"fr\";}','yes'),(2351,'target_languages_translations','','yes'),(2352,'style_change_language','a:0:{}','yes'),(2353,'style_change_flag','a:0:{}','yes'),(2354,'style_flag','sqr','yes'),(2355,'style_text','full-text','yes'),(2356,'style_position_vertical','top','yes'),(2357,'style_position_horizontal','right','yes'),(2358,'style_indenting_vertical','12','yes'),(2359,'style_indenting_horizontal','24','yes'),(2360,'auto_translate','0','yes'),(2361,'hide_conveythis_logo','0','yes'),(2362,'translate_media','0','yes'),(2363,'translate_document','0','yes'),(2364,'translate_links','0','yes'),(2365,'no_translate_element_id','','yes'),(2366,'change_direction','0','yes'),(2367,'alternate','1','yes'),(2368,'accept_language','','yes'),(2369,'blockpages','a:0:{}','yes'),(2370,'show_javascript','1','yes'),(2371,'mb_admin_notice','a:1:{s:26:\"conveythis_two_week_review\";a:2:{s:5:\"start\";s:10:\"06/22/2023\";s:3:\"int\";i:7;}}','yes'),(2372,'style_position_type','fixed','yes'),(2373,'style_position_vertical_custom','bottom','yes'),(2374,'style_selector_id','','yes'),(2375,'url_structure','regular','yes'),(2376,'style_background_color','#ffffff','yes'),(2377,'style_hover_color','#f6f6f6','yes'),(2378,'style_border_color','#e0e0e0','yes'),(2379,'style_text_color','#000000','yes'),(2380,'style_corner_type','cir','yes'),(2061,'_elementor_global_css','a:7:{s:4:\"time\";i:1686273687;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;b:0;s:3:\"css\";s:0:\"\";}','yes'),(2062,'_elementor_assets_data','a:1:{s:3:\"css\";a:1:{s:7:\"widgets\";a:6:{s:5:\"image\";a:2:{s:7:\"content\";s:269:\"<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>\";s:7:\"version\";s:6:\"3.13.4\";}s:11:\"text-editor\";a:2:{s:7:\"content\";s:719:\"<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>\";s:7:\"version\";s:6:\"3.13.4\";}s:14:\"image-carousel\";a:2:{s:7:\"content\";s:555:\"<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>\";s:7:\"version\";s:6:\"3.13.4\";}s:7:\"heading\";a:2:{s:7:\"content\";s:673:\"<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\";s:7:\"version\";s:6:\"3.13.4\";}s:11:\"google_maps\";a:2:{s:7:\"content\";s:247:\"<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>\";s:7:\"version\";s:6:\"3.13.4\";}s:19:\"eael-event-calendar\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.13.4\";}}}}','yes'),(2063,'elementor_connect_site_key','428af762761330f33f8aa2248e862ec3','yes'),(1355,'backuply_backup_nag','1726629267','yes'),(1403,'elementor_enable_inspector','','yes'),(1404,'elementor_replace_url','','yes'),(1405,'elementor_rollback','','yes'),(1406,'elementor_re_migrate_globals_separator','','yes'),(1407,'elementor_re_migrate_globals','','yes'),(1408,'elementor_beta','no','yes'),(1409,'elementor_maintenance_mode_mode','','yes'),(1411,'elementor_maintenance_mode_exclude_roles','a:0:{}','yes'),(1412,'elementor_maintenance_mode_template_id','','yes'),(1425,'theme_switched_via_customizer','','yes'),(1426,'customize_stashed_theme_mods','a:0:{}','no'),(1417,'theme_mods_twentytwentytwo','a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:19:\"wp_classic_sidebars\";a:1:{s:9:\"sidebar-1\";a:11:{s:4:\"name\";s:14:\"Pie de página\";s:2:\"id\";s:9:\"sidebar-1\";s:11:\"description\";s:61:\"Agregá widgets acá para que aparezcan en el pie de página.\";s:5:\"class\";s:0:\"\";s:13:\"before_widget\";s:39:\"<section id=\"%1$s\" class=\"widget %2$s\">\";s:12:\"after_widget\";s:10:\"</section>\";s:12:\"before_title\";s:25:\"<h2 class=\"widget-title\">\";s:11:\"after_title\";s:5:\"</h2>\";s:14:\"before_sidebar\";s:0:\"\";s:13:\"after_sidebar\";s:0:\"\";s:12:\"show_in_rest\";b:0;}}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1684896244;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:13:{i:0;s:10:\"calendar-2\";i:1;s:10:\"archives-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:14:\"recent-posts-3\";i:6;s:17:\"recent-comments-2\";i:7;s:7:\"block-8\";i:8;s:7:\"block-2\";i:9;s:7:\"block-3\";i:10;s:7:\"block-4\";i:11;s:7:\"block-5\";i:12;s:7:\"block-6\";}s:9:\"sidebar-1\";a:0:{}}}}','no'),(1421,'theme_mods_twentytwentyone','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:3;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1684895997;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:13:{i:0;s:10:\"calendar-2\";i:1;s:10:\"archives-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:14:\"recent-posts-3\";i:6;s:17:\"recent-comments-2\";i:7;s:7:\"block-8\";i:8;s:7:\"block-2\";i:9;s:7:\"block-3\";i:10;s:7:\"block-4\";i:11;s:7:\"block-5\";i:12;s:7:\"block-6\";}s:9:\"sidebar-1\";a:0:{}}}}','no'),(327,'eael_editor_updated_at','1728097925','yes'),(328,'_elementor_settings_update_time','1682818862','yes'),(329,'elementor_cpt_support','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(330,'elementor_disable_color_schemes','yes','yes'),(331,'elementor_disable_typography_schemes','yes','yes'),(332,'elementor_allow_tracking','yes','yes'),(333,'elementor_google_maps_api_key','','yes'),(334,'elementor_css_print_method','external','yes'),(335,'elementor_editor_break_lines','','yes'),(336,'elementor_unfiltered_files_upload','','yes'),(337,'elementor_google_font','1','yes'),(338,'elementor_load_fa4_shim','','yes'),(339,'elementor_meta_generator_tag','','yes'),(340,'elementor_experiment-e_font_icon_svg','default','yes'),(341,'elementor_experiment-container','default','yes'),(342,'elementor_experiment-editor_v2','default','yes'),(343,'elementor_experiment-nested-elements','default','yes'),(344,'elementor_experiment-e_lazyload','default','yes'),(345,'elementor_experiment-e_dom_optimization','default','yes'),(346,'elementor_experiment-e_optimized_assets_loading','default','yes'),(347,'elementor_experiment-e_optimized_css_loading','default','yes'),(348,'elementor_experiment-a11y_improvements','default','yes'),(349,'elementor_experiment-additional_custom_breakpoints','default','yes'),(350,'elementor_experiment-e_swiper_latest','default','yes'),(351,'elementor_experiment-landing-pages','default','yes'),(357,'elementor_custom_tasks','a:0:{}','no');
INSERT INTO `wpjv_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (358,'elementor_log','a:29:{s:32:\"803b54ea20bea61a36e3f2bb765e1526\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-04-30 01:40:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:49:\"Elementor custom task(s) process has been queued.\";s:7:\"\0*\0meta\";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:35:\"Elementor\\Core\\Upgrade\\Custom_Tasks\";i:1;s:24:\"opt_in_recalculate_usage\";}i:1;a:2:{i:0;s:35:\"Elementor\\Core\\Upgrade\\Custom_Tasks\";i:1;s:25:\"opt_in_send_tracking_data\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-04-30 01:40:29\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:35:\"Elementor\\Core\\Upgrade\\Custom_Tasks\";i:1;s:24:\"opt_in_recalculate_usage\";}i:1;a:2:{i:0;s:35:\"Elementor\\Core\\Upgrade\\Custom_Tasks\";i:1;s:25:\"opt_in_send_tracking_data\";}}}s:7:\"message\";s:49:\"Elementor custom task(s) process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"3410bbbca85a08156fe0e89ade60527b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-04-30 01:40:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:37:\"elementor::custom_task_manger Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-04-30 01:40:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:37:\"elementor::custom_task_manger Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"ff1a3854d4b38f809554f3a04abefbd4\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-04-30 01:40:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:49:\"Elementor/Tasks - opt_in_recalculate_usage Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-04-30 01:40:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:49:\"Elementor/Tasks - opt_in_recalculate_usage Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"56a31e513b526b7d7b4ff586c657ed2a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-04-30 01:40:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:51:\"Elementor/Tasks - opt_in_recalculate_usage Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-04-30 01:40:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:51:\"Elementor/Tasks - opt_in_recalculate_usage Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"9b12e60fe45db87d2eb3b2f6b1fc8c0f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-04-30 01:40:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor/Tasks - opt_in_send_tracking_data Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-04-30 01:40:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:50:\"Elementor/Tasks - opt_in_send_tracking_data Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"24d4191e405df512433174e026090b0c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-04-30 01:40:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:52:\"Elementor/Tasks - opt_in_send_tracking_data Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-04-30 01:40:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:52:\"Elementor/Tasks - opt_in_send_tracking_data Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"4bb94aec0a3933c48587bf217ae34f37\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-04-30 01:40:29\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:39:\"elementor::custom_task_manger Completed\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-04-30 01:40:29\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:39:\"elementor::custom_task_manger Completed\";s:4:\"type\";s:4:\"info\";}}s:32:\"2cc3fadf832176ee6086ee0cb2692535\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:91:\"/home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/core/common/modules/ajax/module.php\";s:7:\"\0*\0line\";i:175;s:7:\"\0*\0date\";s:19:\"2023-04-30 04:07:45\";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:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-04-30 04:07:45\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:21:\"Undefined index: data\";s:4:\"file\";s:91:\"/home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/core/common/modules/ajax/module.php\";s:4:\"line\";i:175;s:5:\"trace\";b:1;}}s:32:\"9dac2ff983598693204677f8f64e2504\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:4:\"4997\";s:7:\"\0*\0file\";s:108:\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=3.12.2\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2023-04-30 14:27:54\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:62:\"Cannot read properties of undefined (reading &#039;data&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:23;s:14:\"\0*\0times_dates\";a:23:{i:0;s:19:\"2023-04-30 14:27:54\";i:1;s:19:\"2023-04-30 14:27:54\";i:2;s:19:\"2023-04-30 14:27:54\";i:3;s:19:\"2023-04-30 14:27:54\";i:4;s:19:\"2023-04-30 14:27:54\";i:5;s:19:\"2023-04-30 14:27:54\";i:6;s:19:\"2023-04-30 14:27:54\";i:7;s:19:\"2023-04-30 14:27:54\";i:8;s:19:\"2023-04-30 14:27:54\";i:9;s:19:\"2023-04-30 14:27:54\";i:10;s:19:\"2023-04-30 14:27:54\";i:11;s:19:\"2023-04-30 14:27:54\";i:12;s:19:\"2023-04-30 17:52:18\";i:13;s:19:\"2023-04-30 17:52:18\";i:14;s:19:\"2023-04-30 17:52:18\";i:15;s:19:\"2023-04-30 17:52:18\";i:16;s:19:\"2023-04-30 17:52:18\";i:17;s:19:\"2023-04-30 17:52:18\";i:18;s:19:\"2023-04-30 17:52:18\";i:19;s:19:\"2023-04-30 17:52:18\";i:20;s:19:\"2023-04-30 17:52:18\";i:21;s:19:\"2023-04-30 17:52:18\";i:22;s:19:\"2023-04-30 17:52:18\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1682864874\";s:7:\"message\";s:52:\"Cannot read properties of undefined (reading \'data\')\";s:3:\"url\";s:108:\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=3.12.2\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:4:\"4997\";}}s:32:\"ec0a120f4fce34607972bc999a2f93c3\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-05-13 18:28:05\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-05-13 18:28:05\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"3b69be80166de827fa5a6dde57c39846\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-05-13 18:28:05\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-05-13 18:28:05\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"1e827f05f7983fb0092c4616bc3462c3\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-05-13 18:28:05\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-05-13 18:28:05\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"c361df796f9ffa04dd25804801668d27\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-05-13 18:28:05\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.12.2\";s:2:\"to\";s:6:\"3.13.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-05-13 18:28:05\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.12.2\";s:2:\"to\";s:6:\"3.13.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"54e84a8e41828ff2d4913da68ca0c6b8\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-05-13 18:28:05\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.12.2\";s:2:\"to\";s:6:\"3.13.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-05-13 18:28:05\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.12.2\";s:2:\"to\";s:6:\"3.13.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"be6b1bee6d18f4ffd9b655c4a1c6e84d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-05-23 15:05:26\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-05-23 15:05:26\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"cbfbb336b8904c6ae5ba0a361e325134\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-05-23 15:05:26\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-05-23 15:05:26\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"41d980e94b53d2dceecb89f86eaa3d26\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-05-23 15:05:26\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-05-23 15:05:26\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"bddac3f262f3aaf49dd19b106a400c48\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-05-23 15:05:26\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.13.2\";s:2:\"to\";s:6:\"3.13.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-05-23 15:05:26\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.13.2\";s:2:\"to\";s:6:\"3.13.3\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"8207767bfe43be37af0cd3ca4c5acb23\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-05-23 15:05:26\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.13.2\";s:2:\"to\";s:6:\"3.13.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-05-23 15:05:26\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.13.2\";s:2:\"to\";s:6:\"3.13.3\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"ba4b329373691e1a9c8d2e7548e66307\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:71:\"/home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/core/wp-api.php\";s:7:\"\0*\0line\";i:26;s:7:\"\0*\0date\";s:19:\"2023-05-31 01:52:27\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:1049:\"Uncaught Error: Call to undefined function Elementor\\Core\\get_plugins() in /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/core/wp-api.php:26\nStack trace:\n#0 /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(96): Elementor\\Core\\Wp_Api-&gt;get_plugins()\n#1 /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(58): Elementor\\Modules\\CompatibilityTag\\Base_Module-&gt;get_plugins_with_header()\n#2 /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/modules/compatibility-tag/module.php(57): Elementor\\Modules\\CompatibilityTag\\Base_Module-&gt;get_plugins_to_check()\n#3 /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(148): Elementor\\Modules\\CompatibilityTag\\Module-&gt;get_plugins_to_check()\n#4 /home/center/divyayogamonteregie.org/ca/wp-includes/class-wp-hook.php(308): Elementor\\Modules\\CompatibilityTag\\Base_Module-&gt;Elementor\\Modules\\CompatibilityTag\\{closure}(&#039;&#039;)\n#5 /home/center/divyayogamonteregie.org/ca/\";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:10;s:14:\"\0*\0times_dates\";a:10:{i:0;s:19:\"2023-05-31 01:52:27\";i:1;s:19:\"2023-06-08 01:24:12\";i:2;s:19:\"2023-06-16 01:09:03\";i:3;s:19:\"2023-06-24 01:00:13\";i:4;s:19:\"2023-07-01 02:10:58\";i:5;s:19:\"2023-07-09 01:31:08\";i:6;s:19:\"2023-07-17 01:00:21\";i:7;s:19:\"2023-07-24 01:13:34\";i:8;s:19:\"2023-07-31 01:52:54\";i:9;s:19:\"2023-08-07 01:53:08\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:5:\"error\";s:7:\"message\";s:1024:\"Uncaught Error: Call to undefined function Elementor\\Core\\get_plugins() in /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/core/wp-api.php:26\nStack trace:\n#0 /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(96): Elementor\\Core\\Wp_Api->get_plugins()\n#1 /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(58): Elementor\\Modules\\CompatibilityTag\\Base_Module->get_plugins_with_header()\n#2 /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/modules/compatibility-tag/module.php(57): Elementor\\Modules\\CompatibilityTag\\Base_Module->get_plugins_to_check()\n#3 /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(148): Elementor\\Modules\\CompatibilityTag\\Module->get_plugins_to_check()\n#4 /home/center/divyayogamonteregie.org/ca/wp-includes/class-wp-hook.php(308): Elementor\\Modules\\CompatibilityTag\\Base_Module->Elementor\\Modules\\CompatibilityTag\\{closure}(\'\')\n#5 /home/center/divyayogamonteregie.org/ca/\";s:4:\"file\";s:71:\"/home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/core/wp-api.php\";s:4:\"line\";i:26;s:5:\"trace\";b:1;}}s:32:\"7a5f07ab833b9ede3dedd8c5ea2446c4\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"681852\";s:7:\"\0*\0file\";s:98:\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.13.3\";s:7:\"\0*\0line\";s:1:\"3\";s:7:\"\0*\0date\";s:19:\"2023-06-09 00:08:51\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:41:\"this.model.isValidChild is not a function\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2023-06-09 00:08:51\";i:1;s:19:\"2023-06-09 00:48:57\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1686269331\";s:7:\"message\";s:41:\"this.model.isValidChild is not a function\";s:3:\"url\";s:98:\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.13.3\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:6:\"681852\";}}s:32:\"1a39fbc187daba6f5a51ad7a527fa5f6\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-06-09 01:17:08\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-06-09 01:17:08\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"a4c72c8fbb901b1fcef688b5eccef2a2\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-06-09 01:17:08\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-06-09 01:17:08\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"3fac3717da16f8c91b5995ad0e818cf7\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-06-09 01:17:08\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-06-09 01:17:08\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"698a14ae6775abf1acd7760cca62cbc7\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-06-09 01:17:08\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.13.3\";s:2:\"to\";s:6:\"3.13.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-06-09 01:17:08\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.13.3\";s:2:\"to\";s:6:\"3.13.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"8a5fb372ef0066be7546593c9023e149\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-06-09 01:17:08\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.13.3\";s:2:\"to\";s:6:\"3.13.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-06-09 01:17:08\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.13.3\";s:2:\"to\";s:6:\"3.13.4\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"9a265cd7ec074eda7c026c6297c590e1\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"794943\";s:7:\"\0*\0file\";s:98:\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.13.4\";s:7:\"\0*\0line\";s:1:\"3\";s:7:\"\0*\0date\";s:19:\"2023-06-15 18:21:06\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:69:\"Cannot read properties of undefined (reading &#039;toLowerCase&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-06-15 18:21:06\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1686853266\";s:7:\"message\";s:59:\"Cannot read properties of undefined (reading \'toLowerCase\')\";s:3:\"url\";s:98:\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.13.4\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:6:\"794943\";}}s:32:\"da724bdba31f429950837b900eabac48\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:71:\"/home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/core/wp-api.php\";s:7:\"\0*\0line\";i:26;s:7:\"\0*\0date\";s:19:\"2023-08-14 01:54:14\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:1049:\"Uncaught Error: Call to undefined function Elementor\\Core\\get_plugins() in /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/core/wp-api.php:26\nStack trace:\n#0 /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(96): Elementor\\Core\\Wp_Api-&gt;get_plugins()\n#1 /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(58): Elementor\\Modules\\CompatibilityTag\\Base_Module-&gt;get_plugins_with_header()\n#2 /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/modules/compatibility-tag/module.php(57): Elementor\\Modules\\CompatibilityTag\\Base_Module-&gt;get_plugins_to_check()\n#3 /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(148): Elementor\\Modules\\CompatibilityTag\\Module-&gt;get_plugins_to_check()\n#4 /home/center/divyayogamonteregie.org/ca/wp-includes/class-wp-hook.php(310): Elementor\\Modules\\CompatibilityTag\\Base_Module-&gt;Elementor\\Modules\\CompatibilityTag\\{closure}(&#039;&#039;)\n#5 /home/center/divyayogamonteregie.org/ca/\";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:11;s:14:\"\0*\0times_dates\";a:11:{i:0;s:19:\"2023-08-14 01:54:14\";i:1;s:19:\"2023-08-22 01:55:37\";i:2;s:19:\"2023-08-30 01:28:03\";i:3;s:19:\"2023-09-07 01:11:14\";i:4;s:19:\"2023-09-14 01:15:45\";i:5;s:19:\"2023-09-22 01:09:50\";i:6;s:19:\"2023-09-29 02:14:47\";i:7;s:19:\"2023-10-14 01:06:41\";i:8;s:19:\"2023-10-21 01:08:14\";i:9;s:19:\"2023-10-28 01:22:58\";i:10;s:19:\"2023-11-05 01:25:27\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:5:\"error\";s:7:\"message\";s:1024:\"Uncaught Error: Call to undefined function Elementor\\Core\\get_plugins() in /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/core/wp-api.php:26\nStack trace:\n#0 /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(96): Elementor\\Core\\Wp_Api->get_plugins()\n#1 /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(58): Elementor\\Modules\\CompatibilityTag\\Base_Module->get_plugins_with_header()\n#2 /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/modules/compatibility-tag/module.php(57): Elementor\\Modules\\CompatibilityTag\\Base_Module->get_plugins_to_check()\n#3 /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(148): Elementor\\Modules\\CompatibilityTag\\Module->get_plugins_to_check()\n#4 /home/center/divyayogamonteregie.org/ca/wp-includes/class-wp-hook.php(310): Elementor\\Modules\\CompatibilityTag\\Base_Module->Elementor\\Modules\\CompatibilityTag\\{closure}(\'\')\n#5 /home/center/divyayogamonteregie.org/ca/\";s:4:\"file\";s:71:\"/home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/core/wp-api.php\";s:4:\"line\";i:26;s:5:\"trace\";b:1;}}s:32:\"73cf9f4a66953cedd464cf642617a9d9\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:71:\"/home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/core/wp-api.php\";s:7:\"\0*\0line\";i:26;s:7:\"\0*\0date\";s:19:\"2023-11-13 01:01:26\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:1049:\"Uncaught Error: Call to undefined function Elementor\\Core\\get_plugins() in /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/core/wp-api.php:26\nStack trace:\n#0 /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(96): Elementor\\Core\\Wp_Api-&gt;get_plugins()\n#1 /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(58): Elementor\\Modules\\CompatibilityTag\\Base_Module-&gt;get_plugins_with_header()\n#2 /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/modules/compatibility-tag/module.php(57): Elementor\\Modules\\CompatibilityTag\\Base_Module-&gt;get_plugins_to_check()\n#3 /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(148): Elementor\\Modules\\CompatibilityTag\\Module-&gt;get_plugins_to_check()\n#4 /home/center/divyayogamonteregie.org/ca/wp-includes/class-wp-hook.php(324): Elementor\\Modules\\CompatibilityTag\\Base_Module-&gt;Elementor\\Modules\\CompatibilityTag\\{closure}(&#039;&#039;)\n#5 /home/center/divyayogamonteregie.org/ca/\";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:48;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2024-01-05 01:03:35\";i:1;s:19:\"2024-01-12 01:26:37\";i:2;s:19:\"2024-01-19 02:01:04\";i:3;s:19:\"2024-01-27 01:38:00\";i:4;s:19:\"2024-02-04 01:47:15\";i:5;s:19:\"2024-02-12 01:10:11\";i:6;s:19:\"2024-02-19 02:25:43\";i:7;s:19:\"2024-02-27 02:08:23\";i:8;s:19:\"2024-03-06 02:45:05\";i:9;s:19:\"2024-03-14 01:28:01\";i:10;s:19:\"2024-03-22 01:20:15\";i:11;s:19:\"2024-03-30 01:04:35\";i:12;s:19:\"2024-04-06 01:15:41\";i:13;s:19:\"2024-04-14 01:12:49\";i:14;s:19:\"2024-04-22 01:00:37\";i:15;s:19:\"2024-04-29 01:54:41\";i:16;s:19:\"2024-05-07 01:03:24\";i:17;s:19:\"2024-05-14 01:20:34\";i:18;s:19:\"2024-05-22 01:02:45\";i:19;s:19:\"2024-06-08 01:02:52\";i:20;s:19:\"2024-06-15 01:24:49\";i:21;s:19:\"2024-06-22 01:39:48\";i:22;s:19:\"2024-06-30 01:33:19\";i:23;s:19:\"2024-07-07 01:38:22\";i:24;s:19:\"2024-07-15 02:06:30\";i:25;s:19:\"2024-07-23 01:02:26\";i:26;s:19:\"2024-07-31 01:00:30\";i:27;s:19:\"2024-08-07 01:11:30\";i:28;s:19:\"2024-08-14 01:20:10\";i:29;s:19:\"2024-08-22 01:11:00\";i:30;s:19:\"2024-08-29 01:44:20\";i:31;s:19:\"2024-09-06 02:16:57\";i:32;s:19:\"2024-09-14 01:03:05\";i:33;s:19:\"2024-09-21 01:34:22\";i:34;s:19:\"2024-09-29 02:48:26\";i:35;s:19:\"2024-10-07 01:23:07\";i:36;s:19:\"2024-10-14 01:36:15\";i:37;s:19:\"2024-10-21 02:08:57\";i:38;s:19:\"2024-10-29 01:05:34\";i:39;s:19:\"2024-11-05 01:36:55\";i:40;s:19:\"2024-11-13 02:10:37\";i:41;s:19:\"2024-11-21 02:23:56\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:5:\"error\";s:7:\"message\";s:1024:\"Uncaught Error: Call to undefined function Elementor\\Core\\get_plugins() in /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/core/wp-api.php:26\nStack trace:\n#0 /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(96): Elementor\\Core\\Wp_Api->get_plugins()\n#1 /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(58): Elementor\\Modules\\CompatibilityTag\\Base_Module->get_plugins_with_header()\n#2 /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/modules/compatibility-tag/module.php(57): Elementor\\Modules\\CompatibilityTag\\Base_Module->get_plugins_to_check()\n#3 /home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php(148): Elementor\\Modules\\CompatibilityTag\\Module->get_plugins_to_check()\n#4 /home/center/divyayogamonteregie.org/ca/wp-includes/class-wp-hook.php(324): Elementor\\Modules\\CompatibilityTag\\Base_Module->Elementor\\Modules\\CompatibilityTag\\{closure}(\'\')\n#5 /home/center/divyayogamonteregie.org/ca/\";s:4:\"file\";s:71:\"/home/center/divyayogamonteregie.org/ca/wp-content/plugins/elementor/core/wp-api.php\";s:4:\"line\";i:26;s:5:\"trace\";b:1;}}}','off'),(407,'default_language','','yes'),(504,'ht_ctc_othersettings','a:7:{s:7:\"an_type\";s:12:\"no-animation\";s:8:\"an_delay\";s:1:\"0\";s:6:\"an_itr\";s:1:\"1\";s:11:\"show_effect\";s:11:\"From Corner\";s:3:\"amp\";s:1:\"1\";s:16:\"google_analytics\";s:1:\"1\";s:8:\"fb_pixel\";s:1:\"1\";}','yes'),(505,'ht_ctc_chat_options','a:45:{s:6:\"number\";s:12:\"+15147927361\";s:4:\"intl\";s:1:\"1\";s:10:\"pre_filled\";s:43:\"Hello {site}\r\nLike to know more information\";s:14:\"call_to_action\";s:11:\"WhatsApp us\";s:13:\"style_desktop\";s:1:\"2\";s:13:\"position_type\";s:5:\"fixed\";s:6:\"side_1\";s:6:\"bottom\";s:12:\"side_1_value\";s:4:\"15px\";s:6:\"side_2\";s:5:\"right\";s:12:\"side_2_value\";s:4:\"15px\";s:13:\"same_settings\";s:1:\"1\";s:12:\"style_mobile\";s:1:\"2\";s:20:\"position_type_mobile\";s:5:\"fixed\";s:13:\"mobile_side_1\";s:6:\"bottom\";s:19:\"mobile_side_1_value\";s:4:\"10px\";s:13:\"mobile_side_2\";s:5:\"right\";s:19:\"mobile_side_2_value\";s:4:\"10px\";s:12:\"url_target_d\";s:6:\"_blank\";s:15:\"url_structure_d\";s:7:\"default\";s:12:\"custom_url_d\";s:0:\"\";s:15:\"url_structure_m\";s:7:\"default\";s:12:\"custom_url_m\";s:0:\"\";s:15:\"display_desktop\";s:4:\"show\";s:14:\"display_mobile\";s:4:\"show\";s:7:\"display\";a:13:{s:14:\"global_display\";s:4:\"show\";s:4:\"home\";s:1:\"g\";s:5:\"posts\";s:1:\"g\";s:5:\"pages\";s:1:\"g\";s:7:\"archive\";s:1:\"g\";s:8:\"category\";s:1:\"g\";s:8:\"page_404\";s:1:\"g\";s:14:\"e-landing-page\";s:1:\"g\";s:17:\"elementor_library\";s:1:\"g\";s:17:\"list_hideon_pages\";s:0:\"\";s:17:\"list_showon_pages\";s:0:\"\";s:15:\"list_hideon_cat\";s:0:\"\";s:15:\"list_showon_cat\";s:0:\"\";}s:17:\"display_user_base\";s:9:\"all_users\";s:9:\"timedelay\";s:0:\"\";s:6:\"scroll\";s:0:\"\";s:2:\"bh\";s:6:\"always\";s:9:\"monday_st\";s:0:\"\";s:9:\"monday_et\";s:0:\"\";s:10:\"tuesday_st\";s:0:\"\";s:10:\"tuesday_et\";s:0:\"\";s:12:\"wednesday_st\";s:0:\"\";s:12:\"wednesday_et\";s:0:\"\";s:11:\"thursday_st\";s:0:\"\";s:11:\"thursday_et\";s:0:\"\";s:9:\"friday_st\";s:0:\"\";s:9:\"friday_et\";s:0:\"\";s:11:\"saturday_st\";s:0:\"\";s:11:\"saturday_et\";s:0:\"\";s:9:\"sunday_st\";s:0:\"\";s:9:\"sunday_et\";s:0:\"\";s:7:\"off_num\";s:0:\"\";s:7:\"off_cta\";s:0:\"\";}','yes'),(506,'ht_ctc_s2','a:5:{s:11:\"s2_img_size\";s:4:\"50px\";s:13:\"cta_textcolor\";s:7:\"#ffffff\";s:11:\"cta_bgcolor\";s:7:\"#25D366\";s:8:\"cta_type\";s:5:\"hover\";s:13:\"cta_font_size\";s:4:\"15px\";}','yes'),(507,'ht_ctc_plugin_details','a:12:{s:7:\"version\";s:4:\"3.29\";s:18:\"first_install_time\";i:1682864955;s:2:\"v3\";i:1682864955;s:6:\"v3_2_5\";i:1682864955;s:6:\"v3_3_3\";i:1682864955;s:6:\"v3_3_5\";i:1682864955;s:4:\"v3_7\";i:1682864955;s:4:\"v3_8\";i:1682864955;s:4:\"v3_9\";i:1682864955;s:5:\"v3_19\";i:1682864955;s:5:\"v3_23\";i:1682864955;s:5:\"v3_28\";i:1684944889;}','yes'),(509,'ht_ctc_pro_plugin_details','a:4:{s:7:\"version\";s:3:\"2.3\";s:18:\"first_install_time\";i:1682864969;s:4:\"v1_2\";i:1682864969;s:4:\"v1_4\";i:1682864969;}','yes'),(512,'ht_ctc_woo_options','a:2:{s:14:\"woo_pre_filled\";s:0:\"\";s:18:\"woo_call_to_action\";s:0:\"\";}','yes'),(513,'ht_ctc_s1','a:4:{s:13:\"s1_text_color\";s:0:\"\";s:11:\"s1_bg_color\";s:0:\"\";s:13:\"s1_icon_color\";s:0:\"\";s:12:\"s1_icon_size\";s:2:\"16\";}','yes'),(514,'ht_ctc_s3','a:4:{s:11:\"s3_img_size\";s:4:\"50px\";s:13:\"cta_textcolor\";s:7:\"#ffffff\";s:11:\"cta_bgcolor\";s:7:\"#25d366\";s:8:\"cta_type\";s:4:\"hide\";}','yes'),(429,'astra_sites_settings','a:1:{s:12:\"page_builder\";s:9:\"elementor\";}','no'),(430,'astra_sites_import_data','a:54:{s:2:\"id\";i:19540;s:4:\"date\";s:19:\"2018-10-31T05:35:55\";s:8:\"date_gmt\";s:19:\"2018-10-31T00:05:55\";s:4:\"guid\";a:1:{s:8:\"rendered\";s:60:\"https://websitedemos.net/?post_type=astra-sites&#038;p=19540\";}s:8:\"modified\";s:19:\"2022-11-03T10:48:25\";s:12:\"modified_gmt\";s:19:\"2022-11-03T05:18:25\";s:4:\"slug\";s:15:\"yoga-instructor\";s:6:\"status\";s:7:\"publish\";s:4:\"type\";s:11:\"astra-sites\";s:4:\"link\";s:52:\"https://websitedemos.net/astra-site/yoga-instructor/\";s:5:\"title\";a:1:{s:8:\"rendered\";s:15:\"Yoga Instructor\";}s:7:\"content\";a:2:{s:8:\"rendered\";s:824:\"\n<p>The Yoga Instructor template is a light, accessible design with a relaxed feel ideal for the wellness niche. It has a light fullscreen image with a yoga pose and engaging headline text. The rest of the design uses plenty of whitespace and a nice pink contrast color.</p>\n\n\n\n<p>The page uses lovely graphics to showcase services and includes flexible content areas where you can share your passion and engage your audience with storytelling. All backed up by subtle calls to action and an attractive contact page.</p>\n\n\n\n<h2>Key features of the Yoga Instructor template</h2>\n\n\n\n<ul><li>Relaxed design that works for the yoga niche</li><li>Light layout with plenty of whitespace</li><li>Flexible content areas</li><li>Contact form included with the template</li><li>Full compatibility with leading page builders</li></ul>\n\";s:9:\"protected\";b:0;}s:7:\"excerpt\";a:2:{s:8:\"rendered\";s:84:\"<p>Relaxed web template ideal for yoga instructors and wellness business owners</p>\n\";s:9:\"protected\";b:0;}s:6:\"author\";i:165;s:14:\"featured_media\";i:50354;s:8:\"template\";s:0:\"\";s:4:\"meta\";a:19:{s:21:\"inline_featured_image\";b:0;s:26:\"_uag_custom_page_level_css\";s:0:\"\";s:19:\"site-sidebar-layout\";s:7:\"default\";s:19:\"site-content-layout\";s:7:\"default\";s:25:\"ast-global-header-display\";s:0:\"\";s:23:\"ast-main-header-display\";s:0:\"\";s:28:\"ast-hfb-above-header-display\";s:0:\"\";s:28:\"ast-hfb-below-header-display\";s:0:\"\";s:29:\"ast-hfb-mobile-header-display\";s:0:\"\";s:15:\"site-post-title\";s:0:\"\";s:23:\"ast-breadcrumbs-content\";s:0:\"\";s:16:\"ast-featured-img\";s:0:\"\";s:17:\"footer-sml-layout\";s:0:\"\";s:29:\"theme-transparent-header-meta\";s:0:\"\";s:18:\"adv-header-id-meta\";s:0:\"\";s:17:\"stick-header-meta\";s:0:\"\";s:23:\"header-above-stick-meta\";s:0:\"\";s:22:\"header-main-stick-meta\";s:0:\"\";s:23:\"header-below-stick-meta\";s:0:\"\";}s:19:\"astra-site-category\";a:2:{i:0;i:27;i:1;i:39;}s:29:\"astra-sites-template-category\";a:3:{i:0;i:2787;i:1;i:2770;i:2;i:2808;}s:16:\"astra-sites-type\";a:1:{i:0;i:19;}s:23:\"astra-site-page-builder\";a:1:{i:0;i:33;}s:15:\"astra-sites-tag\";a:7:{i:0;i:499;i:1;i:976;i:2;i:849;i:3;i:1020;i:4;i:395;i:5;i:397;i:6;i:398;}s:25:\"astra-sites-site-category\";a:1:{i:0;i:2480;}s:3:\"acf\";a:3:{s:19:\"related_bb_template\";a:1:{i:0;i:19629;}s:26:\"related_elementor_template\";a:1:{i:0;i:19540;}s:26:\"related_gutenberg_template\";a:1:{i:0;i:48631;}}s:23:\"uagb_featured_image_src\";a:9:{s:4:\"full\";a:4:{i:0;s:86:\"https://websitedemos.net/wp-content/uploads/2018/10/yoga-instructor-sarah-homepage.jpg\";i:1;i:1200;i:2;i:4182;i:3;b:0;}s:9:\"thumbnail\";a:4:{i:0;s:86:\"https://websitedemos.net/wp-content/uploads/2018/10/yoga-instructor-sarah-homepage.jpg\";i:1;i:43;i:2;i:150;i:3;b:0;}s:6:\"medium\";a:4:{i:0;s:86:\"https://websitedemos.net/wp-content/uploads/2018/10/yoga-instructor-sarah-homepage.jpg\";i:1;i:86;i:2;i:300;i:3;b:0;}s:12:\"medium_large\";a:4:{i:0;s:86:\"https://websitedemos.net/wp-content/uploads/2018/10/yoga-instructor-sarah-homepage.jpg\";i:1;i:768;i:2;i:2676;i:3;b:0;}s:5:\"large\";a:4:{i:0;s:86:\"https://websitedemos.net/wp-content/uploads/2018/10/yoga-instructor-sarah-homepage.jpg\";i:1;i:294;i:2;i:1024;i:3;b:0;}s:9:\"1536x1536\";a:4:{i:0;s:86:\"https://websitedemos.net/wp-content/uploads/2018/10/yoga-instructor-sarah-homepage.jpg\";i:1;i:441;i:2;i:1536;i:3;b:0;}s:9:\"2048x2048\";a:4:{i:0;s:86:\"https://websitedemos.net/wp-content/uploads/2018/10/yoga-instructor-sarah-homepage.jpg\";i:1;i:588;i:2;i:2048;i:3;b:0;}s:26:\"astra-sites-grid-thumbnail\";a:4:{i:0;s:86:\"https://websitedemos.net/wp-content/uploads/2018/10/yoga-instructor-sarah-homepage.jpg\";i:1;i:600;i:2;i:2091;i:3;b:0;}s:35:\"astra-sites-fullpage-grid-thumbnail\";a:4:{i:0;s:86:\"https://websitedemos.net/wp-content/uploads/2018/10/yoga-instructor-sarah-homepage.jpg\";i:1;i:400;i:2;i:1394;i:3;b:0;}}s:16:\"uagb_author_info\";a:2:{s:12:\"display_name\";s:8:\"vaibhavj\";s:11:\"author_link\";s:41:\"https://websitedemos.net/author/vaibhavj/\";}s:17:\"uagb_comment_info\";i:0;s:12:\"uagb_excerpt\";s:76:\"Relaxed web template ideal for yoga instructors and wellness business owners\";s:15:\"astra-site-type\";s:4:\"free\";s:20:\"astra-site-thumbnail\";s:86:\"https://websitedemos.net/wp-content/uploads/2018/10/yoga-instructor-sarah-homepage.jpg\";s:16:\"required-plugins\";a:2:{i:0;a:3:{s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";s:4:\"name\";s:9:\"Elementor\";}i:1;a:3:{s:4:\"slug\";s:12:\"wpforms-lite\";s:4:\"init\";s:24:\"wpforms-lite/wpforms.php\";s:4:\"name\";s:12:\"WPForms Lite\";}}s:14:\"astra-site-url\";s:37:\"//websitedemos.net/yoga-instructor-02\";s:26:\"astra-site-open-in-new-tab\";s:1:\"0\";s:23:\"astra-site-color-scheme\";s:5:\"light\";s:17:\"astra-ist-mapping\";a:0:{}s:23:\"astra-site-widgets-data\";s:530:\"{\"sidebar-1\":{\"search-2\":{\"title\":\"\"},\"recent-posts-2\":{\"title\":\"\",\"number\":5},\"recent-comments-2\":{\"title\":\"\",\"number\":5},\"archives-2\":{\"title\":\"\",\"count\":0,\"dropdown\":0},\"categories-2\":{\"title\":\"\",\"count\":0,\"hierarchical\":0,\"dropdown\":0},\"meta-2\":{\"title\":\"\"}},\"footer-widget-1\":{\"text-3\":{\"title\":\"JOIN HUNDREDS OF HEALTHY PEOPLE\",\"text\":\"Consectetur adipiscing elit elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\\u200b Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"filter\":true,\"visual\":true}}}\";s:26:\"astra-site-customizer-data\";a:2:{s:14:\"astra-settings\";a:1974:{s:26:\"blog-single-post-structure\";a:2:{i:0;s:12:\"single-image\";i:1;s:17:\"single-title-meta\";}s:17:\"blog-single-width\";s:7:\"default\";s:21:\"blog-single-max-width\";i:1200;s:16:\"blog-single-meta\";a:3:{i:0;s:8:\"comments\";i:1;s:8:\"category\";i:2;s:6:\"author\";}s:19:\"blog-post-structure\";a:2:{i:0;s:5:\"image\";i:1;s:10:\"title-meta\";}s:10:\"blog-width\";s:7:\"default\";s:14:\"blog-max-width\";i:1200;s:17:\"blog-post-content\";s:7:\"excerpt\";s:9:\"blog-meta\";a:3:{i:0;s:8:\"comments\";i:1;s:8:\"category\";i:2;s:6:\"author\";}s:10:\"text-color\";s:25:\"var(--ast-global-color-3)\";s:10:\"link-color\";s:25:\"var(--ast-global-color-0)\";s:11:\"theme-color\";s:25:\"var(--ast-global-color-0)\";s:12:\"link-h-color\";s:25:\"var(--ast-global-color-1)\";s:18:\"heading-base-color\";s:25:\"var(--ast-global-color-2)\";s:12:\"border-color\";s:0:\"\";s:13:\"footer-bg-obj\";a:8:{s:16:\"background-color\";s:13:\"rgba(0,0,0,0)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:12:\"footer-color\";s:7:\"#476d80\";s:17:\"footer-link-color\";s:7:\"#476d80\";s:19:\"footer-link-h-color\";s:7:\"#ff3a6f\";s:17:\"footer-adv-bg-obj\";a:8:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:21:\"footer-adv-text-color\";s:0:\"\";s:21:\"footer-adv-link-color\";s:0:\"\";s:23:\"footer-adv-link-h-color\";s:0:\"\";s:26:\"footer-adv-wgt-title-color\";s:0:\"\";s:12:\"button-color\";s:25:\"var(--ast-global-color-4)\";s:14:\"button-h-color\";s:25:\"var(--ast-global-color-4)\";s:15:\"button-bg-color\";s:25:\"var(--ast-global-color-0)\";s:17:\"button-bg-h-color\";s:25:\"var(--ast-global-color-1)\";s:20:\"theme-button-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:2:\"13\";s:5:\"right\";s:2:\"40\";s:6:\"bottom\";s:2:\"13\";s:4:\"left\";s:2:\"40\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:13:\"button-radius\";i:50;s:37:\"theme-button-border-group-border-size\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:17:\"footer-sml-layout\";s:19:\"footer-sml-layout-2\";s:20:\"footer-sml-section-1\";s:6:\"custom\";s:27:\"footer-sml-section-1-credit\";s:66:\"Copyright © [current_year] [site_title] | <a href=\"#\">Credits</a>\";s:20:\"footer-sml-section-2\";s:6:\"custom\";s:27:\"footer-sml-section-2-credit\";s:39:\"Powered by <a href=\"#\">[site_title]</a>\";s:27:\"footer-sml-dist-equal-align\";b:1;s:18:\"footer-sml-divider\";i:0;s:24:\"footer-sml-divider-color\";s:7:\"#7a7a7a\";s:19:\"footer-layout-width\";s:7:\"content\";s:22:\"ast-header-retina-logo\";s:101:\"https://websitedemos.net/yoga-instructor-02/wp-content/uploads/sites/286/2018/10/logo@2x-free-img.png\";s:21:\"ast-header-logo-width\";s:0:\"\";s:32:\"ast-header-responsive-logo-width\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:3:\"140\";}s:23:\"header-color-site-title\";s:0:\"\";s:25:\"header-color-h-site-title\";s:0:\"\";s:25:\"header-color-site-tagline\";s:0:\"\";s:29:\"display-site-title-responsive\";a:3:{s:7:\"desktop\";b:0;s:6:\"tablet\";b:0;s:6:\"mobile\";b:0;}s:31:\"display-site-tagline-responsive\";a:3:{s:7:\"desktop\";i:0;s:6:\"tablet\";i:0;s:6:\"mobile\";i:0;}s:17:\"logo-title-inline\";i:0;s:19:\"disable-primary-nav\";b:0;s:14:\"header-layouts\";s:20:\"header-main-layout-1\";s:22:\"header-main-rt-section\";s:4:\"none\";s:27:\"header-display-outside-menu\";b:0;s:27:\"header-main-rt-section-html\";s:27:\"<button>Contact Us</button>\";s:34:\"header-main-rt-section-button-text\";s:6:\"Button\";s:34:\"header-main-rt-section-button-link\";s:23:\"https://www.wpastra.com\";s:41:\"header-main-rt-section-button-link-option\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:35:\"header-main-rt-section-button-style\";s:12:\"theme-button\";s:40:\"header-main-rt-section-button-text-color\";s:0:\"\";s:40:\"header-main-rt-section-button-back-color\";s:0:\"\";s:42:\"header-main-rt-section-button-text-h-color\";s:0:\"\";s:42:\"header-main-rt-section-button-back-h-color\";s:0:\"\";s:37:\"header-main-rt-section-button-padding\";a:3:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}}s:41:\"header-main-rt-section-button-border-size\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:15:\"header-main-sep\";i:0;s:21:\"header-main-sep-color\";s:0:\"\";s:24:\"header-main-layout-width\";s:7:\"content\";s:22:\"primary-submenu-border\";a:4:{s:3:\"top\";s:1:\"2\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";}s:27:\"primary-submenu-item-border\";b:0;s:23:\"primary-submenu-b-color\";s:0:\"\";s:28:\"primary-submenu-item-b-color\";s:0:\"\";s:33:\"primary-header-button-font-family\";s:7:\"inherit\";s:33:\"primary-header-button-font-weight\";s:7:\"inherit\";s:31:\"primary-header-button-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:36:\"primary-header-button-text-transform\";s:0:\"\";s:33:\"primary-header-button-line-height\";i:1;s:36:\"primary-header-button-letter-spacing\";s:0:\"\";s:22:\"header-main-menu-label\";s:0:\"\";s:22:\"header-main-menu-align\";s:6:\"inline\";s:39:\"header-main-submenu-container-animation\";s:0:\"\";s:24:\"mobile-header-breakpoint\";s:0:\"\";s:18:\"mobile-header-logo\";s:0:\"\";s:24:\"mobile-header-logo-width\";s:0:\"\";s:11:\"site-layout\";s:21:\"ast-full-width-layout\";s:18:\"site-content-width\";i:1200;s:37:\"site-layout-outside-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:8:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:8:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:8:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:25:\"content-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:8:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:8:{s:16:\"background-color\";s:19:\"rgba(242,242,242,0)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:8:{s:16:\"background-color\";s:19:\"rgba(242,242,242,0)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";}}s:12:\"wp-blocks-ui\";s:6:\"legacy\";s:24:\"wp-blocks-global-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:19:\"site-content-layout\";s:15:\"boxed-container\";s:26:\"single-page-content-layout\";s:7:\"default\";s:26:\"single-post-content-layout\";s:7:\"default\";s:27:\"archive-post-content-layout\";s:7:\"default\";s:16:\"body-font-family\";s:20:\"\'Roboto\', sans-serif\";s:17:\"body-font-variant\";s:3:\"400\";s:16:\"body-font-weight\";s:3:\"400\";s:14:\"font-size-body\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:16:\"body-line-height\";s:0:\"\";s:18:\"para-margin-bottom\";s:0:\"\";s:23:\"underline-content-links\";b:0;s:19:\"body-text-transform\";s:0:\"\";s:20:\"headings-font-family\";s:25:\"\'Playfair Display\', serif\";s:20:\"headings-font-weight\";s:3:\"400\";s:23:\"headings-text-transform\";s:0:\"\";s:20:\"headings-line-height\";s:0:\"\";s:20:\"font-size-site-title\";a:6:{s:7:\"desktop\";i:35;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:22:\"font-size-site-tagline\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"font-size-entry-title\";a:6:{s:7:\"desktop\";i:30;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"single-post-outside-spacing\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:31:\"font-size-archive-summary-title\";a:6:{s:7:\"desktop\";i:40;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:20:\"font-size-page-title\";a:6:{s:7:\"desktop\";s:2:\"30\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h1\";a:6:{s:7:\"desktop\";s:2:\"60\";s:6:\"tablet\";s:2:\"40\";s:6:\"mobile\";s:2:\"34\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h2\";a:6:{s:7:\"desktop\";s:2:\"42\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h3\";a:6:{s:7:\"desktop\";s:2:\"20\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h4\";a:6:{s:7:\"desktop\";i:20;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h5\";a:6:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h6\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:19:\"site-sidebar-layout\";s:10:\"no-sidebar\";s:18:\"site-sidebar-width\";i:30;s:26:\"single-page-sidebar-layout\";s:7:\"default\";s:26:\"single-post-sidebar-layout\";s:7:\"default\";s:27:\"archive-post-sidebar-layout\";s:7:\"default\";s:10:\"footer-adv\";s:8:\"disabled\";s:23:\"footer-adv-border-width\";s:0:\"\";s:23:\"footer-adv-border-color\";s:7:\"#7a7a7a\";s:30:\"mobile-header-toggle-btn-style\";s:7:\"outline\";s:23:\"hide-custom-menu-mobile\";i:1;s:27:\"mobile-header-toggle-target\";s:4:\"icon\";s:25:\"load-google-fonts-locally\";b:0;s:19:\"preload-local-fonts\";b:0;s:20:\"enable-related-posts\";b:0;s:19:\"related-posts-title\";s:13:\"Related Posts\";s:29:\"releted-posts-title-alignment\";s:4:\"left\";s:25:\"related-posts-total-count\";i:2;s:28:\"enable-related-posts-excerpt\";b:0;s:27:\"related-posts-excerpt-count\";i:25;s:22:\"related-posts-based-on\";s:10:\"categories\";s:22:\"related-posts-order-by\";s:4:\"date\";s:19:\"related-posts-order\";s:3:\"asc\";s:29:\"related-posts-grid-responsive\";a:3:{s:7:\"desktop\";s:7:\"2-equal\";s:6:\"tablet\";s:7:\"2-equal\";s:6:\"mobile\";s:4:\"full\";}s:23:\"related-posts-structure\";a:2:{i:0;s:14:\"featured-image\";i:1;s:10:\"title-meta\";}s:28:\"related-posts-meta-structure\";a:3:{i:0;s:8:\"comments\";i:1;s:8:\"category\";i:2;s:6:\"author\";}s:24:\"related-posts-text-color\";s:0:\"\";s:24:\"related-posts-link-color\";s:0:\"\";s:25:\"related-posts-title-color\";s:0:\"\";s:30:\"related-posts-background-color\";s:0:\"\";s:24:\"related-posts-meta-color\";s:0:\"\";s:30:\"related-posts-link-hover-color\";s:0:\"\";s:35:\"related-posts-meta-link-hover-color\";s:0:\"\";s:39:\"related-posts-section-title-font-family\";s:7:\"inherit\";s:39:\"related-posts-section-title-font-weight\";s:7:\"inherit\";s:42:\"related-posts-section-title-text-transform\";s:0:\"\";s:39:\"related-posts-section-title-line-height\";s:0:\"\";s:37:\"related-posts-section-title-font-size\";a:6:{s:7:\"desktop\";s:2:\"30\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:31:\"related-posts-title-font-family\";s:7:\"inherit\";s:31:\"related-posts-title-font-weight\";s:7:\"inherit\";s:34:\"related-posts-title-text-transform\";s:0:\"\";s:31:\"related-posts-title-line-height\";s:1:\"1\";s:29:\"related-posts-title-font-size\";a:6:{s:7:\"desktop\";s:2:\"20\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:30:\"related-posts-meta-font-family\";s:7:\"inherit\";s:30:\"related-posts-meta-font-weight\";s:7:\"inherit\";s:33:\"related-posts-meta-text-transform\";s:0:\"\";s:30:\"related-posts-meta-line-height\";s:0:\"\";s:28:\"related-posts-meta-font-size\";a:6:{s:7:\"desktop\";s:2:\"14\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:33:\"related-posts-content-font-family\";s:7:\"inherit\";s:33:\"related-posts-content-font-weight\";s:7:\"inherit\";s:36:\"related-posts-content-text-transform\";s:0:\"\";s:33:\"related-posts-content-line-height\";s:0:\"\";s:31:\"related-posts-content-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:23:\"transparent-header-logo\";s:0:\"\";s:30:\"transparent-header-retina-logo\";s:0:\"\";s:26:\"different-transparent-logo\";i:0;s:33:\"different-transparent-retina-logo\";i:0;s:29:\"transparent-header-logo-width\";a:3:{s:7:\"desktop\";i:150;s:6:\"tablet\";i:120;s:6:\"mobile\";i:100;}s:25:\"transparent-header-enable\";i:0;s:34:\"transparent-header-disable-archive\";i:1;s:45:\"transparent-header-disable-latest-posts-index\";i:1;s:29:\"transparent-header-on-devices\";s:4:\"both\";s:27:\"transparent-header-main-sep\";s:0:\"\";s:33:\"transparent-header-main-sep-color\";s:0:\"\";s:27:\"transparent-header-bg-color\";s:0:\"\";s:35:\"transparent-header-color-site-title\";s:0:\"\";s:37:\"transparent-header-color-h-site-title\";s:0:\"\";s:25:\"transparent-menu-bg-color\";s:0:\"\";s:22:\"transparent-menu-color\";s:0:\"\";s:24:\"transparent-menu-h-color\";s:0:\"\";s:28:\"transparent-submenu-bg-color\";s:0:\"\";s:25:\"transparent-submenu-color\";s:0:\"\";s:27:\"transparent-submenu-h-color\";s:0:\"\";s:38:\"transparent-header-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:46:\"transparent-header-color-site-title-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:48:\"transparent-header-color-h-site-title-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:36:\"transparent-menu-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:33:\"transparent-menu-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:35:\"transparent-menu-h-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:39:\"transparent-submenu-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:36:\"transparent-submenu-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:38:\"transparent-submenu-h-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:49:\"transparent-content-section-text-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:49:\"transparent-content-section-link-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:51:\"transparent-content-section-link-h-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"breadcrumb-font-family\";s:7:\"inherit\";s:22:\"breadcrumb-font-weight\";s:7:\"inherit\";s:25:\"breadcrumb-text-transform\";s:0:\"\";s:32:\"breadcrumb-text-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:34:\"breadcrumb-active-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:33:\"breadcrumb-hover-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:26:\"breadcrumb-separator-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:19:\"breadcrumb-bg-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:18:\"breadcrumb-spacing\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:20:\"breadcrumb-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:29:\"breadcrumb-separator-selector\";s:7:\"unicode\";s:20:\"breadcrumb-separator\";s:4:\"\00bb\";s:8:\"h1-color\";s:0:\"\";s:8:\"h2-color\";s:0:\"\";s:8:\"h3-color\";s:0:\"\";s:8:\"h4-color\";s:0:\"\";s:8:\"h5-color\";s:0:\"\";s:8:\"h6-color\";s:0:\"\";s:14:\"font-family-h1\";s:7:\"inherit\";s:14:\"font-weight-h1\";s:6:\"normal\";s:17:\"text-transform-h1\";s:9:\"uppercase\";s:14:\"line-height-h1\";s:0:\"\";s:14:\"font-family-h2\";s:7:\"inherit\";s:14:\"font-weight-h2\";s:6:\"normal\";s:17:\"text-transform-h2\";s:9:\"uppercase\";s:14:\"line-height-h2\";s:0:\"\";s:14:\"font-family-h3\";s:7:\"inherit\";s:14:\"font-weight-h3\";s:6:\"normal\";s:17:\"text-transform-h3\";s:10:\"capitalize\";s:14:\"line-height-h3\";s:0:\"\";s:14:\"font-family-h4\";s:7:\"inherit\";s:14:\"font-weight-h4\";s:7:\"inherit\";s:17:\"text-transform-h4\";s:0:\"\";s:14:\"line-height-h4\";s:0:\"\";s:14:\"font-family-h5\";s:7:\"inherit\";s:14:\"font-weight-h5\";s:7:\"inherit\";s:17:\"text-transform-h5\";s:0:\"\";s:14:\"line-height-h5\";s:0:\"\";s:14:\"font-family-h6\";s:7:\"inherit\";s:14:\"font-weight-h6\";s:7:\"inherit\";s:17:\"text-transform-h6\";s:0:\"\";s:14:\"line-height-h6\";s:0:\"\";s:18:\"font-weight-button\";s:7:\"inherit\";s:18:\"font-family-button\";s:7:\"inherit\";s:16:\"font-size-button\";a:6:{s:7:\"desktop\";s:2:\"15\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"text-transform-button\";s:0:\"\";s:21:\"theme-btn-line-height\";s:1:\"1\";s:24:\"theme-btn-letter-spacing\";s:0:\"\";s:20:\"header-desktop-items\";a:4:{s:5:\"above\";a:5:{s:10:\"above_left\";a:0:{}s:17:\"above_left_center\";a:0:{}s:12:\"above_center\";a:0:{}s:18:\"above_right_center\";a:0:{}s:11:\"above_right\";a:0:{}}s:5:\"below\";a:5:{s:10:\"below_left\";a:0:{}s:17:\"below_left_center\";a:0:{}s:12:\"below_center\";a:0:{}s:18:\"below_right_center\";a:0:{}s:11:\"below_right\";a:0:{}}s:7:\"primary\";a:5:{s:12:\"primary_left\";a:1:{i:0;s:4:\"logo\";}s:19:\"primary_left_center\";a:0:{}s:14:\"primary_center\";a:0:{}s:20:\"primary_right_center\";a:0:{}s:13:\"primary_right\";a:1:{i:0;s:6:\"menu-1\";}}s:4:\"flag\";b:1;}s:19:\"header-mobile-items\";a:5:{s:5:\"above\";a:3:{s:10:\"above_left\";a:0:{}s:12:\"above_center\";a:0:{}s:11:\"above_right\";a:0:{}}s:5:\"below\";a:3:{s:10:\"below_left\";a:0:{}s:12:\"below_center\";a:0:{}s:11:\"below_right\";a:0:{}}s:5:\"popup\";a:1:{s:13:\"popup_content\";a:1:{i:0;s:6:\"menu-1\";}}s:7:\"primary\";a:3:{s:12:\"primary_left\";a:1:{i:0;s:4:\"logo\";}s:14:\"primary_center\";a:0:{}s:13:\"primary_right\";a:1:{i:0;s:14:\"mobile-trigger\";}}s:4:\"flag\";b:1;}s:27:\"hb-header-main-layout-width\";s:7:\"content\";s:16:\"hb-header-height\";a:3:{s:7:\"desktop\";i:70;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:8:\"hb-stack\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:18:\"hb-header-main-sep\";i:0;s:24:\"hb-header-main-sep-color\";s:7:\"#eaeaea\";s:25:\"hb-header-main-menu-align\";s:6:\"inline\";s:27:\"hb-header-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:7:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:17:\"hb-header-spacing\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:3:\"1.5\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:3:\"1.5\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:17:\"hba-header-layout\";s:21:\"above-header-layout-1\";s:17:\"hba-header-height\";a:3:{s:7:\"desktop\";i:50;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:9:\"hba-stack\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:20:\"hba-header-separator\";i:1;s:30:\"hba-header-bottom-border-color\";s:7:\"#eaeaea\";s:28:\"hba-header-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:7:\"#ffffff\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:32:\"hba-header-text-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:32:\"hba-header-link-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:34:\"hba-header-link-h-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:18:\"hba-header-spacing\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:1:\"0\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:3:\"0.5\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"em\";}s:17:\"hbb-header-layout\";s:21:\"below-header-layout-1\";s:17:\"hbb-header-height\";a:3:{s:7:\"desktop\";i:60;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:9:\"hbb-stack\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:20:\"hbb-header-separator\";i:1;s:30:\"hbb-header-bottom-border-color\";s:7:\"#eaeaea\";s:28:\"hbb-header-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:7:\"#eeeeee\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:18:\"hbb-header-spacing\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:1:\"1\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"px\";}s:37:\"section-footer-builder-layout-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:36:\"section-footer-builder-layout-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:36:\"section-above-header-builder-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:35:\"section-above-header-builder-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:36:\"section-below-header-builder-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:35:\"section-below-header-builder-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:36:\"section-header-mobile-trigger-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:38:\"section-primary-header-builder-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:37:\"section-primary-header-builder-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:20:\"title_tagline-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:28:\"section-header-search-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-account-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:31:\"header-mobile-menu-menu-spacing\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:33:\"section-header-mobile-menu-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:36:\"section-above-footer-builder-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:35:\"section-above-footer-builder-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:35:\"section-below-footer-builder-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:31:\"section-footer-copyright-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"section-footer-menu-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:38:\"section-primary-footer-builder-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:3:\"120\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:3:\"120\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:2:\"80\";s:5:\"right\";s:2:\"80\";s:6:\"bottom\";s:2:\"80\";s:4:\"left\";s:2:\"80\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:2:\"30\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:2:\"30\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:37:\"section-primary-footer-builder-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:31:\"section-header-woo-cart-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:30:\"section-header-woo-cart-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:19:\"header-button1-text\";s:6:\"Button\";s:26:\"header-button1-link-option\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:26:\"header-button1-font-family\";s:7:\"inherit\";s:26:\"header-button1-font-weight\";s:7:\"inherit\";s:29:\"header-button1-text-transform\";s:0:\"\";s:26:\"header-button1-line-height\";s:0:\"\";s:24:\"header-button1-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"header-button1-text-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"header-button1-back-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-button1-text-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-button1-back-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"header-button1-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"header-button1-border-size\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:27:\"header-button1-border-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"header-button1-border-radius\";s:0:\"\";s:27:\"section-hb-button-1-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"section-hb-button-1-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:29:\"sticky-header-button1-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:19:\"footer-button1-text\";s:6:\"Button\";s:26:\"footer-button1-link-option\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:26:\"footer-button1-font-family\";s:7:\"inherit\";s:26:\"footer-button1-font-weight\";s:7:\"inherit\";s:29:\"footer-button1-text-transform\";s:0:\"\";s:26:\"footer-button1-line-height\";s:0:\"\";s:24:\"footer-button1-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"footer-button1-text-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"footer-button1-back-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-button1-text-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-button1-back-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"footer-button1-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"footer-button1-border-size\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:27:\"footer-button1-border-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"footer-button1-border-radius\";s:0:\"\";s:25:\"footer-button-1-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:27:\"section-fb-button-1-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"section-fb-button-1-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:13:\"header-html-1\";s:22:\"Insert HTML text here.\";s:18:\"header-html-1color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:23:\"header-html-1link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"header-html-1link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"font-size-section-hb-html-1\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:29:\"font-weight-section-hb-html-1\";s:7:\"inherit\";s:29:\"font-family-section-hb-html-1\";s:7:\"inherit\";s:29:\"line-height-section-hb-html-1\";s:0:\"\";s:32:\"text-transform-section-hb-html-1\";s:0:\"\";s:24:\"section-hb-html-1-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:13:\"footer-html-1\";s:23:\"Powered By [site_title]\";s:18:\"footer-html-1color\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-3)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:23:\"footer-html-1link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"footer-html-1link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"font-size-section-fb-html-1\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:23:\"footer-html-1-alignment\";a:3:{s:7:\"desktop\";s:5:\"right\";s:6:\"tablet\";s:5:\"right\";s:6:\"mobile\";s:6:\"center\";}s:29:\"font-weight-section-fb-html-1\";s:7:\"inherit\";s:29:\"font-family-section-fb-html-1\";s:7:\"inherit\";s:32:\"text-transform-section-fb-html-1\";s:0:\"\";s:29:\"line-height-section-fb-html-1\";s:0:\"\";s:24:\"section-fb-html-1-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-social-1-space\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:24:\"header-social-1-bg-space\";s:0:\"\";s:20:\"header-social-1-size\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"header-social-1-radius\";s:0:\"\";s:21:\"header-social-1-color\";s:0:\"\";s:23:\"header-social-1-h-color\";s:0:\"\";s:24:\"header-social-1-bg-color\";s:0:\"\";s:26:\"header-social-1-bg-h-color\";s:0:\"\";s:28:\"header-social-1-label-toggle\";b:0;s:26:\"header-social-1-color-type\";s:6:\"custom\";s:35:\"font-size-section-hb-social-icons-1\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-social-icons-1\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:32:\"section-hb-social-icons-1-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"footer-social-1-space\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:24:\"footer-social-1-bg-space\";s:0:\"\";s:20:\"footer-social-1-size\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"footer-social-1-radius\";s:0:\"\";s:21:\"footer-social-1-color\";s:0:\"\";s:23:\"footer-social-1-h-color\";s:0:\"\";s:24:\"footer-social-1-bg-color\";s:0:\"\";s:26:\"footer-social-1-bg-h-color\";s:0:\"\";s:28:\"footer-social-1-label-toggle\";b:0;s:26:\"footer-social-1-color-type\";s:6:\"custom\";s:35:\"font-size-section-fb-social-icons-1\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"footer-social-icons-1\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:25:\"footer-social-1-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:32:\"section-fb-social-icons-1-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"header-widget-1-title-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"header-widget-1-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:26:\"header-widget-1-link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"header-widget-1-link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-widget-1-font-family\";s:7:\"inherit\";s:27:\"header-widget-1-font-weight\";s:7:\"inherit\";s:30:\"header-widget-1-text-transform\";s:0:\"\";s:27:\"header-widget-1-line-height\";s:0:\"\";s:25:\"header-widget-1-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:35:\"header-widget-1-content-font-family\";s:7:\"inherit\";s:35:\"header-widget-1-content-font-weight\";s:7:\"inherit\";s:38:\"header-widget-1-content-text-transform\";s:0:\"\";s:35:\"header-widget-1-content-line-height\";s:0:\"\";s:33:\"header-widget-1-content-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:38:\"sidebar-widgets-header-widget-1-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"footer-widget-1-title-color\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-2)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"footer-widget-1-color\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-2)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:26:\"footer-widget-1-link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"footer-widget-1-link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-widget-1-font-family\";s:7:\"inherit\";s:27:\"footer-widget-1-font-weight\";s:7:\"inherit\";s:30:\"footer-widget-1-text-transform\";s:0:\"\";s:27:\"footer-widget-1-line-height\";s:0:\"\";s:25:\"footer-widget-1-font-size\";a:6:{s:7:\"desktop\";s:2:\"42\";s:6:\"tablet\";s:2:\"35\";s:6:\"mobile\";s:2:\"22\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:35:\"footer-widget-1-content-font-family\";s:7:\"inherit\";s:35:\"footer-widget-1-content-font-weight\";s:7:\"inherit\";s:38:\"footer-widget-1-content-text-transform\";s:0:\"\";s:35:\"footer-widget-1-content-line-height\";s:0:\"\";s:33:\"footer-widget-1-content-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"footer-widget-alignment-1\";a:3:{s:7:\"desktop\";s:5:\"right\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:38:\"sidebar-widgets-footer-widget-1-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:2:\"20\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-menu1-bg-color\";s:0:\"\";s:18:\"header-menu1-color\";s:0:\"\";s:23:\"header-menu1-h-bg-color\";s:0:\"\";s:20:\"header-menu1-h-color\";s:0:\"\";s:23:\"header-menu1-a-bg-color\";s:0:\"\";s:20:\"header-menu1-a-color\";s:0:\"\";s:30:\"header-menu1-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:7:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:29:\"header-menu1-color-responsive\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-3)\";s:6:\"tablet\";s:25:\"var(--ast-global-color-3)\";s:6:\"mobile\";s:0:\"\";}s:34:\"header-menu1-h-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:31:\"header-menu1-h-color-responsive\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-0)\";s:6:\"tablet\";s:25:\"var(--ast-global-color-0)\";s:6:\"mobile\";s:0:\"\";}s:34:\"header-menu1-a-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:31:\"header-menu1-a-color-responsive\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-0)\";s:6:\"tablet\";s:25:\"var(--ast-global-color-0)\";s:6:\"mobile\";s:0:\"\";}s:33:\"header-menu1-menu-hover-animation\";s:0:\"\";s:40:\"header-menu1-submenu-container-animation\";s:0:\"\";s:24:\"section-hb-menu-1-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"header-menu1-menu-spacing\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:32:\"header-menu1-submenu-item-border\";b:0;s:32:\"header-menu1-submenu-item-b-size\";s:1:\"1\";s:33:\"header-menu1-submenu-item-b-color\";s:7:\"#eaeaea\";s:34:\"header-menu1-submenu-border-radius\";s:0:\"\";s:31:\"header-menu1-submenu-top-offset\";s:0:\"\";s:26:\"header-menu1-submenu-width\";s:0:\"\";s:27:\"header-menu1-submenu-border\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:33:\"header-menu1-menu-stack-on-mobile\";b:1;s:22:\"header-menu1-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:24:\"header-menu1-font-weight\";s:7:\"inherit\";s:24:\"header-menu1-font-family\";s:7:\"inherit\";s:27:\"header-menu1-text-transform\";s:0:\"\";s:24:\"header-menu1-line-height\";s:0:\"\";s:27:\"section-hb-divider-1-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"section-fb-divider-1-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:19:\"header-button2-text\";s:6:\"Button\";s:26:\"header-button2-link-option\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:26:\"header-button2-font-family\";s:7:\"inherit\";s:26:\"header-button2-font-weight\";s:7:\"inherit\";s:29:\"header-button2-text-transform\";s:0:\"\";s:26:\"header-button2-line-height\";s:0:\"\";s:24:\"header-button2-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"header-button2-text-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"header-button2-back-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-button2-text-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-button2-back-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"header-button2-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"header-button2-border-size\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:27:\"header-button2-border-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"header-button2-border-radius\";s:0:\"\";s:27:\"section-hb-button-2-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"section-hb-button-2-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:29:\"sticky-header-button2-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:19:\"footer-button2-text\";s:6:\"Button\";s:26:\"footer-button2-link-option\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:26:\"footer-button2-font-family\";s:7:\"inherit\";s:26:\"footer-button2-font-weight\";s:7:\"inherit\";s:29:\"footer-button2-text-transform\";s:0:\"\";s:26:\"footer-button2-line-height\";s:0:\"\";s:24:\"footer-button2-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"footer-button2-text-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"footer-button2-back-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-button2-text-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-button2-back-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"footer-button2-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"footer-button2-border-size\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:27:\"footer-button2-border-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"footer-button2-border-radius\";s:0:\"\";s:25:\"footer-button-2-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:27:\"section-fb-button-2-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"section-fb-button-2-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:13:\"header-html-2\";s:22:\"Insert HTML text here.\";s:18:\"header-html-2color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:23:\"header-html-2link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"header-html-2link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"font-size-section-hb-html-2\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:29:\"font-weight-section-hb-html-2\";s:7:\"inherit\";s:29:\"font-family-section-hb-html-2\";s:7:\"inherit\";s:29:\"line-height-section-hb-html-2\";s:0:\"\";s:32:\"text-transform-section-hb-html-2\";s:0:\"\";s:24:\"section-hb-html-2-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:13:\"footer-html-2\";s:22:\"Insert HTML text here.\";s:18:\"footer-html-2color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:23:\"footer-html-2link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"footer-html-2link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"font-size-section-fb-html-2\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:23:\"footer-html-2-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:29:\"font-weight-section-fb-html-2\";s:7:\"inherit\";s:29:\"font-family-section-fb-html-2\";s:7:\"inherit\";s:32:\"text-transform-section-fb-html-2\";s:0:\"\";s:29:\"line-height-section-fb-html-2\";s:0:\"\";s:24:\"section-fb-html-2-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-social-2-space\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:24:\"header-social-2-bg-space\";s:0:\"\";s:20:\"header-social-2-size\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"header-social-2-radius\";s:0:\"\";s:21:\"header-social-2-color\";s:0:\"\";s:23:\"header-social-2-h-color\";s:0:\"\";s:24:\"header-social-2-bg-color\";s:0:\"\";s:26:\"header-social-2-bg-h-color\";s:0:\"\";s:28:\"header-social-2-label-toggle\";b:0;s:26:\"header-social-2-color-type\";s:6:\"custom\";s:35:\"font-size-section-hb-social-icons-2\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-social-icons-2\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:32:\"section-hb-social-icons-2-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"footer-social-2-space\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:24:\"footer-social-2-bg-space\";s:0:\"\";s:20:\"footer-social-2-size\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"footer-social-2-radius\";s:0:\"\";s:21:\"footer-social-2-color\";s:0:\"\";s:23:\"footer-social-2-h-color\";s:0:\"\";s:24:\"footer-social-2-bg-color\";s:0:\"\";s:26:\"footer-social-2-bg-h-color\";s:0:\"\";s:28:\"footer-social-2-label-toggle\";b:0;s:26:\"footer-social-2-color-type\";s:6:\"custom\";s:35:\"font-size-section-fb-social-icons-2\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"footer-social-icons-2\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:25:\"footer-social-2-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:32:\"section-fb-social-icons-2-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"header-widget-2-title-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"header-widget-2-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:26:\"header-widget-2-link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"header-widget-2-link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-widget-2-font-family\";s:7:\"inherit\";s:27:\"header-widget-2-font-weight\";s:7:\"inherit\";s:30:\"header-widget-2-text-transform\";s:0:\"\";s:27:\"header-widget-2-line-height\";s:0:\"\";s:25:\"header-widget-2-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:35:\"header-widget-2-content-font-family\";s:7:\"inherit\";s:35:\"header-widget-2-content-font-weight\";s:7:\"inherit\";s:38:\"header-widget-2-content-text-transform\";s:0:\"\";s:35:\"header-widget-2-content-line-height\";s:0:\"\";s:33:\"header-widget-2-content-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:38:\"sidebar-widgets-header-widget-2-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"footer-widget-2-title-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"footer-widget-2-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:26:\"footer-widget-2-link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"footer-widget-2-link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-widget-2-font-family\";s:7:\"inherit\";s:27:\"footer-widget-2-font-weight\";s:7:\"inherit\";s:30:\"footer-widget-2-text-transform\";s:0:\"\";s:27:\"footer-widget-2-line-height\";s:0:\"\";s:25:\"footer-widget-2-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:35:\"footer-widget-2-content-font-family\";s:7:\"inherit\";s:35:\"footer-widget-2-content-font-weight\";s:7:\"inherit\";s:38:\"footer-widget-2-content-text-transform\";s:0:\"\";s:35:\"footer-widget-2-content-line-height\";s:0:\"\";s:33:\"footer-widget-2-content-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"footer-widget-alignment-2\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:38:\"sidebar-widgets-footer-widget-2-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-menu2-bg-color\";s:0:\"\";s:18:\"header-menu2-color\";s:0:\"\";s:23:\"header-menu2-h-bg-color\";s:0:\"\";s:20:\"header-menu2-h-color\";s:0:\"\";s:23:\"header-menu2-a-bg-color\";s:0:\"\";s:20:\"header-menu2-a-color\";s:0:\"\";s:30:\"header-menu2-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:29:\"header-menu2-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:34:\"header-menu2-h-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:31:\"header-menu2-h-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:34:\"header-menu2-a-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:31:\"header-menu2-a-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:33:\"header-menu2-menu-hover-animation\";s:0:\"\";s:40:\"header-menu2-submenu-container-animation\";s:0:\"\";s:24:\"section-hb-menu-2-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"header-menu2-menu-spacing\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:32:\"header-menu2-submenu-item-border\";b:0;s:32:\"header-menu2-submenu-item-b-size\";s:1:\"1\";s:33:\"header-menu2-submenu-item-b-color\";s:7:\"#eaeaea\";s:34:\"header-menu2-submenu-border-radius\";s:0:\"\";s:31:\"header-menu2-submenu-top-offset\";s:0:\"\";s:26:\"header-menu2-submenu-width\";s:0:\"\";s:27:\"header-menu2-submenu-border\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:33:\"header-menu2-menu-stack-on-mobile\";b:1;s:22:\"header-menu2-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:24:\"header-menu2-font-weight\";s:7:\"inherit\";s:24:\"header-menu2-font-family\";s:7:\"inherit\";s:27:\"header-menu2-text-transform\";s:0:\"\";s:24:\"header-menu2-line-height\";s:0:\"\";s:27:\"section-hb-divider-2-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"section-fb-divider-2-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:19:\"header-button3-text\";s:6:\"Button\";s:26:\"header-button3-link-option\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:26:\"header-button3-font-family\";s:7:\"inherit\";s:26:\"header-button3-font-weight\";s:7:\"inherit\";s:29:\"header-button3-text-transform\";s:0:\"\";s:26:\"header-button3-line-height\";s:0:\"\";s:24:\"header-button3-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"header-button3-text-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"header-button3-back-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-button3-text-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-button3-back-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"header-button3-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"header-button3-border-size\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:27:\"header-button3-border-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"header-button3-border-radius\";s:0:\"\";s:27:\"section-hb-button-3-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"section-hb-button-3-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:29:\"sticky-header-button3-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:19:\"footer-button3-text\";s:6:\"Button\";s:26:\"footer-button3-link-option\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:26:\"footer-button3-font-family\";s:7:\"inherit\";s:26:\"footer-button3-font-weight\";s:7:\"inherit\";s:29:\"footer-button3-text-transform\";s:0:\"\";s:26:\"footer-button3-line-height\";s:0:\"\";s:24:\"footer-button3-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"footer-button3-text-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"footer-button3-back-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-button3-text-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-button3-back-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"footer-button3-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"footer-button3-border-size\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:27:\"footer-button3-border-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"footer-button3-border-radius\";s:0:\"\";s:25:\"footer-button-3-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:27:\"section-fb-button-3-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"section-fb-button-3-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:13:\"header-html-3\";s:22:\"Insert HTML text here.\";s:18:\"header-html-3color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:23:\"header-html-3link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"header-html-3link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"font-size-section-hb-html-3\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:29:\"font-weight-section-hb-html-3\";s:7:\"inherit\";s:29:\"font-family-section-hb-html-3\";s:7:\"inherit\";s:29:\"line-height-section-hb-html-3\";s:0:\"\";s:32:\"text-transform-section-hb-html-3\";s:0:\"\";s:24:\"section-hb-html-3-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:13:\"footer-html-3\";s:22:\"Insert HTML text here.\";s:18:\"footer-html-3color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:23:\"footer-html-3link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"footer-html-3link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"font-size-section-fb-html-3\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:23:\"footer-html-3-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:29:\"font-weight-section-fb-html-3\";s:7:\"inherit\";s:29:\"font-family-section-fb-html-3\";s:7:\"inherit\";s:32:\"text-transform-section-fb-html-3\";s:0:\"\";s:29:\"line-height-section-fb-html-3\";s:0:\"\";s:24:\"section-fb-html-3-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-social-3-space\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:24:\"header-social-3-bg-space\";s:0:\"\";s:20:\"header-social-3-size\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"header-social-3-radius\";s:0:\"\";s:21:\"header-social-3-color\";s:0:\"\";s:23:\"header-social-3-h-color\";s:0:\"\";s:24:\"header-social-3-bg-color\";s:0:\"\";s:26:\"header-social-3-bg-h-color\";s:0:\"\";s:28:\"header-social-3-label-toggle\";b:0;s:26:\"header-social-3-color-type\";s:6:\"custom\";s:35:\"font-size-section-hb-social-icons-3\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-social-icons-3\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:32:\"section-hb-social-icons-3-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"footer-social-3-space\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:24:\"footer-social-3-bg-space\";s:0:\"\";s:20:\"footer-social-3-size\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"footer-social-3-radius\";s:0:\"\";s:21:\"footer-social-3-color\";s:0:\"\";s:23:\"footer-social-3-h-color\";s:0:\"\";s:24:\"footer-social-3-bg-color\";s:0:\"\";s:26:\"footer-social-3-bg-h-color\";s:0:\"\";s:28:\"footer-social-3-label-toggle\";b:0;s:26:\"footer-social-3-color-type\";s:6:\"custom\";s:35:\"font-size-section-fb-social-icons-3\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"footer-social-icons-3\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:25:\"footer-social-3-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:32:\"section-fb-social-icons-3-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"header-widget-3-title-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"header-widget-3-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:26:\"header-widget-3-link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"header-widget-3-link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-widget-3-font-family\";s:7:\"inherit\";s:27:\"header-widget-3-font-weight\";s:7:\"inherit\";s:30:\"header-widget-3-text-transform\";s:0:\"\";s:27:\"header-widget-3-line-height\";s:0:\"\";s:25:\"header-widget-3-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:35:\"header-widget-3-content-font-family\";s:7:\"inherit\";s:35:\"header-widget-3-content-font-weight\";s:7:\"inherit\";s:38:\"header-widget-3-content-text-transform\";s:0:\"\";s:35:\"header-widget-3-content-line-height\";s:0:\"\";s:33:\"header-widget-3-content-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:38:\"sidebar-widgets-header-widget-3-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"footer-widget-3-title-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"footer-widget-3-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:26:\"footer-widget-3-link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"footer-widget-3-link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-widget-3-font-family\";s:7:\"inherit\";s:27:\"footer-widget-3-font-weight\";s:7:\"inherit\";s:30:\"footer-widget-3-text-transform\";s:0:\"\";s:27:\"footer-widget-3-line-height\";s:0:\"\";s:25:\"footer-widget-3-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:35:\"footer-widget-3-content-font-family\";s:7:\"inherit\";s:35:\"footer-widget-3-content-font-weight\";s:7:\"inherit\";s:38:\"footer-widget-3-content-text-transform\";s:0:\"\";s:35:\"footer-widget-3-content-line-height\";s:0:\"\";s:33:\"footer-widget-3-content-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"footer-widget-alignment-3\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:38:\"sidebar-widgets-footer-widget-3-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-menu3-bg-color\";s:0:\"\";s:18:\"header-menu3-color\";s:0:\"\";s:23:\"header-menu3-h-bg-color\";s:0:\"\";s:20:\"header-menu3-h-color\";s:0:\"\";s:23:\"header-menu3-a-bg-color\";s:0:\"\";s:20:\"header-menu3-a-color\";s:0:\"\";s:30:\"header-menu3-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:29:\"header-menu3-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:34:\"header-menu3-h-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:31:\"header-menu3-h-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:34:\"header-menu3-a-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:31:\"header-menu3-a-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:33:\"header-menu3-menu-hover-animation\";s:0:\"\";s:40:\"header-menu3-submenu-container-animation\";s:0:\"\";s:24:\"section-hb-menu-3-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"header-menu3-menu-spacing\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:32:\"header-menu3-submenu-item-border\";b:0;s:32:\"header-menu3-submenu-item-b-size\";s:1:\"1\";s:33:\"header-menu3-submenu-item-b-color\";s:7:\"#eaeaea\";s:34:\"header-menu3-submenu-border-radius\";s:0:\"\";s:31:\"header-menu3-submenu-top-offset\";s:0:\"\";s:26:\"header-menu3-submenu-width\";s:0:\"\";s:27:\"header-menu3-submenu-border\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:33:\"header-menu3-menu-stack-on-mobile\";b:1;s:22:\"header-menu3-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:24:\"header-menu3-font-weight\";s:7:\"inherit\";s:24:\"header-menu3-font-family\";s:7:\"inherit\";s:27:\"header-menu3-text-transform\";s:0:\"\";s:24:\"header-menu3-line-height\";s:0:\"\";s:27:\"section-hb-divider-3-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"section-fb-divider-3-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:19:\"header-button4-text\";s:6:\"Button\";s:26:\"header-button4-link-option\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:26:\"header-button4-font-family\";s:7:\"inherit\";s:26:\"header-button4-font-weight\";s:7:\"inherit\";s:29:\"header-button4-text-transform\";s:0:\"\";s:26:\"header-button4-line-height\";s:0:\"\";s:24:\"header-button4-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"header-button4-text-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"header-button4-back-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-button4-text-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-button4-back-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"header-button4-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"header-button4-border-size\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:27:\"header-button4-border-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"header-button4-border-radius\";s:0:\"\";s:27:\"section-hb-button-4-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"section-hb-button-4-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:29:\"sticky-header-button4-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:19:\"footer-button4-text\";s:6:\"Button\";s:26:\"footer-button4-link-option\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:26:\"footer-button4-font-family\";s:7:\"inherit\";s:26:\"footer-button4-font-weight\";s:7:\"inherit\";s:29:\"footer-button4-text-transform\";s:0:\"\";s:26:\"footer-button4-line-height\";s:0:\"\";s:24:\"footer-button4-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"footer-button4-text-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"footer-button4-back-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-button4-text-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-button4-back-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"footer-button4-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"footer-button4-border-size\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:27:\"footer-button4-border-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"footer-button4-border-radius\";s:0:\"\";s:25:\"footer-button-4-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:27:\"section-fb-button-4-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"section-fb-button-4-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:13:\"header-html-4\";s:22:\"Insert HTML text here.\";s:18:\"header-html-4color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:23:\"header-html-4link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"header-html-4link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"font-size-section-hb-html-4\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:29:\"font-weight-section-hb-html-4\";s:7:\"inherit\";s:29:\"font-family-section-hb-html-4\";s:7:\"inherit\";s:29:\"line-height-section-hb-html-4\";s:0:\"\";s:32:\"text-transform-section-hb-html-4\";s:0:\"\";s:24:\"section-hb-html-4-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:13:\"footer-html-4\";s:22:\"Insert HTML text here.\";s:18:\"footer-html-4color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:23:\"footer-html-4link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"footer-html-4link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"font-size-section-fb-html-4\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:23:\"footer-html-4-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:29:\"font-weight-section-fb-html-4\";s:7:\"inherit\";s:29:\"font-family-section-fb-html-4\";s:7:\"inherit\";s:32:\"text-transform-section-fb-html-4\";s:0:\"\";s:29:\"line-height-section-fb-html-4\";s:0:\"\";s:24:\"section-fb-html-4-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-social-4-space\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:24:\"header-social-4-bg-space\";s:0:\"\";s:20:\"header-social-4-size\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"header-social-4-radius\";s:0:\"\";s:21:\"header-social-4-color\";s:0:\"\";s:23:\"header-social-4-h-color\";s:0:\"\";s:24:\"header-social-4-bg-color\";s:0:\"\";s:26:\"header-social-4-bg-h-color\";s:0:\"\";s:28:\"header-social-4-label-toggle\";b:0;s:26:\"header-social-4-color-type\";s:6:\"custom\";s:35:\"font-size-section-hb-social-icons-4\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-social-icons-4\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:32:\"section-hb-social-icons-4-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"footer-social-4-space\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:24:\"footer-social-4-bg-space\";s:0:\"\";s:20:\"footer-social-4-size\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"footer-social-4-radius\";s:0:\"\";s:21:\"footer-social-4-color\";s:0:\"\";s:23:\"footer-social-4-h-color\";s:0:\"\";s:24:\"footer-social-4-bg-color\";s:0:\"\";s:26:\"footer-social-4-bg-h-color\";s:0:\"\";s:28:\"footer-social-4-label-toggle\";b:0;s:26:\"footer-social-4-color-type\";s:6:\"custom\";s:35:\"font-size-section-fb-social-icons-4\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"footer-social-icons-4\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:25:\"footer-social-4-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:32:\"section-fb-social-icons-4-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"header-widget-4-title-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"header-widget-4-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:26:\"header-widget-4-link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"header-widget-4-link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-widget-4-font-family\";s:7:\"inherit\";s:27:\"header-widget-4-font-weight\";s:7:\"inherit\";s:30:\"header-widget-4-text-transform\";s:0:\"\";s:27:\"header-widget-4-line-height\";s:0:\"\";s:25:\"header-widget-4-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:35:\"header-widget-4-content-font-family\";s:7:\"inherit\";s:35:\"header-widget-4-content-font-weight\";s:7:\"inherit\";s:38:\"header-widget-4-content-text-transform\";s:0:\"\";s:35:\"header-widget-4-content-line-height\";s:0:\"\";s:33:\"header-widget-4-content-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:38:\"sidebar-widgets-header-widget-4-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"footer-widget-4-title-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"footer-widget-4-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:26:\"footer-widget-4-link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"footer-widget-4-link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-widget-4-font-family\";s:7:\"inherit\";s:27:\"footer-widget-4-font-weight\";s:7:\"inherit\";s:30:\"footer-widget-4-text-transform\";s:0:\"\";s:27:\"footer-widget-4-line-height\";s:0:\"\";s:25:\"footer-widget-4-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:35:\"footer-widget-4-content-font-family\";s:7:\"inherit\";s:35:\"footer-widget-4-content-font-weight\";s:7:\"inherit\";s:38:\"footer-widget-4-content-text-transform\";s:0:\"\";s:35:\"footer-widget-4-content-line-height\";s:0:\"\";s:33:\"footer-widget-4-content-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"footer-widget-alignment-4\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:38:\"sidebar-widgets-footer-widget-4-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-menu4-bg-color\";s:0:\"\";s:18:\"header-menu4-color\";s:0:\"\";s:23:\"header-menu4-h-bg-color\";s:0:\"\";s:20:\"header-menu4-h-color\";s:0:\"\";s:23:\"header-menu4-a-bg-color\";s:0:\"\";s:20:\"header-menu4-a-color\";s:0:\"\";s:30:\"header-menu4-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:29:\"header-menu4-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:34:\"header-menu4-h-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:31:\"header-menu4-h-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:34:\"header-menu4-a-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:31:\"header-menu4-a-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:33:\"header-menu4-menu-hover-animation\";s:0:\"\";s:40:\"header-menu4-submenu-container-animation\";s:0:\"\";s:24:\"section-hb-menu-4-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"header-menu4-menu-spacing\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:32:\"header-menu4-submenu-item-border\";b:0;s:32:\"header-menu4-submenu-item-b-size\";s:1:\"1\";s:33:\"header-menu4-submenu-item-b-color\";s:7:\"#eaeaea\";s:34:\"header-menu4-submenu-border-radius\";s:0:\"\";s:31:\"header-menu4-submenu-top-offset\";s:0:\"\";s:26:\"header-menu4-submenu-width\";s:0:\"\";s:27:\"header-menu4-submenu-border\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:33:\"header-menu4-menu-stack-on-mobile\";b:1;s:22:\"header-menu4-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:24:\"header-menu4-font-weight\";s:7:\"inherit\";s:24:\"header-menu4-font-family\";s:7:\"inherit\";s:27:\"header-menu4-text-transform\";s:0:\"\";s:24:\"header-menu4-line-height\";s:0:\"\";s:27:\"section-hb-divider-4-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"section-fb-divider-4-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:19:\"header-button5-text\";s:6:\"Button\";s:26:\"header-button5-link-option\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:26:\"header-button5-font-family\";s:7:\"inherit\";s:26:\"header-button5-font-weight\";s:7:\"inherit\";s:29:\"header-button5-text-transform\";s:0:\"\";s:26:\"header-button5-line-height\";s:0:\"\";s:24:\"header-button5-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"header-button5-text-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"header-button5-back-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-button5-text-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-button5-back-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"header-button5-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"header-button5-border-size\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:27:\"header-button5-border-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"header-button5-border-radius\";s:0:\"\";s:27:\"section-hb-button-5-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"section-hb-button-5-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:29:\"sticky-header-button5-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:19:\"footer-button5-text\";s:6:\"Button\";s:26:\"footer-button5-link-option\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:26:\"footer-button5-font-family\";s:7:\"inherit\";s:26:\"footer-button5-font-weight\";s:7:\"inherit\";s:29:\"footer-button5-text-transform\";s:0:\"\";s:26:\"footer-button5-line-height\";s:0:\"\";s:24:\"footer-button5-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"footer-button5-text-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"footer-button5-back-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-button5-text-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-button5-back-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"footer-button5-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"footer-button5-border-size\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:27:\"footer-button5-border-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"footer-button5-border-radius\";s:0:\"\";s:25:\"footer-button-5-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:27:\"section-fb-button-5-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"section-fb-button-5-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:13:\"header-html-5\";s:22:\"Insert HTML text here.\";s:18:\"header-html-5color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:23:\"header-html-5link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"header-html-5link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"font-size-section-hb-html-5\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:29:\"font-weight-section-hb-html-5\";s:7:\"inherit\";s:29:\"font-family-section-hb-html-5\";s:7:\"inherit\";s:29:\"line-height-section-hb-html-5\";s:0:\"\";s:32:\"text-transform-section-hb-html-5\";s:0:\"\";s:24:\"section-hb-html-5-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:13:\"footer-html-5\";s:22:\"Insert HTML text here.\";s:18:\"footer-html-5color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:23:\"footer-html-5link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"footer-html-5link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"font-size-section-fb-html-5\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:23:\"footer-html-5-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:29:\"font-weight-section-fb-html-5\";s:7:\"inherit\";s:29:\"font-family-section-fb-html-5\";s:7:\"inherit\";s:32:\"text-transform-section-fb-html-5\";s:0:\"\";s:29:\"line-height-section-fb-html-5\";s:0:\"\";s:24:\"section-fb-html-5-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-social-5-space\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:24:\"header-social-5-bg-space\";s:0:\"\";s:20:\"header-social-5-size\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"header-social-5-radius\";s:0:\"\";s:21:\"header-social-5-color\";s:0:\"\";s:23:\"header-social-5-h-color\";s:0:\"\";s:24:\"header-social-5-bg-color\";s:0:\"\";s:26:\"header-social-5-bg-h-color\";s:0:\"\";s:28:\"header-social-5-label-toggle\";b:0;s:26:\"header-social-5-color-type\";s:6:\"custom\";s:35:\"font-size-section-hb-social-icons-5\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-social-icons-5\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:32:\"section-hb-social-icons-5-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"footer-social-5-space\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:24:\"footer-social-5-bg-space\";s:0:\"\";s:20:\"footer-social-5-size\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"footer-social-5-radius\";s:0:\"\";s:21:\"footer-social-5-color\";s:0:\"\";s:23:\"footer-social-5-h-color\";s:0:\"\";s:24:\"footer-social-5-bg-color\";s:0:\"\";s:26:\"footer-social-5-bg-h-color\";s:0:\"\";s:28:\"footer-social-5-label-toggle\";b:0;s:26:\"footer-social-5-color-type\";s:6:\"custom\";s:35:\"font-size-section-fb-social-icons-5\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"footer-social-icons-5\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:25:\"footer-social-5-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:32:\"section-fb-social-icons-5-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"header-widget-5-title-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"header-widget-5-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:26:\"header-widget-5-link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"header-widget-5-link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-widget-5-font-family\";s:7:\"inherit\";s:27:\"header-widget-5-font-weight\";s:7:\"inherit\";s:30:\"header-widget-5-text-transform\";s:0:\"\";s:27:\"header-widget-5-line-height\";s:0:\"\";s:25:\"header-widget-5-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:35:\"header-widget-5-content-font-family\";s:7:\"inherit\";s:35:\"header-widget-5-content-font-weight\";s:7:\"inherit\";s:38:\"header-widget-5-content-text-transform\";s:0:\"\";s:35:\"header-widget-5-content-line-height\";s:0:\"\";s:33:\"header-widget-5-content-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:38:\"sidebar-widgets-header-widget-5-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"footer-widget-5-title-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"footer-widget-5-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:26:\"footer-widget-5-link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"footer-widget-5-link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-widget-5-font-family\";s:7:\"inherit\";s:27:\"footer-widget-5-font-weight\";s:7:\"inherit\";s:30:\"footer-widget-5-text-transform\";s:0:\"\";s:27:\"footer-widget-5-line-height\";s:0:\"\";s:25:\"footer-widget-5-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:35:\"footer-widget-5-content-font-family\";s:7:\"inherit\";s:35:\"footer-widget-5-content-font-weight\";s:7:\"inherit\";s:38:\"footer-widget-5-content-text-transform\";s:0:\"\";s:35:\"footer-widget-5-content-line-height\";s:0:\"\";s:33:\"footer-widget-5-content-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"footer-widget-alignment-5\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:38:\"sidebar-widgets-footer-widget-5-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-menu5-bg-color\";s:0:\"\";s:18:\"header-menu5-color\";s:0:\"\";s:23:\"header-menu5-h-bg-color\";s:0:\"\";s:20:\"header-menu5-h-color\";s:0:\"\";s:23:\"header-menu5-a-bg-color\";s:0:\"\";s:20:\"header-menu5-a-color\";s:0:\"\";s:30:\"header-menu5-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:29:\"header-menu5-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:34:\"header-menu5-h-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:31:\"header-menu5-h-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:34:\"header-menu5-a-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:31:\"header-menu5-a-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:33:\"header-menu5-menu-hover-animation\";s:0:\"\";s:40:\"header-menu5-submenu-container-animation\";s:0:\"\";s:24:\"section-hb-menu-5-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"header-menu5-menu-spacing\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:32:\"header-menu5-submenu-item-border\";b:0;s:32:\"header-menu5-submenu-item-b-size\";s:1:\"1\";s:33:\"header-menu5-submenu-item-b-color\";s:7:\"#eaeaea\";s:34:\"header-menu5-submenu-border-radius\";s:0:\"\";s:31:\"header-menu5-submenu-top-offset\";s:0:\"\";s:26:\"header-menu5-submenu-width\";s:0:\"\";s:27:\"header-menu5-submenu-border\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:33:\"header-menu5-menu-stack-on-mobile\";b:1;s:22:\"header-menu5-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:24:\"header-menu5-font-weight\";s:7:\"inherit\";s:24:\"header-menu5-font-family\";s:7:\"inherit\";s:27:\"header-menu5-text-transform\";s:0:\"\";s:24:\"header-menu5-line-height\";s:0:\"\";s:27:\"section-hb-divider-5-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"section-fb-divider-5-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:19:\"header-button6-text\";s:6:\"Button\";s:26:\"header-button6-link-option\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:26:\"header-button6-font-family\";s:7:\"inherit\";s:26:\"header-button6-font-weight\";s:7:\"inherit\";s:29:\"header-button6-text-transform\";s:0:\"\";s:26:\"header-button6-line-height\";s:0:\"\";s:24:\"header-button6-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"header-button6-text-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"header-button6-back-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-button6-text-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-button6-back-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"header-button6-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"header-button6-border-size\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:27:\"header-button6-border-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"header-button6-border-radius\";s:0:\"\";s:27:\"section-hb-button-6-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"section-hb-button-6-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:29:\"sticky-header-button6-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:19:\"footer-button6-text\";s:6:\"Button\";s:26:\"footer-button6-link-option\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:26:\"footer-button6-font-family\";s:7:\"inherit\";s:26:\"footer-button6-font-weight\";s:7:\"inherit\";s:29:\"footer-button6-text-transform\";s:0:\"\";s:26:\"footer-button6-line-height\";s:0:\"\";s:24:\"footer-button6-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"footer-button6-text-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"footer-button6-back-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-button6-text-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-button6-back-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"footer-button6-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"footer-button6-border-size\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:27:\"footer-button6-border-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"footer-button6-border-radius\";s:0:\"\";s:25:\"footer-button-6-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:27:\"section-fb-button-6-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"section-fb-button-6-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:13:\"header-html-6\";s:22:\"Insert HTML text here.\";s:18:\"header-html-6color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:23:\"header-html-6link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"header-html-6link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"font-size-section-hb-html-6\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:29:\"font-weight-section-hb-html-6\";s:7:\"inherit\";s:29:\"font-family-section-hb-html-6\";s:7:\"inherit\";s:29:\"line-height-section-hb-html-6\";s:0:\"\";s:32:\"text-transform-section-hb-html-6\";s:0:\"\";s:24:\"section-hb-html-6-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:13:\"footer-html-6\";s:22:\"Insert HTML text here.\";s:18:\"footer-html-6color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:23:\"footer-html-6link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"footer-html-6link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"font-size-section-fb-html-6\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:23:\"footer-html-6-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:29:\"font-weight-section-fb-html-6\";s:7:\"inherit\";s:29:\"font-family-section-fb-html-6\";s:7:\"inherit\";s:32:\"text-transform-section-fb-html-6\";s:0:\"\";s:29:\"line-height-section-fb-html-6\";s:0:\"\";s:24:\"section-fb-html-6-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-social-6-space\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:24:\"header-social-6-bg-space\";s:0:\"\";s:20:\"header-social-6-size\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"header-social-6-radius\";s:0:\"\";s:21:\"header-social-6-color\";s:0:\"\";s:23:\"header-social-6-h-color\";s:0:\"\";s:24:\"header-social-6-bg-color\";s:0:\"\";s:26:\"header-social-6-bg-h-color\";s:0:\"\";s:28:\"header-social-6-label-toggle\";b:0;s:26:\"header-social-6-color-type\";s:6:\"custom\";s:35:\"font-size-section-hb-social-icons-6\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-social-icons-6\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:32:\"section-hb-social-icons-6-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"footer-social-6-space\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:24:\"footer-social-6-bg-space\";s:0:\"\";s:20:\"footer-social-6-size\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"footer-social-6-radius\";s:0:\"\";s:21:\"footer-social-6-color\";s:0:\"\";s:23:\"footer-social-6-h-color\";s:0:\"\";s:24:\"footer-social-6-bg-color\";s:0:\"\";s:26:\"footer-social-6-bg-h-color\";s:0:\"\";s:28:\"footer-social-6-label-toggle\";b:0;s:26:\"footer-social-6-color-type\";s:6:\"custom\";s:35:\"font-size-section-fb-social-icons-6\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"footer-social-icons-6\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:25:\"footer-social-6-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:32:\"section-fb-social-icons-6-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"header-widget-6-title-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"header-widget-6-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:26:\"header-widget-6-link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"header-widget-6-link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-widget-6-font-family\";s:7:\"inherit\";s:27:\"header-widget-6-font-weight\";s:7:\"inherit\";s:30:\"header-widget-6-text-transform\";s:0:\"\";s:27:\"header-widget-6-line-height\";s:0:\"\";s:25:\"header-widget-6-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:35:\"header-widget-6-content-font-family\";s:7:\"inherit\";s:35:\"header-widget-6-content-font-weight\";s:7:\"inherit\";s:38:\"header-widget-6-content-text-transform\";s:0:\"\";s:35:\"header-widget-6-content-line-height\";s:0:\"\";s:33:\"header-widget-6-content-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:38:\"sidebar-widgets-header-widget-6-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"footer-widget-6-title-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"footer-widget-6-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:26:\"footer-widget-6-link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"footer-widget-6-link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-widget-6-font-family\";s:7:\"inherit\";s:27:\"footer-widget-6-font-weight\";s:7:\"inherit\";s:30:\"footer-widget-6-text-transform\";s:0:\"\";s:27:\"footer-widget-6-line-height\";s:0:\"\";s:25:\"footer-widget-6-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:35:\"footer-widget-6-content-font-family\";s:7:\"inherit\";s:35:\"footer-widget-6-content-font-weight\";s:7:\"inherit\";s:38:\"footer-widget-6-content-text-transform\";s:0:\"\";s:35:\"footer-widget-6-content-line-height\";s:0:\"\";s:33:\"footer-widget-6-content-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"footer-widget-alignment-6\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:38:\"sidebar-widgets-footer-widget-6-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-menu6-bg-color\";s:0:\"\";s:18:\"header-menu6-color\";s:0:\"\";s:23:\"header-menu6-h-bg-color\";s:0:\"\";s:20:\"header-menu6-h-color\";s:0:\"\";s:23:\"header-menu6-a-bg-color\";s:0:\"\";s:20:\"header-menu6-a-color\";s:0:\"\";s:30:\"header-menu6-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:29:\"header-menu6-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:34:\"header-menu6-h-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:31:\"header-menu6-h-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:34:\"header-menu6-a-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:31:\"header-menu6-a-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:33:\"header-menu6-menu-hover-animation\";s:0:\"\";s:40:\"header-menu6-submenu-container-animation\";s:0:\"\";s:24:\"section-hb-menu-6-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"header-menu6-menu-spacing\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:32:\"header-menu6-submenu-item-border\";b:0;s:32:\"header-menu6-submenu-item-b-size\";s:1:\"1\";s:33:\"header-menu6-submenu-item-b-color\";s:7:\"#eaeaea\";s:34:\"header-menu6-submenu-border-radius\";s:0:\"\";s:31:\"header-menu6-submenu-top-offset\";s:0:\"\";s:26:\"header-menu6-submenu-width\";s:0:\"\";s:27:\"header-menu6-submenu-border\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:33:\"header-menu6-menu-stack-on-mobile\";b:1;s:22:\"header-menu6-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:24:\"header-menu6-font-weight\";s:7:\"inherit\";s:24:\"header-menu6-font-family\";s:7:\"inherit\";s:27:\"header-menu6-text-transform\";s:0:\"\";s:24:\"header-menu6-line-height\";s:0:\"\";s:27:\"section-hb-divider-6-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"section-fb-divider-6-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:19:\"header-button7-text\";s:6:\"Button\";s:26:\"header-button7-link-option\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:26:\"header-button7-font-family\";s:7:\"inherit\";s:26:\"header-button7-font-weight\";s:7:\"inherit\";s:29:\"header-button7-text-transform\";s:0:\"\";s:26:\"header-button7-line-height\";s:0:\"\";s:24:\"header-button7-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"header-button7-text-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"header-button7-back-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-button7-text-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-button7-back-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"header-button7-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"header-button7-border-size\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:27:\"header-button7-border-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"header-button7-border-radius\";s:0:\"\";s:27:\"section-hb-button-7-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"section-hb-button-7-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:29:\"sticky-header-button7-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:19:\"footer-button7-text\";s:6:\"Button\";s:26:\"footer-button7-link-option\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:26:\"footer-button7-font-family\";s:7:\"inherit\";s:26:\"footer-button7-font-weight\";s:7:\"inherit\";s:29:\"footer-button7-text-transform\";s:0:\"\";s:26:\"footer-button7-line-height\";s:0:\"\";s:24:\"footer-button7-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"footer-button7-text-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"footer-button7-back-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-button7-text-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-button7-back-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"footer-button7-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"footer-button7-border-size\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:27:\"footer-button7-border-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"footer-button7-border-radius\";s:0:\"\";s:25:\"footer-button-7-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:27:\"section-fb-button-7-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"section-fb-button-7-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:13:\"header-html-7\";s:22:\"Insert HTML text here.\";s:18:\"header-html-7color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:23:\"header-html-7link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"header-html-7link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"font-size-section-hb-html-7\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:29:\"font-weight-section-hb-html-7\";s:7:\"inherit\";s:29:\"font-family-section-hb-html-7\";s:7:\"inherit\";s:29:\"line-height-section-hb-html-7\";s:0:\"\";s:32:\"text-transform-section-hb-html-7\";s:0:\"\";s:24:\"section-hb-html-7-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:13:\"footer-html-7\";s:22:\"Insert HTML text here.\";s:18:\"footer-html-7color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:23:\"footer-html-7link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"footer-html-7link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"font-size-section-fb-html-7\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:23:\"footer-html-7-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:29:\"font-weight-section-fb-html-7\";s:7:\"inherit\";s:29:\"font-family-section-fb-html-7\";s:7:\"inherit\";s:32:\"text-transform-section-fb-html-7\";s:0:\"\";s:29:\"line-height-section-fb-html-7\";s:0:\"\";s:24:\"section-fb-html-7-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-social-7-space\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:24:\"header-social-7-bg-space\";s:0:\"\";s:20:\"header-social-7-size\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"header-social-7-radius\";s:0:\"\";s:21:\"header-social-7-color\";s:0:\"\";s:23:\"header-social-7-h-color\";s:0:\"\";s:24:\"header-social-7-bg-color\";s:0:\"\";s:26:\"header-social-7-bg-h-color\";s:0:\"\";s:28:\"header-social-7-label-toggle\";b:0;s:26:\"header-social-7-color-type\";s:6:\"custom\";s:35:\"font-size-section-hb-social-icons-7\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-social-icons-7\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:32:\"section-hb-social-icons-7-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"footer-social-7-space\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:24:\"footer-social-7-bg-space\";s:0:\"\";s:20:\"footer-social-7-size\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"footer-social-7-radius\";s:0:\"\";s:21:\"footer-social-7-color\";s:0:\"\";s:23:\"footer-social-7-h-color\";s:0:\"\";s:24:\"footer-social-7-bg-color\";s:0:\"\";s:26:\"footer-social-7-bg-h-color\";s:0:\"\";s:28:\"footer-social-7-label-toggle\";b:0;s:26:\"footer-social-7-color-type\";s:6:\"custom\";s:35:\"font-size-section-fb-social-icons-7\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"footer-social-icons-7\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:25:\"footer-social-7-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:32:\"section-fb-social-icons-7-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"header-widget-7-title-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"header-widget-7-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:26:\"header-widget-7-link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"header-widget-7-link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-widget-7-font-family\";s:7:\"inherit\";s:27:\"header-widget-7-font-weight\";s:7:\"inherit\";s:30:\"header-widget-7-text-transform\";s:0:\"\";s:27:\"header-widget-7-line-height\";s:0:\"\";s:25:\"header-widget-7-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:35:\"header-widget-7-content-font-family\";s:7:\"inherit\";s:35:\"header-widget-7-content-font-weight\";s:7:\"inherit\";s:38:\"header-widget-7-content-text-transform\";s:0:\"\";s:35:\"header-widget-7-content-line-height\";s:0:\"\";s:33:\"header-widget-7-content-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:38:\"sidebar-widgets-header-widget-7-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"footer-widget-7-title-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"footer-widget-7-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:26:\"footer-widget-7-link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"footer-widget-7-link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-widget-7-font-family\";s:7:\"inherit\";s:27:\"footer-widget-7-font-weight\";s:7:\"inherit\";s:30:\"footer-widget-7-text-transform\";s:0:\"\";s:27:\"footer-widget-7-line-height\";s:0:\"\";s:25:\"footer-widget-7-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:35:\"footer-widget-7-content-font-family\";s:7:\"inherit\";s:35:\"footer-widget-7-content-font-weight\";s:7:\"inherit\";s:38:\"footer-widget-7-content-text-transform\";s:0:\"\";s:35:\"footer-widget-7-content-line-height\";s:0:\"\";s:33:\"footer-widget-7-content-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"footer-widget-alignment-7\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:38:\"sidebar-widgets-footer-widget-7-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-menu7-bg-color\";s:0:\"\";s:18:\"header-menu7-color\";s:0:\"\";s:23:\"header-menu7-h-bg-color\";s:0:\"\";s:20:\"header-menu7-h-color\";s:0:\"\";s:23:\"header-menu7-a-bg-color\";s:0:\"\";s:20:\"header-menu7-a-color\";s:0:\"\";s:30:\"header-menu7-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:29:\"header-menu7-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:34:\"header-menu7-h-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:31:\"header-menu7-h-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:34:\"header-menu7-a-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:31:\"header-menu7-a-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:33:\"header-menu7-menu-hover-animation\";s:0:\"\";s:40:\"header-menu7-submenu-container-animation\";s:0:\"\";s:24:\"section-hb-menu-7-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"header-menu7-menu-spacing\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:32:\"header-menu7-submenu-item-border\";b:0;s:32:\"header-menu7-submenu-item-b-size\";s:1:\"1\";s:33:\"header-menu7-submenu-item-b-color\";s:7:\"#eaeaea\";s:34:\"header-menu7-submenu-border-radius\";s:0:\"\";s:31:\"header-menu7-submenu-top-offset\";s:0:\"\";s:26:\"header-menu7-submenu-width\";s:0:\"\";s:27:\"header-menu7-submenu-border\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:33:\"header-menu7-menu-stack-on-mobile\";b:1;s:22:\"header-menu7-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:24:\"header-menu7-font-weight\";s:7:\"inherit\";s:24:\"header-menu7-font-family\";s:7:\"inherit\";s:27:\"header-menu7-text-transform\";s:0:\"\";s:24:\"header-menu7-line-height\";s:0:\"\";s:27:\"section-hb-divider-7-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"section-fb-divider-7-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:19:\"header-button8-text\";s:6:\"Button\";s:26:\"header-button8-link-option\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:26:\"header-button8-font-family\";s:7:\"inherit\";s:26:\"header-button8-font-weight\";s:7:\"inherit\";s:29:\"header-button8-text-transform\";s:0:\"\";s:26:\"header-button8-line-height\";s:0:\"\";s:24:\"header-button8-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"header-button8-text-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"header-button8-back-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-button8-text-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-button8-back-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"header-button8-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"header-button8-border-size\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:27:\"header-button8-border-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"header-button8-border-radius\";s:0:\"\";s:27:\"section-hb-button-8-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"section-hb-button-8-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:29:\"sticky-header-button8-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:19:\"footer-button8-text\";s:6:\"Button\";s:26:\"footer-button8-link-option\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:26:\"footer-button8-font-family\";s:7:\"inherit\";s:26:\"footer-button8-font-weight\";s:7:\"inherit\";s:29:\"footer-button8-text-transform\";s:0:\"\";s:26:\"footer-button8-line-height\";s:0:\"\";s:24:\"footer-button8-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"footer-button8-text-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"footer-button8-back-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-button8-text-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-button8-back-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"footer-button8-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"footer-button8-border-size\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:27:\"footer-button8-border-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"footer-button8-border-radius\";s:0:\"\";s:25:\"footer-button-8-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:27:\"section-fb-button-8-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"section-fb-button-8-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:13:\"header-html-8\";s:22:\"Insert HTML text here.\";s:18:\"header-html-8color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:23:\"header-html-8link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"header-html-8link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"font-size-section-hb-html-8\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:29:\"font-weight-section-hb-html-8\";s:7:\"inherit\";s:29:\"font-family-section-hb-html-8\";s:7:\"inherit\";s:29:\"line-height-section-hb-html-8\";s:0:\"\";s:32:\"text-transform-section-hb-html-8\";s:0:\"\";s:24:\"section-hb-html-8-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:13:\"footer-html-8\";s:22:\"Insert HTML text here.\";s:18:\"footer-html-8color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:23:\"footer-html-8link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"footer-html-8link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"font-size-section-fb-html-8\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:23:\"footer-html-8-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:29:\"font-weight-section-fb-html-8\";s:7:\"inherit\";s:29:\"font-family-section-fb-html-8\";s:7:\"inherit\";s:32:\"text-transform-section-fb-html-8\";s:0:\"\";s:29:\"line-height-section-fb-html-8\";s:0:\"\";s:24:\"section-fb-html-8-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-social-8-space\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:24:\"header-social-8-bg-space\";s:0:\"\";s:20:\"header-social-8-size\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"header-social-8-radius\";s:0:\"\";s:21:\"header-social-8-color\";s:0:\"\";s:23:\"header-social-8-h-color\";s:0:\"\";s:24:\"header-social-8-bg-color\";s:0:\"\";s:26:\"header-social-8-bg-h-color\";s:0:\"\";s:28:\"header-social-8-label-toggle\";b:0;s:26:\"header-social-8-color-type\";s:6:\"custom\";s:35:\"font-size-section-hb-social-icons-8\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-social-icons-8\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:32:\"section-hb-social-icons-8-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"footer-social-8-space\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:24:\"footer-social-8-bg-space\";s:0:\"\";s:20:\"footer-social-8-size\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"footer-social-8-radius\";s:0:\"\";s:21:\"footer-social-8-color\";s:0:\"\";s:23:\"footer-social-8-h-color\";s:0:\"\";s:24:\"footer-social-8-bg-color\";s:0:\"\";s:26:\"footer-social-8-bg-h-color\";s:0:\"\";s:28:\"footer-social-8-label-toggle\";b:0;s:26:\"footer-social-8-color-type\";s:6:\"custom\";s:35:\"font-size-section-fb-social-icons-8\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"footer-social-icons-8\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:25:\"footer-social-8-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:32:\"section-fb-social-icons-8-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"header-widget-8-title-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"header-widget-8-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:26:\"header-widget-8-link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"header-widget-8-link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-widget-8-font-family\";s:7:\"inherit\";s:27:\"header-widget-8-font-weight\";s:7:\"inherit\";s:30:\"header-widget-8-text-transform\";s:0:\"\";s:27:\"header-widget-8-line-height\";s:0:\"\";s:25:\"header-widget-8-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:35:\"header-widget-8-content-font-family\";s:7:\"inherit\";s:35:\"header-widget-8-content-font-weight\";s:7:\"inherit\";s:38:\"header-widget-8-content-text-transform\";s:0:\"\";s:35:\"header-widget-8-content-line-height\";s:0:\"\";s:33:\"header-widget-8-content-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:38:\"sidebar-widgets-header-widget-8-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"footer-widget-8-title-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"footer-widget-8-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:26:\"footer-widget-8-link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"footer-widget-8-link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-widget-8-font-family\";s:7:\"inherit\";s:27:\"footer-widget-8-font-weight\";s:7:\"inherit\";s:30:\"footer-widget-8-text-transform\";s:0:\"\";s:27:\"footer-widget-8-line-height\";s:0:\"\";s:25:\"footer-widget-8-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:35:\"footer-widget-8-content-font-family\";s:7:\"inherit\";s:35:\"footer-widget-8-content-font-weight\";s:7:\"inherit\";s:38:\"footer-widget-8-content-text-transform\";s:0:\"\";s:35:\"footer-widget-8-content-line-height\";s:0:\"\";s:33:\"footer-widget-8-content-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"footer-widget-alignment-8\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:38:\"sidebar-widgets-footer-widget-8-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-menu8-bg-color\";s:0:\"\";s:18:\"header-menu8-color\";s:0:\"\";s:23:\"header-menu8-h-bg-color\";s:0:\"\";s:20:\"header-menu8-h-color\";s:0:\"\";s:23:\"header-menu8-a-bg-color\";s:0:\"\";s:20:\"header-menu8-a-color\";s:0:\"\";s:30:\"header-menu8-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:29:\"header-menu8-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:34:\"header-menu8-h-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:31:\"header-menu8-h-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:34:\"header-menu8-a-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:31:\"header-menu8-a-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:33:\"header-menu8-menu-hover-animation\";s:0:\"\";s:40:\"header-menu8-submenu-container-animation\";s:0:\"\";s:24:\"section-hb-menu-8-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"header-menu8-menu-spacing\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:32:\"header-menu8-submenu-item-border\";b:0;s:32:\"header-menu8-submenu-item-b-size\";s:1:\"1\";s:33:\"header-menu8-submenu-item-b-color\";s:7:\"#eaeaea\";s:34:\"header-menu8-submenu-border-radius\";s:0:\"\";s:31:\"header-menu8-submenu-top-offset\";s:0:\"\";s:26:\"header-menu8-submenu-width\";s:0:\"\";s:27:\"header-menu8-submenu-border\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:33:\"header-menu8-menu-stack-on-mobile\";b:1;s:22:\"header-menu8-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:24:\"header-menu8-font-weight\";s:7:\"inherit\";s:24:\"header-menu8-font-family\";s:7:\"inherit\";s:27:\"header-menu8-text-transform\";s:0:\"\";s:24:\"header-menu8-line-height\";s:0:\"\";s:27:\"section-hb-divider-8-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"section-fb-divider-8-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:19:\"header-button9-text\";s:6:\"Button\";s:26:\"header-button9-link-option\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:26:\"header-button9-font-family\";s:7:\"inherit\";s:26:\"header-button9-font-weight\";s:7:\"inherit\";s:29:\"header-button9-text-transform\";s:0:\"\";s:26:\"header-button9-line-height\";s:0:\"\";s:24:\"header-button9-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"header-button9-text-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"header-button9-back-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-button9-text-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-button9-back-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"header-button9-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"header-button9-border-size\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:27:\"header-button9-border-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"header-button9-border-radius\";s:0:\"\";s:27:\"section-hb-button-9-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"section-hb-button-9-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:29:\"sticky-header-button9-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:19:\"footer-button9-text\";s:6:\"Button\";s:26:\"footer-button9-link-option\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:26:\"footer-button9-font-family\";s:7:\"inherit\";s:26:\"footer-button9-font-weight\";s:7:\"inherit\";s:29:\"footer-button9-text-transform\";s:0:\"\";s:26:\"footer-button9-line-height\";s:0:\"\";s:24:\"footer-button9-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"footer-button9-text-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"footer-button9-back-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-button9-text-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-button9-back-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"footer-button9-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"footer-button9-border-size\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:27:\"footer-button9-border-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"footer-button9-border-radius\";s:0:\"\";s:25:\"footer-button-9-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:27:\"section-fb-button-9-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"section-fb-button-9-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:13:\"header-html-9\";s:22:\"Insert HTML text here.\";s:18:\"header-html-9color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:23:\"header-html-9link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"header-html-9link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"font-size-section-hb-html-9\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:29:\"font-weight-section-hb-html-9\";s:7:\"inherit\";s:29:\"font-family-section-hb-html-9\";s:7:\"inherit\";s:29:\"line-height-section-hb-html-9\";s:0:\"\";s:32:\"text-transform-section-hb-html-9\";s:0:\"\";s:24:\"section-hb-html-9-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:13:\"footer-html-9\";s:22:\"Insert HTML text here.\";s:18:\"footer-html-9color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:23:\"footer-html-9link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"footer-html-9link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"font-size-section-fb-html-9\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:23:\"footer-html-9-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:29:\"font-weight-section-fb-html-9\";s:7:\"inherit\";s:29:\"font-family-section-fb-html-9\";s:7:\"inherit\";s:32:\"text-transform-section-fb-html-9\";s:0:\"\";s:29:\"line-height-section-fb-html-9\";s:0:\"\";s:24:\"section-fb-html-9-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-social-9-space\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:24:\"header-social-9-bg-space\";s:0:\"\";s:20:\"header-social-9-size\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"header-social-9-radius\";s:0:\"\";s:21:\"header-social-9-color\";s:0:\"\";s:23:\"header-social-9-h-color\";s:0:\"\";s:24:\"header-social-9-bg-color\";s:0:\"\";s:26:\"header-social-9-bg-h-color\";s:0:\"\";s:28:\"header-social-9-label-toggle\";b:0;s:26:\"header-social-9-color-type\";s:6:\"custom\";s:35:\"font-size-section-hb-social-icons-9\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-social-icons-9\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:32:\"section-hb-social-icons-9-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"footer-social-9-space\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:24:\"footer-social-9-bg-space\";s:0:\"\";s:20:\"footer-social-9-size\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"footer-social-9-radius\";s:0:\"\";s:21:\"footer-social-9-color\";s:0:\"\";s:23:\"footer-social-9-h-color\";s:0:\"\";s:24:\"footer-social-9-bg-color\";s:0:\"\";s:26:\"footer-social-9-bg-h-color\";s:0:\"\";s:28:\"footer-social-9-label-toggle\";b:0;s:26:\"footer-social-9-color-type\";s:6:\"custom\";s:35:\"font-size-section-fb-social-icons-9\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"footer-social-icons-9\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:25:\"footer-social-9-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:32:\"section-fb-social-icons-9-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"header-widget-9-title-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"header-widget-9-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:26:\"header-widget-9-link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"header-widget-9-link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-widget-9-font-family\";s:7:\"inherit\";s:27:\"header-widget-9-font-weight\";s:7:\"inherit\";s:30:\"header-widget-9-text-transform\";s:0:\"\";s:27:\"header-widget-9-line-height\";s:0:\"\";s:25:\"header-widget-9-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:35:\"header-widget-9-content-font-family\";s:7:\"inherit\";s:35:\"header-widget-9-content-font-weight\";s:7:\"inherit\";s:38:\"header-widget-9-content-text-transform\";s:0:\"\";s:35:\"header-widget-9-content-line-height\";s:0:\"\";s:33:\"header-widget-9-content-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:38:\"sidebar-widgets-header-widget-9-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"footer-widget-9-title-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"footer-widget-9-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:26:\"footer-widget-9-link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"footer-widget-9-link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-widget-9-font-family\";s:7:\"inherit\";s:27:\"footer-widget-9-font-weight\";s:7:\"inherit\";s:30:\"footer-widget-9-text-transform\";s:0:\"\";s:27:\"footer-widget-9-line-height\";s:0:\"\";s:25:\"footer-widget-9-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:35:\"footer-widget-9-content-font-family\";s:7:\"inherit\";s:35:\"footer-widget-9-content-font-weight\";s:7:\"inherit\";s:38:\"footer-widget-9-content-text-transform\";s:0:\"\";s:35:\"footer-widget-9-content-line-height\";s:0:\"\";s:33:\"footer-widget-9-content-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"footer-widget-alignment-9\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:38:\"sidebar-widgets-footer-widget-9-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:21:\"header-menu9-bg-color\";s:0:\"\";s:18:\"header-menu9-color\";s:0:\"\";s:23:\"header-menu9-h-bg-color\";s:0:\"\";s:20:\"header-menu9-h-color\";s:0:\"\";s:23:\"header-menu9-a-bg-color\";s:0:\"\";s:20:\"header-menu9-a-color\";s:0:\"\";s:30:\"header-menu9-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:29:\"header-menu9-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:34:\"header-menu9-h-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:31:\"header-menu9-h-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:34:\"header-menu9-a-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:31:\"header-menu9-a-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:33:\"header-menu9-menu-hover-animation\";s:0:\"\";s:40:\"header-menu9-submenu-container-animation\";s:0:\"\";s:24:\"section-hb-menu-9-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"header-menu9-menu-spacing\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:32:\"header-menu9-submenu-item-border\";b:0;s:32:\"header-menu9-submenu-item-b-size\";s:1:\"1\";s:33:\"header-menu9-submenu-item-b-color\";s:7:\"#eaeaea\";s:34:\"header-menu9-submenu-border-radius\";s:0:\"\";s:31:\"header-menu9-submenu-top-offset\";s:0:\"\";s:26:\"header-menu9-submenu-width\";s:0:\"\";s:27:\"header-menu9-submenu-border\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:33:\"header-menu9-menu-stack-on-mobile\";b:1;s:22:\"header-menu9-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:24:\"header-menu9-font-weight\";s:7:\"inherit\";s:24:\"header-menu9-font-family\";s:7:\"inherit\";s:27:\"header-menu9-text-transform\";s:0:\"\";s:24:\"header-menu9-line-height\";s:0:\"\";s:27:\"section-hb-divider-9-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"section-fb-divider-9-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:20:\"header-button10-text\";s:6:\"Button\";s:27:\"header-button10-link-option\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:27:\"header-button10-font-family\";s:7:\"inherit\";s:27:\"header-button10-font-weight\";s:7:\"inherit\";s:30:\"header-button10-text-transform\";s:0:\"\";s:27:\"header-button10-line-height\";s:0:\"\";s:25:\"header-button10-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"header-button10-text-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:26:\"header-button10-back-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"header-button10-text-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"header-button10-back-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:23:\"header-button10-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"header-button10-border-size\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:28:\"header-button10-border-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:29:\"header-button10-border-radius\";s:0:\"\";s:28:\"section-hb-button-10-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"section-hb-button-10-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:30:\"sticky-header-button10-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:20:\"footer-button10-text\";s:6:\"Button\";s:27:\"footer-button10-link-option\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:27:\"footer-button10-font-family\";s:7:\"inherit\";s:27:\"footer-button10-font-weight\";s:7:\"inherit\";s:30:\"footer-button10-text-transform\";s:0:\"\";s:27:\"footer-button10-line-height\";s:0:\"\";s:25:\"footer-button10-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"footer-button10-text-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:26:\"footer-button10-back-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"footer-button10-text-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"footer-button10-back-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:23:\"footer-button10-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"footer-button10-border-size\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:28:\"footer-button10-border-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:29:\"footer-button10-border-radius\";s:0:\"\";s:26:\"footer-button-10-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:28:\"section-fb-button-10-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:27:\"section-fb-button-10-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:14:\"header-html-10\";s:22:\"Insert HTML text here.\";s:19:\"header-html-10color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:24:\"header-html-10link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:26:\"header-html-10link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"font-size-section-hb-html-10\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:30:\"font-weight-section-hb-html-10\";s:7:\"inherit\";s:30:\"font-family-section-hb-html-10\";s:7:\"inherit\";s:30:\"line-height-section-hb-html-10\";s:0:\"\";s:33:\"text-transform-section-hb-html-10\";s:0:\"\";s:25:\"section-hb-html-10-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:14:\"footer-html-10\";s:22:\"Insert HTML text here.\";s:19:\"footer-html-10color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:24:\"footer-html-10link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:26:\"footer-html-10link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"font-size-section-fb-html-10\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:24:\"footer-html-10-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:30:\"font-weight-section-fb-html-10\";s:7:\"inherit\";s:30:\"font-family-section-fb-html-10\";s:7:\"inherit\";s:33:\"text-transform-section-fb-html-10\";s:0:\"\";s:30:\"line-height-section-fb-html-10\";s:0:\"\";s:25:\"section-fb-html-10-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:22:\"header-social-10-space\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"header-social-10-bg-space\";s:0:\"\";s:21:\"header-social-10-size\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:23:\"header-social-10-radius\";s:0:\"\";s:22:\"header-social-10-color\";s:0:\"\";s:24:\"header-social-10-h-color\";s:0:\"\";s:25:\"header-social-10-bg-color\";s:0:\"\";s:27:\"header-social-10-bg-h-color\";s:0:\"\";s:29:\"header-social-10-label-toggle\";b:0;s:27:\"header-social-10-color-type\";s:6:\"custom\";s:36:\"font-size-section-hb-social-icons-10\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:22:\"header-social-icons-10\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:33:\"section-hb-social-icons-10-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:22:\"footer-social-10-space\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"footer-social-10-bg-space\";s:0:\"\";s:21:\"footer-social-10-size\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:23:\"footer-social-10-radius\";s:0:\"\";s:22:\"footer-social-10-color\";s:0:\"\";s:24:\"footer-social-10-h-color\";s:0:\"\";s:25:\"footer-social-10-bg-color\";s:0:\"\";s:27:\"footer-social-10-bg-h-color\";s:0:\"\";s:29:\"footer-social-10-label-toggle\";b:0;s:27:\"footer-social-10-color-type\";s:6:\"custom\";s:36:\"font-size-section-fb-social-icons-10\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:22:\"footer-social-icons-10\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:26:\"footer-social-10-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:33:\"section-fb-social-icons-10-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:28:\"header-widget-10-title-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"header-widget-10-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"header-widget-10-link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:29:\"header-widget-10-link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"header-widget-10-font-family\";s:7:\"inherit\";s:28:\"header-widget-10-font-weight\";s:7:\"inherit\";s:31:\"header-widget-10-text-transform\";s:0:\"\";s:28:\"header-widget-10-line-height\";s:0:\"\";s:26:\"header-widget-10-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:36:\"header-widget-10-content-font-family\";s:7:\"inherit\";s:36:\"header-widget-10-content-font-weight\";s:7:\"inherit\";s:39:\"header-widget-10-content-text-transform\";s:0:\"\";s:36:\"header-widget-10-content-line-height\";s:0:\"\";s:34:\"header-widget-10-content-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:39:\"sidebar-widgets-header-widget-10-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:28:\"footer-widget-10-title-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:22:\"footer-widget-10-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"footer-widget-10-link-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:29:\"footer-widget-10-link-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:28:\"footer-widget-10-font-family\";s:7:\"inherit\";s:28:\"footer-widget-10-font-weight\";s:7:\"inherit\";s:31:\"footer-widget-10-text-transform\";s:0:\"\";s:28:\"footer-widget-10-line-height\";s:0:\"\";s:26:\"footer-widget-10-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:36:\"footer-widget-10-content-font-family\";s:7:\"inherit\";s:36:\"footer-widget-10-content-font-weight\";s:7:\"inherit\";s:39:\"footer-widget-10-content-text-transform\";s:0:\"\";s:36:\"footer-widget-10-content-line-height\";s:0:\"\";s:34:\"footer-widget-10-content-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"footer-widget-alignment-10\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:39:\"sidebar-widgets-footer-widget-10-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:22:\"header-menu10-bg-color\";s:0:\"\";s:19:\"header-menu10-color\";s:0:\"\";s:24:\"header-menu10-h-bg-color\";s:0:\"\";s:21:\"header-menu10-h-color\";s:0:\"\";s:24:\"header-menu10-a-bg-color\";s:0:\"\";s:21:\"header-menu10-a-color\";s:0:\"\";s:31:\"header-menu10-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:30:\"header-menu10-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:35:\"header-menu10-h-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:32:\"header-menu10-h-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:35:\"header-menu10-a-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:32:\"header-menu10-a-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:34:\"header-menu10-menu-hover-animation\";s:0:\"\";s:41:\"header-menu10-submenu-container-animation\";s:0:\"\";s:25:\"section-hb-menu-10-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:26:\"header-menu10-menu-spacing\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:33:\"header-menu10-submenu-item-border\";b:0;s:33:\"header-menu10-submenu-item-b-size\";s:1:\"1\";s:34:\"header-menu10-submenu-item-b-color\";s:7:\"#eaeaea\";s:35:\"header-menu10-submenu-border-radius\";s:0:\"\";s:32:\"header-menu10-submenu-top-offset\";s:0:\"\";s:27:\"header-menu10-submenu-width\";s:0:\"\";s:28:\"header-menu10-submenu-border\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:34:\"header-menu10-menu-stack-on-mobile\";b:1;s:23:\"header-menu10-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:25:\"header-menu10-font-weight\";s:7:\"inherit\";s:25:\"header-menu10-font-family\";s:7:\"inherit\";s:28:\"header-menu10-text-transform\";s:0:\"\";s:25:\"header-menu10-line-height\";s:0:\"\";s:28:\"section-hb-divider-10-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:28:\"section-fb-divider-10-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:24:\"sticky-header-on-devices\";s:7:\"desktop\";s:19:\"sticky-header-style\";s:4:\"none\";s:20:\"footer-desktop-items\";a:9:{s:5:\"above\";a:6:{s:7:\"above_1\";a:0:{}s:7:\"above_2\";a:0:{}s:7:\"above_3\";a:0:{}s:7:\"above_4\";a:0:{}s:7:\"above_5\";a:0:{}s:7:\"above_6\";a:0:{}}s:7:\"primary\";a:6:{s:9:\"primary_1\";a:0:{}s:9:\"primary_2\";a:0:{}s:9:\"primary_3\";a:1:{i:0;s:8:\"widget-1\";}s:9:\"primary_4\";a:0:{}s:9:\"primary_5\";a:0:{}s:9:\"primary_6\";a:0:{}}s:5:\"below\";a:6:{s:7:\"below_1\";a:1:{i:0;s:9:\"copyright\";}s:7:\"below_2\";a:1:{i:0;s:6:\"html-1\";}s:7:\"below_3\";a:0:{}s:7:\"below_4\";a:0:{}s:7:\"below_5\";a:0:{}s:7:\"below_6\";a:0:{}}s:5:\"group\";s:36:\"astra-settings[footer-desktop-items]\";s:4:\"rows\";a:3:{i:0;s:5:\"above\";i:1;s:7:\"primary\";i:2;s:5:\"below\";}s:5:\"zones\";a:3:{s:5:\"above\";a:6:{s:7:\"above_1\";s:15:\"Above Section 1\";s:7:\"above_2\";s:15:\"Above Section 2\";s:7:\"above_3\";s:15:\"Above Section 3\";s:7:\"above_4\";s:15:\"Above Section 4\";s:7:\"above_5\";s:15:\"Above Section 5\";s:7:\"above_6\";s:15:\"Above Section 6\";}s:7:\"primary\";a:6:{s:9:\"primary_1\";s:17:\"Primary Section 1\";s:9:\"primary_2\";s:17:\"Primary Section 2\";s:9:\"primary_3\";s:17:\"Primary Section 3\";s:9:\"primary_4\";s:17:\"Primary Section 4\";s:9:\"primary_5\";s:17:\"Primary Section 5\";s:9:\"primary_6\";s:17:\"Primary Section 6\";}s:5:\"below\";a:6:{s:7:\"below_1\";s:15:\"Below Section 1\";s:7:\"below_2\";s:15:\"Below Section 2\";s:7:\"below_3\";s:15:\"Below Section 3\";s:7:\"below_4\";s:15:\"Below Section 4\";s:7:\"below_5\";s:15:\"Below Section 5\";s:7:\"below_6\";s:15:\"Below Section 6\";}}s:7:\"layouts\";a:3:{s:5:\"above\";a:2:{s:6:\"column\";s:1:\"2\";s:6:\"layout\";a:3:{s:7:\"desktop\";s:7:\"2-equal\";s:6:\"tablet\";s:7:\"2-equal\";s:6:\"mobile\";s:4:\"full\";}}s:7:\"primary\";a:2:{s:6:\"column\";s:1:\"3\";s:6:\"layout\";a:3:{s:6:\"mobile\";s:4:\"full\";s:6:\"tablet\";s:4:\"full\";s:7:\"desktop\";s:8:\"3-rheavy\";}}s:5:\"below\";a:2:{s:6:\"column\";i:2;s:6:\"layout\";a:3:{s:7:\"desktop\";s:7:\"2-equal\";s:6:\"tablet\";s:7:\"2-equal\";s:6:\"mobile\";s:4:\"full\";}}}s:6:\"status\";a:3:{s:5:\"above\";b:1;s:7:\"primary\";b:1;s:5:\"below\";b:1;}s:4:\"flag\";b:1;}s:17:\"hba-footer-height\";i:60;s:17:\"hba-footer-column\";s:1:\"2\";s:17:\"hba-footer-layout\";a:3:{s:7:\"desktop\";s:7:\"2-equal\";s:6:\"tablet\";s:7:\"2-equal\";s:6:\"mobile\";s:4:\"full\";}s:28:\"hba-footer-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:8:{s:16:\"background-color\";s:7:\"#eeeeee\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:16:\"background-media\";s:0:\"\";s:15:\"background-type\";s:5:\"color\";}s:6:\"tablet\";a:7:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:7:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:16:\"background-media\";s:0:\"\";}}s:28:\"hbb-footer-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:8:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:27:\"hb-footer-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:7:{s:16:\"background-color\";s:21:\"rgba(251,249,249,0.7)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:36:\"section-header-builder-layout-margin\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:17:\"hbb-footer-height\";i:80;s:17:\"hbb-footer-column\";i:2;s:17:\"hbb-footer-layout\";a:3:{s:7:\"desktop\";s:7:\"2-equal\";s:6:\"tablet\";s:7:\"2-equal\";s:6:\"mobile\";s:4:\"full\";}s:23:\"hba-footer-layout-width\";s:7:\"content\";s:22:\"hb-footer-layout-width\";s:7:\"content\";s:23:\"hbb-footer-layout-width\";s:7:\"content\";s:29:\"hba-footer-vertical-alignment\";s:10:\"flex-start\";s:28:\"hb-footer-vertical-alignment\";s:10:\"flex-start\";s:29:\"hbb-footer-vertical-alignment\";s:10:\"flex-start\";s:24:\"footer-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:8:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:98:\"https://websitedemos.net/yoga-instructor-02/wp-content/uploads/sites/286/2019/12/footer-img-05.jpg\";s:17:\"background-repeat\";s:9:\"no-repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:5:\"cover\";s:21:\"background-attachment\";s:5:\"fixed\";s:15:\"background-type\";s:5:\"image\";s:16:\"background-media\";i:665;}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:16:\"hb-footer-column\";s:1:\"3\";s:19:\"hb-footer-separator\";i:1;s:29:\"hb-footer-bottom-border-color\";s:7:\"#e6e6e6\";s:16:\"hb-footer-layout\";a:4:{s:7:\"desktop\";s:8:\"3-rheavy\";s:6:\"tablet\";s:4:\"full\";s:6:\"mobile\";s:4:\"full\";s:4:\"flag\";b:1;}s:18:\"hb-footer-main-sep\";s:1:\"0\";s:24:\"hb-footer-main-sep-color\";s:7:\"#e6e6e6\";s:23:\"footer-copyright-editor\";s:40:\"Copyright © [current_year] [site_title]\";s:22:\"footer-copyright-color\";s:25:\"var(--ast-global-color-3)\";s:36:\"line-height-section-footer-copyright\";s:0:\"\";s:26:\"footer-copyright-alignment\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:4:\"left\";s:6:\"mobile\";s:6:\"center\";}s:34:\"font-size-section-footer-copyright\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:36:\"font-weight-section-footer-copyright\";s:7:\"inherit\";s:36:\"font-family-section-footer-copyright\";s:7:\"inherit\";s:39:\"text-transform-section-footer-copyright\";s:0:\"\";s:21:\"footer-menu-alignment\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:36:\"section-below-footer-builder-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:2:\"20\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:2:\"20\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:24:\"header-search-icon-space\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";i:18;s:6:\"mobile\";i:18;}s:24:\"header-search-icon-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:37:\"transparent-header-social-icons-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:39:\"transparent-header-social-icons-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:40:\"transparent-header-social-icons-bg-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:42:\"transparent-header-social-icons-bg-h-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:34:\"transparent-header-html-text-color\";s:0:\"\";s:34:\"transparent-header-html-link-color\";s:0:\"\";s:36:\"transparent-header-html-link-h-color\";s:0:\"\";s:37:\"transparent-header-widget-title-color\";s:0:\"\";s:39:\"transparent-header-widget-content-color\";s:0:\"\";s:36:\"transparent-header-widget-link-color\";s:0:\"\";s:38:\"transparent-header-widget-link-h-color\";s:0:\"\";s:36:\"transparent-header-button-text-color\";s:0:\"\";s:38:\"transparent-header-button-text-h-color\";s:0:\"\";s:34:\"transparent-header-button-bg-color\";s:0:\"\";s:36:\"transparent-header-button-bg-h-color\";s:0:\"\";s:17:\"off-canvas-layout\";s:10:\"side-panel\";s:16:\"off-canvas-slide\";s:5:\"right\";s:33:\"header-builder-menu-toggle-target\";s:4:\"icon\";s:34:\"header-offcanvas-content-alignment\";s:10:\"flex-start\";s:21:\"off-canvas-background\";a:6:{s:16:\"background-color\";s:7:\"#ffffff\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:22:\"off-canvas-close-color\";s:7:\"#3a3a3a\";s:18:\"mobile-header-type\";s:8:\"dropdown\";s:24:\"off-canvas-inner-spacing\";s:0:\"\";s:18:\"footer-menu-layout\";a:3:{s:7:\"desktop\";s:10:\"horizontal\";s:6:\"tablet\";s:8:\"vertical\";s:6:\"mobile\";s:8:\"vertical\";}s:29:\"footer-menu-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:28:\"footer-menu-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:33:\"footer-menu-h-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:30:\"footer-menu-h-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:33:\"footer-menu-a-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:30:\"footer-menu-a-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:21:\"footer-menu-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:23:\"footer-menu-font-weight\";s:7:\"inherit\";s:23:\"footer-menu-font-family\";s:7:\"inherit\";s:26:\"footer-menu-text-transform\";s:0:\"\";s:23:\"footer-menu-line-height\";s:0:\"\";s:24:\"footer-main-menu-spacing\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:19:\"header-trigger-icon\";s:4:\"menu\";s:30:\"mobile-header-toggle-icon-size\";i:20;s:36:\"mobile-header-toggle-btn-border-size\";a:4:{s:3:\"top\";i:1;s:5:\"right\";i:1;s:6:\"bottom\";i:1;s:4:\"left\";i:1;}s:34:\"mobile-header-toggle-border-radius\";i:5;s:31:\"mobile-header-label-font-family\";s:7:\"inherit\";s:31:\"mobile-header-label-font-weight\";s:7:\"inherit\";s:34:\"mobile-header-label-text-transform\";s:0:\"\";s:31:\"mobile-header-label-line-height\";s:0:\"\";s:29:\"mobile-header-label-font-size\";s:0:\"\";s:20:\"global-color-palette\";a:3:{s:6:\"labels\";a:9:{i:0;s:11:\"Theme Color\";i:1;s:16:\"Link Hover Color\";i:2;s:13:\"Heading Color\";i:3;s:10:\"Text Color\";i:4;s:16:\"Background Color\";i:5;s:13:\"Extra Color 1\";i:6;s:13:\"Extra Color 2\";i:7;s:13:\"Extra Color 3\";i:8;s:13:\"Extra Color 4\";}s:7:\"palette\";a:9:{i:0;s:7:\"#ff3a6f\";i:1;s:7:\"#ce297e\";i:2;s:7:\"#1d1d23\";i:3;s:7:\"#4b4b58\";i:4;s:7:\"#f7f7f7\";i:5;s:7:\"#ffffff\";i:6;s:7:\"#243673\";i:7;s:7:\"#FBFCFF\";i:8;s:7:\"#BFD1FF\";}s:4:\"flag\";b:0;}s:27:\"header-mobile-menu-bg-color\";s:0:\"\";s:24:\"header-mobile-menu-color\";s:0:\"\";s:29:\"header-mobile-menu-h-bg-color\";s:0:\"\";s:26:\"header-mobile-menu-h-color\";s:0:\"\";s:29:\"header-mobile-menu-a-bg-color\";s:0:\"\";s:26:\"header-mobile-menu-a-color\";s:0:\"\";s:36:\"header-mobile-menu-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"tablet\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}s:6:\"mobile\";a:6:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";}}s:35:\"header-mobile-menu-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:40:\"header-mobile-menu-h-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:37:\"header-mobile-menu-h-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:40:\"header-mobile-menu-a-bg-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:37:\"header-mobile-menu-a-color-responsive\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:46:\"header-mobile-menu-submenu-container-animation\";s:4:\"fade\";s:38:\"header-mobile-menu-submenu-item-border\";b:0;s:38:\"header-mobile-menu-submenu-item-b-size\";s:1:\"1\";s:39:\"header-mobile-menu-submenu-item-b-color\";s:7:\"#eaeaea\";s:33:\"header-mobile-menu-submenu-border\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:28:\"header-mobile-menu-font-size\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:30:\"header-mobile-menu-font-weight\";s:7:\"inherit\";s:30:\"header-mobile-menu-font-family\";s:7:\"inherit\";s:33:\"header-mobile-menu-text-transform\";s:0:\"\";s:30:\"header-mobile-menu-line-height\";s:0:\"\";s:28:\"woo-header-cart-click-action\";s:7:\"default\";s:29:\"woo-desktop-cart-flyout-width\";i:460;s:41:\"woo-header-cart-icon-total-label-position\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:25:\"header-woo-cart-icon-size\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:20:\"woo-header-cart-icon\";s:7:\"default\";s:26:\"woo-header-cart-icon-style\";s:7:\"outline\";s:33:\"woo-desktop-cart-flyout-direction\";s:5:\"right\";s:26:\"header-woo-cart-icon-color\";s:0:\"\";s:38:\"transparent-header-woo-cart-icon-color\";s:0:\"\";s:32:\"header-woo-cart-icon-hover-color\";s:0:\"\";s:28:\"woo-header-cart-border-width\";i:2;s:27:\"woo-header-cart-icon-radius\";i:3;s:29:\"woo-header-cart-badge-display\";b:1;s:29:\"woo-header-cart-label-display\";s:33:\"Cart/{cart_total_currency_symbol}\";s:26:\"header-woo-cart-text-color\";s:0:\"\";s:26:\"header-woo-cart-link-color\";s:0:\"\";s:32:\"header-woo-cart-background-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:38:\"header-woo-cart-background-hover-color\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:31:\"header-woo-cart-separator-color\";s:0:\"\";s:32:\"header-woo-cart-link-hover-color\";s:0:\"\";s:30:\"header-woo-cart-btn-text-color\";s:0:\"\";s:36:\"header-woo-cart-btn-background-color\";s:0:\"\";s:36:\"header-woo-cart-btn-text-hover-color\";s:0:\"\";s:34:\"header-woo-cart-btn-bg-hover-color\";s:0:\"\";s:34:\"header-woo-checkout-btn-text-color\";s:0:\"\";s:40:\"header-woo-checkout-btn-background-color\";s:0:\"\";s:40:\"header-woo-checkout-btn-text-hover-color\";s:0:\"\";s:38:\"header-woo-checkout-btn-bg-hover-color\";s:0:\"\";s:26:\"edd-header-cart-icon-style\";s:7:\"outline\";s:26:\"edd-header-cart-icon-color\";s:0:\"\";s:27:\"edd-header-cart-icon-radius\";i:3;s:38:\"transparent-header-edd-cart-icon-color\";s:0:\"\";s:29:\"edd-header-cart-total-display\";b:1;s:29:\"edd-header-cart-title-display\";b:1;s:26:\"header-edd-cart-text-color\";s:0:\"\";s:26:\"header-edd-cart-link-color\";s:0:\"\";s:32:\"header-edd-cart-background-color\";s:0:\"\";s:31:\"header-edd-cart-separator-color\";s:0:\"\";s:34:\"header-edd-checkout-btn-text-color\";s:0:\"\";s:40:\"header-edd-checkout-btn-background-color\";s:0:\"\";s:40:\"header-edd-checkout-btn-text-hover-color\";s:0:\"\";s:38:\"header-edd-checkout-btn-bg-hover-color\";s:0:\"\";s:19:\"header-account-type\";s:7:\"default\";s:26:\"header-account-login-style\";s:4:\"icon\";s:26:\"header-account-action-type\";s:4:\"link\";s:24:\"header-account-link-type\";s:7:\"default\";s:27:\"header-account-logout-style\";s:4:\"icon\";s:30:\"header-account-logged-out-text\";s:6:\"Log In\";s:29:\"header-account-logged-in-text\";s:10:\"My Account\";s:28:\"header-account-logout-action\";s:4:\"link\";s:26:\"header-account-image-width\";a:3:{s:7:\"desktop\";s:2:\"40\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:24:\"header-account-icon-size\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";i:18;s:6:\"mobile\";i:18;}s:25:\"header-account-icon-color\";s:0:\"\";s:25:\"header-account-login-link\";a:3:{s:3:\"url\";s:0:\"\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:26:\"header-account-logout-link\";a:3:{s:3:\"url\";s:56:\"https://websitedemos.net/yoga-instructor-02/wp-login.php\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:32:\"font-size-section-header-account\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:30:\"header-account-type-text-color\";s:0:\"\";s:23:\"header-account-woo-menu\";b:0;s:22:\"cloned-component-track\";a:12:{s:13:\"header-button\";i:2;s:13:\"footer-button\";i:2;s:11:\"header-html\";i:2;s:11:\"footer-html\";i:2;s:11:\"header-menu\";i:2;s:13:\"header-widget\";i:4;s:13:\"footer-widget\";i:4;s:19:\"header-social-icons\";i:1;s:19:\"footer-social-icons\";i:1;s:14:\"header-divider\";i:0;s:14:\"footer-divider\";i:0;s:13:\"removed-items\";a:0:{}}s:24:\"astra-addon-auto-version\";s:5:\"3.0.0\";s:18:\"theme-auto-version\";s:5:\"3.9.2\";s:21:\"different-retina-logo\";b:1;s:18:\"display-site-title\";b:0;s:32:\"above-header-submenu-item-border\";i:1;s:32:\"below-header-submenu-item-border\";i:1;s:38:\"mobile-header-toggle-btn-border-radius\";i:5;s:21:\"headings-font-variant\";s:0:\"\";s:28:\"wc-header-cart-header-colors\";b:0;s:26:\"shop-quick-view-stick-cart\";b:1;s:33:\"_astra_pb_compatibility_completed\";b:1;s:25:\"submenu-open-below-header\";b:0;s:22:\"is_addon_queue_running\";b:1;s:16:\"button-h-padding\";i:50;s:28:\"is_astra_addon_queue_running\";b:0;s:35:\"ele-default-color-typo-setting-comp\";b:0;s:27:\"gtn-full-wide-image-grp-css\";b:0;s:27:\"gtn-full-wide-grp-cover-css\";b:0;s:31:\"guntenberg-core-blocks-comp-css\";b:0;s:39:\"guntenberg-media-text-block-padding-css\";b:0;s:24:\"is-header-footer-builder\";b:1;s:43:\"header-main-rt-trans-section-button-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:20:\"hbb-footer-separator\";i:0;s:27:\"footer-copyright-link-color\";s:7:\"#476d80\";s:29:\"footer-copyright-link-h-color\";s:7:\"#ff3a6f\";s:19:\"v3-option-migration\";b:1;s:36:\"guntenberg-button-pattern-compat-css\";b:0;s:26:\"can-update-astra-icons-svg\";b:0;s:17:\"is-flex-based-css\";b:0;s:35:\"can-support-widget-and-editor-fonts\";b:0;s:29:\"can-remove-logo-max-width-css\";b:0;s:33:\"transparent-header-default-border\";b:0;s:27:\"btn-default-padding-updated\";b:0;s:20:\"support-block-editor\";b:0;s:34:\"support-footer-widget-right-margin\";b:0;s:31:\"remove-elementor-toc-margin-css\";b:0;s:28:\"remove-widget-design-options\";b:0;s:27:\"support-global-color-format\";b:0;s:20:\"improve-gb-editor-ui\";b:0;s:30:\"mobile-header-toggle-btn-color\";s:25:\"var(--ast-global-color-0)\";s:42:\"apply-content-background-fullwidth-layouts\";b:0;s:22:\"is_theme_queue_running\";b:0;s:19:\"blocks-legacy-setup\";b:1;s:32:\"customizer-default-layout-update\";b:0;s:15:\"wp-blocks-v2-ui\";b:0;s:33:\"single-product-breadcrumb-disable\";b:0;s:43:\"woocommerce-single-product-fallback-default\";b:1;s:22:\"modern-ecommerce-setup\";b:0;s:22:\"woo-show-password-icon\";b:0;s:19:\"woo-shop-style-flag\";b:1;}s:10:\"custom-css\";s:0:\"\";}s:27:\"astra-site-spectra-settings\";s:0:\"\";s:23:\"astra-site-options-data\";a:52:{s:30:\"woocommerce_product_attributes\";a:0:{}s:28:\"woocommerce_product_cat_list\";a:0:{}s:23:\"woocommerce_product_cat\";a:0:{}s:11:\"custom_logo\";s:98:\"https://websitedemos.net/yoga-instructor-02/wp-content/uploads/sites/286/2018/10/logo-free-img.png\";s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";s:9:\"main-menu\";}s:13:\"show_on_front\";s:4:\"page\";s:13:\"page_on_front\";s:4:\"Home\";s:14:\"page_for_posts\";s:0:\"\";s:25:\"_fl_builder_enabled_icons\";N;s:27:\"_fl_builder_enabled_modules\";N;s:22:\"_fl_builder_post_types\";N;s:25:\"_fl_builder_color_presets\";N;s:20:\"_fl_builder_services\";N;s:20:\"_fl_builder_settings\";N;s:23:\"_fl_builder_user_access\";N;s:29:\"_fl_builder_enabled_templates\";N;s:25:\"elementor_container_width\";s:4:\"1200\";s:21:\"elementor_cpt_support\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:26:\"elementor_css_print_method\";s:8:\"external\";s:31:\"elementor_default_generic_fonts\";s:10:\"Sans-serif\";s:31:\"elementor_disable_color_schemes\";s:3:\"yes\";s:36:\"elementor_disable_typography_schemes\";s:3:\"yes\";s:28:\"elementor_editor_break_lines\";s:0:\"\";s:28:\"elementor_exclude_user_roles\";N;s:31:\"elementor_global_image_lightbox\";s:3:\"yes\";s:29:\"elementor_page_title_selector\";s:0:\"\";s:22:\"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\";}s:30:\"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:\"#ff3a6f\";i:5;s:7:\"#ce297e\";i:6;s:7:\"#4d076b\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}s:27:\"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\";}}s:31:\"elementor_space_between_widgets\";s:0:\"\";s:37:\"elementor_stretched_section_container\";s:0:\"\";s:23:\"elementor_load_fa4_shim\";s:3:\"yes\";s:20:\"elementor_active_kit\";s:3:\"726\";s:27:\"woocommerce_shop_page_title\";s:0:\"\";s:27:\"woocommerce_cart_page_title\";s:0:\"\";s:31:\"woocommerce_checkout_page_title\";s:0:\"\";s:32:\"woocommerce_myaccount_page_title\";s:0:\"\";s:35:\"woocommerce_edit_address_page_title\";s:0:\"\";s:33:\"woocommerce_view_order_page_title\";s:0:\"\";s:38:\"woocommerce_change_password_page_title\";s:0:\"\";s:29:\"woocommerce_logout_page_title\";s:0:\"\";s:33:\"woocommerce_enable_guest_checkout\";N;s:42:\"woocommerce_enable_checkout_login_reminder\";N;s:49:\"woocommerce_enable_signup_and_login_from_checkout\";s:2:\"no\";s:41:\"woocommerce_enable_myaccount_registration\";s:2:\"no\";s:42:\"woocommerce_registration_generate_username\";s:2:\"no\";s:12:\"edd_settings\";N;s:16:\"wpforms_settings\";a:3:{s:11:\"disable-css\";s:1:\"2\";s:13:\"global-assets\";b:0;s:4:\"gdpr\";b:0;}s:29:\"learndash_settings_theme_ld30\";N;s:33:\"learndash_settings_courses_themes\";N;s:20:\"astra-color-palettes\";a:3:{s:14:\"currentPalette\";s:9:\"palette_1\";s:8:\"palettes\";a:3:{s:9:\"palette_1\";a:9:{i:0;s:7:\"#ff3a6f\";i:1;s:7:\"#ce297e\";i:2;s:7:\"#1d1d23\";i:3;s:7:\"#4b4b58\";i:4;s:7:\"#f7f7f7\";i:5;s:7:\"#ffffff\";i:6;s:7:\"#243673\";i:7;s:7:\"#FBFCFF\";i:8;s:7:\"#BFD1FF\";}s:9:\"palette_2\";a:9:{i:0;s:7:\"#0274be\";i:1;s:7:\"#5cba3e\";i:2;s:7:\"#3a3a3a\";i:3;s:7:\"#4B4F58\";i:4;s:7:\"#F5F5F5\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#171717\";i:7;s:7:\"#fbfbfb\";i:8;s:7:\"#bfbaba\";}s:9:\"palette_3\";a:9:{i:0;s:7:\"#0274be\";i:1;s:7:\"#b355de\";i:2;s:7:\"#3a3a3a\";i:3;s:7:\"#4B4F58\";i:4;s:7:\"#F5F5F5\";i:5;s:7:\"#FFFFFF\";i:6;s:7:\"#000000\";i:7;s:7:\"#f5f5f5\";i:8;s:7:\"#d7d2d2\";}}s:4:\"flag\";b:0;}s:24:\"astra-typography-presets\";s:0:\"\";}s:19:\"astra-site-wxr-path\";s:67:\"https://websitedemos.net/wp-content/uploads/astra-sites/286/wxr.xml\";s:20:\"astra-site-give-path\";s:0:\"\";s:24:\"astra-enabled-extensions\";a:19:{s:14:\"advanced-hooks\";b:0;s:8:\"blog-pro\";b:0;s:21:\"colors-and-background\";b:0;s:15:\"advanced-footer\";b:0;s:13:\"mobile-header\";b:0;s:15:\"header-sections\";b:0;s:9:\"lifterlms\";b:0;s:9:\"learndash\";b:0;s:16:\"advanced-headers\";b:0;s:12:\"site-layouts\";b:0;s:7:\"spacing\";b:0;s:13:\"sticky-header\";b:0;s:13:\"scroll-to-top\";b:0;s:18:\"transparent-header\";b:0;s:10:\"typography\";b:0;s:11:\"woocommerce\";b:0;s:3:\"edd\";b:0;s:8:\"nav-menu\";b:0;s:3:\"all\";s:3:\"all\";}s:16:\"astra-custom-404\";s:0:\"\";s:18:\"featured-image-url\";s:86:\"https://websitedemos.net/wp-content/uploads/2018/10/yoga-instructor-sarah-homepage.jpg\";s:26:\"astra-woocommerce-csv-path\";s:0:\"\";s:23:\"astra-post-data-mapping\";a:4:{s:19:\"astra-advanced-hook\";a:0:{}s:16:\"astra_adv_header\";a:0:{}s:10:\"give_forms\";a:0:{}s:16:\"ld_landing_pages\";a:0:{}}s:23:\"astra-site-wpforms-path\";s:72:\"https://websitedemos.net/wp-content/uploads/astra-sites/286/wpforms.json\";s:25:\"astra-site-cartflows-path\";s:0:\"\";s:27:\"astra-site-taxonomy-mapping\";a:1:{s:4:\"post\";a:1:{s:8:\"category\";a:1:{i:0;a:2:{s:2:\"id\";i:10;s:4:\"slug\";s:4:\"yoga\";}}}}s:20:\"astra-site-parent-id\";i:105;s:14:\"license-status\";s:7:\"upgrade\";s:12:\"request_time\";d:0.019869089126586914;s:21:\"astra-custom-palettes\";a:0:{}s:6:\"_links\";a:11:{s:4:\"self\";a:1:{i:0;a:1:{s:4:\"href\";s:56:\"https://websitedemos.net/wp-json/wp/v2/astra-sites/19540\";}}s:10:\"collection\";a:1:{i:0;a:1:{s:4:\"href\";s:50:\"https://websitedemos.net/wp-json/wp/v2/astra-sites\";}}s:5:\"about\";a:1:{i:0;a:1:{s:4:\"href\";s:56:\"https://websitedemos.net/wp-json/wp/v2/types/astra-sites\";}}s:6:\"author\";a:1:{i:0;a:2:{s:10:\"embeddable\";b:1;s:4:\"href\";s:48:\"https://websitedemos.net/wp-json/wp/v2/users/165\";}}s:15:\"version-history\";a:1:{i:0;a:2:{s:5:\"count\";i:4;s:4:\"href\";s:66:\"https://websitedemos.net/wp-json/wp/v2/astra-sites/19540/revisions\";}}s:19:\"predecessor-version\";a:1:{i:0;a:2:{s:2:\"id\";i:66917;s:4:\"href\";s:72:\"https://websitedemos.net/wp-json/wp/v2/astra-sites/19540/revisions/66917\";}}s:8:\"acf:post\";a:3:{i:0;a:2:{s:10:\"embeddable\";b:1;s:4:\"href\";s:56:\"https://websitedemos.net/wp-json/wp/v2/astra-sites/48631\";}i:1;a:2:{s:10:\"embeddable\";b:1;s:4:\"href\";s:56:\"https://websitedemos.net/wp-json/wp/v2/astra-sites/19540\";}i:2;a:2:{s:10:\"embeddable\";b:1;s:4:\"href\";s:56:\"https://websitedemos.net/wp-json/wp/v2/astra-sites/19629\";}}s:16:\"wp:featuredmedia\";a:1:{i:0;a:2:{s:10:\"embeddable\";b:1;s:4:\"href\";s:50:\"https://websitedemos.net/wp-json/wp/v2/media/50354\";}}s:13:\"wp:attachment\";a:1:{i:0;a:1:{s:4:\"href\";s:57:\"https://websitedemos.net/wp-json/wp/v2/media?parent=19540\";}}s:7:\"wp:term\";a:6:{i:0;a:3:{s:8:\"taxonomy\";s:19:\"astra-site-category\";s:10:\"embeddable\";b:1;s:4:\"href\";s:69:\"https://websitedemos.net/wp-json/wp/v2/astra-site-category?post=19540\";}i:1;a:3:{s:8:\"taxonomy\";s:29:\"astra-sites-template-category\";s:10:\"embeddable\";b:1;s:4:\"href\";s:79:\"https://websitedemos.net/wp-json/wp/v2/astra-sites-template-category?post=19540\";}i:2;a:3:{s:8:\"taxonomy\";s:16:\"astra-sites-type\";s:10:\"embeddable\";b:1;s:4:\"href\";s:66:\"https://websitedemos.net/wp-json/wp/v2/astra-sites-type?post=19540\";}i:3;a:3:{s:8:\"taxonomy\";s:23:\"astra-site-page-builder\";s:10:\"embeddable\";b:1;s:4:\"href\";s:73:\"https://websitedemos.net/wp-json/wp/v2/astra-site-page-builder?post=19540\";}i:4;a:3:{s:8:\"taxonomy\";s:15:\"astra-sites-tag\";s:10:\"embeddable\";b:1;s:4:\"href\";s:65:\"https://websitedemos.net/wp-json/wp/v2/astra-sites-tag?post=19540\";}i:5;a:3:{s:8:\"taxonomy\";s:25:\"astra-sites-site-category\";s:10:\"embeddable\";b:1;s:4:\"href\";s:75:\"https://websitedemos.net/wp-json/wp/v2/astra-sites-site-category?post=19540\";}}s:6:\"curies\";a:1:{i:0;a:3:{s:4:\"name\";s:2:\"wp\";s:4:\"href\";s:23:\"https://api.w.org/{rel}\";s:9:\"templated\";b:1;}}}}','no'),(431,'astra_sites_has_sent_error_report','yes','yes'),(526,'ht_ctc_pro_license_status','valid','yes'),(527,'ht_ctc_greetings_options','a:1:{s:15:\"fallback_values\";s:3:\"yes\";}','yes'),(515,'ht_ctc_s3_1','a:9:{s:11:\"s3_img_size\";s:4:\"40px\";s:11:\"s3_bg_color\";s:7:\"#25D366\";s:17:\"s3_bg_color_hover\";s:7:\"#25D366\";s:10:\"s3_padding\";s:4:\"14px\";s:13:\"s3_box_shadow\";s:1:\"1\";s:19:\"s3_box_shadow_hover\";s:1:\"1\";s:8:\"cta_type\";s:4:\"hide\";s:13:\"cta_textcolor\";s:7:\"#ffffff\";s:11:\"cta_bgcolor\";s:7:\"#25d366\";}','yes'),(516,'ht_ctc_s4','a:5:{s:13:\"s4_text_color\";s:7:\"#7f7d7d\";s:11:\"s4_bg_color\";s:7:\"#e4e4e4\";s:10:\"s4_img_url\";s:0:\"\";s:15:\"s4_img_position\";s:4:\"left\";s:11:\"s4_img_size\";s:4:\"32px\";}','yes'),(517,'ht_ctc_s5','a:12:{s:9:\"s5_line_1\";s:0:\"\";s:9:\"s5_line_2\";s:35:\"We will respond as soon as possible\";s:15:\"s5_line_1_color\";s:7:\"#000000\";s:15:\"s5_line_2_color\";s:7:\"#000000\";s:19:\"s5_background_color\";s:7:\"#ffffff\";s:15:\"s5_border_color\";s:7:\"#dddddd\";s:6:\"s5_img\";s:0:\"\";s:13:\"s5_img_height\";s:4:\"70px\";s:12:\"s5_img_width\";s:4:\"70px\";s:17:\"s5_content_height\";s:4:\"70px\";s:16:\"s5_content_width\";s:5:\"270px\";s:15:\"s5_img_position\";s:5:\"right\";}','yes'),(518,'ht_ctc_s6','a:4:{s:12:\"s6_txt_color\";s:0:\"\";s:21:\"s6_txt_color_on_hover\";s:0:\"\";s:17:\"s6_txt_decoration\";s:0:\"\";s:26:\"s6_txt_decoration_on_hover\";s:0:\"\";}','yes'),(519,'ht_ctc_s7','a:10:{s:12:\"s7_icon_size\";s:4:\"20px\";s:13:\"s7_icon_color\";s:7:\"#ffffff\";s:19:\"s7_icon_color_hover\";s:7:\"#f4f4f4\";s:14:\"s7_border_size\";s:4:\"12px\";s:15:\"s7_border_color\";s:7:\"#25D366\";s:21:\"s7_border_color_hover\";s:7:\"#25d366\";s:16:\"s7_border_radius\";s:3:\"50%\";s:8:\"cta_type\";s:4:\"hide\";s:13:\"cta_textcolor\";s:7:\"#ffffff\";s:11:\"cta_bgcolor\";s:7:\"#25d366\";}','yes'),(520,'ht_ctc_s7_1','a:7:{s:12:\"s7_icon_size\";s:4:\"20px\";s:13:\"s7_icon_color\";s:7:\"#ffffff\";s:19:\"s7_icon_color_hover\";s:7:\"#f4f4f4\";s:14:\"s7_border_size\";s:4:\"12px\";s:10:\"s7_bgcolor\";s:7:\"#25D366\";s:16:\"s7_bgcolor_hover\";s:7:\"#00d34d\";s:8:\"cta_type\";s:5:\"hover\";}','yes'),(521,'ht_ctc_s8','a:10:{s:12:\"s8_txt_color\";s:7:\"#ffffff\";s:21:\"s8_txt_color_on_hover\";s:7:\"#ffffff\";s:11:\"s8_bg_color\";s:7:\"#26a69a\";s:20:\"s8_bg_color_on_hover\";s:7:\"#26a69a\";s:13:\"s8_icon_color\";s:7:\"#ffffff\";s:22:\"s8_icon_color_on_hover\";s:7:\"#ffffff\";s:16:\"s8_icon_position\";s:4:\"left\";s:12:\"s8_text_size\";s:0:\"\";s:12:\"s8_icon_size\";s:0:\"\";s:11:\"s8_btn_size\";s:3:\"btn\";}','yes'),(522,'ht_ctc_s99','a:6:{s:19:\"s99_dekstop_img_url\";s:0:\"\";s:18:\"s99_mobile_img_url\";s:0:\"\";s:22:\"s99_desktop_img_height\";s:4:\"50px\";s:21:\"s99_desktop_img_width\";s:0:\"\";s:21:\"s99_mobile_img_height\";s:4:\"50px\";s:20:\"s99_mobile_img_width\";s:0:\"\";}','yes'),(523,'ht_ctc_one_time','a:2:{s:13:\"first_version\";s:6:\"3.27.1\";s:18:\"first_install_time\";i:1682864980;}','yes'),(525,'ht_ctc_pro_license_key','b3f5b3428d08ce93438c2579b268bdc8','yes'),(528,'ht_ctc_admin_pages','a:1:{s:5:\"count\";i:4;}','yes'),(567,'elementor_tracker_last_send','1732155836','yes'),(2057,'elementor_controls_usage','a:2:{s:7:\"wp-page\";a:8:{s:5:\"image\";a:2:{s:5:\"count\";i:116;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:7:{s:5:\"image\";i:116;s:5:\"align\";i:26;s:14:\"caption_source\";i:26;s:7:\"caption\";i:26;s:7:\"link_to\";i:26;s:4:\"link\";i:26;s:10:\"image_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"space\";i:8;s:6:\"height\";i:7;s:5:\"width\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:207;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:207;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:185;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:8;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:44;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:44;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:40;s:5:\"align\";i:39;s:10:\"text_color\";i:40;s:22:\"typography_font_family\";i:40;s:20:\"typography_font_size\";i:40;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:39;s:18:\"animation_duration\";i:39;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:39;s:26:\"_background_hover_position\";i:39;s:28:\"_background_hover_attachment\";i:39;s:24:\"_background_hover_repeat\";i:39;s:22:\"_background_hover_size\";i:39;s:26:\"_background_hover_bg_width\";i:39;s:17:\"_background_color\";i:37;s:28:\"_background_hover_background\";i:13;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:17;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:17;s:11:\"header_size\";i:15;s:5:\"align\";i:16;}}}}s:14:\"image-carousel\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:2:{s:8:\"carousel\";i:2;s:14:\"thumbnail_size\";i:2;}}}}s:11:\"google_maps\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:1;s:6:\"height\";i:1;}}}}s:19:\"eael-event-calendar\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:18:\"eael_event_section\";a:1:{s:16:\"eael_event_items\";i:1;}s:27:\"eael_event_calendar_section\";a:2:{s:32:\"eael_event_calendar_default_date\";i:1;s:23:\"eael_event_details_text\";i:1;}}}}}s:7:\"wp-post\";a:5:{s:5:\"image\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:5;s:10:\"image_size\";i:3;s:22:\"image_custom_dimension\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:3;s:5:\"space\";i:3;s:6:\"height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:2;s:21:\"_element_custom_width\";i:2;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:6;s:5:\"align\";i:2;s:11:\"header_size\";i:4;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:10;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:10;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}}}}}}','off'),(1397,'elementor_clear_cache','','yes'),(1398,'elementor_reset_api_data','','yes'),(7327,'wp_attachment_pages_enabled','1','yes'),(11906,'eael_show_reset_password_on_form_submit_224','1','no'),(9090,'backuply_config_keys','a:2:{s:12:\"BACKUPLY_KEY\";s:64:\"63a38397184723ee30f9ce5716f5048b4ce31cb24071d08d546723dd7d310953\";s:11:\"RESTORE_KEY\";s:64:\"0b8800a0a5847e03687f7489ad91bc17617c611254d0e6ac3f354e78c6c42979\";}','yes'),(21929,'backuply_hide_trial','1726629252','auto'),(21930,'backuply_offer_time','1726629252','auto'),(27552,'_site_transient_timeout_theme_roots','1732296541','off'),(27553,'_site_transient_theme_roots','a:3:{s:15:\"hello-elementor\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";}','off'),(27106,'_site_transient_timeout_php_check_990bfacb848fa087bcfc06850f5e4447','1732425510','off'),(27107,'_site_transient_php_check_990bfacb848fa087bcfc06850f5e4447','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','off'),(27470,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.7.1.zip\";s:6:\"locale\";s:2:\"en\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.7.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.7.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.7.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.1\";s:7:\"version\";s:5:\"6.7.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1732294739;s:15:\"version_checked\";s:5:\"6.7.1\";s:12:\"translations\";a:0:{}}','off'),(26847,'_transient_wp_styles_for_blocks','a:2:{s:4:\"hash\";s:32:\"8c7d46a72d7d4591fc1dd9485bedb304\";s:6:\"blocks\";a:5:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:120:\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\";s:12:\"core/columns\";s:102:\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}','on'),(27554,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1732294741;s:7:\"checked\";a:3:{s:15:\"hello-elementor\";s:5:\"2.7.1\";s:16:\"twentytwentyfive\";s:3:\"1.0\";s:16:\"twentytwentyfour\";s:3:\"1.0\";}s:8:\"response\";a:2:{s:15:\"hello-elementor\";a:6:{s:5:\"theme\";s:15:\"hello-elementor\";s:11:\"new_version\";s:5:\"3.1.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/hello-elementor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/hello-elementor.3.1.1.zip\";s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.4\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}}s:9:\"no_update\";a:1:{s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.0.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}}s:12:\"translations\";a:0:{}}','off'),(27555,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1732294741;s:8:\"response\";a:5:{s:21:\"backuply/backuply.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:22:\"w.org/plugins/backuply\";s:4:\"slug\";s:8:\"backuply\";s:6:\"plugin\";s:21:\"backuply/backuply.php\";s:11:\"new_version\";s:5:\"1.4.0\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/backuply/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/backuply.1.4.0.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/backuply/assets/icon-128x128.png?rev=2760139\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/backuply/assets/banner-1544x500.png?rev=2760332\";s:2:\"1x\";s:63:\"https://ps.w.org/backuply/assets/banner-772x250.png?rev=2760332\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"6.7.1\";s:12:\"requires_php\";s:3:\"5.5\";s:16:\"requires_plugins\";a:0:{}}s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:40:\"w.org/plugins/click-to-chat-for-whatsapp\";s:4:\"slug\";s:26:\"click-to-chat-for-whatsapp\";s:6:\"plugin\";s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";s:11:\"new_version\";s:4:\"4.12\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/click-to-chat-for-whatsapp/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.4.12.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/click-to-chat-for-whatsapp/assets/icon-256x256.gif?rev=2892731\";s:2:\"1x\";s:79:\"https://ps.w.org/click-to-chat-for-whatsapp/assets/icon-128x128.gif?rev=2892731\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:81:\"https://ps.w.org/click-to-chat-for-whatsapp/assets/banner-772x250.png?rev=2896528\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"6.7.1\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}s:30:\"conveythis-translate/index.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:34:\"w.org/plugins/conveythis-translate\";s:4:\"slug\";s:20:\"conveythis-translate\";s:6:\"plugin\";s:30:\"conveythis-translate/index.php\";s:11:\"new_version\";s:3:\"246\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/conveythis-translate/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/conveythis-translate.246.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/conveythis-translate/assets/icon-256x256.gif?rev=2929299\";s:2:\"1x\";s:73:\"https://ps.w.org/conveythis-translate/assets/icon-128x128.gif?rev=2929304\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/conveythis-translate/assets/banner-1544x500.png?rev=2958485\";s:2:\"1x\";s:75:\"https://ps.w.org/conveythis-translate/assets/banner-772x250.png?rev=2958485\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"6.5.5\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:6:\"3.25.9\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.9.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3111597\";s:2:\"1x\";s:62:\"https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3111597\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3164133\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3164133\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.3\";s:6:\"tested\";s:5:\"6.7.1\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:49:\"w.org/plugins/essential-addons-for-elementor-lite\";s:4:\"slug\";s:35:\"essential-addons-for-elementor-lite\";s:6:\"plugin\";s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";s:11:\"new_version\";s:6:\"6.0.10\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/essential-addons-for-elementor-lite/\";s:7:\"package\";s:85:\"https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.0.10.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-256x256.gif?rev=3182943\";s:2:\"1x\";s:88:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-128x128.gif?rev=3182943\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-1544x500.png?rev=3182943\";s:2:\"1x\";s:90:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-772x250.png?rev=3182943\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.7.1\";s:12:\"requires_php\";s:3:\"7.0\";s:16:\"requires_plugins\";a:0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:0:{}s:7:\"checked\";a:6:{s:21:\"backuply/backuply.php\";s:5:\"1.2.2\";s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";s:4:\"3.29\";s:39:\"click-to-chat-pro/click-to-chat-pro.php\";s:3:\"2.3\";s:30:\"conveythis-translate/index.php\";s:3:\"157\";s:23:\"elementor/elementor.php\";s:6:\"3.13.4\";s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";s:5:\"5.8.0\";}}','off'),(27572,'_site_transient_timeout_wp_theme_files_patterns-1d220f942719098d6fab19ca911ee3a0','1732314901','off'),(27573,'_site_transient_wp_theme_files_patterns-1d220f942719098d6fab19ca911ee3a0','a:2:{s:7:\"version\";s:5:\"2.7.1\";s:8:\"patterns\";a:0:{}}','off');
/*!40000 ALTER TABLE `wpjv_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjv_postmeta`
--

DROP TABLE IF EXISTS `wpjv_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjv_postmeta` (
  `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=9166 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjv_postmeta`
--

LOCK TABLES `wpjv_postmeta` WRITE;
/*!40000 ALTER TABLE `wpjv_postmeta` DISABLE KEYS */;
INSERT INTO `wpjv_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (513,105,'_elementor_edit_mode','builder'),(160,55,'_wp_attached_file','2023/04/yoga.jpg'),(161,55,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:16:\"2023/04/yoga.jpg\";s:8:\"filesize\";i:79565;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"yoga-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9113;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"yoga-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8762;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"yoga-768x221.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37322;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(46,20,'_elementor_edit_mode','builder'),(47,20,'_elementor_template_type','kit'),(48,21,'_elementor_edit_mode','builder'),(49,21,'_elementor_template_type','wp-post'),(50,22,'_elementor_edit_mode','builder'),(51,22,'_elementor_template_type','post'),(52,21,'_elementor_version','3.13.4'),(53,21,'_edit_lock','1686768623:1'),(114,43,'_edit_lock','1686768384:1'),(115,43,'_elementor_edit_mode','builder'),(116,43,'_elementor_template_type','wp-page'),(56,24,'_wp_attached_file','2023/04/logo.png'),(57,24,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:931;s:6:\"height\";i:268;s:4:\"file\";s:16:\"2023/04/logo.png\";s:8:\"filesize\";i:156945;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"logo-300x86.png\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18905;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49784;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"logo-768x221.png\";s:5:\"width\";i:768;s:6:\"height\";i:221;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102592;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(58,25,'_wp_attached_file','2023/04/cropped-logo.png'),(59,25,'_wp_attachment_context','custom-logo'),(60,25,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:268;s:6:\"height\";i:268;s:4:\"file\";s:24:\"2023/04/cropped-logo.png\";s:8:\"filesize\";i:140238;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"cropped-logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49784;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(61,26,'_wp_attached_file','2023/04/cropped-logo-1.png'),(62,26,'_wp_attachment_context','site-icon'),(63,26,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:26:\"2023/04/cropped-logo-1.png\";s:8:\"filesize\";i:357544;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"cropped-logo-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:160847;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"cropped-logo-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49644;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:26:\"cropped-logo-1-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:135408;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:26:\"cropped-logo-1-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:76375;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:26:\"cropped-logo-1-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68314;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:24:\"cropped-logo-1-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2975;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(64,27,'_elementor_edit_mode','builder'),(65,27,'_elementor_template_type','kit'),(117,43,'_elementor_version','3.13.4'),(67,20,'_wp_page_template','default'),(68,20,'_elementor_page_settings','a:11:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:8:\"Primario\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:10:\"Secundario\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:5:\"Texto\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Acento\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:8:\"Primario\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:10:\"Secundario\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:5:\"Texto\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Acento\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:21:\"Divya Yoga Monteregie\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:17:\"hello_header_menu\";s:1:\"3\";s:27:\"hello_footer_copyright_text\";s:29:\"Todos los derechos reservados\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),(74,29,'_wp_attached_file','2023/04/cropped-logo-2.png'),(75,29,'_wp_attachment_context','custom-header'),(76,29,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:931;s:6:\"height\";i:261;s:4:\"file\";s:26:\"2023/04/cropped-logo-2.png\";s:8:\"filesize\";i:147341;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"cropped-logo-2-300x84.png\";s:5:\"width\";i:300;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18890;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"cropped-logo-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51687;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"cropped-logo-2-768x215.png\";s:5:\"width\";i:768;s:6:\"height\";i:215;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102442;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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:17:\"attachment_parent\";i:24;}'),(82,29,'_wp_attachment_is_custom_background','fyoga'),(87,33,'_wp_attached_file','2023/04/cropped-banner5.jpg'),(88,33,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:27:\"2023/04/cropped-banner5.jpg\";s:8:\"filesize\";i:46206;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"cropped-banner5-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6727;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"cropped-banner5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5197;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"cropped-banner5-768x221.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26704;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4915,207,'_wp_old_date','2023-04-30'),(4914,201,'_wp_old_date','2023-04-30'),(4913,192,'_wp_old_date','2023-04-30'),(123,46,'_wp_attached_file','2023/04/cropped-logo-3.png'),(124,46,'_wp_attachment_context','custom-logo'),(125,46,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:931;s:6:\"height\";i:266;s:4:\"file\";s:26:\"2023/04/cropped-logo-3.png\";s:8:\"filesize\";i:147382;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"cropped-logo-3-300x86.png\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19015;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"cropped-logo-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50343;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"cropped-logo-3-768x219.png\";s:5:\"width\";i:768;s:6:\"height\";i:219;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102473;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(126,47,'_wp_attached_file','2023/04/cropped-logo-4.png'),(127,47,'_wp_attachment_context','site-icon'),(128,47,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:26:\"2023/04/cropped-logo-4.png\";s:8:\"filesize\";i:357544;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"cropped-logo-4-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:160847;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"cropped-logo-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49644;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:26:\"cropped-logo-4-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:135408;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:26:\"cropped-logo-4-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:76375;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:26:\"cropped-logo-4-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68314;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:24:\"cropped-logo-4-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2975;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(129,48,'_wp_attached_file','2023/04/cropped-logo-5.png'),(130,48,'_wp_attachment_context','custom-logo'),(131,48,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:931;s:6:\"height\";i:266;s:4:\"file\";s:26:\"2023/04/cropped-logo-5.png\";s:8:\"filesize\";i:147382;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"cropped-logo-5-300x86.png\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19015;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"cropped-logo-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50343;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"cropped-logo-5-768x219.png\";s:5:\"width\";i:768;s:6:\"height\";i:219;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102473;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4971,665,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/cropped-banner111.jpg\",\"id\":654,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(4970,665,'_wp_page_template','default'),(4922,255,'_wp_old_date','2023-04-30'),(4923,275,'_wp_old_date','2023-04-30'),(4924,274,'_wp_old_date','2023-04-30'),(4925,92,'_wp_old_date','2023-04-30'),(4926,93,'_wp_old_date','2023-04-30'),(4927,152,'_wp_old_date','2023-04-30'),(4928,283,'_wp_old_date','2023-04-30'),(4929,657,'_menu_item_type','post_type'),(4930,657,'_menu_item_menu_item_parent','0'),(4931,657,'_menu_item_object_id','652'),(4932,657,'_menu_item_object','page'),(4933,657,'_menu_item_target',''),(4934,657,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4935,657,'_menu_item_xfn',''),(4936,657,'_menu_item_url',''),(4940,658,'_wp_attached_file','2023/04/cropped-cropped-logo-3.png'),(4941,658,'_wp_attachment_context','custom-logo'),(4942,658,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:931;s:6:\"height\";i:266;s:4:\"file\";s:34:\"2023/04/cropped-cropped-logo-3.png\";s:8:\"filesize\";i:147382;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"cropped-cropped-logo-3-300x86.png\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19015;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"cropped-cropped-logo-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50343;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"cropped-cropped-logo-3-768x219.png\";s:5:\"width\";i:768;s:6:\"height\";i:219;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102473;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4957,663,'_elementor_page_assets','a:0:{}'),(4959,664,'_elementor_edit_mode','builder'),(4960,664,'_elementor_template_type','wp-page'),(4961,664,'_elementor_version','3.13.3'),(4962,664,'_wp_page_template','default'),(4963,664,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/cropped-banner111.jpg\",\"id\":654,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4964,664,'_elementor_page_assets','a:0:{}'),(4966,652,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4967,665,'_elementor_edit_mode','builder'),(4968,665,'_elementor_template_type','wp-page'),(4969,665,'_elementor_version','3.13.3'),(4920,240,'_wp_old_date','2023-04-30'),(4921,256,'_wp_old_date','2023-04-30'),(5162,689,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5163,689,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5018,670,'_elementor_page_assets','a:0:{}'),(5019,670,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(5020,671,'_elementor_edit_mode','builder'),(5021,671,'_elementor_template_type','wp-page'),(5022,671,'_elementor_version','3.13.3'),(5023,671,'_wp_page_template','default'),(5024,671,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/cropped-banner111.jpg\",\"id\":654,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Making the basic practice of yoga easily accessible to everyone at no charge.<br>Divya Yoga founder Swami Ram Dev says, \\\"Good health is a birthright of humanity.\\\" By performing yoga poses,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \\/ asanas, exercises, mudras, pranayamas, meditation and by providing practical motivational speech they help to develop a stress free mind and disease free body. It helps to take care of the body, mind and soul and live a happy, healthy and fulfilling life. Emphasize that the key to a healthy physical body and a healthy state of mind is in one\'s control. By getting in touch with the inner being we can experience a state of \\\"Bliss and Anand\\\".<br>This Divya yoga is for people of all ages. We start with warm-up exercises (12-15), salutation to the sun and motivational speech. Then we practice 90-100 combination of asanas, postures and exercises. We also do some acupressure, 6 mudras, 7 pranayamas and micro exercises for eyes, fingers, toes, face and neck. Laughter yoga and super brain yoga are also included. We finish with \'Shav Asana\', motivational poem, mantra and prayer,<br>After yoga, super food i.e. grapes and banana are available for yogis.<br>Yoga is a wonderful means of exercising, stretching and relaxing the body\\/mind so that it can be healthy and lasting. Helps in the coordination of the body, mind and soul. We also create an environment where people can interact for their betterment and the good of society.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(5154,688,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8992,1173,'_elementor_template_type','wp-page'),(8993,1173,'_elementor_edit_mode','builder'),(8994,1173,'_elementor_version','3.13.3'),(8995,1173,'_wp_page_template','default'),(8996,1173,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8997,1173,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One day all the employees of a very unusual company reached their office and all saw a big sign on the main door which said this:<\\/p><p>\\\"Yesterday, the person who has been hindering your growth in this company passed away. We invite you to join the funeral in the room that has been prepared in the gym.\\\"<\\/p><p>In the beginning, they all got sad for the death of one of their colleagues, but after a while they started getting curious to know who was that person who hindered the growth of their colleagues and the company itself?<\\/p><p>The excitement in the gym was such that security agents were ordered to control the crowd within the room. The more people reached the coffin, the more the excitement heated up.<\\/p><p><b>Everyone thought - \\\"Who is this person who was hindering my progress?\\\"<\\/b><\\/p><p>One by one the intrigued employees got closer to the coffin, and when they looked inside it, they suddenly became speechless.<\\/p><p>They all got to stand near the coffin, and all ended up shocked and in silence, as if someone had touched the deepest part of their soul.<\\/p><p><b>There was a mirror inside the coffin: everyone who looked inside it could see themselves!<\\/b><\\/p><p><b>There was also a sign next to the mirror that said:<\\/b><\\/p><p><b>There is only one person who is capable of setting limits to your growth and IT IS YOU!<\\/b><\\/p><p>Your life does not change when your boss changes, when your friends change, when your parents change, when your husband or wife changes, when your company changes, when your church changes, when your location changes, when your money changes, when your status changes.<\\/p><p><b>No, your life changes when YOU change<\\/b>, when you go beyond your limiting beliefs.<\\/p><p>Examine yourself, watch yourself. Don\'t be afraid of difficulties, impossibilities and losses. Be a winner, build yourself and your reality. It\'s the way you face life itself that makes the difference.<\\/p><p>A few years ago a college student, who was struggling to build his career, appeared for his professional examination. He attempted his first paper excellently but he imagined that he performed badly.<\\/p><p>Keeping this in mind, he lost concentration for the rest of the subjects and in turn, didn\'t write the other subjects well. Later on, the results came out that the paper he thought was poorly written had secured top marks in the college but in the other subjects, he failed. Why did this happen? The reason is simple: lack of belief in himself<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5156,689,'_elementor_template_type','wp-page'),(5157,689,'_elementor_edit_mode','builder'),(5158,689,'_elementor_version','3.12.2'),(5159,689,'_wp_page_template','default'),(5160,689,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5161,689,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tres agricultores se reunieron para evaluar y compartir sus experiencias del a\\u00f1o pasado. Cada uno ten\\u00eda cien metros cuadrados de tierra en la que cultivaban. Al final de la reuni\\u00f3n, el primer agricultor dijo: \\\"La situaci\\u00f3n era muy dif\\u00edcil y ser\\u00e1 mucho peor para el pr\\u00f3ximo a\\u00f1o\\\".<\\/p><p>El segundo respondi\\u00f3: \\\"Ciertamente tienes raz\\u00f3n. De hecho, despu\\u00e9s de trabajar muy duro todo el a\\u00f1o, desde el amanecer hasta el atardecer, solo obtuve un 1% de ganancias despu\\u00e9s de todos los gastos\\\".<\\/p><p>Calculando sus propios n\\u00fameros, el primer agricultor respondi\\u00f3: \\\"Creo que mi ganancia total es exactamente la misma que la suya, que es del 1%\\\".<\\/p><p>Los dos miraron al tercer agricultor y le preguntaron: \\\"\\u00bfCu\\u00e1ntas ganancias obtuviste durante este a\\u00f1o?\\\"<\\/p><p>El tercer agricultor respondi\\u00f3 amablemente: \\\"Caballero, con el debido respeto, obtuve una ganancia del 5% durante este a\\u00f1o\\\".<\\/p><p>Eso fue seguido por un largo silencio ...<\\/p><p>\\\"\\u00bfC\\u00f3mo es que? 5% de ganancia?? Eso es imposible!!!! \\u00bfC\\u00f3mo lo hiciste???\\\"<\\/p><p>\\\"Matem\\u00e1ticas muy f\\u00e1ciles y simples\\\", dijo el tercer agricultor. \\\"Obtuve el mismo beneficio del 1% que t\\u00fa. ... m\\u00e1s un 4% que representa el inmenso placer de poder disfrutar de esta vista, orde\\u00f1ar mis vacas y disfrutar al m\\u00e1ximo de mi granja. Eso me da un 5% de ganancia total\\\".<\\/p><p><strong>Moraleja de la historia:<\\/strong>\\u00a0Todos tenemos que cuidar nuestra granja (que es nuestra tierra de cien metros cuadrados) y obtener el m\\u00e1ximo beneficio mientras disfrutamos de cada instante de nuestras vidas y trabajo!!!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(260,21,'_edit_last','1'),(261,21,'_wp_page_template','default'),(262,68,'_elementor_edit_mode','builder'),(263,68,'_elementor_template_type','wp-post'),(264,68,'_elementor_version','3.12.2'),(266,68,'_wp_page_template','default'),(267,43,'_edit_last','1'),(268,43,'_wp_page_template','default'),(269,69,'_elementor_edit_mode','builder'),(270,69,'_elementor_template_type','wp-page'),(271,69,'_elementor_version','3.12.2'),(272,69,'_wp_page_template','default'),(273,70,'_wp_attached_file','2023/04/descarga-3.jpeg'),(274,70,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:275;s:6:\"height\";i:183;s:4:\"file\";s:23:\"2023/04/descarga-3.jpeg\";s:8:\"filesize\";i:4879;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"descarga-3-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3872;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(275,71,'_wp_attached_file','2023/04/descarga.jpeg'),(276,71,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:275;s:6:\"height\";i:183;s:4:\"file\";s:21:\"2023/04/descarga.jpeg\";s:8:\"filesize\";i:4875;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"descarga-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4323;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(277,72,'_wp_attached_file','2023/04/descarga-1.jpeg'),(278,72,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:318;s:6:\"height\";i:159;s:4:\"file\";s:23:\"2023/04/descarga-1.jpeg\";s:8:\"filesize\";i:6883;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"descarga-1-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9462;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"descarga-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5834;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(279,73,'_wp_attached_file','2023/04/descarga-2.jpeg'),(280,73,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:275;s:6:\"height\";i:183;s:4:\"file\";s:23:\"2023/04/descarga-2.jpeg\";s:8:\"filesize\";i:11223;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"descarga-2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8063;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(281,43,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(282,43,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":902,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g12cf06d74_1280.jpg\"},{\"id\":898,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\"},{\"id\":897,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\"},{\"id\":896,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\"},{\"id\":895,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">To make basic yoga practice easily accessible to everyone without charge.<\\/p><p style=\\\"text-align: justify;\\\">Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i> <\\/i><\\/b>exercise<b>s<i>, <\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p><p style=\\\"text-align: justify;\\\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p><p style=\\\"text-align: justify;\\\">After yoga super food i. e. grapes and banana are available for Yogies.<\\/p><p style=\\\"text-align: justify;\\\">Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(283,43,'_elementor_page_assets','a:0:{}'),(284,74,'_elementor_edit_mode','builder'),(285,74,'_elementor_template_type','wp-page'),(286,74,'_elementor_version','3.12.2'),(287,74,'_wp_page_template','default'),(288,74,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(289,74,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(290,74,'_elementor_page_assets','a:0:{}'),(291,75,'_elementor_edit_mode','builder'),(292,75,'_elementor_template_type','wp-page'),(293,75,'_elementor_version','3.12.2'),(294,75,'_wp_page_template','default'),(295,75,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(296,75,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(297,75,'_elementor_page_assets','a:0:{}'),(298,76,'_elementor_edit_mode','builder'),(299,76,'_elementor_template_type','wp-page'),(300,76,'_elementor_version','3.12.2'),(301,76,'_wp_page_template','default'),(302,76,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(303,76,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(304,76,'_elementor_page_assets','a:0:{}'),(305,43,'_eael_custom_js',''),(307,77,'_elementor_edit_mode','builder'),(308,77,'_elementor_template_type','wp-page'),(309,77,'_elementor_version','3.12.2'),(310,77,'_wp_page_template','default'),(311,77,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(312,77,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(313,77,'_elementor_page_assets','a:0:{}'),(314,78,'_elementor_edit_mode','builder'),(315,78,'_elementor_template_type','wp-page'),(316,78,'_elementor_version','3.12.2'),(317,78,'_wp_page_template','default'),(318,78,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(319,78,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(320,78,'_elementor_page_assets','a:0:{}'),(4328,579,'_elementor_edit_mode','builder'),(4329,579,'_elementor_template_type','wp-page'),(4330,579,'_elementor_version','3.12.2'),(4331,579,'_wp_page_template','default'),(4332,579,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4333,579,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">To make basic yoga practice easily accessible to everyone without charge.<\\/p><p style=\\\"text-align: justify;\\\">Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i> <\\/i><\\/b>exercise<b>s<i>, <\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p><p style=\\\"text-align: justify;\\\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p><p style=\\\"text-align: justify;\\\">After yoga super food i. e. grapes and banana are available for Yogies.<\\/p><p style=\\\"text-align: justify;\\\">Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(321,79,'_elementor_edit_mode','builder'),(322,79,'_elementor_template_type','wp-page'),(323,79,'_elementor_version','3.12.2'),(324,79,'_wp_page_template','default'),(325,79,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(326,79,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">Hacer que la pr\\u00e1ctica b\\u00e1sica de yoga sea f\\u00e1cilmente accesible para todos sin cargo.<\\/span><\\/p>\\n<p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">El fundador de Divya Yoga Swami Ram Dev dice: \\\"La buena salud es un derecho de nacimiento de la humanidad\\\". Al realizar posturas de yoga, \\/ asanas, ejercicios, mudras,<b>pranayams<i>,&nbsp;<\\/i><\\/b>meditaci\\u00f3n y al proporcionar un discurso motivacional pr\\u00e1ctico ayudan a desarrollar una mente libre de estr\\u00e9s y un cuerpo libre de enfermedades. Ayuda a cuidar el cuerpo, la mente y el alma y vivir una vida feliz, saludable y satisfactoria. Haga hincapi\\u00e9 en que la clave para un cuerpo f\\u00edsico saludable y un estado mental sano est\\u00e1 bajo el control de uno. Al ponernos en contacto con el ser interior podemos experimentar un estado de \\\"Bienaventuranza y Anand\\\".<\\/span><\\/p>\\n<p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">Este Divya yoga es para personas de todas las edades. Comenzamos con ejercicios de calentamiento (12-15), saludo al sol y discurso motivacional. Luego practicamos 90-100 combinaciones de asanas, posturas y ejercicios. Tambi\\u00e9n realizamos algo de acupresi\\u00f3n, 6 mudras, 7 pranayams y micro ejercicios para ojos, dedos de manos, pies, cara y cuello. Tambi\\u00e9n se incluye yoga de la risa y s\\u00faper yoga cerebral. Terminamos con \'Shav Asana\', poema motivacional, mantra y oraci\\u00f3n,&nbsp;<\\/span><span style=\\\"color: rgb(17, 17, 17); font-family: Helvetica, sans-serif; font-size: 1rem;\\\">Despu\\u00e9s del yoga, la s\\u00faper comida, es decir, las uvas y el pl\\u00e1tano est\\u00e1n disponibles para los yoguis.<\\/span><\\/p>\\n<p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">El yoga es un medio maravilloso de ejercitar, estirar y relajar el cuerpo \\/ mente para que pueda ser saludable y duradero. Ayuda en la coordinaci\\u00f3n del cuerpo, la mente y el alma. Tambi\\u00e9n creamos un entorno donde las personas pueden interactuar para su mejoramiento y bien de la sociedad.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(327,79,'_elementor_page_assets','a:0:{}'),(329,80,'_elementor_edit_mode','builder'),(330,80,'_elementor_template_type','wp-page'),(331,80,'_elementor_version','3.12.2'),(332,80,'_wp_page_template','default'),(333,80,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(334,80,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">Hacer que la pr\\u00e1ctica b\\u00e1sica de yoga sea f\\u00e1cilmente accesible para todos sin cargo.<\\/span><\\/p>\\n<p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">El fundador de Divya Yoga Swami Ram Dev dice: \\\"La buena salud es un derecho de nacimiento de la humanidad\\\". Al realizar posturas de yoga, \\/ asanas, ejercicios, mudras,<b>pranayams<i>,&nbsp;<\\/i><\\/b>meditaci\\u00f3n y al proporcionar un discurso motivacional pr\\u00e1ctico ayudan a desarrollar una mente libre de estr\\u00e9s y un cuerpo libre de enfermedades. Ayuda a cuidar el cuerpo, la mente y el alma y vivir una vida feliz, saludable y satisfactoria. Haga hincapi\\u00e9 en que la clave para un cuerpo f\\u00edsico saludable y un estado mental sano est\\u00e1 bajo el control de uno. Al ponernos en contacto con el ser interior podemos experimentar un estado de \\\"Bienaventuranza y Anand\\\".<\\/span><\\/p>\\n<p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">Este Divya yoga es para personas de todas las edades. Comenzamos con ejercicios de calentamiento (12-15), saludo al sol y discurso motivacional. Luego practicamos 90-100 combinaciones de asanas, posturas y ejercicios. Tambi\\u00e9n realizamos algo de acupresi\\u00f3n, 6 mudras, 7 pranayams y micro ejercicios para ojos, dedos de manos, pies, cara y cuello. Tambi\\u00e9n se incluye yoga de la risa y s\\u00faper yoga cerebral. Terminamos con \'Shav Asana\', poema motivacional, mantra y oraci\\u00f3n,&nbsp;<\\/span><span style=\\\"color: rgb(17, 17, 17); font-family: Helvetica, sans-serif; font-size: 1rem;\\\">Despu\\u00e9s del yoga, la s\\u00faper comida, es decir, las uvas y el pl\\u00e1tano est\\u00e1n disponibles para los yoguis.<\\/span><\\/p>\\n<p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">El yoga es un medio maravilloso de ejercitar, estirar y relajar el cuerpo \\/ mente para que pueda ser saludable y duradero. Ayuda en la coordinaci\\u00f3n del cuerpo, la mente y el alma. Tambi\\u00e9n creamos un entorno donde las personas pueden interactuar para su mejoramiento y bien de la sociedad.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(335,80,'_elementor_page_assets','a:0:{}'),(336,81,'_elementor_edit_mode','builder'),(337,81,'_elementor_template_type','wp-page'),(338,81,'_elementor_version','3.12.2'),(339,81,'_wp_page_template','default'),(340,81,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(341,81,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">Hacer que la pr\\u00e1ctica b\\u00e1sica de yoga sea f\\u00e1cilmente accesible para todos sin cargo.<\\/span><\\/p>\\n<p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">El fundador de Divya Yoga Swami Ram Dev dice: \\\"La buena salud es un derecho de nacimiento de la humanidad\\\". Al realizar posturas de yoga, \\/ asanas, ejercicios, mudras,<b>pranayams<i>,&nbsp;<\\/i><\\/b>meditaci\\u00f3n y al proporcionar un discurso motivacional pr\\u00e1ctico ayudan a desarrollar una mente libre de estr\\u00e9s y un cuerpo libre de enfermedades. Ayuda a cuidar el cuerpo, la mente y el alma y vivir una vida feliz, saludable y satisfactoria. Haga hincapi\\u00e9 en que la clave para un cuerpo f\\u00edsico saludable y un estado mental sano est\\u00e1 bajo el control de uno. Al ponernos en contacto con el ser interior podemos experimentar un estado de \\\"Bienaventuranza y Anand\\\".<\\/span><\\/p>\\n<p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">Este Divya yoga es para personas de todas las edades. Comenzamos con ejercicios de calentamiento (12-15), saludo al sol y discurso motivacional. Luego practicamos 90-100 combinaciones de asanas, posturas y ejercicios. Tambi\\u00e9n realizamos algo de acupresi\\u00f3n, 6 mudras, 7 pranayams y micro ejercicios para ojos, dedos de manos, pies, cara y cuello. Tambi\\u00e9n se incluye yoga de la risa y s\\u00faper yoga cerebral. Terminamos con \'Shav Asana\', poema motivacional, mantra y oraci\\u00f3n,&nbsp;<\\/span><span style=\\\"color: rgb(17, 17, 17); font-family: Helvetica, sans-serif; font-size: 1rem;\\\">Despu\\u00e9s del yoga, la s\\u00faper comida, es decir, las uvas y el pl\\u00e1tano est\\u00e1n disponibles para los yoguis.<\\/span><\\/p>\\n<p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">El yoga es un medio maravilloso de ejercitar, estirar y relajar el cuerpo \\/ mente para que pueda ser saludable y duradero. Ayuda en la coordinaci\\u00f3n del cuerpo, la mente y el alma. Tambi\\u00e9n creamos un entorno donde las personas pueden interactuar para su mejoramiento y bien de la sociedad.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(342,81,'_elementor_page_assets','a:0:{}'),(343,82,'_elementor_edit_mode','builder'),(344,82,'_elementor_template_type','wp-page'),(345,82,'_elementor_version','3.12.2'),(346,82,'_wp_page_template','default'),(347,82,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(348,82,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">Hacer que la pr\\u00e1ctica b\\u00e1sica de yoga sea f\\u00e1cilmente accesible para todos sin cargo.<\\/span><\\/p><p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">El fundador de Divya Yoga Swami Ram Dev dice: \\\"La buena salud es un derecho de nacimiento de la humanidad\\\". Al realizar posturas de yoga, \\/ asanas, ejercicios, mudras,<b>pranayams<i>,\\u00a0<\\/i><\\/b>meditaci\\u00f3n y al proporcionar un discurso motivacional pr\\u00e1ctico ayudan a desarrollar una mente libre de estr\\u00e9s y un cuerpo libre de enfermedades. Ayuda a cuidar el cuerpo, la mente y el alma y vivir una vida feliz, saludable y satisfactoria. Haga hincapi\\u00e9 en que la clave para un cuerpo f\\u00edsico saludable y un estado mental sano est\\u00e1 bajo el control de uno. Al ponernos en contacto con el ser interior podemos experimentar un estado de \\\"Bienaventuranza y Anand\\\".<\\/span><\\/p><p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">Este Divya yoga es para personas de todas las edades. Comenzamos con ejercicios de calentamiento (12-15), saludo al sol y discurso motivacional. Luego practicamos 90-100 combinaciones de asanas, posturas y ejercicios. Tambi\\u00e9n realizamos algo de acupresi\\u00f3n, 6 mudras, 7 pranayams y micro ejercicios para ojos, dedos de manos, pies, cara y cuello. Tambi\\u00e9n se incluye yoga de la risa y s\\u00faper yoga cerebral. Terminamos con \'Shav Asana\', poema motivacional, mantra y oraci\\u00f3n,\\u00a0<\\/span><span style=\\\"color: #111111; font-family: Helvetica, sans-serif; font-size: 1rem;\\\">Despu\\u00e9s del yoga, la s\\u00faper comida, es decir, las uvas y el pl\\u00e1tano est\\u00e1n disponibles para los yoguis.<\\/span><\\/p><p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">El yoga es un medio maravilloso de ejercitar, estirar y relajar el cuerpo \\/ mente para que pueda ser saludable y duradero. Ayuda en la coordinaci\\u00f3n del cuerpo, la mente y el alma. Tambi\\u00e9n creamos un entorno donde las personas pueden interactuar para su mejoramiento y bien de la sociedad.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(349,82,'_elementor_page_assets','a:0:{}'),(4314,577,'_elementor_edit_mode','builder'),(4315,577,'_elementor_template_type','wp-page'),(4316,577,'_elementor_version','3.12.2'),(4317,577,'_wp_page_template','default'),(4318,577,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4319,577,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">Hacer que la pr\\u00e1ctica b\\u00e1sica de yoga sea f\\u00e1cilmente accesible para todos sin cargo.<\\/span><\\/p><p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">El fundador de Divya Yoga Swami Ram Dev dice: \\\"La buena salud es un derecho de nacimiento de la humanidad\\\". Al realizar posturas de yoga, \\/ asanas, ejercicios, mudras,<b>pranayams<i>,\\u00a0<\\/i><\\/b>meditaci\\u00f3n y al proporcionar un discurso motivacional pr\\u00e1ctico ayudan a desarrollar una mente libre de estr\\u00e9s y un cuerpo libre de enfermedades. Ayuda a cuidar el cuerpo, la mente y el alma y vivir una vida feliz, saludable y satisfactoria. Haga hincapi\\u00e9 en que la clave para un cuerpo f\\u00edsico saludable y un estado mental sano est\\u00e1 bajo el control de uno. Al ponernos en contacto con el ser interior podemos experimentar un estado de \\\"Bienaventuranza y Anand\\\".<\\/span><\\/p><p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">Este Divya yoga es para personas de todas las edades. Comenzamos con ejercicios de calentamiento (12-15), saludo al sol y discurso motivacional. Luego practicamos 90-100 combinaciones de asanas, posturas y ejercicios. Tambi\\u00e9n realizamos algo de acupresi\\u00f3n, 6 mudras, 7 pranayams y micro ejercicios para ojos, dedos de manos, pies, cara y cuello. Tambi\\u00e9n se incluye yoga de la risa y s\\u00faper yoga cerebral. Terminamos con \'Shav Asana\', poema motivacional, mantra y oraci\\u00f3n,\\u00a0<\\/span><span style=\\\"color: #111111; font-family: Helvetica, sans-serif; font-size: 1rem;\\\">Despu\\u00e9s del yoga, la s\\u00faper comida, es decir, las uvas y el pl\\u00e1tano est\\u00e1n disponibles para los yoguis.<\\/span><\\/p><p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">El yoga es un medio maravilloso de ejercitar, estirar y relajar el cuerpo \\/ mente para que pueda ser saludable y duradero. Ayuda en la coordinaci\\u00f3n del cuerpo, la mente y el alma. Tambi\\u00e9n creamos un entorno donde las personas pueden interactuar para su mejoramiento y bien de la sociedad.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(352,83,'_elementor_edit_mode','builder'),(353,83,'_elementor_template_type','wp-page'),(354,83,'_elementor_version','3.12.2'),(355,83,'_wp_page_template','default'),(356,83,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(357,83,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">Hacer que la pr\\u00e1ctica b\\u00e1sica de yoga sea f\\u00e1cilmente accesible para todos sin cargo.<\\/span><\\/p><p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">El fundador de Divya Yoga Swami Ram Dev dice: \\\"La buena salud es un derecho de nacimiento de la humanidad\\\". Al realizar posturas de yoga, \\/ asanas, ejercicios, mudras,<b>pranayams<i>,\\u00a0<\\/i><\\/b>meditaci\\u00f3n y al proporcionar un discurso motivacional pr\\u00e1ctico ayudan a desarrollar una mente libre de estr\\u00e9s y un cuerpo libre de enfermedades. Ayuda a cuidar el cuerpo, la mente y el alma y vivir una vida feliz, saludable y satisfactoria. Haga hincapi\\u00e9 en que la clave para un cuerpo f\\u00edsico saludable y un estado mental sano est\\u00e1 bajo el control de uno. Al ponernos en contacto con el ser interior podemos experimentar un estado de \\\"Bienaventuranza y Anand\\\".<\\/span><\\/p><p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">Este Divya yoga es para personas de todas las edades. Comenzamos con ejercicios de calentamiento (12-15), saludo al sol y discurso motivacional. Luego practicamos 90-100 combinaciones de asanas, posturas y ejercicios. Tambi\\u00e9n realizamos algo de acupresi\\u00f3n, 6 mudras, 7 pranayams y micro ejercicios para ojos, dedos de manos, pies, cara y cuello. Tambi\\u00e9n se incluye yoga de la risa y s\\u00faper yoga cerebral. Terminamos con \'Shav Asana\', poema motivacional, mantra y oraci\\u00f3n,\\u00a0<\\/span><span style=\\\"color: #111111; font-family: Helvetica, sans-serif; font-size: 1rem;\\\">Despu\\u00e9s del yoga, la s\\u00faper comida, es decir, las uvas y el pl\\u00e1tano est\\u00e1n disponibles para los yoguis.<\\/span><\\/p><p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">El yoga es un medio maravilloso de ejercitar, estirar y relajar el cuerpo \\/ mente para que pueda ser saludable y duradero. Ayuda en la coordinaci\\u00f3n del cuerpo, la mente y el alma. Tambi\\u00e9n creamos un entorno donde las personas pueden interactuar para su mejoramiento y bien de la sociedad.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(358,83,'_elementor_page_assets','a:0:{}'),(359,83,'_elementor_controls_usage','a:4:{s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:2:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}}'),(451,20,'_edit_lock','1684897937:1'),(512,21,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2135575\",\"elType\":\"widget\",\"settings\":{\"title\":\"Present instructors\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>\\u00a0<\\/p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.\\u00a0Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.\\u00a0Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.\\u00a0\\u00a0<\\/p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga.\\u00a0In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.\\u00a0<\\/p><p>ears, yoga and meditation have been an integral part of my life.\\u00a0In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.\\u00a0<\\/p><p>\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/p><\\/div>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806},\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35c11b3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b3d00d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c3fede7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Past instructor\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/06\\/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg\",\"id\":974,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(511,21,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(372,85,'_elementor_edit_mode','builder'),(373,85,'_elementor_template_type','wp-page'),(374,85,'_elementor_version','3.12.2'),(375,85,'_wp_page_template','default'),(376,85,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(377,85,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">Hacer que la pr\\u00e1ctica b\\u00e1sica de yoga sea f\\u00e1cilmente accesible para todos sin cargo.<\\/span><\\/p><p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">El fundador de Divya Yoga Swami Ram Dev dice: \\\"La buena salud es un derecho de nacimiento de la humanidad\\\". Al realizar posturas de yoga, \\/ asanas, ejercicios, mudras,<b>pranayams<i>,\\u00a0<\\/i><\\/b>meditaci\\u00f3n y al proporcionar un discurso motivacional pr\\u00e1ctico ayudan a desarrollar una mente libre de estr\\u00e9s y un cuerpo libre de enfermedades. Ayuda a cuidar el cuerpo, la mente y el alma y vivir una vida feliz, saludable y satisfactoria. Haga hincapi\\u00e9 en que la clave para un cuerpo f\\u00edsico saludable y un estado mental sano est\\u00e1 bajo el control de uno. Al ponernos en contacto con el ser interior podemos experimentar un estado de \\\"Bienaventuranza y Anand\\\".<\\/span><\\/p><p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">Este Divya yoga es para personas de todas las edades. Comenzamos con ejercicios de calentamiento (12-15), saludo al sol y discurso motivacional. Luego practicamos 90-100 combinaciones de asanas, posturas y ejercicios. Tambi\\u00e9n realizamos algo de acupresi\\u00f3n, 6 mudras, 7 pranayams y micro ejercicios para ojos, dedos de manos, pies, cara y cuello. Tambi\\u00e9n se incluye yoga de la risa y s\\u00faper yoga cerebral. Terminamos con \'Shav Asana\', poema motivacional, mantra y oraci\\u00f3n,\\u00a0<\\/span><span style=\\\"color: #111111; font-family: Helvetica, sans-serif; font-size: 1rem;\\\">Despu\\u00e9s del yoga, la s\\u00faper comida, es decir, las uvas y el pl\\u00e1tano est\\u00e1n disponibles para los yoguis.<\\/span><\\/p><p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">El yoga es un medio maravilloso de ejercitar, estirar y relajar el cuerpo \\/ mente para que pueda ser saludable y duradero. Ayuda en la coordinaci\\u00f3n del cuerpo, la mente y el alma. Tambi\\u00e9n creamos un entorno donde las personas pueden interactuar para su mejoramiento y bien de la sociedad.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(378,85,'_elementor_page_assets','a:0:{}'),(379,85,'_elementor_controls_usage','a:4:{s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:2:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}}'),(381,86,'_elementor_edit_mode','builder'),(382,86,'_elementor_template_type','wp-page'),(383,86,'_elementor_version','3.12.2'),(384,86,'_wp_page_template','default'),(385,86,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(386,86,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">Hacer que la pr\\u00e1ctica b\\u00e1sica de yoga sea f\\u00e1cilmente accesible para todos sin cargo.<\\/span><\\/p><p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">El fundador de Divya Yoga Swami Ram Dev dice: \\\"La buena salud es un derecho de nacimiento de la humanidad\\\". Al realizar posturas de yoga, \\/ asanas, ejercicios, mudras,<b>pranayams<i>,\\u00a0<\\/i><\\/b>meditaci\\u00f3n y al proporcionar un discurso motivacional pr\\u00e1ctico ayudan a desarrollar una mente libre de estr\\u00e9s y un cuerpo libre de enfermedades. Ayuda a cuidar el cuerpo, la mente y el alma y vivir una vida feliz, saludable y satisfactoria. Haga hincapi\\u00e9 en que la clave para un cuerpo f\\u00edsico saludable y un estado mental sano est\\u00e1 bajo el control de uno. Al ponernos en contacto con el ser interior podemos experimentar un estado de \\\"Bienaventuranza y Anand\\\".<\\/span><\\/p><p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">Este Divya yoga es para personas de todas las edades. Comenzamos con ejercicios de calentamiento (12-15), saludo al sol y discurso motivacional. Luego practicamos 90-100 combinaciones de asanas, posturas y ejercicios. Tambi\\u00e9n realizamos algo de acupresi\\u00f3n, 6 mudras, 7 pranayams y micro ejercicios para ojos, dedos de manos, pies, cara y cuello. Tambi\\u00e9n se incluye yoga de la risa y s\\u00faper yoga cerebral. Terminamos con \'Shav Asana\', poema motivacional, mantra y oraci\\u00f3n,\\u00a0<\\/span><span style=\\\"color: #111111; font-family: Helvetica, sans-serif; font-size: 1rem;\\\">Despu\\u00e9s del yoga, la s\\u00faper comida, es decir, las uvas y el pl\\u00e1tano est\\u00e1n disponibles para los yoguis.<\\/span><\\/p><p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">El yoga es un medio maravilloso de ejercitar, estirar y relajar el cuerpo \\/ mente para que pueda ser saludable y duradero. Ayuda en la coordinaci\\u00f3n del cuerpo, la mente y el alma. Tambi\\u00e9n creamos un entorno donde las personas pueden interactuar para su mejoramiento y bien de la sociedad.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(387,86,'_elementor_page_assets','a:0:{}'),(388,86,'_elementor_controls_usage','a:4:{s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:2:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}}'),(5140,686,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5141,687,'_elementor_template_type','wp-page'),(5142,687,'_elementor_edit_mode','builder'),(5143,687,'_elementor_version','3.12.2'),(5144,687,'_wp_page_template','default'),(5145,687,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5146,687,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un d\\u00eda, todos los empleados de una empresa muy inusual llegaron a su oficina y todos vieron un gran letrero en la puerta principal que dec\\u00eda esto:<\\/p><p>\\\"Ayer, la persona que ha estado obstaculizando su crecimiento en esta empresa falleci\\u00f3. Te invitamos a unirte al funeral en la sala que se ha preparado en el gimnasio\\\".<\\/p><p>Al principio, todos se pusieron tristes por la muerte de uno de sus colegas, pero despu\\u00e9s de un tiempo comenzaron a sentir curiosidad por saber qui\\u00e9n era esa persona que obstaculizaba el crecimiento de sus colegas y de la propia empresa.<\\/p><p>La emoci\\u00f3n en el gimnasio era tal que se orden\\u00f3 a los agentes de seguridad que controlaran a la multitud dentro de la sala. Cuanta m\\u00e1s gente llegaba al ata\\u00fad, m\\u00e1s se calentaba la emoci\\u00f3n.<\\/p><p><strong>Todos pensaron: \\\"\\u00bfQui\\u00e9n es esta persona que estaba obstaculizando mi progreso?\\\"<\\/strong><\\/p><p>Uno por uno, los empleados intrigados se acercaron al ata\\u00fad, y cuando miraron dentro de \\u00e9l, de repente se quedaron sin palabras.<\\/p><p>Todos llegaron a pararse cerca del ata\\u00fad, y todos terminaron conmocionados y en silencio, como si alguien hubiera tocado la parte m\\u00e1s profunda de su alma.<\\/p><p><strong>Hab\\u00eda un espejo dentro del ata\\u00fad: \\u00a1todos los que miraban dentro de \\u00e9l pod\\u00edan verse a s\\u00ed mismos!<\\/strong><\\/p><p><strong>Tambi\\u00e9n hab\\u00eda un letrero al lado del espejo que dec\\u00eda:<\\/strong><\\/p><p><strong>S\\u00f3lo hay una persona que es capaz de poner l\\u00edmites a tu crecimiento y \\u00a1ERES T\\u00da!<\\/strong><\\/p><p>Tu vida no cambia cuando cambia tu jefe, cuando cambian tus amigos, cuando cambian tus padres, cuando cambia tu esposo o esposa, cuando cambia tu compa\\u00f1\\u00eda, cuando cambia tu iglesia, cuando cambia tu ubicaci\\u00f3n, cuando cambia tu dinero, cuando cambia tu estatus.<\\/p><p><strong>No, tu vida cambia cuando T\\u00da cambias, cuando<\\/strong>\\u00a0vas m\\u00e1s all\\u00e1 de tus creencias limitantes.<\\/p><p>Exam\\u00ednate a ti mismo, obs\\u00e9rvate a ti mismo. No tengas miedo de las dificultades, imposibilidades y p\\u00e9rdidas. S\\u00e9 un ganador, constr\\u00fayete a ti mismo y a tu realidad. Es la forma en que enfrentas la vida misma lo que marca la diferencia.<\\/p><p>Hace unos a\\u00f1os, un estudiante universitario, que luchaba por construir su carrera, se present\\u00f3 para su examen profesional. Intent\\u00f3 su primer trabajo excelentemente, pero imagin\\u00f3 que se desempe\\u00f1\\u00f3 mal.<\\/p><p>Teniendo esto en cuenta, perdi\\u00f3 la concentraci\\u00f3n para el resto de las asignaturas y, a su vez, no escribi\\u00f3 bien las otras asignaturas. M\\u00e1s tarde, los resultados salieron que el documento que pensaba que estaba mal escrito hab\\u00eda obtenido las mejores calificaciones en la universidad, pero en las otras materias, fall\\u00f3. \\u00bfPor qu\\u00e9 sucedi\\u00f3 esto? La raz\\u00f3n es simple: falta de creencia en s\\u00ed mismo<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4912,191,'_wp_old_date','2023-04-30'),(4911,174,'_wp_old_date','2023-04-30'),(4910,165,'_wp_old_date','2023-04-30'),(416,92,'_menu_item_type','post_type'),(417,92,'_menu_item_menu_item_parent','0'),(418,92,'_menu_item_object_id','43'),(419,92,'_menu_item_object','page'),(420,92,'_menu_item_target',''),(421,92,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(422,92,'_menu_item_xfn',''),(423,92,'_menu_item_url',''),(425,93,'_menu_item_type','post_type'),(426,93,'_menu_item_menu_item_parent','0'),(427,93,'_menu_item_object_id','21'),(428,93,'_menu_item_object','page'),(429,93,'_menu_item_target',''),(430,93,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(431,93,'_menu_item_xfn',''),(432,93,'_menu_item_url',''),(5147,687,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(452,96,'_elementor_edit_mode','builder'),(453,96,'_elementor_template_type','kit'),(454,96,'_wp_page_template','default'),(455,96,'_elementor_page_settings','a:1:{s:16:\"site_description\";s:0:\"\";}'),(5126,685,'_elementor_template_type','wp-page'),(457,20,'_elementor_data','[]'),(458,97,'_elementor_edit_mode','builder'),(459,97,'_elementor_template_type','kit'),(460,97,'_wp_page_template','default'),(461,97,'_elementor_page_settings','a:11:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:8:\"Primario\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:10:\"Secundario\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:5:\"Texto\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Acento\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:8:\"Primario\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:10:\"Secundario\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:5:\"Texto\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Acento\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:21:\"Divya Yoga Monteregie\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:17:\"hello_header_menu\";s:1:\"3\";s:27:\"hello_footer_copyright_text\";s:29:\"Todos los derechos reservados\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),(463,97,'_elementor_data','[]'),(464,20,'_elementor_page_assets','a:0:{}'),(465,20,'_elementor_version','3.12.2'),(5132,685,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5133,685,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(556,111,'_wp_attached_file','2023/04/images-2.jpeg'),(557,111,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:168;s:4:\"file\";s:21:\"2023/04/images-2.jpeg\";s:8:\"filesize\";i:4584;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"images-2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4346;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(496,101,'_elementor_edit_mode','builder'),(497,101,'_elementor_template_type','wp-post'),(498,101,'_elementor_version','3.12.2'),(499,101,'_wp_page_template','default'),(501,102,'_wp_attached_file','2023/04/images.jpeg'),(502,102,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:290;s:6:\"height\";i:174;s:4:\"file\";s:19:\"2023/04/images.jpeg\";s:8:\"filesize\";i:11426;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"images-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8215;}s:24:\"elementor_custom_500x500\";a:4:{s:4:\"file\";s:36:\"elementor/thumbs/images-150x150.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"elementor_custom_500x300\";a:4:{s:4:\"file\";s:36:\"elementor/thumbs/images-150x150.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:300;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:{}}}'),(503,103,'_elementor_edit_mode','builder'),(504,103,'_elementor_template_type','wp-post'),(505,103,'_elementor_version','3.12.2'),(506,103,'_wp_page_template','default'),(507,104,'_elementor_edit_mode','builder'),(508,104,'_elementor_template_type','wp-post'),(509,104,'_elementor_version','3.12.2'),(510,104,'_wp_page_template','default'),(514,105,'_elementor_template_type','wp-post'),(515,105,'_elementor_version','3.12.2'),(516,105,'_wp_page_template','default'),(517,105,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(518,105,'_elementor_data','[{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images.jpeg\",\"id\":102,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \\\"persona hecha a s\\u00ed misma\\\". Proven\\u00eda de una familia modesta y trabaj\\u00f3 duro para lograr sus objetivos. Obtuvo muchas becas de m\\u00e9rito mientras era estudiante. Tiene una Maestr\\u00eda en Ingenier\\u00eda y una Maestr\\u00eda en Administraci\\u00f3n de Empresas junto con una designaci\\u00f3n de Contabilidad. Ha trabajado como ingeniero y ha ense\\u00f1ado a tiempo parcial en las universidades de Concordia y McGill.<\\/p><p>Se retir\\u00f3 alrededor de los 50 a\\u00f1os para perseguir su pasi\\u00f3n. Ha establecido una fundaci\\u00f3n caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundaci\\u00f3n tambi\\u00e9n \\\"Siete principios simples de la vida\\\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c34af1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f84c177\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(519,21,'_elementor_page_assets','a:0:{}'),(520,21,'_eael_custom_js',''),(524,107,'_elementor_edit_mode','builder'),(525,107,'_elementor_template_type','wp-post'),(526,107,'_elementor_version','3.12.2'),(527,107,'_wp_page_template','default'),(528,107,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(529,107,'_elementor_data','[{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images.jpeg\",\"id\":102,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \\\"persona hecha a s\\u00ed misma\\\". Proven\\u00eda de una familia modesta y trabaj\\u00f3 duro para lograr sus objetivos. Obtuvo muchas becas de m\\u00e9rito mientras era estudiante. Tiene una Maestr\\u00eda en Ingenier\\u00eda y una Maestr\\u00eda en Administraci\\u00f3n de Empresas junto con una designaci\\u00f3n de Contabilidad. Ha trabajado como ingeniero y ha ense\\u00f1ado a tiempo parcial en las universidades de Concordia y McGill.<\\/p><p>Se retir\\u00f3 alrededor de los 50 a\\u00f1os para perseguir su pasi\\u00f3n. Ha establecido una fundaci\\u00f3n caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundaci\\u00f3n tambi\\u00e9n \\\"Siete principios simples de la vida\\\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c34af1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f84c177\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(522,106,'_wp_attached_file','2023/04/images-1.jpeg'),(523,106,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:251;s:6:\"height\";i:201;s:4:\"file\";s:21:\"2023/04/images-1.jpeg\";s:8:\"filesize\";i:8821;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"images-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6041;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(530,107,'_elementor_page_assets','a:0:{}'),(531,108,'_elementor_edit_mode','builder'),(532,108,'_elementor_template_type','wp-post'),(533,108,'_elementor_version','3.12.2'),(534,108,'_wp_page_template','default'),(535,108,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(536,108,'_elementor_data','[{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images.jpeg\",\"id\":102,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \\\"persona hecha a s\\u00ed misma\\\". Proven\\u00eda de una familia modesta y trabaj\\u00f3 duro para lograr sus objetivos. Obtuvo muchas becas de m\\u00e9rito mientras era estudiante. Tiene una Maestr\\u00eda en Ingenier\\u00eda y una Maestr\\u00eda en Administraci\\u00f3n de Empresas junto con una designaci\\u00f3n de Contabilidad. Ha trabajado como ingeniero y ha ense\\u00f1ado a tiempo parcial en las universidades de Concordia y McGill.<\\/p><p>Se retir\\u00f3 alrededor de los 50 a\\u00f1os para perseguir su pasi\\u00f3n. Ha establecido una fundaci\\u00f3n caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundaci\\u00f3n tambi\\u00e9n \\\"Siete principios simples de la vida\\\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c34af1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f84c177\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(537,108,'_elementor_page_assets','a:0:{}'),(538,109,'_elementor_edit_mode','builder'),(539,109,'_elementor_template_type','wp-post'),(540,109,'_elementor_version','3.12.2'),(541,109,'_wp_page_template','default'),(542,109,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(543,109,'_elementor_data','[{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images.jpeg\",\"id\":102,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \\\"persona hecha a s\\u00ed misma\\\". Proven\\u00eda de una familia modesta y trabaj\\u00f3 duro para lograr sus objetivos. Obtuvo muchas becas de m\\u00e9rito mientras era estudiante. Tiene una Maestr\\u00eda en Ingenier\\u00eda y una Maestr\\u00eda en Administraci\\u00f3n de Empresas junto con una designaci\\u00f3n de Contabilidad. Ha trabajado como ingeniero y ha ense\\u00f1ado a tiempo parcial en las universidades de Concordia y McGill.<\\/p><p>Se retir\\u00f3 alrededor de los 50 a\\u00f1os para perseguir su pasi\\u00f3n. Ha establecido una fundaci\\u00f3n caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundaci\\u00f3n tambi\\u00e9n \\\"Siete principios simples de la vida\\\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahm\\u00e1n, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiraci\\u00f3n alterna de fosas nasales. Despu\\u00e9s de hacer B.Sc con Biolog\\u00eda y Qu\\u00edmica, se convirti\\u00f3 en profesora de biolog\\u00eda en una escuela secundaria en la India. Al ense\\u00f1ar anatom\\u00eda y fisiolog\\u00eda humana y hacer yoga gradualmente, ella entendi\\u00f3 la utilidad y los hechos cient\\u00edficos involucrados detr\\u00e1s del yoga. Emigr\\u00f3 a Estados Unidos en 1994 y luego se cas\\u00f3 y emigr\\u00f3 a Canad\\u00e1. Actualmente trabaja en el laboratorio de la Academia Chambly.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Ella cree que el yoga en la esterilla como los aer\\u00f3bicos tiene efectos terap\\u00e9uticos y fisioterap\\u00e9uticos, pero al mismo tiempo tambi\\u00e9n cree en el yoga m\\u00e1s all\\u00e1 de la esterilla. Si hacemos yoga y tambi\\u00e9n llevamos una vida piadosa y libre de culpa, entonces nuestros \\u00f3rganos funcionar\\u00e1n correctamente. Porque en el momento en que hacemos algo mal, nuestro coraz\\u00f3n late aumenta, as\\u00ed que \\u00bfpor qu\\u00e9 hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas a\\u00f1aden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el s\\u00faper yoga del cerebro pueden hacer una gran contribuci\\u00f3n. Tambi\\u00e9n trata de seguir ocho ramas del yoga tanto como pueda.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-1.jpeg\",\"id\":106,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(544,109,'_elementor_page_assets','a:0:{}'),(756,144,'_elementor_edit_mode','builder'),(757,144,'_elementor_template_type','wp-post'),(758,144,'_elementor_version','3.12.2'),(759,144,'_wp_page_template','default'),(760,144,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(761,144,'_elementor_data','[{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images.jpeg\",\"id\":102,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \\\"persona hecha a s\\u00ed misma\\\". Proven\\u00eda de una familia modesta y trabaj\\u00f3 duro para lograr sus objetivos. Obtuvo muchas becas de m\\u00e9rito mientras era estudiante. Tiene una Maestr\\u00eda en Ingenier\\u00eda y una Maestr\\u00eda en Administraci\\u00f3n de Empresas junto con una designaci\\u00f3n de Contabilidad. Ha trabajado como ingeniero y ha ense\\u00f1ado a tiempo parcial en las universidades de Concordia y McGill.<\\/p><p>Se retir\\u00f3 alrededor de los 50 a\\u00f1os para perseguir su pasi\\u00f3n. Ha establecido una fundaci\\u00f3n caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundaci\\u00f3n tambi\\u00e9n \\\"Siete principios simples de la vida\\\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahm\\u00e1n, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiraci\\u00f3n alterna de fosas nasales. Despu\\u00e9s de hacer B.Sc con Biolog\\u00eda y Qu\\u00edmica, se convirti\\u00f3 en profesora de biolog\\u00eda en una escuela secundaria en la India. Al ense\\u00f1ar anatom\\u00eda y fisiolog\\u00eda humana y hacer yoga gradualmente, ella entendi\\u00f3 la utilidad y los hechos cient\\u00edficos involucrados detr\\u00e1s del yoga. Emigr\\u00f3 a Estados Unidos en 1994 y luego se cas\\u00f3 y emigr\\u00f3 a Canad\\u00e1. Actualmente trabaja en el laboratorio de la Academia Chambly.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Ella cree que el yoga en la esterilla como los aer\\u00f3bicos tiene efectos terap\\u00e9uticos y fisioterap\\u00e9uticos, pero al mismo tiempo tambi\\u00e9n cree en el yoga m\\u00e1s all\\u00e1 de la esterilla. Si hacemos yoga y tambi\\u00e9n llevamos una vida piadosa y libre de culpa, entonces nuestros \\u00f3rganos funcionar\\u00e1n correctamente. Porque en el momento en que hacemos algo mal, nuestro coraz\\u00f3n late aumenta, as\\u00ed que \\u00bfpor qu\\u00e9 hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas a\\u00f1aden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el s\\u00faper yoga del cerebro pueden hacer una gran contribuci\\u00f3n. Tambi\\u00e9n trata de seguir ocho ramas del yoga tanto como pueda.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-1.jpeg\",\"id\":106,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5131,685,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un d\\u00eda, todos los empleados de una empresa muy inusual llegaron a su oficina y todos vieron un gran letrero en la puerta principal que dec\\u00eda esto:<\\/p><p>\\\"Ayer, la persona que ha estado obstaculizando su crecimiento en esta empresa falleci\\u00f3. Te invitamos a unirte al funeral en la sala que se ha preparado en el gimnasio\\\".<\\/p><p>Al principio, todos se pusieron tristes por la muerte de uno de sus colegas, pero despu\\u00e9s de un tiempo comenzaron a sentir curiosidad por saber qui\\u00e9n era esa persona que obstaculizaba el crecimiento de sus colegas y de la propia empresa.<\\/p><p>La emoci\\u00f3n en el gimnasio era tal que se orden\\u00f3 a los agentes de seguridad que controlaran a la multitud dentro de la sala. Cuanta m\\u00e1s gente llegaba al ata\\u00fad, m\\u00e1s se calentaba la emoci\\u00f3n.<\\/p><p><strong>Todos pensaron: \\\"\\u00bfQui\\u00e9n es esta persona que estaba obstaculizando mi progreso?\\\"<\\/strong><\\/p><p>Uno por uno, los empleados intrigados se acercaron al ata\\u00fad, y cuando miraron dentro de \\u00e9l, de repente se quedaron sin palabras.<\\/p><p>Todos llegaron a pararse cerca del ata\\u00fad, y todos terminaron conmocionados y en silencio, como si alguien hubiera tocado la parte m\\u00e1s profunda de su alma.<\\/p><p><strong>Hab\\u00eda un espejo dentro del ata\\u00fad: \\u00a1todos los que miraban dentro de \\u00e9l pod\\u00edan verse a s\\u00ed mismos!<\\/strong><\\/p><p><strong>Tambi\\u00e9n hab\\u00eda un letrero al lado del espejo que dec\\u00eda:<\\/strong><\\/p><p><strong>S\\u00f3lo hay una persona que es capaz de poner l\\u00edmites a tu crecimiento y \\u00a1ERES T\\u00da!<\\/strong><\\/p><p>Tu vida no cambia cuando cambia tu jefe, cuando cambian tus amigos, cuando cambian tus padres, cuando cambia tu esposo o esposa, cuando cambia tu compa\\u00f1\\u00eda, cuando cambia tu iglesia, cuando cambia tu ubicaci\\u00f3n, cuando cambia tu dinero, cuando cambia tu estatus.<\\/p><p><strong>No, tu vida cambia cuando T\\u00da cambias, cuando<\\/strong>\\u00a0vas m\\u00e1s all\\u00e1 de tus creencias limitantes.<\\/p><p>Exam\\u00ednate a ti mismo, obs\\u00e9rvate a ti mismo. No tengas miedo de las dificultades, imposibilidades y p\\u00e9rdidas. S\\u00e9 un ganador, constr\\u00fayete a ti mismo y a tu realidad. Es la forma en que enfrentas la vida misma lo que marca la diferencia.<\\/p><p>Hace unos a\\u00f1os, un estudiante universitario, que luchaba por construir su carrera, se present\\u00f3 para su examen profesional. Intent\\u00f3 su primer trabajo excelentemente, pero imagin\\u00f3 que se desempe\\u00f1\\u00f3 mal.<\\/p><p>Teniendo esto en cuenta, perdi\\u00f3 la concentraci\\u00f3n para el resto de las asignaturas y, a su vez, no escribi\\u00f3 bien las otras asignaturas. M\\u00e1s tarde, los resultados salieron que el documento que pensaba que estaba mal escrito hab\\u00eda obtenido las mejores calificaciones en la universidad, pero en las otras materias, fall\\u00f3. \\u00bfPor qu\\u00e9 sucedi\\u00f3 esto? La raz\\u00f3n es simple: falta de creencia en s\\u00ed mismo<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5127,685,'_elementor_edit_mode','builder'),(5128,685,'_elementor_version','3.12.2'),(5129,685,'_wp_page_template','default'),(5130,685,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5124,684,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7433,993,'_elementor_template_type','wp-page'),(7434,993,'_elementor_edit_mode','builder'),(7435,993,'_elementor_version','3.13.3'),(7436,993,'_wp_page_template','default'),(7437,993,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7438,993,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \\\"Who would like this $20 bill?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Hands started going up.<\\/p><p style=\\\"text-align: justify;\\\">He said, \\\"I am going to give this $20 to one of you but first, let me do this.\\\" He proceeded to crumple the dollar bill up.<\\/p><p style=\\\"text-align: justify;\\\">He then asked, \\\"Who still wants it?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Still the hands were up in the air.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Well,\\\" he replied, \\\"What if I do this?\\\" And he dropped it on the ground and started to grind it into the floor with his shoe.<\\/p><p style=\\\"text-align: justify;\\\">He picked it up, now all crumpled and dirty. \\\"Now who still wants it?\\\" Still the hands went into the air.<\\/p><p style=\\\"text-align: justify;\\\">\\\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.<\\/p><p style=\\\"text-align: justify;\\\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.<\\/p><p style=\\\"text-align: justify;\\\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5118,684,'_elementor_template_type','wp-page'),(5119,684,'_elementor_edit_mode','builder'),(5120,684,'_elementor_version','3.12.2'),(5121,684,'_wp_page_template','default'),(5122,684,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5123,684,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \\\"Who would like this $20 bill?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Hands started going up.<\\/p><p style=\\\"text-align: justify;\\\">He said, \\\"I am going to give this $20 to one of you but first, let me do this.\\\" He proceeded to crumple the dollar bill up.<\\/p><p style=\\\"text-align: justify;\\\">He then asked, \\\"Who still wants it?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Still the hands were up in the air.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Well,\\\" he replied, \\\"What if I do this?\\\" And he dropped it on the ground and started to grind it into the floor with his shoe.<\\/p><p style=\\\"text-align: justify;\\\">He picked it up, now all crumpled and dirty. \\\"Now who still wants it?\\\" Still the hands went into the air.<\\/p><p style=\\\"text-align: justify;\\\">\\\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.<\\/p><p style=\\\"text-align: justify;\\\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.<\\/p><p style=\\\"text-align: justify;\\\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5117,683,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5096,681,'_elementor_template_type','wp-page'),(5097,681,'_elementor_edit_mode','builder'),(5098,681,'_elementor_version','3.12.2'),(5099,681,'_wp_page_template','default'),(5100,681,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5101,681,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un conocido orador comenz\\u00f3 su seminario sosteniendo un billete de $ 20. En la sala de 200, pregunt\\u00f3: \\\"\\u00bfA qui\\u00e9n le gustar\\u00eda este billete de 20 d\\u00f3lares?\\\"<\\/p><p>Las manos comenzaron a subir.<\\/p><p>\\u00c9l dijo: \\\"Voy a darle estos $ 20 a uno de ustedes, pero primero, d\\u00e9jenme hacer esto\\\". Procedi\\u00f3 a arrugar el billete de un d\\u00f3lar.<\\/p><p>Luego pregunt\\u00f3: \\\"\\u00bfQui\\u00e9n todav\\u00eda lo quiere?\\\"<\\/p><p>A\\u00fan as\\u00ed, las manos estaban en el aire.<\\/p><p>\\\"Bueno\\\", respondi\\u00f3, \\\"\\u00bfy si hago esto?\\\" Y lo dej\\u00f3 caer al suelo y comenz\\u00f3 a molerlo en el suelo con su zapato.<\\/p><p>Lo recogi\\u00f3, ahora todo arrugado y sucio. \\\"Ahora, \\u00bfqui\\u00e9n todav\\u00eda lo quiere?\\\" A\\u00fan as\\u00ed, las manos se elevaron en el aire.<\\/p><p>\\\"Mis amigos, todos ustedes han aprendido una lecci\\u00f3n muy valiosa. No importa lo que le hiciera al dinero, todav\\u00eda lo quer\\u00edas porque no disminu\\u00eda su valor. Todav\\u00eda val\\u00eda $ 20.<\\/p><p>Muchas veces en nuestras vidas, somos dejados caer, arrugados y molidos en la tierra por las decisiones que tomamos y las circunstancias que se nos presentan.<\\/p><p>Sentimos que no valemos nada. Pero no importa lo que haya sucedido o lo que suceda, nunca perder\\u00e1 su valor. Tienes alma divina. Eres especial, \\u00a1nunca lo olvides!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5111,683,'_elementor_template_type','wp-page'),(5112,683,'_elementor_edit_mode','builder'),(5113,683,'_elementor_version','3.12.2'),(5114,683,'_wp_page_template','default'),(5115,683,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5116,683,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un conocido orador comenz\\u00f3 su seminario sosteniendo un billete de $ 20. En la sala de 200, pregunt\\u00f3: \\\"\\u00bfA qui\\u00e9n le gustar\\u00eda este billete de 20 d\\u00f3lares?\\\"<\\/p><p>Las manos comenzaron a subir.<\\/p><p>\\u00c9l dijo: \\\"Voy a darle estos $ 20 a uno de ustedes, pero primero, d\\u00e9jenme hacer esto\\\". Procedi\\u00f3 a arrugar el billete de un d\\u00f3lar.<\\/p><p>Luego pregunt\\u00f3: \\\"\\u00bfQui\\u00e9n todav\\u00eda lo quiere?\\\"<\\/p><p>A\\u00fan as\\u00ed, las manos estaban en el aire.<\\/p><p>\\\"Bueno\\\", respondi\\u00f3, \\\"\\u00bfy si hago esto?\\\" Y lo dej\\u00f3 caer al suelo y comenz\\u00f3 a molerlo en el suelo con su zapato.<\\/p><p>Lo recogi\\u00f3, ahora todo arrugado y sucio. \\\"Ahora, \\u00bfqui\\u00e9n todav\\u00eda lo quiere?\\\" A\\u00fan as\\u00ed, las manos se elevaron en el aire.<\\/p><p>\\\"Mis amigos, todos ustedes han aprendido una lecci\\u00f3n muy valiosa. No importa lo que le hiciera al dinero, todav\\u00eda lo quer\\u00edas porque no disminu\\u00eda su valor. Todav\\u00eda val\\u00eda $ 20.<\\/p><p>Muchas veces en nuestras vidas, somos dejados caer, arrugados y molidos en la tierra por las decisiones que tomamos y las circunstancias que se nos presentan.<\\/p><p>Sentimos que no valemos nada. Pero no importa lo que haya sucedido o lo que suceda, nunca perder\\u00e1 su valor. Tienes alma divina. Eres especial, \\u00a1nunca lo olvides!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5110,682,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5102,681,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5103,681,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5073,677,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5094,680,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(6858,921,'_elementor_template_type','wp-page'),(6859,921,'_elementor_edit_mode','builder'),(6860,921,'_elementor_version','3.13.3'),(6861,921,'_wp_page_template','default'),(6862,921,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6863,921,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\"><b><br \\/><\\/b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.<\\/p><p style=\\\"text-align: justify;\\\">The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.<\\/p><p style=\\\"text-align: justify;\\\">Here\'s what you do,\\\" said the Doctor, \\\"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\\\"<\\/p><p style=\\\"text-align: justify;\\\">That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \\\"I\'m about 40 feet away, let\'s see what happens.\\\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">No response.<\\/p><p style=\\\"text-align: justify;\\\">So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \\\"Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Still no response.<\\/p><p style=\\\"text-align: justify;\\\">Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Again he gets no response.<\\/p><p style=\\\"text-align: justify;\\\">So he walks up to the kitchen door, about 10 feet away. \\\"Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Again there is no response.<\\/p><p style=\\\"text-align: justify;\\\">So he walks right up behind her. \\\"Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"James, for the FIFTH time I\'ve said, Lima Beans!\\\"<\\/p><p style=\\\"text-align: justify;\\\"><b>The problem may not be with the other person as we always think, could be very much within us!<\\/b><\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5087,679,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5088,680,'_elementor_template_type','wp-page'),(5089,680,'_elementor_edit_mode','builder'),(5090,680,'_elementor_version','3.12.2'),(5091,680,'_wp_page_template','default'),(5092,680,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5093,680,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\"><b><br \\/><\\/b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.<\\/p><p style=\\\"text-align: justify;\\\">The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.<\\/p><p style=\\\"text-align: justify;\\\">Here\'s what you do,\\\" said the Doctor, \\\"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\\\"<\\/p><p style=\\\"text-align: justify;\\\">That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \\\"I\'m about 40 feet away, let\'s see what happens.\\\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">No response.<\\/p><p style=\\\"text-align: justify;\\\">So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \\\"Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Still no response.<\\/p><p style=\\\"text-align: justify;\\\">Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Again he gets no response.<\\/p><p style=\\\"text-align: justify;\\\">So he walks up to the kitchen door, about 10 feet away. \\\"Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Again there is no response.<\\/p><p style=\\\"text-align: justify;\\\">So he walks right up behind her. \\\"Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"James, for the FIFTH time I\'ve said, Lima Beans!\\\"<\\/p><p style=\\\"text-align: justify;\\\"><b>The problem may not be with the other person as we always think, could be very much within us!<\\/b><\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5086,679,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un hombre tem\\u00eda que su esposa no estuviera escuchando tan bien como sol\\u00eda hacerlo y pens\\u00f3 que podr\\u00eda necesitar un aud\\u00edfono. Sin estar muy seguro de c\\u00f3mo acercarse a ella, llam\\u00f3 al m\\u00e9dico de familia para discutir el problema.<\\/p><p>El Doctor le dijo que hay una simple prueba informal que el marido podr\\u00eda realizar para darle al Doctor una mejor idea sobre su p\\u00e9rdida auditiva.<\\/p><p>Esto es lo que haces\\\", dijo el Doctor, \\\"p\\u00e1rate a unos 40 pies de distancia de ella, y en un tono de conversaci\\u00f3n normal mira si te escucha. Si no, ve a 30 pies, luego a 20 pies, y as\\u00ed sucesivamente hasta que obtengas una respuesta\\\".<\\/p><p>Esa noche, la esposa est\\u00e1 en la cocina cocinando la cena, y \\u00e9l estaba en el estudio. Se dice a s\\u00ed mismo: \\\"Estoy a unos 40 pies de distancia, veamos qu\\u00e9 pasa\\\". Luego, en un tono normal, pregunta: \'Cari\\u00f1o, \\u00bfqu\\u00e9 hay para cenar?\'<\\/p><p>Sin respuesta.<\\/p><p>As\\u00ed que el esposo se acerca a la cocina, a unos 30 pies de su esposa y repite: \\\"Cari\\u00f1o, \\u00bfqu\\u00e9 hay para cenar?\\\"<\\/p><p>Todav\\u00eda no hay respuesta.<\\/p><p>Luego se muda al comedor donde est\\u00e1 a unos 20 pies de su esposa y pregunta: \\\"Cari\\u00f1o, \\u00bfqu\\u00e9 hay para cenar?\\\"<\\/p><p>Una vez m\\u00e1s no obtiene respuesta.<\\/p><p>As\\u00ed que camina hacia la puerta de la cocina, a unos 10 pies de distancia. \\\"Cari\\u00f1o, \\u00bfqu\\u00e9 hay para cenar?\\\"<\\/p><p>Una vez m\\u00e1s, no hay respuesta.<\\/p><p>As\\u00ed que camina justo detr\\u00e1s de ella. \\\"Cari\\u00f1o, \\u00bfqu\\u00e9 hay para cenar?\\\"<\\/p><p>\\\"James, por QUINTA vez he dicho, \\u00a1Frijoles Lima!\\\"<\\/p><p><strong>El problema puede no ser con la otra persona como siempre pensamos, \\u00a1podr\\u00eda estar muy dentro de nosotros!<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5085,679,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5080,678,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5081,679,'_elementor_template_type','wp-page'),(5082,679,'_elementor_edit_mode','builder'),(5083,679,'_elementor_version','3.12.2'),(5084,679,'_wp_page_template','default'),(5072,677,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5071,677,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un hombre tem\\u00eda que su esposa no estuviera escuchando tan bien como sol\\u00eda hacerlo y pens\\u00f3 que podr\\u00eda necesitar un aud\\u00edfono. Sin estar muy seguro de c\\u00f3mo acercarse a ella, llam\\u00f3 al m\\u00e9dico de familia para discutir el problema.<\\/p><p>El Doctor le dijo que hay una simple prueba informal que el marido podr\\u00eda realizar para darle al Doctor una mejor idea sobre su p\\u00e9rdida auditiva.<\\/p><p>Esto es lo que haces\\\", dijo el Doctor, \\\"p\\u00e1rate a unos 40 pies de distancia de ella, y en un tono de conversaci\\u00f3n normal mira si te escucha. Si no, ve a 30 pies, luego a 20 pies, y as\\u00ed sucesivamente hasta que obtengas una respuesta\\\".<\\/p><p>Esa noche, la esposa est\\u00e1 en la cocina cocinando la cena, y \\u00e9l estaba en el estudio. Se dice a s\\u00ed mismo: \\\"Estoy a unos 40 pies de distancia, veamos qu\\u00e9 pasa\\\". Luego, en un tono normal, pregunta: \'Cari\\u00f1o, \\u00bfqu\\u00e9 hay para cenar?\'<\\/p><p>Sin respuesta.<\\/p><p>As\\u00ed que el esposo se acerca a la cocina, a unos 30 pies de su esposa y repite: \\\"Cari\\u00f1o, \\u00bfqu\\u00e9 hay para cenar?\\\"<\\/p><p>Todav\\u00eda no hay respuesta.<\\/p><p>Luego se muda al comedor donde est\\u00e1 a unos 20 pies de su esposa y pregunta: \\\"Cari\\u00f1o, \\u00bfqu\\u00e9 hay para cenar?\\\"<\\/p><p>Una vez m\\u00e1s no obtiene respuesta.<\\/p><p>As\\u00ed que camina hacia la puerta de la cocina, a unos 10 pies de distancia. \\\"Cari\\u00f1o, \\u00bfqu\\u00e9 hay para cenar?\\\"<\\/p><p>Una vez m\\u00e1s, no hay respuesta.<\\/p><p>As\\u00ed que camina justo detr\\u00e1s de ella. \\\"Cari\\u00f1o, \\u00bfqu\\u00e9 hay para cenar?\\\"<\\/p><p>\\\"James, por QUINTA vez he dicho, \\u00a1Frijoles Lima!\\\"<\\/p><p><strong>El problema puede no ser con la otra persona como siempre pensamos, \\u00a1podr\\u00eda estar muy dentro de nosotros!<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5070,677,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5069,677,'_wp_page_template','default'),(5064,676,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7374,987,'_elementor_template_type','wp-page'),(7375,987,'_elementor_edit_mode','builder'),(7376,987,'_elementor_version','3.13.3'),(7377,987,'_wp_page_template','default'),(7378,987,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7379,987,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">There is this story about a famous research scientist who had made several very important medical breakthroughs. He was being interviewed by a newspaper reporter who asked him why he thought he was able to be so much more creative than the average person. What set him so far apart from others?<\\/p><p style=\\\"text-align: justify;\\\">He responded that, in his opinion, it all came from an experience with his mother that occurred when he was about two years old. He had been trying to remove a bottle of milk from the refrigerator when he lost his grip on the slippery bottle and it fell, spilling its contents all over the kitchen floor - a veritable sea of milk!<\\/p><p style=\\\"text-align: justify;\\\">When his mother came into the kitchen, instead of yelling at him, giving him a lecture, or punishing him, she said, \\\"Robert, what a great and wonderful mess you have made! I have rarely seen such a huge puddle of milk. Well, the damage has already been done. Would you like to get down and play in the milk for a few minutes before we clean it up?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Indeed, he did. After a few minutes, his mother said, \\\"You know, Robert, whenever you make a mess like this, eventually you have to clean it up and restore everything to its proper order. So, how would you like to do that? We could use a sponge, a towel, or a mop. Which do you prefer?\\\"<\\/p><p style=\\\"text-align: justify;\\\">He chose the sponge and together they cleaned up the spilled milk.<\\/p><p style=\\\"text-align: justify;\\\">His mother then said, \\\"You know, what we have here is a failed experiment in how to effectively carry a big milk bottle with two tiny hands. Let\'s go out in the back yard and fill the bottle with water and see if you can discover a way to carry it without dropping it.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The little boy learned that if he grasped the bottle at the top near the lip with both hands, he could carry it without dropping it. This renowned scientist then remarked that it was at that moment that he knew he didn\'t need to be afraid to make mistakes. Instead, he learned that mistakes were just opportunities for learning something new, which is, after all, what scientific experiments are all about. Even if the experiment \\\"doesn\'t work,\\\" we usually learn something valuable from it.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5066,677,'_elementor_template_type','wp-page'),(5067,677,'_elementor_edit_mode','builder'),(5068,677,'_elementor_version','3.12.2'),(4972,665,'_elementor_page_assets','a:0:{}'),(4974,665,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4975,652,'_eael_custom_js',''),(4978,666,'_elementor_edit_mode','builder'),(4979,666,'_elementor_template_type','wp-page'),(4980,666,'_elementor_version','3.13.3'),(4981,666,'_wp_page_template','default'),(4982,666,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/cropped-banner111.jpg\",\"id\":654,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(4983,666,'_elementor_page_assets','a:0:{}'),(4984,666,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4986,667,'_elementor_edit_mode','builder'),(4987,667,'_elementor_template_type','wp-page'),(4988,667,'_elementor_version','3.13.3'),(4989,667,'_wp_page_template','default'),(4990,667,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/cropped-banner111.jpg\",\"id\":654,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(4991,667,'_elementor_page_assets','a:0:{}'),(4992,667,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4994,668,'_elementor_edit_mode','builder'),(4995,668,'_elementor_template_type','wp-page'),(4996,668,'_elementor_version','3.13.3'),(4997,668,'_wp_page_template','default'),(4998,668,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/cropped-banner111.jpg\",\"id\":654,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Making the basic practice of yoga easily accessible to everyone at no charge.<br>Divya Yoga founder Swami Ram Dev says, \\\"Good health is a birthright of humanity.\\\" By performing yoga poses,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \\/ asanas, exercises, mudras, pranayamas, meditation and by providing practical motivational speech they help to develop a stress free mind and disease free body. It helps to take care of the body, mind and soul and live a happy, healthy and fulfilling life. Emphasize that the key to a healthy physical body and a healthy state of mind is in one\'s control. By getting in touch with the inner being we can experience a state of \\\"Bliss and Anand\\\".<br>This Divya yoga is for people of all ages. We start with warm-up exercises (12-15), salutation to the sun and motivational speech. Then we practice 90-100 combination of asanas, postures and exercises. We also do some acupressure, 6 mudras, 7 pranayamas and micro exercises for eyes, fingers, toes, face and neck. Laughter yoga and super brain yoga are also included. We finish with \'Shav Asana\', motivational poem, mantra and prayer,<br>After yoga, super food i.e. grapes and banana are available for yogis.<br>Yoga is a wonderful means of exercising, stretching and relaxing the body\\/mind so that it can be healthy and lasting. Helps in the coordination of the body, mind and soul. We also create an environment where people can interact for their betterment and the good of society.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(4999,668,'_elementor_page_assets','a:0:{}'),(5000,668,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(5013,670,'_elementor_edit_mode','builder'),(5014,670,'_elementor_template_type','wp-page'),(5015,670,'_elementor_version','3.13.3'),(5016,670,'_wp_page_template','default'),(5017,670,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/cropped-banner111.jpg\",\"id\":654,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Making the basic practice of yoga easily accessible to everyone at no charge.<br>Divya Yoga founder Swami Ram Dev says, \\\"Good health is a birthright of humanity.\\\" By performing yoga poses,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \\/ asanas, exercises, mudras, pranayamas, meditation and by providing practical motivational speech they help to develop a stress free mind and disease free body. It helps to take care of the body, mind and soul and live a happy, healthy and fulfilling life. Emphasize that the key to a healthy physical body and a healthy state of mind is in one\'s control. By getting in touch with the inner being we can experience a state of \\\"Bliss and Anand\\\".<br>This Divya yoga is for people of all ages. We start with warm-up exercises (12-15), salutation to the sun and motivational speech. Then we practice 90-100 combination of asanas, postures and exercises. We also do some acupressure, 6 mudras, 7 pranayamas and micro exercises for eyes, fingers, toes, face and neck. Laughter yoga and super brain yoga are also included. We finish with \'Shav Asana\', motivational poem, mantra and prayer,<br>After yoga, super food i.e. grapes and banana are available for yogis.<br>Yoga is a wonderful means of exercising, stretching and relaxing the body\\/mind so that it can be healthy and lasting. Helps in the coordination of the body, mind and soul. We also create an environment where people can interact for their betterment and the good of society.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(5027,672,'_elementor_edit_mode','builder'),(5028,672,'_elementor_template_type','wp-page'),(5029,672,'_elementor_version','3.13.3'),(5030,672,'_wp_page_template','default'),(5031,672,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/cropped-banner111.jpg\",\"id\":654,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Making the basic practice of yoga easily accessible to everyone at no charge.<br>Divya Yoga founder Swami Ram Dev says, \\\"Good health is a birthright of humanity.\\\" By performing yoga poses,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \\/ asanas, exercises, mudras, pranayamas, meditation and by providing practical motivational speech they help to develop a stress free mind and disease free body. It helps to take care of the body, mind and soul and live a happy, healthy and fulfilling life. Emphasize that the key to a healthy physical body and a healthy state of mind is in one\'s control. By getting in touch with the inner being we can experience a state of \\\"Bliss and Anand\\\".<br>This Divya yoga is for people of all ages. We start with warm-up exercises (12-15), salutation to the sun and motivational speech. Then we practice 90-100 combination of asanas, postures and exercises. We also do some acupressure, 6 mudras, 7 pranayamas and micro exercises for eyes, fingers, toes, face and neck. Laughter yoga and super brain yoga are also included. We finish with \'Shav Asana\', motivational poem, mantra and prayer,<br>After yoga, super food i.e. grapes and banana are available for yogis.<br>Yoga is a wonderful means of exercising, stretching and relaxing the body\\/mind so that it can be healthy and lasting. Helps in the coordination of the body, mind and soul. We also create an environment where people can interact for their betterment and the good of society.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><br \\/>Every Saturday morning from 9:00 a.m. to 11:00 a.m. we participate in the session, a series of physical and breathing exercises to make the body more flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poems, prayers and our mantra. Yoga is a complete lifestyle<br \\/>Every last Saturday of the month we have a guest speaker from 11:00 to 11:45 and after that we eat together. The food is provided by the Vinesh Saxena Family foundation, Meera is preparing amazing vegetarian Indian food for us, and if you want to share a small plate with us, you are welcome.<br \\/>If it\'s your first day, please come before 8.30am to take the time to fill out an information sheet. Mihaela is happy to meet you.<br \\/>Afterwards please come 10-15 minutes early to give yourself time to arrange your mat etc so we can start at 9.00am.<br \\/>See below a brief description of the exercises we practice every Saturday.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1. Workout: A series of 12-15 exercises to warm up your body: i.e. knee bend, forward bend, back bend, right bend, left bend, shoulder stretch, jump, hand swing , bend right knee, bend left knee, jump cat, body shake, downward\\/upward dog, etc.<\\/p>\\n<p>2. Salutation to the Sun \\u2013 Surya Namaskar, a flowing series of 12 postures that helps improve strength and flexibility of the muscles and spine. These poses also warm up the body and tone the abdominal muscles.<\\/p>\\n<p>3. Motivational Speech - Our teacher Vinesh Saxena shares with us wise stories and practical tips for a happy, healthy, motivated and fulfilling life.<\\/p>\\n<p><br>4. Acupressure (an alternative medicine technique derived from acupuncture): Rotating pressure on the pads of the fingers to relieve sinus problems, the middle of the palm of the hand for kidney problems, and under the thumb for thyroid wellness .<\\/p>\\n<p><br>5. Exercises for the eyes and neck: we take care of each part of the body.Eyes: move the pupil to the right, left, up and down; Turn clockwise, then counterclockwise. Reach your right arm in front, thumb up, focus on your thumb as you bring your hand up to your nose, and then take it away. Extend both arms inward, look at the center of the thumb. Spread arms apart until you can still see, stay in this position for 30 seconds, move arms back Neck: bend left, right, forward and back, turn clockwise, then counterclockwise clockwise, look to the right and look up the left.<\\/p>\\n<p>6. Seven Pranayamas (breathing exercises) When we do yoga, 75% of the benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya (Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/p><p>7. 6 mudras (finger positioning): Used in conjunction with pranayama, usually while seated, to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/p><p>8. 100 postures, exercises and asanas: with them we increase flexibility from head to toe. We are also doing stretching exercises to help our bodies stimulate the lymphatic system, targeting key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees, and feet. We do exercises to relieve arthritis, diabetes, heart disease, cholesterol, back pain, insomnia, etc.<\\/p><p>9. Laughter Yoga \\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a doctor from Mumbai. Today, it has become a global phenomenon with more than 6,000 laughter social clubs in some 60 countries. We combine unconditional laughter with Pranayama. The Laughter Yoga concept is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<\\/p><p>We also do Super Brain yoga to stimulate brain cells and improve memory. This form of yoga was invented by a Virginia doctor and is very popular in the medical community.<\\/p><p>10. Shavasana \\u2013 After your yoga session, lie on your back on the mat \\u2013 Shavasana allows the body a chance to regroup and reset. After a balanced practice, the entire body has been stretched, contracted, twisted, and inverted. The body, mind and soul get complete rest, power, motivation and happiness.<\\/p><p>11. Motivational poem: read at the end of the session to keep us motivated, focused and to recharge our batteries.<\\/p><p>12. Mantra \\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT WILL BE DEPENDS ON ME<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(669,128,'_elementor_template_type','wp-page'),(668,128,'_elementor_edit_mode','builder'),(667,128,'_edit_lock','1684963196:1'),(670,128,'_elementor_version','3.13.3'),(671,128,'_edit_last','1'),(672,128,'_wp_page_template','default'),(673,128,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(674,128,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":344,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\"},{\"id\":897,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\"},{\"id\":896,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\"},{\"id\":898,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\"},{\"id\":902,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g12cf06d74_1280.jpg\"},{\"id\":895,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3242cf9\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"1155c00\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"cecc2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"237929a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"de47540\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/pexels-lucas-pezeta-2035018.jpg\",\"id\":916,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"width\":{\"unit\":\"%\",\"size\":91,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":133,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"48113ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"035f315\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"340bd1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"8779274\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-ga0015b20f_1280.jpg\",\"id\":908,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72996c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"454ca25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/religion-g51748518d_1280.jpg\",\"id\":910,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(692,132,'_elementor_edit_mode','builder'),(693,132,'_elementor_template_type','wp-page'),(694,132,'_elementor_version','3.12.2'),(695,132,'_wp_page_template','default'),(696,132,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(697,132,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3242cf9\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"1155c00\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"cecc2f6\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"237929a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"de47540\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"48113ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"035f315\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"340bd1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"8779274\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72996c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"454ca25\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(675,128,'_elementor_page_assets','a:0:{}'),(676,128,'_eael_custom_js',''),(737,141,'_wp_page_template','default'),(738,141,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(739,141,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3242cf9\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"1155c00\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"cecc2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"237929a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"de47540\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"48113ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"035f315\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"340bd1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"8779274\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72996c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"454ca25\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(690,131,'_wp_attached_file','2023/04/cropped-banner2.jpg'),(691,131,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:27:\"2023/04/cropped-banner2.jpg\";s:8:\"filesize\";i:64042;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"cropped-banner2-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8577;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"cropped-banner2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6181;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"cropped-banner2-768x221.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36274;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(679,129,'_elementor_edit_mode','builder'),(680,129,'_elementor_template_type','wp-page'),(681,129,'_elementor_version','3.12.2'),(682,129,'_wp_page_template','default'),(683,129,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(684,129,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">Hacer que la pr\\u00e1ctica b\\u00e1sica de yoga sea f\\u00e1cilmente accesible para todos sin cargo.<\\/span><\\/p><p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">El fundador de Divya Yoga Swami Ram Dev dice: \\\"La buena salud es un derecho de nacimiento de la humanidad\\\". Al realizar posturas de yoga, \\/ asanas, ejercicios, mudras,<b>pranayams<i>,\\u00a0<\\/i><\\/b>meditaci\\u00f3n y al proporcionar un discurso motivacional pr\\u00e1ctico ayudan a desarrollar una mente libre de estr\\u00e9s y un cuerpo libre de enfermedades. Ayuda a cuidar el cuerpo, la mente y el alma y vivir una vida feliz, saludable y satisfactoria. Haga hincapi\\u00e9 en que la clave para un cuerpo f\\u00edsico saludable y un estado mental sano est\\u00e1 bajo el control de uno. Al ponernos en contacto con el ser interior podemos experimentar un estado de \\\"Bienaventuranza y Anand\\\".<\\/span><\\/p><p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">Este Divya yoga es para personas de todas las edades. Comenzamos con ejercicios de calentamiento (12-15), saludo al sol y discurso motivacional. Luego practicamos 90-100 combinaciones de asanas, posturas y ejercicios. Tambi\\u00e9n realizamos algo de acupresi\\u00f3n, 6 mudras, 7 pranayams y micro ejercicios para ojos, dedos de manos, pies, cara y cuello. Tambi\\u00e9n se incluye yoga de la risa y s\\u00faper yoga cerebral. Terminamos con \'Shav Asana\', poema motivacional, mantra y oraci\\u00f3n,\\u00a0<\\/span><span style=\\\"color: #111111; font-family: Helvetica, sans-serif; font-size: 1rem;\\\">Despu\\u00e9s del yoga, la s\\u00faper comida, es decir, las uvas y el pl\\u00e1tano est\\u00e1n disponibles para los yoguis.<\\/span><\\/p><p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">El yoga es un medio maravilloso de ejercitar, estirar y relajar el cuerpo \\/ mente para que pueda ser saludable y duradero. Ayuda en la coordinaci\\u00f3n del cuerpo, la mente y el alma. Tambi\\u00e9n creamos un entorno donde las personas pueden interactuar para su mejoramiento y bien de la sociedad.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(685,129,'_elementor_page_assets','a:0:{}'),(686,129,'_elementor_controls_usage','a:4:{s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:2:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}}'),(688,130,'_wp_attached_file','2023/04/cropped-banner111.jpg'),(689,130,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:29:\"2023/04/cropped-banner111.jpg\";s:8:\"filesize\";i:90675;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"cropped-banner111-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10675;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"cropped-banner111-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8250;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"cropped-banner111-768x221.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48927;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(698,132,'_elementor_page_assets','a:0:{}'),(699,132,'_elementor_controls_usage','a:4:{s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:2:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}}'),(700,133,'_elementor_edit_mode','builder'),(701,133,'_elementor_template_type','wp-page'),(702,133,'_elementor_version','3.12.2'),(703,133,'_wp_page_template','default'),(704,133,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(705,133,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3242cf9\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"1155c00\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"cecc2f6\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"237929a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"de47540\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"48113ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"035f315\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"340bd1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"8779274\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72996c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"454ca25\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(706,133,'_elementor_page_assets','a:0:{}'),(707,133,'_elementor_controls_usage','a:4:{s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:2:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}}'),(708,134,'_elementor_edit_mode','builder'),(709,134,'_elementor_template_type','wp-page'),(710,134,'_elementor_version','3.12.2'),(711,134,'_wp_page_template','default'),(712,134,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(713,134,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3242cf9\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"1155c00\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"cecc2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"237929a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"de47540\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"48113ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"035f315\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"340bd1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"8779274\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72996c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"454ca25\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(714,134,'_elementor_page_assets','a:0:{}'),(715,134,'_elementor_controls_usage','a:4:{s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:2:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}}'),(734,141,'_elementor_edit_mode','builder'),(735,141,'_elementor_template_type','wp-page'),(736,141,'_elementor_version','3.12.2'),(752,143,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(753,143,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3242cf9\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"1155c00\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"cecc2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"237929a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"de47540\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"1536x1536\",\"width\":{\"unit\":\"%\",\"size\":91,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":133,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"48113ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"035f315\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"340bd1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"8779274\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-5.jpeg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72996c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"454ca25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-1.jpeg\",\"id\":106,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(751,143,'_wp_page_template','default'),(748,143,'_elementor_edit_mode','builder'),(749,143,'_elementor_template_type','wp-page'),(750,143,'_elementor_version','3.12.2'),(724,136,'_wp_attached_file','2023/04/images-3.jpeg'),(725,136,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:329;s:6:\"height\";i:153;s:4:\"file\";s:21:\"2023/04/images-3.jpeg\";s:8:\"filesize\";i:6078;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"images-3-300x140.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7613;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"images-3-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4919;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,137,'_wp_attached_file','2023/04/images-4.jpeg'),(727,137,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:183;s:6:\"height\";i:275;s:4:\"file\";s:21:\"2023/04/images-4.jpeg\";s:8:\"filesize\";i:3661;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"images-4-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3375;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(728,138,'_wp_attached_file','2023/04/images-5.jpeg'),(729,138,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:275;s:6:\"height\";i:183;s:4:\"file\";s:21:\"2023/04/images-5.jpeg\";s:8:\"filesize\";i:7254;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"images-5-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6013;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(730,139,'_wp_attached_file','2023/04/images-6.jpeg'),(731,139,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:275;s:6:\"height\";i:183;s:4:\"file\";s:21:\"2023/04/images-6.jpeg\";s:8:\"filesize\";i:9187;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"images-6-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6676;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(732,140,'_wp_attached_file','2023/04/images-7.jpeg'),(733,140,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:275;s:6:\"height\";i:183;s:4:\"file\";s:21:\"2023/04/images-7.jpeg\";s:8:\"filesize\";i:10871;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"images-7-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6337;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(740,141,'_elementor_page_assets','a:0:{}'),(741,142,'_elementor_edit_mode','builder'),(742,142,'_elementor_template_type','wp-page'),(743,142,'_elementor_version','3.12.2'),(744,142,'_wp_page_template','default'),(745,142,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(746,142,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3242cf9\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"1155c00\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"cecc2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"237929a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"de47540\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"48113ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"035f315\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"340bd1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"8779274\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72996c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"454ca25\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(747,142,'_elementor_page_assets','a:0:{}'),(754,143,'_elementor_page_assets','a:0:{}'),(6825,917,'_elementor_edit_mode','builder'),(6826,917,'_elementor_template_type','wp-page'),(6827,917,'_elementor_version','3.12.2'),(6828,917,'_wp_page_template','default'),(6829,917,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6830,917,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3242cf9\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"1155c00\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"cecc2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"237929a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"de47540\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"1536x1536\",\"width\":{\"unit\":\"%\",\"size\":91,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":133,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"48113ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"035f315\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"340bd1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"8779274\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-5.jpeg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72996c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"454ca25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-1.jpeg\",\"id\":106,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(762,144,'_elementor_page_assets','a:0:{}'),(764,145,'_elementor_edit_mode','builder'),(765,145,'_elementor_template_type','wp-post'),(766,145,'_elementor_version','3.12.2'),(767,145,'_wp_page_template','default'),(768,145,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(769,145,'_elementor_data','[{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images.jpeg\",\"id\":102,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \\\"persona hecha a s\\u00ed misma\\\". Proven\\u00eda de una familia modesta y trabaj\\u00f3 duro para lograr sus objetivos. Obtuvo muchas becas de m\\u00e9rito mientras era estudiante. Tiene una Maestr\\u00eda en Ingenier\\u00eda y una Maestr\\u00eda en Administraci\\u00f3n de Empresas junto con una designaci\\u00f3n de Contabilidad. Ha trabajado como ingeniero y ha ense\\u00f1ado a tiempo parcial en las universidades de Concordia y McGill.<\\/p><p>Se retir\\u00f3 alrededor de los 50 a\\u00f1os para perseguir su pasi\\u00f3n. Ha establecido una fundaci\\u00f3n caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundaci\\u00f3n tambi\\u00e9n \\\"Siete principios simples de la vida\\\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahm\\u00e1n, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiraci\\u00f3n alterna de fosas nasales. Despu\\u00e9s de hacer B.Sc con Biolog\\u00eda y Qu\\u00edmica, se convirti\\u00f3 en profesora de biolog\\u00eda en una escuela secundaria en la India. Al ense\\u00f1ar anatom\\u00eda y fisiolog\\u00eda humana y hacer yoga gradualmente, ella entendi\\u00f3 la utilidad y los hechos cient\\u00edficos involucrados detr\\u00e1s del yoga. Emigr\\u00f3 a Estados Unidos en 1994 y luego se cas\\u00f3 y emigr\\u00f3 a Canad\\u00e1. Actualmente trabaja en el laboratorio de la Academia Chambly.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Ella cree que el yoga en la esterilla como los aer\\u00f3bicos tiene efectos terap\\u00e9uticos y fisioterap\\u00e9uticos, pero al mismo tiempo tambi\\u00e9n cree en el yoga m\\u00e1s all\\u00e1 de la esterilla. Si hacemos yoga y tambi\\u00e9n llevamos una vida piadosa y libre de culpa, entonces nuestros \\u00f3rganos funcionar\\u00e1n correctamente. Porque en el momento en que hacemos algo mal, nuestro coraz\\u00f3n late aumenta, as\\u00ed que \\u00bfpor qu\\u00e9 hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas a\\u00f1aden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el s\\u00faper yoga del cerebro pueden hacer una gran contribuci\\u00f3n. Tambi\\u00e9n trata de seguir ocho ramas del yoga tanto como pueda.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-1.jpeg\",\"id\":106,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(770,145,'_elementor_page_assets','a:0:{}'),(772,146,'_elementor_edit_mode','builder'),(773,146,'_elementor_template_type','wp-post'),(774,146,'_elementor_version','3.12.2'),(775,146,'_wp_page_template','default'),(776,146,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(777,146,'_elementor_data','[{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images.jpeg\",\"id\":102,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \\\"persona hecha a s\\u00ed misma\\\". Proven\\u00eda de una familia modesta y trabaj\\u00f3 duro para lograr sus objetivos. Obtuvo muchas becas de m\\u00e9rito mientras era estudiante. Tiene una Maestr\\u00eda en Ingenier\\u00eda y una Maestr\\u00eda en Administraci\\u00f3n de Empresas junto con una designaci\\u00f3n de Contabilidad. Ha trabajado como ingeniero y ha ense\\u00f1ado a tiempo parcial en las universidades de Concordia y McGill.<\\/p><p>Se retir\\u00f3 alrededor de los 50 a\\u00f1os para perseguir su pasi\\u00f3n. Ha establecido una fundaci\\u00f3n caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundaci\\u00f3n tambi\\u00e9n \\\"Siete principios simples de la vida\\\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahm\\u00e1n, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiraci\\u00f3n alterna de fosas nasales. Despu\\u00e9s de hacer B.Sc con Biolog\\u00eda y Qu\\u00edmica, se convirti\\u00f3 en profesora de biolog\\u00eda en una escuela secundaria en la India. Al ense\\u00f1ar anatom\\u00eda y fisiolog\\u00eda humana y hacer yoga gradualmente, ella entendi\\u00f3 la utilidad y los hechos cient\\u00edficos involucrados detr\\u00e1s del yoga. Emigr\\u00f3 a Estados Unidos en 1994 y luego se cas\\u00f3 y emigr\\u00f3 a Canad\\u00e1. Actualmente trabaja en el laboratorio de la Academia Chambly.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Ella cree que el yoga en la esterilla como los aer\\u00f3bicos tiene efectos terap\\u00e9uticos y fisioterap\\u00e9uticos, pero al mismo tiempo tambi\\u00e9n cree en el yoga m\\u00e1s all\\u00e1 de la esterilla. Si hacemos yoga y tambi\\u00e9n llevamos una vida piadosa y libre de culpa, entonces nuestros \\u00f3rganos funcionar\\u00e1n correctamente. Porque en el momento en que hacemos algo mal, nuestro coraz\\u00f3n late aumenta, as\\u00ed que \\u00bfpor qu\\u00e9 hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas a\\u00f1aden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el s\\u00faper yoga del cerebro pueden hacer una gran contribuci\\u00f3n. Tambi\\u00e9n trata de seguir ocho ramas del yoga tanto como pueda.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(778,146,'_elementor_page_assets','a:0:{}'),(784,148,'_elementor_edit_mode','builder'),(785,148,'_elementor_template_type','wp-post'),(786,148,'_elementor_version','3.12.2'),(787,148,'_wp_page_template','default'),(788,148,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(789,148,'_elementor_data','[{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images.jpeg\",\"id\":102,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \\\"persona hecha a s\\u00ed misma\\\". Proven\\u00eda de una familia modesta y trabaj\\u00f3 duro para lograr sus objetivos. Obtuvo muchas becas de m\\u00e9rito mientras era estudiante. Tiene una Maestr\\u00eda en Ingenier\\u00eda y una Maestr\\u00eda en Administraci\\u00f3n de Empresas junto con una designaci\\u00f3n de Contabilidad. Ha trabajado como ingeniero y ha ense\\u00f1ado a tiempo parcial en las universidades de Concordia y McGill.<\\/p><p>Se retir\\u00f3 alrededor de los 50 a\\u00f1os para perseguir su pasi\\u00f3n. Ha establecido una fundaci\\u00f3n caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundaci\\u00f3n tambi\\u00e9n \\\"Siete principios simples de la vida\\\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahm\\u00e1n, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiraci\\u00f3n alterna de fosas nasales. Despu\\u00e9s de hacer B.Sc con Biolog\\u00eda y Qu\\u00edmica, se convirti\\u00f3 en profesora de biolog\\u00eda en una escuela secundaria en la India. Al ense\\u00f1ar anatom\\u00eda y fisiolog\\u00eda humana y hacer yoga gradualmente, ella entendi\\u00f3 la utilidad y los hechos cient\\u00edficos involucrados detr\\u00e1s del yoga. Emigr\\u00f3 a Estados Unidos en 1994 y luego se cas\\u00f3 y emigr\\u00f3 a Canad\\u00e1. Actualmente trabaja en el laboratorio de la Academia Chambly.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Ella cree que el yoga en la esterilla como los aer\\u00f3bicos tiene efectos terap\\u00e9uticos y fisioterap\\u00e9uticos, pero al mismo tiempo tambi\\u00e9n cree en el yoga m\\u00e1s all\\u00e1 de la esterilla. Si hacemos yoga y tambi\\u00e9n llevamos una vida piadosa y libre de culpa, entonces nuestros \\u00f3rganos funcionar\\u00e1n correctamente. Porque en el momento en que hacemos algo mal, nuestro coraz\\u00f3n late aumenta, as\\u00ed que \\u00bfpor qu\\u00e9 hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas a\\u00f1aden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el s\\u00faper yoga del cerebro pueden hacer una gran contribuci\\u00f3n. Tambi\\u00e9n trata de seguir ocho ramas del yoga tanto como pueda.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(782,147,'_wp_attached_file','2023/04/cropped-banner5-1.jpg'),(783,147,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:29:\"2023/04/cropped-banner5-1.jpg\";s:8:\"filesize\";i:46206;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"cropped-banner5-1-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6727;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"cropped-banner5-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5197;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"cropped-banner5-1-768x221.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26704;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(790,148,'_elementor_page_assets','a:0:{}'),(792,149,'_elementor_edit_mode','builder'),(793,149,'_elementor_template_type','wp-post'),(794,149,'_elementor_version','3.12.2'),(795,149,'_wp_page_template','default'),(796,149,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(797,149,'_elementor_data','[{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images.jpeg\",\"id\":102,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \\\"persona hecha a s\\u00ed misma\\\". Proven\\u00eda de una familia modesta y trabaj\\u00f3 duro para lograr sus objetivos. Obtuvo muchas becas de m\\u00e9rito mientras era estudiante. Tiene una Maestr\\u00eda en Ingenier\\u00eda y una Maestr\\u00eda en Administraci\\u00f3n de Empresas junto con una designaci\\u00f3n de Contabilidad. Ha trabajado como ingeniero y ha ense\\u00f1ado a tiempo parcial en las universidades de Concordia y McGill.<\\/p><p>Se retir\\u00f3 alrededor de los 50 a\\u00f1os para perseguir su pasi\\u00f3n. Ha establecido una fundaci\\u00f3n caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundaci\\u00f3n tambi\\u00e9n \\\"Siete principios simples de la vida\\\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahm\\u00e1n, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiraci\\u00f3n alterna de fosas nasales. Despu\\u00e9s de hacer B.Sc con Biolog\\u00eda y Qu\\u00edmica, se convirti\\u00f3 en profesora de biolog\\u00eda en una escuela secundaria en la India. Al ense\\u00f1ar anatom\\u00eda y fisiolog\\u00eda humana y hacer yoga gradualmente, ella entendi\\u00f3 la utilidad y los hechos cient\\u00edficos involucrados detr\\u00e1s del yoga. Emigr\\u00f3 a Estados Unidos en 1994 y luego se cas\\u00f3 y emigr\\u00f3 a Canad\\u00e1. Actualmente trabaja en el laboratorio de la Academia Chambly.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Ella cree que el yoga en la esterilla como los aer\\u00f3bicos tiene efectos terap\\u00e9uticos y fisioterap\\u00e9uticos, pero al mismo tiempo tambi\\u00e9n cree en el yoga m\\u00e1s all\\u00e1 de la esterilla. Si hacemos yoga y tambi\\u00e9n llevamos una vida piadosa y libre de culpa, entonces nuestros \\u00f3rganos funcionar\\u00e1n correctamente. Porque en el momento en que hacemos algo mal, nuestro coraz\\u00f3n late aumenta, as\\u00ed que \\u00bfpor qu\\u00e9 hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas a\\u00f1aden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el s\\u00faper yoga del cerebro pueden hacer una gran contribuci\\u00f3n. Tambi\\u00e9n trata de seguir ocho ramas del yoga tanto como pueda.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(798,149,'_elementor_page_assets','a:0:{}'),(800,150,'_elementor_edit_mode','builder'),(801,150,'_elementor_template_type','wp-post'),(802,150,'_elementor_version','3.12.2'),(803,150,'_wp_page_template','default'),(804,150,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(805,150,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images.jpeg\",\"id\":102,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \\\"persona hecha a s\\u00ed misma\\\". Proven\\u00eda de una familia modesta y trabaj\\u00f3 duro para lograr sus objetivos. Obtuvo muchas becas de m\\u00e9rito mientras era estudiante. Tiene una Maestr\\u00eda en Ingenier\\u00eda y una Maestr\\u00eda en Administraci\\u00f3n de Empresas junto con una designaci\\u00f3n de Contabilidad. Ha trabajado como ingeniero y ha ense\\u00f1ado a tiempo parcial en las universidades de Concordia y McGill.<\\/p><p>Se retir\\u00f3 alrededor de los 50 a\\u00f1os para perseguir su pasi\\u00f3n. Ha establecido una fundaci\\u00f3n caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundaci\\u00f3n tambi\\u00e9n \\\"Siete principios simples de la vida\\\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahm\\u00e1n, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiraci\\u00f3n alterna de fosas nasales. Despu\\u00e9s de hacer B.Sc con Biolog\\u00eda y Qu\\u00edmica, se convirti\\u00f3 en profesora de biolog\\u00eda en una escuela secundaria en la India. Al ense\\u00f1ar anatom\\u00eda y fisiolog\\u00eda humana y hacer yoga gradualmente, ella entendi\\u00f3 la utilidad y los hechos cient\\u00edficos involucrados detr\\u00e1s del yoga. Emigr\\u00f3 a Estados Unidos en 1994 y luego se cas\\u00f3 y emigr\\u00f3 a Canad\\u00e1. Actualmente trabaja en el laboratorio de la Academia Chambly.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Ella cree que el yoga en la esterilla como los aer\\u00f3bicos tiene efectos terap\\u00e9uticos y fisioterap\\u00e9uticos, pero al mismo tiempo tambi\\u00e9n cree en el yoga m\\u00e1s all\\u00e1 de la esterilla. Si hacemos yoga y tambi\\u00e9n llevamos una vida piadosa y libre de culpa, entonces nuestros \\u00f3rganos funcionar\\u00e1n correctamente. Porque en el momento en que hacemos algo mal, nuestro coraz\\u00f3n late aumenta, as\\u00ed que \\u00bfpor qu\\u00e9 hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas a\\u00f1aden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el s\\u00faper yoga del cerebro pueden hacer una gran contribuci\\u00f3n. Tambi\\u00e9n trata de seguir ocho ramas del yoga tanto como pueda.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(806,150,'_elementor_page_assets','a:0:{}'),(841,154,'_elementor_edit_mode','builder'),(842,154,'_elementor_template_type','wp-post'),(843,154,'_elementor_version','3.12.2'),(844,154,'_wp_page_template','default'),(845,154,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(846,154,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images.jpeg\",\"id\":102,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \\\"persona hecha a s\\u00ed misma\\\". Proven\\u00eda de una familia modesta y trabaj\\u00f3 duro para lograr sus objetivos. Obtuvo muchas becas de m\\u00e9rito mientras era estudiante. Tiene una Maestr\\u00eda en Ingenier\\u00eda y una Maestr\\u00eda en Administraci\\u00f3n de Empresas junto con una designaci\\u00f3n de Contabilidad. Ha trabajado como ingeniero y ha ense\\u00f1ado a tiempo parcial en las universidades de Concordia y McGill.<\\/p><p>Se retir\\u00f3 alrededor de los 50 a\\u00f1os para perseguir su pasi\\u00f3n. Ha establecido una fundaci\\u00f3n caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundaci\\u00f3n tambi\\u00e9n \\\"Siete principios simples de la vida\\\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahm\\u00e1n, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiraci\\u00f3n alterna de fosas nasales. Despu\\u00e9s de hacer B.Sc con Biolog\\u00eda y Qu\\u00edmica, se convirti\\u00f3 en profesora de biolog\\u00eda en una escuela secundaria en la India. Al ense\\u00f1ar anatom\\u00eda y fisiolog\\u00eda humana y hacer yoga gradualmente, ella entendi\\u00f3 la utilidad y los hechos cient\\u00edficos involucrados detr\\u00e1s del yoga. Emigr\\u00f3 a Estados Unidos en 1994 y luego se cas\\u00f3 y emigr\\u00f3 a Canad\\u00e1. Actualmente trabaja en el laboratorio de la Academia Chambly.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Ella cree que el yoga en la esterilla como los aer\\u00f3bicos tiene efectos terap\\u00e9uticos y fisioterap\\u00e9uticos, pero al mismo tiempo tambi\\u00e9n cree en el yoga m\\u00e1s all\\u00e1 de la esterilla. Si hacemos yoga y tambi\\u00e9n llevamos una vida piadosa y libre de culpa, entonces nuestros \\u00f3rganos funcionar\\u00e1n correctamente. Porque en el momento en que hacemos algo mal, nuestro coraz\\u00f3n late aumenta, as\\u00ed que \\u00bfpor qu\\u00e9 hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas a\\u00f1aden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el s\\u00faper yoga del cerebro pueden hacer una gran contribuci\\u00f3n. Tambi\\u00e9n trata de seguir ocho ramas del yoga tanto como pueda.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(830,153,'_elementor_template_type','wp-page'),(829,153,'_elementor_edit_mode','builder'),(819,152,'_menu_item_type','post_type'),(820,152,'_menu_item_menu_item_parent','0'),(821,152,'_menu_item_object_id','128'),(822,152,'_menu_item_object','page'),(823,152,'_menu_item_target',''),(824,152,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(825,152,'_menu_item_xfn',''),(826,152,'_menu_item_url',''),(831,153,'_elementor_version','3.12.2'),(832,153,'_wp_page_template','default'),(833,153,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(834,153,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3242cf9\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"1155c00\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"cecc2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"237929a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"de47540\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"1536x1536\",\"width\":{\"unit\":\"%\",\"size\":91,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":133,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"48113ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"035f315\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"340bd1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"8779274\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-5.jpeg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72996c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"454ca25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-1.jpeg\",\"id\":106,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(835,153,'_elementor_page_assets','a:0:{}'),(836,153,'_elementor_controls_usage','a:4:{s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:2:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;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:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:6;s:10:\"image_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:2;s:5:\"space\";i:2;s:6:\"height\";i:1;}}}}}'),(847,154,'_elementor_page_assets','a:0:{}'),(848,155,'_elementor_edit_mode','builder'),(849,155,'_elementor_template_type','wp-post'),(850,155,'_elementor_version','3.12.2'),(851,155,'_wp_page_template','default'),(852,155,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(853,155,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images.jpeg\",\"id\":102,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \\\"persona hecha a s\\u00ed misma\\\". Proven\\u00eda de una familia modesta y trabaj\\u00f3 duro para lograr sus objetivos. Obtuvo muchas becas de m\\u00e9rito mientras era estudiante. Tiene una Maestr\\u00eda en Ingenier\\u00eda y una Maestr\\u00eda en Administraci\\u00f3n de Empresas junto con una designaci\\u00f3n de Contabilidad. Ha trabajado como ingeniero y ha ense\\u00f1ado a tiempo parcial en las universidades de Concordia y McGill.<\\/p><p>Se retir\\u00f3 alrededor de los 50 a\\u00f1os para perseguir su pasi\\u00f3n. Ha establecido una fundaci\\u00f3n caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundaci\\u00f3n tambi\\u00e9n \\\"Siete principios simples de la vida\\\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahm\\u00e1n, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiraci\\u00f3n alterna de fosas nasales. Despu\\u00e9s de hacer B.Sc con Biolog\\u00eda y Qu\\u00edmica, se convirti\\u00f3 en profesora de biolog\\u00eda en una escuela secundaria en la India. Al ense\\u00f1ar anatom\\u00eda y fisiolog\\u00eda humana y hacer yoga gradualmente, ella entendi\\u00f3 la utilidad y los hechos cient\\u00edficos involucrados detr\\u00e1s del yoga. Emigr\\u00f3 a Estados Unidos en 1994 y luego se cas\\u00f3 y emigr\\u00f3 a Canad\\u00e1. Actualmente trabaja en el laboratorio de la Academia Chambly.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Ella cree que el yoga en la esterilla como los aer\\u00f3bicos tiene efectos terap\\u00e9uticos y fisioterap\\u00e9uticos, pero al mismo tiempo tambi\\u00e9n cree en el yoga m\\u00e1s all\\u00e1 de la esterilla. Si hacemos yoga y tambi\\u00e9n llevamos una vida piadosa y libre de culpa, entonces nuestros \\u00f3rganos funcionar\\u00e1n correctamente. Porque en el momento en que hacemos algo mal, nuestro coraz\\u00f3n late aumenta, as\\u00ed que \\u00bfpor qu\\u00e9 hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas a\\u00f1aden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el s\\u00faper yoga del cerebro pueden hacer una gran contribuci\\u00f3n. Tambi\\u00e9n trata de seguir ocho ramas del yoga tanto como pueda.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(854,155,'_elementor_page_assets','a:0:{}'),(855,156,'_elementor_edit_mode','builder'),(856,156,'_elementor_template_type','wp-post'),(857,156,'_elementor_version','3.12.2'),(858,156,'_wp_page_template','default'),(859,156,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(860,156,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images.jpeg\",\"id\":102,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \\\"persona hecha a s\\u00ed misma\\\". Proven\\u00eda de una familia modesta y trabaj\\u00f3 duro para lograr sus objetivos. Obtuvo muchas becas de m\\u00e9rito mientras era estudiante. Tiene una Maestr\\u00eda en Ingenier\\u00eda y una Maestr\\u00eda en Administraci\\u00f3n de Empresas junto con una designaci\\u00f3n de Contabilidad. Ha trabajado como ingeniero y ha ense\\u00f1ado a tiempo parcial en las universidades de Concordia y McGill.<\\/p><p>Se retir\\u00f3 alrededor de los 50 a\\u00f1os para perseguir su pasi\\u00f3n. Ha establecido una fundaci\\u00f3n caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundaci\\u00f3n tambi\\u00e9n \\\"Siete principios simples de la vida\\\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahm\\u00e1n, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiraci\\u00f3n alterna de fosas nasales. Despu\\u00e9s de hacer B.Sc con Biolog\\u00eda y Qu\\u00edmica, se convirti\\u00f3 en profesora de biolog\\u00eda en una escuela secundaria en la India. Al ense\\u00f1ar anatom\\u00eda y fisiolog\\u00eda humana y hacer yoga gradualmente, ella entendi\\u00f3 la utilidad y los hechos cient\\u00edficos involucrados detr\\u00e1s del yoga. Emigr\\u00f3 a Estados Unidos en 1994 y luego se cas\\u00f3 y emigr\\u00f3 a Canad\\u00e1. Actualmente trabaja en el laboratorio de la Academia Chambly.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Ella cree que el yoga en la esterilla como los aer\\u00f3bicos tiene efectos terap\\u00e9uticos y fisioterap\\u00e9uticos, pero al mismo tiempo tambi\\u00e9n cree en el yoga m\\u00e1s all\\u00e1 de la esterilla. Si hacemos yoga y tambi\\u00e9n llevamos una vida piadosa y libre de culpa, entonces nuestros \\u00f3rganos funcionar\\u00e1n correctamente. Porque en el momento en que hacemos algo mal, nuestro coraz\\u00f3n late aumenta, as\\u00ed que \\u00bfpor qu\\u00e9 hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas a\\u00f1aden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el s\\u00faper yoga del cerebro pueden hacer una gran contribuci\\u00f3n. Tambi\\u00e9n trata de seguir ocho ramas del yoga tanto como pueda.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(861,156,'_elementor_page_assets','a:0:{}'),(4266,571,'_elementor_edit_mode','builder'),(4267,571,'_elementor_template_type','wp-post'),(4268,571,'_elementor_version','3.12.2'),(4269,571,'_wp_page_template','default'),(4270,571,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4271,571,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images.jpeg\",\"id\":102,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \\\"persona hecha a s\\u00ed misma\\\". Proven\\u00eda de una familia modesta y trabaj\\u00f3 duro para lograr sus objetivos. Obtuvo muchas becas de m\\u00e9rito mientras era estudiante. Tiene una Maestr\\u00eda en Ingenier\\u00eda y una Maestr\\u00eda en Administraci\\u00f3n de Empresas junto con una designaci\\u00f3n de Contabilidad. Ha trabajado como ingeniero y ha ense\\u00f1ado a tiempo parcial en las universidades de Concordia y McGill.<\\/p><p>Se retir\\u00f3 alrededor de los 50 a\\u00f1os para perseguir su pasi\\u00f3n. Ha establecido una fundaci\\u00f3n caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundaci\\u00f3n tambi\\u00e9n \\\"Siete principios simples de la vida\\\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahm\\u00e1n, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiraci\\u00f3n alterna de fosas nasales. Despu\\u00e9s de hacer B.Sc con Biolog\\u00eda y Qu\\u00edmica, se convirti\\u00f3 en profesora de biolog\\u00eda en una escuela secundaria en la India. Al ense\\u00f1ar anatom\\u00eda y fisiolog\\u00eda humana y hacer yoga gradualmente, ella entendi\\u00f3 la utilidad y los hechos cient\\u00edficos involucrados detr\\u00e1s del yoga. Emigr\\u00f3 a Estados Unidos en 1994 y luego se cas\\u00f3 y emigr\\u00f3 a Canad\\u00e1. Actualmente trabaja en el laboratorio de la Academia Chambly.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Ella cree que el yoga en la esterilla como los aer\\u00f3bicos tiene efectos terap\\u00e9uticos y fisioterap\\u00e9uticos, pero al mismo tiempo tambi\\u00e9n cree en el yoga m\\u00e1s all\\u00e1 de la esterilla. Si hacemos yoga y tambi\\u00e9n llevamos una vida piadosa y libre de culpa, entonces nuestros \\u00f3rganos funcionar\\u00e1n correctamente. Porque en el momento en que hacemos algo mal, nuestro coraz\\u00f3n late aumenta, as\\u00ed que \\u00bfpor qu\\u00e9 hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas a\\u00f1aden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el s\\u00faper yoga del cerebro pueden hacer una gran contribuci\\u00f3n. Tambi\\u00e9n trata de seguir ocho ramas del yoga tanto como pueda.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(906,165,'_menu_item_type','taxonomy'),(4536,605,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4537,605,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"MI ZONA DE CONFORT\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sol\\u00eda tener una zona de confort donde sab\\u00eda que no fallar\\u00eda.<br \\/>Las mismas cuatro paredes y el trabajo ocupado eran realmente m\\u00e1s como la c\\u00e1rcel.<\\/p><p>Anhelaba tanto hacer las cosas que nunca hab\\u00eda hecho antes,<br \\/>pero me qued\\u00e9 dentro de mi zona de confort y camin\\u00e9 por el mismo piso de siempre.<\\/p><p>Dec\\u00eda estar tan ocupado con las cosas dentro de la zona,<br \\/>pero en el fondo anhelaba algo especial propio.<\\/p><p>No pod\\u00eda dejar pasar mi vida simplemente viendo ganar a otros.<br \\/>Contuve la respiraci\\u00f3n; Sal\\u00ed y dej\\u00e9 que comenzara el cambio.<br \\/>Di un paso y con nuevas fuerzas que nunca antes hab\\u00eda sentido,<br \\/>me desped\\u00ed de mi zona de confort y cerr\\u00e9 y cerr\\u00e9 la puerta.<\\/p><p>Si est\\u00e1s en una zona de confort, temeroso de aventurarte,<br \\/>recuerda que todos los ganadores estuvieron en alg\\u00fan momento llenos de dudas.<br \\/>Un paso o dos y la fuerza de voluntad pueden hacer realidad tus sue\\u00f1os.<\\/p><p>Alcanza tu futuro con una sonrisa; \\u00a1El \\u00e9xito est\\u00e1 ah\\u00ed para ti!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-4.jpeg\",\"id\":211,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(901,162,'_wp_page_template','default'),(900,162,'_elementor_version','3.12.2'),(899,162,'_elementor_template_type','wp-page'),(898,162,'_elementor_edit_mode','builder'),(4170,563,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SI TIENES UN SUE\\u00d1O\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Si tienes un sue\\u00f1o<\\/strong><\\/p><p>No esperes a que llegue un d\\u00eda lejano,<br \\/>puede ser demasiado tarde antes de que hayas comenzado.<br \\/>No todos estar\\u00e1n de acuerdo con todo lo que decidas.<\\/p><p>S\\u00e9 fiel a ti mismo ante todo.<br \\/>Lo \\u00fanico importante en la vida es lo que haces<br \\/>con el tiempo que pasas aqu\\u00ed en la tierra.<\\/p><p>No tengas miedo de seguir tus deseos,<br \\/>no son tontos ni ego\\u00edstas.<br \\/>T\\u00f3mate el tiempo y haz lo que te haga sentir vivo.<\\/p><p>Deja tus miedos y remordimientos en el pasado,<br \\/>porque aqu\\u00ed es donde pertenecen.<br \\/>No te nubles hoy con cosas que no se pueden deshacer.<\\/p><p>No tienes m\\u00e1s control sobre el ayer o el ma\\u00f1ana,<br \\/>que sobre la furia de tus pasiones.<br \\/>No calmes estos sue\\u00f1os ni sacies tus deseos.<\\/p><p>Porque si lo haces, tu viaje ha terminado.<br \\/>S\\u00f3lo tienes hoy para comenzar de nuevo y seguir tus sue\\u00f1os.<br \\/>Porque al final todo lo que tenemos son nuestros recuerdos.<\\/p><p>Cuando el crep\\u00fasculo venga a nosotros, que haya, \\u00a1Sin excusas, sin explicaciones,<br \\/>sin arrepentimientos!<\\/p>\",\"align\":\"center\",\"text_color\":\"#0A0A0A\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(897,160,'_wp_page_template','default'),(896,160,'_edit_last','1'),(895,160,'_elementor_version','3.12.2'),(894,160,'_elementor_template_type','wp-page'),(893,160,'_elementor_edit_mode','builder'),(892,160,'_edit_lock','1684871626:1'),(4167,563,'_elementor_version','3.12.2'),(4168,563,'_wp_page_template','default'),(4169,563,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(907,165,'_menu_item_menu_item_parent','0'),(908,165,'_menu_item_object_id','4'),(909,165,'_menu_item_object','category'),(910,165,'_menu_item_target',''),(911,165,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(912,165,'_menu_item_xfn',''),(913,165,'_menu_item_url',''),(915,166,'_elementor_template_type','wp-page'),(916,166,'_elementor_edit_mode','builder'),(917,166,'_edit_lock','1686767169:1'),(918,166,'_elementor_version','3.13.4'),(919,166,'_edit_last','1'),(920,166,'_wp_page_template','default'),(921,166,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(922,166,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong><em>Believe in Yourself,and Remember that Anything Is Possible<\\/em><\\/strong><\\/h4><h4><strong><em><br \\/><\\/em><\\/strong>Believe in what makes you feel good.<br \\/>Believe in what makes you happy.<br \\/>Believe in the dreams you\'ve always wanted to come true,<br \\/>and give them every chance to.<br \\/>Life holds no promises to what will come your way.<br \\/>You must search for your own ideals<br \\/>and work towards reaching them.<br \\/>Life makes no guarantees as to what you\'ll have.<br \\/>It just gives you time to make choices<br \\/>and to take chances<br \\/>and to discover whatever secrets might come your way.<br \\/>If you are willing to take the opportunities you are given<br \\/>and utilize the abilities you have,<br \\/>you will constantly fill your life<br \\/>with special moments and unforgettable times.<br \\/>No one knows the mysteries of life or its ultimate meaning,<br \\/>but for those who are willing<br \\/>to believe in their dreams and in themselves,<br \\/>life is a precious gift in which anything is possible.<br \\/>~ Dena DiIaconi ~<\\/h4>\",\"text_color\":\"#202A36\",\"__globals__\":{\"text_color\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7768,1029,'_elementor_template_type','wp-page'),(7568,1005,'_elementor_template_type','wp-page'),(7569,1005,'_elementor_edit_mode','builder'),(7570,1005,'_elementor_version','3.13.3'),(7571,1005,'_wp_page_template','default'),(7572,1005,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7573,1005,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"EANYTHING IS POSSIBLE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong><em>Believe in Yourself,and Remember that Anything Is Possible<\\/em><\\/strong><\\/h2><p>Believe in what makes you feel good.<br \\/>Believe in what makes you happy.<br \\/>Believe in the dreams you\'ve always wanted to come true,<br \\/>and give them every chance to.<\\/p><p>Life holds no promises to what will come your way.<br \\/>You must search for your own ideals<br \\/>and work towards reaching them.<\\/p><p>Life makes no guarantees as to what you\'ll have.<br \\/>It just gives you time to make choices<br \\/>and to take chances<br \\/>and to discover whatever secrets might come your way.<\\/p><p>If you are willing to take the opportunities you are given<br \\/>and utilize the abilities you have,<br \\/>you will constantly fill your life<br \\/>with special moments and unforgettable times.<\\/p><p>No one knows the mysteries of life or its ultimate meaning,<br \\/>but for those who are willing<br \\/>to believe in their dreams and in themselves,<br \\/>life is a precious gift in which anything is possible.<\\/p><p>~ Dena DiIaconi ~<\\/p>\",\"text_color\":\"#202A36\",\"__globals__\":{\"text_color\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(952,170,'_elementor_template_type','wp-page'),(953,170,'_elementor_edit_mode','builder'),(954,170,'_elementor_version','3.12.2'),(955,170,'_wp_page_template','default'),(956,170,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(957,170,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODO ES POSIBLE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong><em>Cree en ti mismo y recuerda que todo es posible<\\/em><\\/strong><\\/h2><p>Cree en lo que te hace sentir bien.<br \\/>Cree en lo que te hace feliz.<br \\/>Cree en los sue\\u00f1os que siempre has querido que se hagan realidad<br \\/>y dales todas las oportunidades para hacerlo.<\\/p><p>La vida no tiene promesas de lo que vendr\\u00e1 en tu camino.<br \\/>Debes buscar tus propios ideales<br \\/>y trabajar para alcanzarlos.<\\/p><p>La vida no da garant\\u00edas en cuanto a lo que tendr\\u00e1s.<br \\/>Simplemente te da tiempo para tomar decisiones<br \\/>y\\u00a0arriesgarte<br \\/>y descubrir cualquier secreto que pueda surgir en tu camino.<\\/p><p>Si est\\u00e1s dispuesto a aprovechar las oportunidades que se te dan<br \\/>y\\u00a0utilizar las habilidades que tienes,<br \\/>constantemente llenar\\u00e1s tu vida<br \\/>con momentos especiales y momentos inolvidables.<\\/p><p>Nadie conoce los misterios de la vida o su significado \\u00faltimo,\\u00a0pero para aquellos que est\\u00e1n dispuestos<br \\/>a creer en sus sue\\u00f1os y en s\\u00ed mismos,<br \\/><br \\/>la\\u00a0vida es un regalo precioso en el que todo es posible.<\\/p><p>~ Dena DiIaconi ~<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(923,166,'_elementor_page_assets','a:0:{}'),(924,166,'_eael_custom_js',''),(936,168,'_elementor_template_type','wp-page'),(937,168,'_elementor_edit_mode','builder'),(938,168,'_elementor_version','3.12.2'),(939,168,'_wp_page_template','default'),(940,168,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(941,168,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3242cf9\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"1155c00\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"cecc2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"237929a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"de47540\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"1536x1536\",\"width\":{\"unit\":\"%\",\"size\":91,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":133,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"48113ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"035f315\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"340bd1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"8779274\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-5.jpeg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72996c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"454ca25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-1.jpeg\",\"id\":106,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(927,167,'_elementor_template_type','wp-page'),(928,167,'_elementor_edit_mode','builder'),(929,167,'_elementor_version','3.12.2'),(930,167,'_wp_page_template','default'),(931,167,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(932,167,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3242cf9\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"1155c00\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"cecc2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"237929a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"de47540\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"1536x1536\",\"width\":{\"unit\":\"%\",\"size\":91,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":133,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"48113ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"035f315\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"340bd1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"8779274\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-5.jpeg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72996c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"454ca25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-1.jpeg\",\"id\":106,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(933,167,'_elementor_page_assets','a:0:{}'),(934,167,'_elementor_controls_usage','a:4:{s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:2:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;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:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:6;s:10:\"image_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:2;s:5:\"space\";i:2;s:6:\"height\";i:1;}}}}}'),(4166,563,'_elementor_edit_mode','builder'),(942,168,'_elementor_page_assets','a:0:{}'),(944,169,'_elementor_template_type','wp-page'),(945,169,'_elementor_edit_mode','builder'),(946,169,'_elementor_version','3.12.2'),(947,169,'_wp_page_template','default'),(948,169,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(949,169,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3242cf9\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"1155c00\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"cecc2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"237929a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"de47540\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"1536x1536\",\"width\":{\"unit\":\"%\",\"size\":91,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":133,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"48113ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"035f315\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"340bd1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"8779274\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-5.jpeg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72996c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"454ca25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-1.jpeg\",\"id\":106,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(950,169,'_elementor_page_assets','a:0:{}'),(4163,562,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(958,170,'_elementor_page_assets','a:0:{}'),(963,171,'_elementor_template_type','wp-page'),(964,171,'_elementor_edit_mode','builder'),(965,171,'_elementor_version','3.12.2'),(966,171,'_wp_page_template','default'),(967,171,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(968,171,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODO ES POSIBLE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong><em>Cree en ti mismo y recuerda que todo es posible<\\/em><\\/strong><\\/h2><p>Cree en lo que te hace sentir bien.<br \\/>Cree en lo que te hace feliz.<br \\/>Cree en los sue\\u00f1os que siempre has querido que se hagan realidad<br \\/>y dales todas las oportunidades para hacerlo.<\\/p><p>La vida no tiene promesas de lo que vendr\\u00e1 en tu camino.<br \\/>Debes buscar tus propios ideales<br \\/>y trabajar para alcanzarlos.<\\/p><p>La vida no da garant\\u00edas en cuanto a lo que tendr\\u00e1s.<br \\/>Simplemente te da tiempo para tomar decisiones<br \\/>y\\u00a0arriesgarte<br \\/>y descubrir cualquier secreto que pueda surgir en tu camino.<\\/p><p>Si est\\u00e1s dispuesto a aprovechar las oportunidades que se te dan<br \\/>y\\u00a0utilizar las habilidades que tienes,<br \\/>constantemente llenar\\u00e1s tu vida<br \\/>con momentos especiales y momentos inolvidables.<\\/p><p>Nadie conoce los misterios de la vida o su significado \\u00faltimo,\\u00a0pero para aquellos que est\\u00e1n dispuestos<br \\/>a creer en sus sue\\u00f1os y en s\\u00ed mismos,<br \\/><br \\/>la\\u00a0vida es un regalo precioso en el que todo es posible.<\\/p><p>~ Dena DiIaconi ~<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(969,171,'_elementor_page_assets','a:0:{}'),(971,172,'_elementor_template_type','wp-page'),(972,172,'_elementor_edit_mode','builder'),(973,172,'_elementor_version','3.12.2'),(974,172,'_wp_page_template','default'),(975,172,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(976,172,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODO ES POSIBLE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong><em>Cree en ti mismo y recuerda que todo es posible<\\/em><\\/strong><\\/h2><p>Cree en lo que te hace sentir bien.<br \\/>Cree en lo que te hace feliz.<br \\/>Cree en los sue\\u00f1os que siempre has querido que se hagan realidad<br \\/>y dales todas las oportunidades para hacerlo.<\\/p><p>La vida no tiene promesas de lo que vendr\\u00e1 en tu camino.<br \\/>Debes buscar tus propios ideales<br \\/>y trabajar para alcanzarlos.<\\/p><p>La vida no da garant\\u00edas en cuanto a lo que tendr\\u00e1s.<br \\/>Simplemente te da tiempo para tomar decisiones<br \\/>y\\u00a0arriesgarte<br \\/>y descubrir cualquier secreto que pueda surgir en tu camino.<\\/p><p>Si est\\u00e1s dispuesto a aprovechar las oportunidades que se te dan<br \\/>y\\u00a0utilizar las habilidades que tienes,<br \\/>constantemente llenar\\u00e1s tu vida<br \\/>con momentos especiales y momentos inolvidables.<\\/p><p>Nadie conoce los misterios de la vida o su significado \\u00faltimo,\\u00a0pero para aquellos que est\\u00e1n dispuestos<br \\/>a creer en sus sue\\u00f1os y en s\\u00ed mismos,<br \\/><br \\/>la\\u00a0vida es un regalo precioso en el que todo es posible.<\\/p><p>~ Dena DiIaconi ~<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(977,172,'_elementor_page_assets','a:0:{}'),(979,173,'_elementor_template_type','wp-page'),(980,173,'_elementor_edit_mode','builder'),(981,173,'_elementor_version','3.12.2'),(982,173,'_wp_page_template','default'),(983,173,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(984,173,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODO ES POSIBLE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong><em>Cree en ti mismo y recuerda que todo es posible<\\/em><\\/strong><\\/h2><p>Cree en lo que te hace sentir bien.<br \\/>Cree en lo que te hace feliz.<br \\/>Cree en los sue\\u00f1os que siempre has querido que se hagan realidad<br \\/>y dales todas las oportunidades para hacerlo.<\\/p><p>La vida no tiene promesas de lo que vendr\\u00e1 en tu camino.<br \\/>Debes buscar tus propios ideales<br \\/>y trabajar para alcanzarlos.<\\/p><p>La vida no da garant\\u00edas en cuanto a lo que tendr\\u00e1s.<br \\/>Simplemente te da tiempo para tomar decisiones<br \\/>y\\u00a0arriesgarte<br \\/>y descubrir cualquier secreto que pueda surgir en tu camino.<\\/p><p>Si est\\u00e1s dispuesto a aprovechar las oportunidades que se te dan<br \\/>y\\u00a0utilizar las habilidades que tienes,<br \\/>constantemente llenar\\u00e1s tu vida<br \\/>con momentos especiales y momentos inolvidables.<\\/p><p>Nadie conoce los misterios de la vida o su significado \\u00faltimo,\\u00a0pero para aquellos que est\\u00e1n dispuestos<br \\/>a creer en sus sue\\u00f1os y en s\\u00ed mismos,<br \\/><br \\/>la\\u00a0vida es un regalo precioso en el que todo es posible.<\\/p><p>~ Dena DiIaconi ~<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(985,173,'_elementor_page_assets','a:0:{}'),(4366,584,'_elementor_template_type','wp-page'),(4367,584,'_elementor_edit_mode','builder'),(4368,584,'_elementor_version','3.12.2'),(4369,584,'_wp_page_template','default'),(4370,584,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4371,584,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODO ES POSIBLE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong><em>Cree en ti mismo y recuerda que todo es posible<\\/em><\\/strong><\\/h2><p>Cree en lo que te hace sentir bien.<br \\/>Cree en lo que te hace feliz.<br \\/>Cree en los sue\\u00f1os que siempre has querido que se hagan realidad<br \\/>y dales todas las oportunidades para hacerlo.<\\/p><p>La vida no tiene promesas de lo que vendr\\u00e1 en tu camino.<br \\/>Debes buscar tus propios ideales<br \\/>y trabajar para alcanzarlos.<\\/p><p>La vida no da garant\\u00edas en cuanto a lo que tendr\\u00e1s.<br \\/>Simplemente te da tiempo para tomar decisiones<br \\/>y\\u00a0arriesgarte<br \\/>y descubrir cualquier secreto que pueda surgir en tu camino.<\\/p><p>Si est\\u00e1s dispuesto a aprovechar las oportunidades que se te dan<br \\/>y\\u00a0utilizar las habilidades que tienes,<br \\/>constantemente llenar\\u00e1s tu vida<br \\/>con momentos especiales y momentos inolvidables.<\\/p><p>Nadie conoce los misterios de la vida o su significado \\u00faltimo,\\u00a0pero para aquellos que est\\u00e1n dispuestos<br \\/>a creer en sus sue\\u00f1os y en s\\u00ed mismos,<br \\/><br \\/>la\\u00a0vida es un regalo precioso en el que todo es posible.<\\/p><p>~ Dena DiIaconi ~<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(988,174,'_menu_item_type','post_type'),(989,174,'_menu_item_menu_item_parent','165'),(990,174,'_menu_item_object_id','166'),(991,174,'_menu_item_object','page'),(992,174,'_menu_item_target',''),(993,174,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(994,174,'_menu_item_xfn',''),(995,174,'_menu_item_url',''),(998,175,'_elementor_template_type','wp-page'),(999,175,'_elementor_edit_mode','builder'),(1000,175,'_edit_lock','1686682804:1'),(1001,175,'_elementor_version','3.13.4'),(1002,175,'_edit_last','1'),(1003,175,'_wp_page_template','default'),(1004,175,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1005,175,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>You Can Be Whatever<br><\\/strong><strong>You Want To Be!<br><\\/strong>There is inside you<br>all of the potential<br>to be whatever you want to be,<br>all of the energy<br>to do whatever you want to do.<br>Imagine yourself as you would like to be,<br>doing what you want to do,<br>and each day, take one step<br>towards your dream.<br>And though at times it may seem too<br>difficult to continue,<br>hold on to your dream.<br>One morning you will awake to find<br>that you are the person you dreamed of,<br>doing what you wanted to do,<br>simply because you had the courage<br>to believe in your potential<br>and to hold on to your dream<\\/h4>\\n\\n<p><\\/p>\",\"align\":\"center\",\"text_color\":\"#000000EB\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7670,1017,'_elementor_template_type','wp-page'),(7671,1017,'_elementor_edit_mode','builder'),(7618,1011,'_elementor_template_type','wp-page'),(7619,1011,'_elementor_edit_mode','builder'),(7620,1011,'_elementor_version','3.13.3'),(7621,1011,'_wp_page_template','default'),(7622,1011,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7623,1011,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Be Whatever  You Want To Be !\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>You Can Be Whatever<\\/strong><strong><br \\/><\\/strong><strong>You Want To Be!<\\/strong><\\/p><p>There is inside you<br \\/>all of the potential<br \\/>to be whatever you want to be,<br \\/>all of the energy<br \\/>to do whatever you want to do.<\\/p><p>Imagine yourself as you would like to be,<br \\/>doing what you want to do,<br \\/>and each day, take one step<br \\/>towards your dream.<\\/p><p>And though at times it may seem too<br \\/>difficult to continue,<br \\/>hold on to your dream.<\\/p><p>One morning you will awake to find<br \\/>that you are the person you dreamed of,<br \\/>doing what you wanted to do,<br \\/>simply because you had the courage<br \\/>to believe in your potential<br \\/>and to hold on to your dream<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000EB\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1006,175,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1007,175,'_eael_custom_js',''),(1019,177,'_elementor_template_type','wp-page'),(1020,177,'_elementor_edit_mode','builder'),(1021,177,'_elementor_version','3.12.2'),(1022,177,'_wp_page_template','default'),(1023,177,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1024,177,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODO ES POSIBLE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong><em>Cree en ti mismo y recuerda que todo es posible<\\/em><\\/strong><\\/h2><p>Cree en lo que te hace sentir bien.<br \\/>Cree en lo que te hace feliz.<br \\/>Cree en los sue\\u00f1os que siempre has querido que se hagan realidad<br \\/>y dales todas las oportunidades para hacerlo.<\\/p><p>La vida no tiene promesas de lo que vendr\\u00e1 en tu camino.<br \\/>Debes buscar tus propios ideales<br \\/>y trabajar para alcanzarlos.<\\/p><p>La vida no da garant\\u00edas en cuanto a lo que tendr\\u00e1s.<br \\/>Simplemente te da tiempo para tomar decisiones<br \\/>y\\u00a0arriesgarte<br \\/>y descubrir cualquier secreto que pueda surgir en tu camino.<\\/p><p>Si est\\u00e1s dispuesto a aprovechar las oportunidades que se te dan<br \\/>y\\u00a0utilizar las habilidades que tienes,<br \\/>constantemente llenar\\u00e1s tu vida<br \\/>con momentos especiales y momentos inolvidables.<\\/p><p>Nadie conoce los misterios de la vida o su significado \\u00faltimo,\\u00a0pero para aquellos que est\\u00e1n dispuestos<br \\/>a creer en sus sue\\u00f1os y en s\\u00ed mismos,<br \\/><br \\/>la\\u00a0vida es un regalo precioso en el que todo es posible.<\\/p><p>~ Dena DiIaconi ~<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1010,176,'_elementor_template_type','wp-page'),(1011,176,'_elementor_edit_mode','builder'),(1012,176,'_elementor_version','3.12.2'),(1013,176,'_wp_page_template','default'),(1014,176,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1015,176,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODO ES POSIBLE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong><em>Cree en ti mismo y recuerda que todo es posible<\\/em><\\/strong><\\/h2><p>Cree en lo que te hace sentir bien.<br \\/>Cree en lo que te hace feliz.<br \\/>Cree en los sue\\u00f1os que siempre has querido que se hagan realidad<br \\/>y dales todas las oportunidades para hacerlo.<\\/p><p>La vida no tiene promesas de lo que vendr\\u00e1 en tu camino.<br \\/>Debes buscar tus propios ideales<br \\/>y trabajar para alcanzarlos.<\\/p><p>La vida no da garant\\u00edas en cuanto a lo que tendr\\u00e1s.<br \\/>Simplemente te da tiempo para tomar decisiones<br \\/>y\\u00a0arriesgarte<br \\/>y descubrir cualquier secreto que pueda surgir en tu camino.<\\/p><p>Si est\\u00e1s dispuesto a aprovechar las oportunidades que se te dan<br \\/>y\\u00a0utilizar las habilidades que tienes,<br \\/>constantemente llenar\\u00e1s tu vida<br \\/>con momentos especiales y momentos inolvidables.<\\/p><p>Nadie conoce los misterios de la vida o su significado \\u00faltimo,\\u00a0pero para aquellos que est\\u00e1n dispuestos<br \\/>a creer en sus sue\\u00f1os y en s\\u00ed mismos,<br \\/><br \\/>la\\u00a0vida es un regalo precioso en el que todo es posible.<\\/p><p>~ Dena DiIaconi ~<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1016,176,'_elementor_page_assets','a:0:{}'),(1017,176,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}}'),(1025,177,'_elementor_page_assets','a:0:{}'),(1027,178,'_elementor_template_type','wp-page'),(1028,178,'_elementor_edit_mode','builder'),(1029,178,'_elementor_version','3.12.2'),(1030,178,'_wp_page_template','default'),(1031,178,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1032,178,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODO ES POSIBLE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong><em>Cree en ti mismo y recuerda que todo es posible<\\/em><\\/strong><\\/h2><p>Cree en lo que te hace sentir bien.<br \\/>Cree en lo que te hace feliz.<br \\/>Cree en los sue\\u00f1os que siempre has querido que se hagan realidad<br \\/>y dales todas las oportunidades para hacerlo.<\\/p><p>La vida no tiene promesas de lo que vendr\\u00e1 en tu camino.<br \\/>Debes buscar tus propios ideales<br \\/>y trabajar para alcanzarlos.<\\/p><p>La vida no da garant\\u00edas en cuanto a lo que tendr\\u00e1s.<br \\/>Simplemente te da tiempo para tomar decisiones<br \\/>y\\u00a0arriesgarte<br \\/>y descubrir cualquier secreto que pueda surgir en tu camino.<\\/p><p>Si est\\u00e1s dispuesto a aprovechar las oportunidades que se te dan<br \\/>y\\u00a0utilizar las habilidades que tienes,<br \\/>constantemente llenar\\u00e1s tu vida<br \\/>con momentos especiales y momentos inolvidables.<\\/p><p>Nadie conoce los misterios de la vida o su significado \\u00faltimo,\\u00a0pero para aquellos que est\\u00e1n dispuestos<br \\/>a creer en sus sue\\u00f1os y en s\\u00ed mismos,<br \\/><br \\/>la\\u00a0vida es un regalo precioso en el que todo es posible.<\\/p><p>~ Dena DiIaconi ~<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1033,178,'_elementor_page_assets','a:0:{}'),(1035,179,'_elementor_template_type','wp-page'),(1036,179,'_elementor_edit_mode','builder'),(1037,179,'_elementor_version','3.12.2'),(1038,179,'_wp_page_template','default'),(1039,179,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1040,179,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SE LO QUE QUIERAS SER!\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a1Puedes ser\\u00a0<strong>lo que<\\/strong><br \\/><strong>quieras ser!<\\/strong><\\/p><p>Hay dentro de ti<br \\/>todo el potencial<br \\/>para ser lo que\\u00a0quieras ser,<br \\/>toda la energ\\u00eda<br \\/>para hacer lo que quieras hacer.<\\/p><p>Imag\\u00ednate como te gustar\\u00eda ser,\\u00a0haciendo lo que quieres hacer,\\u00a0y cada d\\u00eda,<br \\/><br \\/>da un paso<br \\/>hacia tu sue\\u00f1o.<\\/p><p>Y aunque a veces parezca demasiado<br \\/>dif\\u00edcil continuar,<br \\/>af\\u00e9rrate a tu sue\\u00f1o.<\\/p><p>Una ma\\u00f1ana te despertar\\u00e1s para descubrir<br \\/>que\\u00a0eres la persona con la que so\\u00f1aste,\\u00a0haciendo lo que quer\\u00edas hacer,\\u00a0simplemente porque tuviste el coraje<br \\/>de creer en tu potencial<br \\/>y aferrarte a tu sue\\u00f1o.<\\/p>\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-2.jpeg\",\"id\":111,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1041,179,'_elementor_page_assets','a:0:{}'),(1045,180,'_elementor_template_type','wp-page'),(1046,180,'_elementor_edit_mode','builder'),(1047,180,'_elementor_version','3.12.2'),(1048,180,'_wp_page_template','default'),(1049,180,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1050,180,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SE LO QUE QUIERAS SER!\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a1Puedes ser\\u00a0<strong>lo que<\\/strong><br \\/><strong>quieras ser!<\\/strong><\\/p><p>Hay dentro de ti<br \\/>todo el potencial<br \\/>para ser lo que\\u00a0quieras ser,<br \\/>toda la energ\\u00eda<br \\/>para hacer lo que quieras hacer.<\\/p><p>Imag\\u00ednate como te gustar\\u00eda ser,\\u00a0haciendo lo que quieres hacer,\\u00a0y cada d\\u00eda,<br \\/><br \\/>da un paso<br \\/>hacia tu sue\\u00f1o.<\\/p><p>Y aunque a veces parezca demasiado<br \\/>dif\\u00edcil continuar,<br \\/>af\\u00e9rrate a tu sue\\u00f1o.<\\/p><p>Una ma\\u00f1ana te despertar\\u00e1s para descubrir<br \\/>que\\u00a0eres la persona con la que so\\u00f1aste,\\u00a0haciendo lo que quer\\u00edas hacer,\\u00a0simplemente porque tuviste el coraje<br \\/>de creer en tu potencial<br \\/>y aferrarte a tu sue\\u00f1o.<\\/p>\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-2.jpeg\",\"id\":111,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1051,180,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1053,181,'_elementor_template_type','wp-page'),(1054,181,'_elementor_edit_mode','builder'),(1055,181,'_elementor_version','3.12.2'),(1056,181,'_wp_page_template','default'),(1057,181,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1058,181,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SE LO QUE QUIERAS SER!\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a1Puedes ser\\u00a0<strong>lo que<\\/strong><br \\/><strong>quieras ser!<\\/strong><\\/p><p>Hay dentro de ti<br \\/>todo el potencial<br \\/>para ser lo que\\u00a0quieras ser,<br \\/>toda la energ\\u00eda<br \\/>para hacer lo que quieras hacer.<\\/p><p>Imag\\u00ednate como te gustar\\u00eda ser,\\u00a0haciendo lo que quieres hacer,\\u00a0y cada d\\u00eda,<br \\/><br \\/>da un paso<br \\/>hacia tu sue\\u00f1o.<\\/p><p>Y aunque a veces parezca demasiado<br \\/>dif\\u00edcil continuar,<br \\/>af\\u00e9rrate a tu sue\\u00f1o.<\\/p><p>Una ma\\u00f1ana te despertar\\u00e1s para descubrir<br \\/>que\\u00a0eres la persona con la que so\\u00f1aste,\\u00a0haciendo lo que quer\\u00edas hacer,\\u00a0simplemente porque tuviste el coraje<br \\/>de creer en tu potencial<br \\/>y aferrarte a tu sue\\u00f1o.<\\/p>\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-2.jpeg\",\"id\":111,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1059,181,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4114,557,'_elementor_template_type','wp-page'),(1061,182,'_elementor_template_type','wp-page'),(1062,182,'_elementor_edit_mode','builder'),(1063,182,'_elementor_version','3.12.2'),(1064,182,'_wp_page_template','default'),(1065,182,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1066,182,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SE LO QUE QUIERAS SER!\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a1Puedes ser\\u00a0<strong>lo que<\\/strong><br \\/><strong>quieras ser!<\\/strong><\\/p><p>Hay dentro de ti<br \\/>todo el potencial<br \\/>para ser lo que\\u00a0quieras ser,<br \\/>toda la energ\\u00eda<br \\/>para hacer lo que quieras hacer.<\\/p><p>Imag\\u00ednate como te gustar\\u00eda ser,\\u00a0haciendo lo que quieres hacer,\\u00a0y cada d\\u00eda,<br \\/><br \\/>da un paso<br \\/>hacia tu sue\\u00f1o.<\\/p><p>Y aunque a veces parezca demasiado<br \\/>dif\\u00edcil continuar,<br \\/>af\\u00e9rrate a tu sue\\u00f1o.<\\/p><p>Una ma\\u00f1ana te despertar\\u00e1s para descubrir<br \\/>que\\u00a0eres la persona con la que so\\u00f1aste,\\u00a0haciendo lo que quer\\u00edas hacer,\\u00a0simplemente porque tuviste el coraje<br \\/>de creer en tu potencial<br \\/>y aferrarte a tu sue\\u00f1o.<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1067,182,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4098,555,'_elementor_template_type','wp-page'),(4099,555,'_elementor_edit_mode','builder'),(4100,555,'_elementor_version','3.12.2'),(4101,555,'_wp_page_template','default'),(4102,555,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4103,555,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SE LO QUE QUIERAS SER!\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a1Puedes ser\\u00a0<strong>lo que<\\/strong><br \\/><strong>quieras ser!<\\/strong><\\/p><p>Hay dentro de ti<br \\/>todo el potencial<br \\/>para ser lo que\\u00a0quieras ser,<br \\/>toda la energ\\u00eda<br \\/>para hacer lo que quieras hacer.<\\/p><p>Imag\\u00ednate como te gustar\\u00eda ser,\\u00a0haciendo lo que quieres hacer,\\u00a0y cada d\\u00eda,<br \\/><br \\/>da un paso<br \\/>hacia tu sue\\u00f1o.<\\/p><p>Y aunque a veces parezca demasiado<br \\/>dif\\u00edcil continuar,<br \\/>af\\u00e9rrate a tu sue\\u00f1o.<\\/p><p>Una ma\\u00f1ana te despertar\\u00e1s para descubrir<br \\/>que\\u00a0eres la persona con la que so\\u00f1aste,\\u00a0haciendo lo que quer\\u00edas hacer,\\u00a0simplemente porque tuviste el coraje<br \\/>de creer en tu potencial<br \\/>y aferrarte a tu sue\\u00f1o.<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1071,183,'_elementor_template_type','wp-page'),(1072,183,'_elementor_edit_mode','builder'),(1073,183,'_edit_lock','1686683169:1'),(1074,183,'_elementor_version','3.13.4'),(1075,183,'_edit_last','1'),(1076,183,'_wp_page_template','default'),(1077,183,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1078,183,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><b>If You Have A Dream<br \\/><\\/b>Don\\u2019t wait for some distant day to come,<br \\/>it may be too late before you\\u2019ve even begun.<br \\/>Not everyone will agree with all you decide.<br \\/>Be true to yourself first and foremost.<br \\/>The only important thing in life is what you do<br \\/>with the time you spend here on earth.<br \\/>Don\\u2019t be afraid to follow your desires,<br \\/>they are not silly nor selfish.<br \\/>Take the time and do what makes you feel alive.<br \\/>Leave your fears and regrets in the past,<br \\/>for this is where they belong.<br \\/>Don\\u2019t cloud today with things that can\\u2019t be undone.<br \\/>You have no more control over yesterday or tomorrow,<br \\/>than you do the raging of your passions.<br \\/>Do not quiet these dreams nor quench your desires.<br \\/>For if you do, your journey is ended.<br \\/>You have only today to begin anew and follow your dreams.<br \\/>For in the end all we have are our memories.<br \\/>When the twilight comes to us, let there be,<br \\/>No excuses, no explanations, no regrets!<\\/h4>\",\"align\":\"center\",\"text_color\":\"#0A0A0A\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7818,1035,'_elementor_template_type','wp-page'),(7819,1035,'_elementor_edit_mode','builder'),(7820,1035,'_elementor_version','3.13.3'),(1079,183,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1080,183,'_eael_custom_js',''),(1092,185,'_elementor_template_type','wp-page'),(1093,185,'_elementor_edit_mode','builder'),(1094,185,'_elementor_version','3.12.2'),(1095,185,'_wp_page_template','default'),(1096,185,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1097,185,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SE LO QUE QUIERAS SER!\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a1Puedes ser\\u00a0<strong>lo que<\\/strong><br \\/><strong>quieras ser!<\\/strong><\\/p><p>Hay dentro de ti<br \\/>todo el potencial<br \\/>para ser lo que\\u00a0quieras ser,<br \\/>toda la energ\\u00eda<br \\/>para hacer lo que quieras hacer.<\\/p><p>Imag\\u00ednate como te gustar\\u00eda ser,\\u00a0haciendo lo que quieres hacer,\\u00a0y cada d\\u00eda,<br \\/><br \\/>da un paso<br \\/>hacia tu sue\\u00f1o.<\\/p><p>Y aunque a veces parezca demasiado<br \\/>dif\\u00edcil continuar,<br \\/>af\\u00e9rrate a tu sue\\u00f1o.<\\/p><p>Una ma\\u00f1ana te despertar\\u00e1s para descubrir<br \\/>que\\u00a0eres la persona con la que so\\u00f1aste,\\u00a0haciendo lo que quer\\u00edas hacer,\\u00a0simplemente porque tuviste el coraje<br \\/>de creer en tu potencial<br \\/>y aferrarte a tu sue\\u00f1o.<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1083,184,'_elementor_template_type','wp-page'),(1084,184,'_elementor_edit_mode','builder'),(1085,184,'_elementor_version','3.12.2'),(1086,184,'_wp_page_template','default'),(1087,184,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1088,184,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SE LO QUE QUIERAS SER!\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a1Puedes ser\\u00a0<strong>lo que<\\/strong><br \\/><strong>quieras ser!<\\/strong><\\/p><p>Hay dentro de ti<br \\/>todo el potencial<br \\/>para ser lo que\\u00a0quieras ser,<br \\/>toda la energ\\u00eda<br \\/>para hacer lo que quieras hacer.<\\/p><p>Imag\\u00ednate como te gustar\\u00eda ser,\\u00a0haciendo lo que quieres hacer,\\u00a0y cada d\\u00eda,<br \\/><br \\/>da un paso<br \\/>hacia tu sue\\u00f1o.<\\/p><p>Y aunque a veces parezca demasiado<br \\/>dif\\u00edcil continuar,<br \\/>af\\u00e9rrate a tu sue\\u00f1o.<\\/p><p>Una ma\\u00f1ana te despertar\\u00e1s para descubrir<br \\/>que\\u00a0eres la persona con la que so\\u00f1aste,\\u00a0haciendo lo que quer\\u00edas hacer,\\u00a0simplemente porque tuviste el coraje<br \\/>de creer en tu potencial<br \\/>y aferrarte a tu sue\\u00f1o.<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1089,184,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1090,184,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;}}}}}'),(1098,185,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1100,186,'_elementor_template_type','wp-page'),(1101,186,'_elementor_edit_mode','builder'),(1102,186,'_elementor_version','3.12.2'),(1103,186,'_wp_page_template','default'),(1104,186,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1105,186,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SE LO QUE QUIERAS SER!\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a1Puedes ser\\u00a0<strong>lo que<\\/strong><br \\/><strong>quieras ser!<\\/strong><\\/p><p>Hay dentro de ti<br \\/>todo el potencial<br \\/>para ser lo que\\u00a0quieras ser,<br \\/>toda la energ\\u00eda<br \\/>para hacer lo que quieras hacer.<\\/p><p>Imag\\u00ednate como te gustar\\u00eda ser,\\u00a0haciendo lo que quieres hacer,\\u00a0y cada d\\u00eda,<br \\/><br \\/>da un paso<br \\/>hacia tu sue\\u00f1o.<\\/p><p>Y aunque a veces parezca demasiado<br \\/>dif\\u00edcil continuar,<br \\/>af\\u00e9rrate a tu sue\\u00f1o.<\\/p><p>Una ma\\u00f1ana te despertar\\u00e1s para descubrir<br \\/>que\\u00a0eres la persona con la que so\\u00f1aste,\\u00a0haciendo lo que quer\\u00edas hacer,\\u00a0simplemente porque tuviste el coraje<br \\/>de creer en tu potencial<br \\/>y aferrarte a tu sue\\u00f1o.<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1106,186,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1108,187,'_elementor_template_type','wp-page'),(1109,187,'_elementor_edit_mode','builder'),(1110,187,'_elementor_version','3.12.2'),(1111,187,'_wp_page_template','default'),(1112,187,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1113,187,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SI TIENES UN SUE\\u00d1O\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a1Puedes ser\\u00a0<strong>lo que<\\/strong><br \\/><strong>quieras ser!<\\/strong><\\/p><p>Hay dentro de ti<br \\/>todo el potencial<br \\/>para ser lo que\\u00a0quieras ser,<br \\/>toda la energ\\u00eda<br \\/>para hacer lo que quieras hacer.<\\/p><p>Imag\\u00ednate como te gustar\\u00eda ser,\\u00a0haciendo lo que quieres hacer,\\u00a0y cada d\\u00eda,<br \\/><br \\/>da un paso<br \\/>hacia tu sue\\u00f1o.<\\/p><p>Y aunque a veces parezca demasiado<br \\/>dif\\u00edcil continuar,<br \\/>af\\u00e9rrate a tu sue\\u00f1o.<\\/p><p>Una ma\\u00f1ana te despertar\\u00e1s para descubrir<br \\/>que\\u00a0eres la persona con la que so\\u00f1aste,\\u00a0haciendo lo que quer\\u00edas hacer,\\u00a0simplemente porque tuviste el coraje<br \\/>de creer en tu potencial<br \\/>y aferrarte a tu sue\\u00f1o.<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1114,187,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1117,188,'_elementor_template_type','wp-page'),(1118,188,'_elementor_edit_mode','builder'),(1119,188,'_elementor_version','3.12.2'),(1120,188,'_wp_page_template','default'),(1121,188,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1122,188,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SI TIENES UN SUE\\u00d1O\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a1Puedes ser\\u00a0<strong>lo que<\\/strong><br \\/><strong>quieras ser!<\\/strong><\\/p><p>Hay dentro de ti<br \\/>todo el potencial<br \\/>para ser lo que\\u00a0quieras ser,<br \\/>toda la energ\\u00eda<br \\/>para hacer lo que quieras hacer.<\\/p><p>Imag\\u00ednate como te gustar\\u00eda ser,\\u00a0haciendo lo que quieres hacer,\\u00a0y cada d\\u00eda,<br \\/><br \\/>da un paso<br \\/>hacia tu sue\\u00f1o.<\\/p><p>Y aunque a veces parezca demasiado<br \\/>dif\\u00edcil continuar,<br \\/>af\\u00e9rrate a tu sue\\u00f1o.<\\/p><p>Una ma\\u00f1ana te despertar\\u00e1s para descubrir<br \\/>que\\u00a0eres la persona con la que so\\u00f1aste,\\u00a0haciendo lo que quer\\u00edas hacer,\\u00a0simplemente porque tuviste el coraje<br \\/>de creer en tu potencial<br \\/>y aferrarte a tu sue\\u00f1o.<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1123,188,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1124,189,'_elementor_template_type','wp-page'),(1125,189,'_elementor_edit_mode','builder'),(1126,189,'_elementor_version','3.12.2'),(1127,189,'_wp_page_template','default'),(1128,189,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1129,189,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SI TIENES UN SUE\\u00d1O\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a1Puedes ser\\u00a0<strong>lo que<\\/strong><br \\/><strong>quieras ser!<\\/strong><\\/p><p>Hay dentro de ti<br \\/>todo el potencial<br \\/>para ser lo que\\u00a0quieras ser,<br \\/>toda la energ\\u00eda<br \\/>para hacer lo que quieras hacer.<\\/p><p>Imag\\u00ednate como te gustar\\u00eda ser,\\u00a0haciendo lo que quieres hacer,\\u00a0y cada d\\u00eda,<br \\/><br \\/>da un paso<br \\/>hacia tu sue\\u00f1o.<\\/p><p>Y aunque a veces parezca demasiado<br \\/>dif\\u00edcil continuar,<br \\/>af\\u00e9rrate a tu sue\\u00f1o.<\\/p><p>Una ma\\u00f1ana te despertar\\u00e1s para descubrir<br \\/>que\\u00a0eres la persona con la que so\\u00f1aste,\\u00a0haciendo lo que quer\\u00edas hacer,\\u00a0simplemente porque tuviste el coraje<br \\/>de creer en tu potencial<br \\/>y aferrarte a tu sue\\u00f1o.<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1130,189,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4165,563,'_elementor_template_type','wp-page'),(1131,190,'_elementor_template_type','wp-page'),(1132,190,'_elementor_edit_mode','builder'),(1133,190,'_elementor_version','3.12.2'),(1134,190,'_wp_page_template','default'),(1135,190,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1136,190,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SI TIENES UN SUE\\u00d1O\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Si tienes un sue\\u00f1o<\\/strong><\\/p><p>No esperes a que llegue un d\\u00eda lejano,<br \\/>puede ser demasiado tarde antes de que hayas comenzado.<br \\/>No todos estar\\u00e1n de acuerdo con todo lo que decidas.<\\/p><p>S\\u00e9 fiel a ti mismo ante todo.<br \\/>Lo \\u00fanico importante en la vida es lo que haces<br \\/>con el tiempo que pasas aqu\\u00ed en la tierra.<\\/p><p>No tengas miedo de seguir tus deseos,<br \\/>no son tontos ni ego\\u00edstas.<br \\/>T\\u00f3mate el tiempo y haz lo que te haga sentir vivo.<\\/p><p>Deja tus miedos y remordimientos en el pasado,<br \\/>porque aqu\\u00ed es donde pertenecen.<br \\/>No te nubles hoy con cosas que no se pueden deshacer.<\\/p><p>No tienes m\\u00e1s control sobre el ayer o el ma\\u00f1ana,<br \\/>que sobre la furia de tus pasiones.<br \\/>No calmes estos sue\\u00f1os ni sacies tus deseos.<\\/p><p>Porque si lo haces, tu viaje ha terminado.<br \\/>S\\u00f3lo tienes hoy para comenzar de nuevo y seguir tus sue\\u00f1os.<br \\/>Porque al final todo lo que tenemos son nuestros recuerdos.<\\/p><p>Cuando el crep\\u00fasculo venga a nosotros, que haya, \\u00a1Sin excusas, sin explicaciones,<br \\/>sin arrepentimientos!<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-3.jpeg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1137,190,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4149,561,'_elementor_template_type','wp-page'),(4150,561,'_elementor_edit_mode','builder'),(4151,561,'_elementor_version','3.12.2'),(4152,561,'_wp_page_template','default'),(4153,561,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4154,561,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SI TIENES UN SUE\\u00d1O\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Si tienes un sue\\u00f1o<\\/strong><\\/p><p>No esperes a que llegue un d\\u00eda lejano,<br \\/>puede ser demasiado tarde antes de que hayas comenzado.<br \\/>No todos estar\\u00e1n de acuerdo con todo lo que decidas.<\\/p><p>S\\u00e9 fiel a ti mismo ante todo.<br \\/>Lo \\u00fanico importante en la vida es lo que haces<br \\/>con el tiempo que pasas aqu\\u00ed en la tierra.<\\/p><p>No tengas miedo de seguir tus deseos,<br \\/>no son tontos ni ego\\u00edstas.<br \\/>T\\u00f3mate el tiempo y haz lo que te haga sentir vivo.<\\/p><p>Deja tus miedos y remordimientos en el pasado,<br \\/>porque aqu\\u00ed es donde pertenecen.<br \\/>No te nubles hoy con cosas que no se pueden deshacer.<\\/p><p>No tienes m\\u00e1s control sobre el ayer o el ma\\u00f1ana,<br \\/>que sobre la furia de tus pasiones.<br \\/>No calmes estos sue\\u00f1os ni sacies tus deseos.<\\/p><p>Porque si lo haces, tu viaje ha terminado.<br \\/>S\\u00f3lo tienes hoy para comenzar de nuevo y seguir tus sue\\u00f1os.<br \\/>Porque al final todo lo que tenemos son nuestros recuerdos.<\\/p><p>Cuando el crep\\u00fasculo venga a nosotros, que haya, \\u00a1Sin excusas, sin explicaciones,<br \\/>sin arrepentimientos!<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-3.jpeg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1139,191,'_menu_item_type','post_type'),(1140,191,'_menu_item_menu_item_parent','165'),(1141,191,'_menu_item_object_id','175'),(1142,191,'_menu_item_object','page'),(1143,191,'_menu_item_target',''),(1144,191,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1145,191,'_menu_item_xfn',''),(1146,191,'_menu_item_url',''),(1148,192,'_menu_item_type','post_type'),(1149,192,'_menu_item_menu_item_parent','165'),(1150,192,'_menu_item_object_id','183'),(1151,192,'_menu_item_object','page'),(1152,192,'_menu_item_target',''),(1153,192,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1154,192,'_menu_item_xfn',''),(1155,192,'_menu_item_url',''),(1157,193,'_elementor_template_type','wp-page'),(1158,193,'_elementor_edit_mode','builder'),(1159,193,'_edit_lock','1686683638:1'),(1160,193,'_elementor_version','3.13.4'),(1161,193,'_edit_last','1'),(1162,193,'_wp_page_template','default'),(1163,193,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1164,193,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">In life there are people that will hurt us and cause us pain,<br \\/>but we must learn to forgive and forget and not hold grudges.<br \\/>In life there are mistakes we will make,<br \\/>but we must learn from our wrongs and grow from them.<br \\/>In life there are regrets we will have to live with,<br \\/>but we must learn to leave the past behind and realize it is something we can\'t change.<br \\/>In life there are people we will loose forever and can\'t have back,<br \\/>but we must learn to let go &amp; move on.<br \\/>In life there are going to be obstacles that will cause interference,<br \\/>but we must learn to overcome these challenges and grow stronger.<br \\/>In life there are fears that will hold us back from what we want,<br \\/>but we must learn to fight them with the courage from within.<\\/h4>\",\"align\":\"center\",\"text_color\":\"#121311\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7876,1042,'_elementor_template_type','wp-page'),(7877,1042,'_elementor_edit_mode','builder'),(7878,1042,'_elementor_version','3.13.3'),(7879,1042,'_wp_page_template','default'),(4191,566,'_elementor_template_type','wp-page'),(1190,197,'_elementor_template_type','wp-page'),(1191,197,'_elementor_edit_mode','builder'),(1192,197,'_elementor_version','3.12.2'),(1165,193,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1166,193,'_eael_custom_js',''),(1176,195,'_elementor_template_type','wp-page'),(1177,195,'_elementor_edit_mode','builder'),(1178,195,'_elementor_version','3.12.2'),(1179,195,'_wp_page_template','default'),(1180,195,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1181,195,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SI TIENES UN SUE\\u00d1O\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Si tienes un sue\\u00f1o<\\/strong><\\/p><p>No esperes a que llegue un d\\u00eda lejano,<br \\/>puede ser demasiado tarde antes de que hayas comenzado.<br \\/>No todos estar\\u00e1n de acuerdo con todo lo que decidas.<\\/p><p>S\\u00e9 fiel a ti mismo ante todo.<br \\/>Lo \\u00fanico importante en la vida es lo que haces<br \\/>con el tiempo que pasas aqu\\u00ed en la tierra.<\\/p><p>No tengas miedo de seguir tus deseos,<br \\/>no son tontos ni ego\\u00edstas.<br \\/>T\\u00f3mate el tiempo y haz lo que te haga sentir vivo.<\\/p><p>Deja tus miedos y remordimientos en el pasado,<br \\/>porque aqu\\u00ed es donde pertenecen.<br \\/>No te nubles hoy con cosas que no se pueden deshacer.<\\/p><p>No tienes m\\u00e1s control sobre el ayer o el ma\\u00f1ana,<br \\/>que sobre la furia de tus pasiones.<br \\/>No calmes estos sue\\u00f1os ni sacies tus deseos.<\\/p><p>Porque si lo haces, tu viaje ha terminado.<br \\/>S\\u00f3lo tienes hoy para comenzar de nuevo y seguir tus sue\\u00f1os.<br \\/>Porque al final todo lo que tenemos son nuestros recuerdos.<\\/p><p>Cuando el crep\\u00fasculo venga a nosotros, que haya, \\u00a1Sin excusas, sin explicaciones,<br \\/>sin arrepentimientos!<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-3.jpeg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1168,194,'_elementor_template_type','wp-page'),(1169,194,'_elementor_edit_mode','builder'),(1170,194,'_elementor_version','3.12.2'),(1171,194,'_wp_page_template','default'),(1172,194,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1173,194,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SI TIENES UN SUE\\u00d1O\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Si tienes un sue\\u00f1o<\\/strong><\\/p><p>No esperes a que llegue un d\\u00eda lejano,<br \\/>puede ser demasiado tarde antes de que hayas comenzado.<br \\/>No todos estar\\u00e1n de acuerdo con todo lo que decidas.<\\/p><p>S\\u00e9 fiel a ti mismo ante todo.<br \\/>Lo \\u00fanico importante en la vida es lo que haces<br \\/>con el tiempo que pasas aqu\\u00ed en la tierra.<\\/p><p>No tengas miedo de seguir tus deseos,<br \\/>no son tontos ni ego\\u00edstas.<br \\/>T\\u00f3mate el tiempo y haz lo que te haga sentir vivo.<\\/p><p>Deja tus miedos y remordimientos en el pasado,<br \\/>porque aqu\\u00ed es donde pertenecen.<br \\/>No te nubles hoy con cosas que no se pueden deshacer.<\\/p><p>No tienes m\\u00e1s control sobre el ayer o el ma\\u00f1ana,<br \\/>que sobre la furia de tus pasiones.<br \\/>No calmes estos sue\\u00f1os ni sacies tus deseos.<\\/p><p>Porque si lo haces, tu viaje ha terminado.<br \\/>S\\u00f3lo tienes hoy para comenzar de nuevo y seguir tus sue\\u00f1os.<br \\/>Porque al final todo lo que tenemos son nuestros recuerdos.<\\/p><p>Cuando el crep\\u00fasculo venga a nosotros, que haya, \\u00a1Sin excusas, sin explicaciones,<br \\/>sin arrepentimientos!<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-3.jpeg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1174,194,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1175,194,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;}}}}}'),(1182,195,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1183,196,'_elementor_template_type','wp-page'),(1184,196,'_elementor_edit_mode','builder'),(1185,196,'_elementor_version','3.12.2'),(1186,196,'_wp_page_template','default'),(1187,196,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1188,196,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SI TIENES UN SUE\\u00d1O\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Si tienes un sue\\u00f1o<\\/strong><\\/p><p>No esperes a que llegue un d\\u00eda lejano,<br \\/>puede ser demasiado tarde antes de que hayas comenzado.<br \\/>No todos estar\\u00e1n de acuerdo con todo lo que decidas.<\\/p><p>S\\u00e9 fiel a ti mismo ante todo.<br \\/>Lo \\u00fanico importante en la vida es lo que haces<br \\/>con el tiempo que pasas aqu\\u00ed en la tierra.<\\/p><p>No tengas miedo de seguir tus deseos,<br \\/>no son tontos ni ego\\u00edstas.<br \\/>T\\u00f3mate el tiempo y haz lo que te haga sentir vivo.<\\/p><p>Deja tus miedos y remordimientos en el pasado,<br \\/>porque aqu\\u00ed es donde pertenecen.<br \\/>No te nubles hoy con cosas que no se pueden deshacer.<\\/p><p>No tienes m\\u00e1s control sobre el ayer o el ma\\u00f1ana,<br \\/>que sobre la furia de tus pasiones.<br \\/>No calmes estos sue\\u00f1os ni sacies tus deseos.<\\/p><p>Porque si lo haces, tu viaje ha terminado.<br \\/>S\\u00f3lo tienes hoy para comenzar de nuevo y seguir tus sue\\u00f1os.<br \\/>Porque al final todo lo que tenemos son nuestros recuerdos.<\\/p><p>Cuando el crep\\u00fasculo venga a nosotros, que haya, \\u00a1Sin excusas, sin explicaciones,<br \\/>sin arrepentimientos!<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-3.jpeg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1189,196,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1193,197,'_wp_page_template','default'),(1194,197,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1195,197,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ES NUESTRA VIDA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>En la vida hay personas que nos har\\u00e1n da\\u00f1o y nos causar\\u00e1n dolor,<\\/p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.<\\/p><p>En la vida hay errores que cometeremos,<br \\/>pero debemos aprender de nuestros errores y crecer a partir de ellos.<\\/p><p>En la vida hay remordimientos con los que tendremos que vivir,<br \\/>pero debemos aprender a dejar atr\\u00e1s el pasado y darnos cuenta de que es algo que no podemos cambiar.<\\/p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br \\/>pero debemos aprender a dejar ir y seguir adelante.<\\/p><p>En la vida habr\\u00e1 obst\\u00e1culos que causar\\u00e1n interferencia,<br \\/>pero debemos aprender a superar estos desaf\\u00edos y fortalecernos.<\\/p><p>En la vida hay miedos que nos frenar\\u00e1n de lo que queremos,<br \\/>pero debemos aprender a combatirlos con el coraje de dentro.<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-3.jpeg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1196,197,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1199,198,'_elementor_template_type','wp-page'),(1200,198,'_elementor_edit_mode','builder'),(1201,198,'_elementor_version','3.12.2'),(1202,198,'_wp_page_template','default'),(1203,198,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1204,198,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ES NUESTRA VIDA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>En la vida hay personas que nos har\\u00e1n da\\u00f1o y nos causar\\u00e1n dolor,<\\/p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.<\\/p><p>En la vida hay errores que cometeremos,<br \\/>pero debemos aprender de nuestros errores y crecer a partir de ellos.<\\/p><p>En la vida hay remordimientos con los que tendremos que vivir,<br \\/>pero debemos aprender a dejar atr\\u00e1s el pasado y darnos cuenta de que es algo que no podemos cambiar.<\\/p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br \\/>pero debemos aprender a dejar ir y seguir adelante.<\\/p><p>En la vida habr\\u00e1 obst\\u00e1culos que causar\\u00e1n interferencia,<br \\/>pero debemos aprender a superar estos desaf\\u00edos y fortalecernos.<\\/p><p>En la vida hay miedos que nos frenar\\u00e1n de lo que queremos,<br \\/>pero debemos aprender a combatirlos con el coraje de dentro.<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-3.jpeg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1205,198,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1207,199,'_elementor_template_type','wp-page'),(1208,199,'_elementor_edit_mode','builder'),(1209,199,'_elementor_version','3.12.2'),(1210,199,'_wp_page_template','default'),(1211,199,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1212,199,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ES NUESTRA VIDA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>En la vida hay personas que nos har\\u00e1n da\\u00f1o y nos causar\\u00e1n dolor,<\\/p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.<\\/p><p>En la vida hay errores que cometeremos,<br \\/>pero debemos aprender de nuestros errores y crecer a partir de ellos.<\\/p><p>En la vida hay remordimientos con los que tendremos que vivir,<br \\/>pero debemos aprender a dejar atr\\u00e1s el pasado y darnos cuenta de que es algo que no podemos cambiar.<\\/p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br \\/>pero debemos aprender a dejar ir y seguir adelante.<\\/p><p>En la vida habr\\u00e1 obst\\u00e1culos que causar\\u00e1n interferencia,<br \\/>pero debemos aprender a superar estos desaf\\u00edos y fortalecernos.<\\/p><p>En la vida hay miedos que nos frenar\\u00e1n de lo que queremos,<br \\/>pero debemos aprender a combatirlos con el coraje de dentro.<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-3.jpeg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1213,199,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4162,562,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SI TIENES UN SUE\\u00d1O\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Si tienes un sue\\u00f1o<\\/strong><\\/p><p>No esperes a que llegue un d\\u00eda lejano,<br \\/>puede ser demasiado tarde antes de que hayas comenzado.<br \\/>No todos estar\\u00e1n de acuerdo con todo lo que decidas.<\\/p><p>S\\u00e9 fiel a ti mismo ante todo.<br \\/>Lo \\u00fanico importante en la vida es lo que haces<br \\/>con el tiempo que pasas aqu\\u00ed en la tierra.<\\/p><p>No tengas miedo de seguir tus deseos,<br \\/>no son tontos ni ego\\u00edstas.<br \\/>T\\u00f3mate el tiempo y haz lo que te haga sentir vivo.<\\/p><p>Deja tus miedos y remordimientos en el pasado,<br \\/>porque aqu\\u00ed es donde pertenecen.<br \\/>No te nubles hoy con cosas que no se pueden deshacer.<\\/p><p>No tienes m\\u00e1s control sobre el ayer o el ma\\u00f1ana,<br \\/>que sobre la furia de tus pasiones.<br \\/>No calmes estos sue\\u00f1os ni sacies tus deseos.<\\/p><p>Porque si lo haces, tu viaje ha terminado.<br \\/>S\\u00f3lo tienes hoy para comenzar de nuevo y seguir tus sue\\u00f1os.<br \\/>Porque al final todo lo que tenemos son nuestros recuerdos.<\\/p><p>Cuando el crep\\u00fasculo venga a nosotros, que haya, \\u00a1Sin excusas, sin explicaciones,<br \\/>sin arrepentimientos!<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-3.jpeg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1215,200,'_elementor_template_type','wp-page'),(1216,200,'_elementor_edit_mode','builder'),(1217,200,'_elementor_version','3.12.2'),(1218,200,'_wp_page_template','default'),(1219,200,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1220,200,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ES NUESTRA VIDA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>En la vida hay personas que nos har\\u00e1n da\\u00f1o y nos causar\\u00e1n dolor,<\\/p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.<\\/p><p>En la vida hay errores que cometeremos,<br \\/>pero debemos aprender de nuestros errores y crecer a partir de ellos.<\\/p><p>En la vida hay remordimientos con los que tendremos que vivir,<br \\/>pero debemos aprender a dejar atr\\u00e1s el pasado y darnos cuenta de que es algo que no podemos cambiar.<\\/p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br \\/>pero debemos aprender a dejar ir y seguir adelante.<\\/p><p>En la vida habr\\u00e1 obst\\u00e1culos que causar\\u00e1n interferencia,<br \\/>pero debemos aprender a superar estos desaf\\u00edos y fortalecernos.<\\/p><p>En la vida hay miedos que nos frenar\\u00e1n de lo que queremos,<br \\/>pero debemos aprender a combatirlos con el coraje de dentro.<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\",\"id\":71,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1221,200,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4160,562,'_wp_page_template','default'),(4161,562,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4175,564,'_elementor_template_type','wp-page'),(4176,564,'_elementor_edit_mode','builder'),(4177,564,'_elementor_version','3.12.2'),(4178,564,'_wp_page_template','default'),(4179,564,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4180,564,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ES NUESTRA VIDA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>En la vida hay personas que nos har\\u00e1n da\\u00f1o y nos causar\\u00e1n dolor,<\\/p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.<\\/p><p>En la vida hay errores que cometeremos,<br \\/>pero debemos aprender de nuestros errores y crecer a partir de ellos.<\\/p><p>En la vida hay remordimientos con los que tendremos que vivir,<br \\/>pero debemos aprender a dejar atr\\u00e1s el pasado y darnos cuenta de que es algo que no podemos cambiar.<\\/p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br \\/>pero debemos aprender a dejar ir y seguir adelante.<\\/p><p>En la vida habr\\u00e1 obst\\u00e1culos que causar\\u00e1n interferencia,<br \\/>pero debemos aprender a superar estos desaf\\u00edos y fortalecernos.<\\/p><p>En la vida hay miedos que nos frenar\\u00e1n de lo que queremos,<br \\/>pero debemos aprender a combatirlos con el coraje de dentro.<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\",\"id\":71,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1224,201,'_menu_item_type','post_type'),(1225,201,'_menu_item_menu_item_parent','165'),(1226,201,'_menu_item_object_id','193'),(1227,201,'_menu_item_object','page'),(1228,201,'_menu_item_target',''),(1229,201,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1230,201,'_menu_item_xfn',''),(1231,201,'_menu_item_url',''),(1233,202,'_elementor_template_type','wp-page'),(1234,202,'_elementor_edit_mode','builder'),(1235,202,'_edit_lock','1686684202:1'),(1236,202,'_elementor_version','3.13.4'),(1237,202,'_edit_last','1'),(1238,202,'_wp_page_template','default'),(1239,202,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1240,202,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>One song can spark a moment,<\\/h4>\\n<h4>One tree can start a forest,<br>One bird can herald spring.<\\/h4><h4><br>One smile begins a friendship,<br>One handclasp lifts a soul.<\\/h4><h4><br>One star can guide a ship at sea,<br>One vote can change a nation,<br>One sunbeam lights a room<br>One candle wipes out darkness,<br>One laugh will conquer gloom.<\\/h4><h4><br>One step must start each journey.<br>One word must start each prayer.<br>One hope will raise our spirits,<br>One touch can show you care.<\\/h4><h4><br>One voice can speak with wisdom,<br>One heart can know what\'s true,<br>One life can make a difference,<br>You see, it\'s up to you!<\\/h4>\",\"align\":\"center\",\"text_color\":\"#141614\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7901,1045,'_elementor_template_type','wp-page'),(7902,1045,'_elementor_edit_mode','builder'),(4516,603,'_elementor_template_type','wp-page'),(4218,569,'_elementor_template_type','wp-page'),(1266,206,'_elementor_template_type','wp-page'),(1241,202,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1242,202,'_eael_custom_js',''),(1252,204,'_elementor_template_type','wp-page'),(1253,204,'_elementor_edit_mode','builder'),(1254,204,'_elementor_version','3.12.2'),(1255,204,'_wp_page_template','default'),(1256,204,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1257,204,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ES NUESTRA VIDA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>En la vida hay personas que nos har\\u00e1n da\\u00f1o y nos causar\\u00e1n dolor,<\\/p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.<\\/p><p>En la vida hay errores que cometeremos,<br \\/>pero debemos aprender de nuestros errores y crecer a partir de ellos.<\\/p><p>En la vida hay remordimientos con los que tendremos que vivir,<br \\/>pero debemos aprender a dejar atr\\u00e1s el pasado y darnos cuenta de que es algo que no podemos cambiar.<\\/p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br \\/>pero debemos aprender a dejar ir y seguir adelante.<\\/p><p>En la vida habr\\u00e1 obst\\u00e1culos que causar\\u00e1n interferencia,<br \\/>pero debemos aprender a superar estos desaf\\u00edos y fortalecernos.<\\/p><p>En la vida hay miedos que nos frenar\\u00e1n de lo que queremos,<br \\/>pero debemos aprender a combatirlos con el coraje de dentro.<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\",\"id\":71,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1244,203,'_elementor_template_type','wp-page'),(1245,203,'_elementor_edit_mode','builder'),(1246,203,'_elementor_version','3.12.2'),(1247,203,'_wp_page_template','default'),(1248,203,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1249,203,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ES NUESTRA VIDA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>En la vida hay personas que nos har\\u00e1n da\\u00f1o y nos causar\\u00e1n dolor,<\\/p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.<\\/p><p>En la vida hay errores que cometeremos,<br \\/>pero debemos aprender de nuestros errores y crecer a partir de ellos.<\\/p><p>En la vida hay remordimientos con los que tendremos que vivir,<br \\/>pero debemos aprender a dejar atr\\u00e1s el pasado y darnos cuenta de que es algo que no podemos cambiar.<\\/p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br \\/>pero debemos aprender a dejar ir y seguir adelante.<\\/p><p>En la vida habr\\u00e1 obst\\u00e1culos que causar\\u00e1n interferencia,<br \\/>pero debemos aprender a superar estos desaf\\u00edos y fortalecernos.<\\/p><p>En la vida hay miedos que nos frenar\\u00e1n de lo que queremos,<br \\/>pero debemos aprender a combatirlos con el coraje de dentro.<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\",\"id\":71,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1250,203,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1251,203,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:9:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(1258,204,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1259,205,'_elementor_template_type','wp-page'),(1260,205,'_elementor_edit_mode','builder'),(1261,205,'_elementor_version','3.12.2'),(1262,205,'_wp_page_template','default'),(1263,205,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1264,205,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ES NUESTRA VIDA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>En la vida hay personas que nos har\\u00e1n da\\u00f1o y nos causar\\u00e1n dolor,<\\/p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.<\\/p><p>En la vida hay errores que cometeremos,<br \\/>pero debemos aprender de nuestros errores y crecer a partir de ellos.<\\/p><p>En la vida hay remordimientos con los que tendremos que vivir,<br \\/>pero debemos aprender a dejar atr\\u00e1s el pasado y darnos cuenta de que es algo que no podemos cambiar.<\\/p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br \\/>pero debemos aprender a dejar ir y seguir adelante.<\\/p><p>En la vida habr\\u00e1 obst\\u00e1culos que causar\\u00e1n interferencia,<br \\/>pero debemos aprender a superar estos desaf\\u00edos y fortalecernos.<\\/p><p>En la vida hay miedos que nos frenar\\u00e1n de lo que queremos,<br \\/>pero debemos aprender a combatirlos con el coraje de dentro.<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\",\"id\":71,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1265,205,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1267,206,'_elementor_edit_mode','builder'),(1268,206,'_elementor_version','3.12.2'),(1269,206,'_wp_page_template','default'),(1270,206,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1271,206,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOLO UNA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Una canci\\u00f3n puede provocar un momento, un \\u00e1rbol puede comenzar un bosque,<br \\/><br \\/>un p\\u00e1jaro puede anunciar la primavera.<\\/p><p>Una sonrisa comienza una amistad,<br \\/>un apret\\u00f3n de manos levanta un alma.<br \\/>Una estrella puede guiar un barco en el mar, Un voto puede cambiar una naci\\u00f3n, Un rayo de sol ilumina una habitaci\\u00f3n<br \\/>Una vela borra la oscuridad,<br \\/><br \\/><br \\/>Una risa conquistar\\u00e1 la tristeza.<\\/p><p>Un paso debe comenzar cada viaje.<br \\/>Una palabra debe comenzar cada oraci\\u00f3n.<br \\/>Una esperanza elevar\\u00e1 nuestro esp\\u00edritu,<br \\/>un toque puede mostrarte que te importa.<\\/p><p>Una voz puede hablar con sabidur\\u00eda, Un coraz\\u00f3n puede saber lo que es verdad,<\\/p><p>Una vida puede marcar la diferencia, ya ves,<br \\/>\\u00a1depende de ti!<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\",\"id\":71,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1272,206,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4202,567,'_elementor_template_type','wp-page'),(4203,567,'_elementor_edit_mode','builder'),(4204,567,'_elementor_version','3.12.2'),(4205,567,'_wp_page_template','default'),(4206,567,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4207,567,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOLO UNA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Una canci\\u00f3n puede provocar un momento, un \\u00e1rbol puede comenzar un bosque,<br \\/><br \\/>un p\\u00e1jaro puede anunciar la primavera.<\\/p><p>Una sonrisa comienza una amistad,<br \\/>un apret\\u00f3n de manos levanta un alma.<br \\/>Una estrella puede guiar un barco en el mar, Un voto puede cambiar una naci\\u00f3n, Un rayo de sol ilumina una habitaci\\u00f3n<br \\/>Una vela borra la oscuridad,<br \\/><br \\/><br \\/>Una risa conquistar\\u00e1 la tristeza.<\\/p><p>Un paso debe comenzar cada viaje.<br \\/>Una palabra debe comenzar cada oraci\\u00f3n.<br \\/>Una esperanza elevar\\u00e1 nuestro esp\\u00edritu,<br \\/>un toque puede mostrarte que te importa.<\\/p><p>Una voz puede hablar con sabidur\\u00eda, Un coraz\\u00f3n puede saber lo que es verdad,<\\/p><p>Una vida puede marcar la diferencia, ya ves,<br \\/>\\u00a1depende de ti!<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\",\"id\":71,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1274,207,'_menu_item_type','post_type'),(1275,207,'_menu_item_menu_item_parent','165'),(1276,207,'_menu_item_object_id','202'),(1277,207,'_menu_item_object','page'),(1278,207,'_menu_item_target',''),(1279,207,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1280,207,'_menu_item_xfn',''),(1281,207,'_menu_item_url',''),(1283,208,'_elementor_template_type','wp-page'),(1284,208,'_elementor_edit_mode','builder'),(1285,208,'_edit_lock','1686767356:1'),(1286,208,'_elementor_version','3.13.4'),(1287,208,'_edit_last','1'),(1288,208,'_wp_page_template','default'),(1289,208,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1290,208,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">I used to have a comfort zone where I knew I wouldn\'t fail.<br \\/>The same four walls and busywork were really more like jail.<\\/p><p align=\\\"center\\\">I longed so much to do the things I\'d never done before,<br \\/>But stayed inside my comfort zone and paced the same old floor.<\\/p><p align=\\\"center\\\">I claimed to be so busy with the things inside the zone,<br \\/>But deep inside I longed for something special of my own.<\\/p><p align=\\\"center\\\">I couldn\'t let my life go by just watching others win.<br \\/>I held my breath; I stepped outside and let the change begin.<br \\/>I took a step and with new strength I\'d never felt before,<br \\/>I kissed my comfort zone goodbye and closed and locked the door.<\\/p><p align=\\\"center\\\">If you\'re in a comfort zone, afraid to venture out,<br \\/>Remember that all winners were at one time filled with doubt.<br \\/>A step or two and will power can make your dreams come true.<\\/p><p align=\\\"center\\\">Reach for your future with a smile; success is there for you!<\\/p>\",\"align\":\"center\",\"text_color\":\"#080808\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1291,208,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1292,208,'_eael_custom_js',''),(1314,212,'_elementor_template_type','wp-page'),(1315,212,'_elementor_edit_mode','builder'),(1316,212,'_elementor_version','3.12.2'),(1317,212,'_wp_page_template','default'),(1318,212,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1319,212,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOLO UNA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Una canci\\u00f3n puede provocar un momento, un \\u00e1rbol puede comenzar un bosque,<br \\/><br \\/>un p\\u00e1jaro puede anunciar la primavera.<\\/p><p>Una sonrisa comienza una amistad,<br \\/>un apret\\u00f3n de manos levanta un alma.<br \\/>Una estrella puede guiar un barco en el mar, Un voto puede cambiar una naci\\u00f3n, Un rayo de sol ilumina una habitaci\\u00f3n<br \\/>Una vela borra la oscuridad,<br \\/><br \\/><br \\/>Una risa conquistar\\u00e1 la tristeza.<\\/p><p>Un paso debe comenzar cada viaje.<br \\/>Una palabra debe comenzar cada oraci\\u00f3n.<br \\/>Una esperanza elevar\\u00e1 nuestro esp\\u00edritu,<br \\/>un toque puede mostrarte que te importa.<\\/p><p>Una voz puede hablar con sabidur\\u00eda, Un coraz\\u00f3n puede saber lo que es verdad,<\\/p><p>Una vida puede marcar la diferencia, ya ves,<br \\/>\\u00a1depende de ti!<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\",\"id\":71,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1294,209,'_elementor_template_type','wp-page'),(1295,209,'_elementor_edit_mode','builder'),(1296,209,'_elementor_version','3.12.2'),(1297,209,'_wp_page_template','default'),(1298,209,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1299,209,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOLO UNA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Una canci\\u00f3n puede provocar un momento, un \\u00e1rbol puede comenzar un bosque,<br \\/><br \\/>un p\\u00e1jaro puede anunciar la primavera.<\\/p><p>Una sonrisa comienza una amistad,<br \\/>un apret\\u00f3n de manos levanta un alma.<br \\/>Una estrella puede guiar un barco en el mar, Un voto puede cambiar una naci\\u00f3n, Un rayo de sol ilumina una habitaci\\u00f3n<br \\/>Una vela borra la oscuridad,<br \\/><br \\/><br \\/>Una risa conquistar\\u00e1 la tristeza.<\\/p><p>Un paso debe comenzar cada viaje.<br \\/>Una palabra debe comenzar cada oraci\\u00f3n.<br \\/>Una esperanza elevar\\u00e1 nuestro esp\\u00edritu,<br \\/>un toque puede mostrarte que te importa.<\\/p><p>Una voz puede hablar con sabidur\\u00eda, Un coraz\\u00f3n puede saber lo que es verdad,<\\/p><p>Una vida puede marcar la diferencia, ya ves,<br \\/>\\u00a1depende de ti!<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\",\"id\":71,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1300,209,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1301,209,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:9:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(1312,211,'_wp_attached_file','2023/04/descarga-4.jpeg'),(1313,211,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:275;s:6:\"height\";i:183;s:4:\"file\";s:23:\"2023/04/descarga-4.jpeg\";s:8:\"filesize\";i:8551;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"descarga-4-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6464;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1334,214,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1330,214,'_elementor_version','3.12.2'),(1331,214,'_wp_page_template','default'),(1332,214,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1333,214,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"MI ZONA DE CONFORT\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sol\\u00eda tener una zona de confort donde sab\\u00eda que no fallar\\u00eda.<br \\/>Las mismas cuatro paredes y el trabajo ocupado eran realmente m\\u00e1s como la c\\u00e1rcel.<\\/p><p>Anhelaba tanto hacer las cosas que nunca hab\\u00eda hecho antes,<br \\/>pero me qued\\u00e9 dentro de mi zona de confort y camin\\u00e9 por el mismo piso de siempre.<\\/p><p>Dec\\u00eda estar tan ocupado con las cosas dentro de la zona,<br \\/>pero en el fondo anhelaba algo especial propio.<\\/p><p>No pod\\u00eda dejar pasar mi vida simplemente viendo ganar a otros.<br \\/>Contuve la respiraci\\u00f3n; Sal\\u00ed y dej\\u00e9 que comenzara el cambio.<br \\/>Di un paso y con nuevas fuerzas que nunca antes hab\\u00eda sentido,<br \\/>me desped\\u00ed de mi zona de confort y cerr\\u00e9 y cerr\\u00e9 la puerta.<\\/p><p>Si est\\u00e1s en una zona de confort, temeroso de aventurarte,<br \\/>recuerda que todos los ganadores estuvieron en alg\\u00fan momento llenos de dudas.<br \\/>Un paso o dos y la fuerza de voluntad pueden hacer realidad tus sue\\u00f1os.<\\/p><p>Alcanza tu futuro con una sonrisa; \\u00a1El \\u00e9xito est\\u00e1 ah\\u00ed para ti!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-4.jpeg\",\"id\":211,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4546,607,'_elementor_template_type','wp-page'),(1328,214,'_elementor_template_type','wp-page'),(1329,214,'_elementor_edit_mode','builder'),(1320,212,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1321,213,'_elementor_template_type','wp-page'),(1322,213,'_elementor_edit_mode','builder'),(1323,213,'_elementor_version','3.12.2'),(1324,213,'_wp_page_template','default'),(1325,213,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1326,213,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOLO UNA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Una canci\\u00f3n puede provocar un momento, un \\u00e1rbol puede comenzar un bosque,<br \\/><br \\/>un p\\u00e1jaro puede anunciar la primavera.<\\/p><p>Una sonrisa comienza una amistad,<br \\/>un apret\\u00f3n de manos levanta un alma.<br \\/>Una estrella puede guiar un barco en el mar, Un voto puede cambiar una naci\\u00f3n, Un rayo de sol ilumina una habitaci\\u00f3n<br \\/>Una vela borra la oscuridad,<br \\/><br \\/><br \\/>Una risa conquistar\\u00e1 la tristeza.<\\/p><p>Un paso debe comenzar cada viaje.<br \\/>Una palabra debe comenzar cada oraci\\u00f3n.<br \\/>Una esperanza elevar\\u00e1 nuestro esp\\u00edritu,<br \\/>un toque puede mostrarte que te importa.<\\/p><p>Una voz puede hablar con sabidur\\u00eda, Un coraz\\u00f3n puede saber lo que es verdad,<\\/p><p>Una vida puede marcar la diferencia, ya ves,<br \\/>\\u00a1depende de ti!<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\",\"id\":71,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1327,213,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4532,605,'_elementor_template_type','wp-page'),(4533,605,'_elementor_edit_mode','builder'),(4534,605,'_elementor_version','3.12.2'),(4535,605,'_wp_page_template','default'),(4158,562,'_elementor_edit_mode','builder'),(4159,562,'_elementor_version','3.12.2'),(1337,215,'_elementor_template_type','wp-page'),(1338,215,'_elementor_edit_mode','builder'),(1339,215,'_edit_lock','1686767455:1'),(1340,215,'_elementor_version','3.13.4'),(1341,215,'_edit_last','1'),(1342,215,'_wp_page_template','default'),(1343,215,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1344,215,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR THOUGHTS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">Keep your thoughts positive,<\\/p><p align=\\\"center\\\">because thoughts become your words.<\\/p><p align=\\\"center\\\">Keep your words positive<\\/p><p align=\\\"center\\\">because words become your action.<\\/p><p align=\\\"center\\\">Keep your action positive<\\/p><p align=\\\"center\\\">Because your action becomes your habit.<\\/p><p align=\\\"center\\\">Keep your habit positive,<\\/p><p align=\\\"center\\\">because your habit becomes your lifestyle.<\\/p><p align=\\\"center\\\">Keep your life style positive,<\\/p><p align=\\\"center\\\">because your life style becomes your destiny.<\\/p><p>.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1378,220,'_elementor_template_type','wp-page'),(1379,220,'_elementor_edit_mode','builder'),(1380,220,'_elementor_version','3.12.2'),(1381,220,'_wp_page_template','default'),(1382,220,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1383,220,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"NUESTROS PENSAMIENTOS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mant\\u00e9n tus pensamientos positivos,<\\/p><p>Porque los pensamientos se convierten en tus palabras.<\\/p><p>Mant\\u00e9n tus palabras positivas<\\/p><p>Porque las palabras se convierten en tu acci\\u00f3n.<\\/p><p>Mant\\u00e9n tu acci\\u00f3n positiva<\\/p><p>Porque tu acci\\u00f3n se convierte en tu h\\u00e1bito.<\\/p><p>Mant\\u00e9n tu h\\u00e1bito positivo,<\\/p><p>Porque tu h\\u00e1bito se convierte en tu estilo de vida.<\\/p><p>Mant\\u00e9n tu estilo de vida positivo,<\\/p><p>Porque tu estilo de vida se convierte en tu destino.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-4.jpeg\",\"id\":211,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1345,215,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1346,215,'_eael_custom_js',''),(1364,218,'_elementor_template_type','wp-page'),(1365,218,'_elementor_edit_mode','builder'),(1366,218,'_elementor_version','3.12.2'),(1367,218,'_wp_page_template','default'),(1368,218,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1369,218,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"MI ZONA DE CONFORT\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sol\\u00eda tener una zona de confort donde sab\\u00eda que no fallar\\u00eda.<br \\/>Las mismas cuatro paredes y el trabajo ocupado eran realmente m\\u00e1s como la c\\u00e1rcel.<\\/p><p>Anhelaba tanto hacer las cosas que nunca hab\\u00eda hecho antes,<br \\/>pero me qued\\u00e9 dentro de mi zona de confort y camin\\u00e9 por el mismo piso de siempre.<\\/p><p>Dec\\u00eda estar tan ocupado con las cosas dentro de la zona,<br \\/>pero en el fondo anhelaba algo especial propio.<\\/p><p>No pod\\u00eda dejar pasar mi vida simplemente viendo ganar a otros.<br \\/>Contuve la respiraci\\u00f3n; Sal\\u00ed y dej\\u00e9 que comenzara el cambio.<br \\/>Di un paso y con nuevas fuerzas que nunca antes hab\\u00eda sentido,<br \\/>me desped\\u00ed de mi zona de confort y cerr\\u00e9 y cerr\\u00e9 la puerta.<\\/p><p>Si est\\u00e1s en una zona de confort, temeroso de aventurarte,<br \\/>recuerda que todos los ganadores estuvieron en alg\\u00fan momento llenos de dudas.<br \\/>Un paso o dos y la fuerza de voluntad pueden hacer realidad tus sue\\u00f1os.<\\/p><p>Alcanza tu futuro con una sonrisa; \\u00a1El \\u00e9xito est\\u00e1 ah\\u00ed para ti!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-4.jpeg\",\"id\":211,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1348,216,'_elementor_template_type','wp-page'),(1349,216,'_elementor_edit_mode','builder'),(1350,216,'_elementor_version','3.12.2'),(1351,216,'_wp_page_template','default'),(1352,216,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1353,216,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"MI ZONA DE CONFORT\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sol\\u00eda tener una zona de confort donde sab\\u00eda que no fallar\\u00eda.<br \\/>Las mismas cuatro paredes y el trabajo ocupado eran realmente m\\u00e1s como la c\\u00e1rcel.<\\/p><p>Anhelaba tanto hacer las cosas que nunca hab\\u00eda hecho antes,<br \\/>pero me qued\\u00e9 dentro de mi zona de confort y camin\\u00e9 por el mismo piso de siempre.<\\/p><p>Dec\\u00eda estar tan ocupado con las cosas dentro de la zona,<br \\/>pero en el fondo anhelaba algo especial propio.<\\/p><p>No pod\\u00eda dejar pasar mi vida simplemente viendo ganar a otros.<br \\/>Contuve la respiraci\\u00f3n; Sal\\u00ed y dej\\u00e9 que comenzara el cambio.<br \\/>Di un paso y con nuevas fuerzas que nunca antes hab\\u00eda sentido,<br \\/>me desped\\u00ed de mi zona de confort y cerr\\u00e9 y cerr\\u00e9 la puerta.<\\/p><p>Si est\\u00e1s en una zona de confort, temeroso de aventurarte,<br \\/>recuerda que todos los ganadores estuvieron en alg\\u00fan momento llenos de dudas.<br \\/>Un paso o dos y la fuerza de voluntad pueden hacer realidad tus sue\\u00f1os.<\\/p><p>Alcanza tu futuro con una sonrisa; \\u00a1El \\u00e9xito est\\u00e1 ah\\u00ed para ti!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-4.jpeg\",\"id\":211,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1354,216,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1355,216,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:9:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(1356,217,'_elementor_template_type','wp-page'),(1357,217,'_elementor_edit_mode','builder'),(1358,217,'_elementor_version','3.12.2'),(1359,217,'_wp_page_template','default'),(1360,217,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1361,217,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"MI ZONA DE CONFORT\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sol\\u00eda tener una zona de confort donde sab\\u00eda que no fallar\\u00eda.<br \\/>Las mismas cuatro paredes y el trabajo ocupado eran realmente m\\u00e1s como la c\\u00e1rcel.<\\/p><p>Anhelaba tanto hacer las cosas que nunca hab\\u00eda hecho antes,<br \\/>pero me qued\\u00e9 dentro de mi zona de confort y camin\\u00e9 por el mismo piso de siempre.<\\/p><p>Dec\\u00eda estar tan ocupado con las cosas dentro de la zona,<br \\/>pero en el fondo anhelaba algo especial propio.<\\/p><p>No pod\\u00eda dejar pasar mi vida simplemente viendo ganar a otros.<br \\/>Contuve la respiraci\\u00f3n; Sal\\u00ed y dej\\u00e9 que comenzara el cambio.<br \\/>Di un paso y con nuevas fuerzas que nunca antes hab\\u00eda sentido,<br \\/>me desped\\u00ed de mi zona de confort y cerr\\u00e9 y cerr\\u00e9 la puerta.<\\/p><p>Si est\\u00e1s en una zona de confort, temeroso de aventurarte,<br \\/>recuerda que todos los ganadores estuvieron en alg\\u00fan momento llenos de dudas.<br \\/>Un paso o dos y la fuerza de voluntad pueden hacer realidad tus sue\\u00f1os.<\\/p><p>Alcanza tu futuro con una sonrisa; \\u00a1El \\u00e9xito est\\u00e1 ah\\u00ed para ti!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-4.jpeg\",\"id\":211,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1362,217,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1363,217,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:9:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(1370,218,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1371,219,'_elementor_template_type','wp-page'),(1372,219,'_elementor_edit_mode','builder'),(1373,219,'_elementor_version','3.12.2'),(1374,219,'_wp_page_template','default'),(1375,219,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1376,219,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"MI ZONA DE CONFORT\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sol\\u00eda tener una zona de confort donde sab\\u00eda que no fallar\\u00eda.<br \\/>Las mismas cuatro paredes y el trabajo ocupado eran realmente m\\u00e1s como la c\\u00e1rcel.<\\/p><p>Anhelaba tanto hacer las cosas que nunca hab\\u00eda hecho antes,<br \\/>pero me qued\\u00e9 dentro de mi zona de confort y camin\\u00e9 por el mismo piso de siempre.<\\/p><p>Dec\\u00eda estar tan ocupado con las cosas dentro de la zona,<br \\/>pero en el fondo anhelaba algo especial propio.<\\/p><p>No pod\\u00eda dejar pasar mi vida simplemente viendo ganar a otros.<br \\/>Contuve la respiraci\\u00f3n; Sal\\u00ed y dej\\u00e9 que comenzara el cambio.<br \\/>Di un paso y con nuevas fuerzas que nunca antes hab\\u00eda sentido,<br \\/>me desped\\u00ed de mi zona de confort y cerr\\u00e9 y cerr\\u00e9 la puerta.<\\/p><p>Si est\\u00e1s en una zona de confort, temeroso de aventurarte,<br \\/>recuerda que todos los ganadores estuvieron en alg\\u00fan momento llenos de dudas.<br \\/>Un paso o dos y la fuerza de voluntad pueden hacer realidad tus sue\\u00f1os.<\\/p><p>Alcanza tu futuro con una sonrisa; \\u00a1El \\u00e9xito est\\u00e1 ah\\u00ed para ti!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-4.jpeg\",\"id\":211,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1377,219,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1384,220,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4562,609,'_elementor_template_type','wp-page'),(4563,609,'_elementor_edit_mode','builder'),(4564,609,'_elementor_version','3.12.2'),(4565,609,'_wp_page_template','default'),(4566,609,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4567,609,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"NUESTROS PENSAMIENTOS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mant\\u00e9n tus pensamientos positivos,<\\/p><p>Porque los pensamientos se convierten en tus palabras.<\\/p><p>Mant\\u00e9n tus palabras positivas<\\/p><p>Porque las palabras se convierten en tu acci\\u00f3n.<\\/p><p>Mant\\u00e9n tu acci\\u00f3n positiva<\\/p><p>Porque tu acci\\u00f3n se convierte en tu h\\u00e1bito.<\\/p><p>Mant\\u00e9n tu h\\u00e1bito positivo,<\\/p><p>Porque tu h\\u00e1bito se convierte en tu estilo de vida.<\\/p><p>Mant\\u00e9n tu estilo de vida positivo,<\\/p><p>Porque tu estilo de vida se convierte en tu destino.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-4.jpeg\",\"id\":211,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1386,221,'_menu_item_type','post_type'),(1387,221,'_menu_item_menu_item_parent','165'),(1388,221,'_menu_item_object_id','208'),(1389,221,'_menu_item_object','page'),(1390,221,'_menu_item_target',''),(1391,221,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1392,221,'_menu_item_xfn',''),(1393,221,'_menu_item_url',''),(1395,222,'_menu_item_type','post_type'),(1396,222,'_menu_item_menu_item_parent','165'),(1397,222,'_menu_item_object_id','215'),(1398,222,'_menu_item_object','page'),(1399,222,'_menu_item_target',''),(1400,222,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1401,222,'_menu_item_xfn',''),(1402,222,'_menu_item_url',''),(1404,223,'_elementor_template_type','wp-page'),(1405,223,'_elementor_edit_mode','builder'),(1406,223,'_edit_lock','1686767585:1'),(1407,223,'_elementor_version','3.13.4'),(1408,223,'_edit_last','1'),(1409,223,'_wp_page_template','default'),(1410,223,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1411,223,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMISE YOURSELF\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">(one the most classic motivational poems)<\\/p><p align=\\\"center\\\">Promise yourself to be so strong that nothing can<br \\/>disturb your peace of mind.<\\/p><p align=\\\"center\\\">To talk health, happiness, and prosperity to<br \\/>every person you meet.<\\/p><p align=\\\"center\\\">To make all your friends feel like there is<br \\/>something in them.<\\/p><p align=\\\"center\\\">To look at the sunny side of everything and make your<br \\/>optimism come true.<\\/p><p align=\\\"center\\\">To think only of the best, to work only for the best,<br \\/>and expect only the best.<\\/p><p align=\\\"center\\\">To be just as enthusiastic about the success of others<br \\/>as you are about your own.<\\/p><p align=\\\"center\\\">To forget the mistakes of the past and press on the<br \\/>greater achievements of the future.<\\/p><p align=\\\"center\\\">To wear a cheerful countenance at all times and give<br \\/>every living person you meet a smile.<\\/p><p align=\\\"center\\\">To give so much time to the improvement of yourself<br \\/>that you have no time to criticize others.<\\/p><p align=\\\"center\\\">To be too large for worry, too noble for anger, and too<br \\/>strong for fear, and too happy to permit the<br \\/>presence of trouble.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1412,223,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1413,223,'_eael_custom_js',''),(1423,225,'_elementor_template_type','wp-page'),(1424,225,'_elementor_edit_mode','builder'),(1425,225,'_elementor_version','3.12.2'),(1426,225,'_wp_page_template','default'),(1427,225,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1428,225,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"NUESTROS PENSAMIENTOS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mant\\u00e9n tus pensamientos positivos,<\\/p><p>Porque los pensamientos se convierten en tus palabras.<\\/p><p>Mant\\u00e9n tus palabras positivas<\\/p><p>Porque las palabras se convierten en tu acci\\u00f3n.<\\/p><p>Mant\\u00e9n tu acci\\u00f3n positiva<\\/p><p>Porque tu acci\\u00f3n se convierte en tu h\\u00e1bito.<\\/p><p>Mant\\u00e9n tu h\\u00e1bito positivo,<\\/p><p>Porque tu h\\u00e1bito se convierte en tu estilo de vida.<\\/p><p>Mant\\u00e9n tu estilo de vida positivo,<\\/p><p>Porque tu estilo de vida se convierte en tu destino.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-4.jpeg\",\"id\":211,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1415,224,'_elementor_template_type','wp-page'),(1416,224,'_elementor_edit_mode','builder'),(1417,224,'_elementor_version','3.12.2'),(1418,224,'_wp_page_template','default'),(1419,224,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1420,224,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"NUESTROS PENSAMIENTOS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mant\\u00e9n tus pensamientos positivos,<\\/p><p>Porque los pensamientos se convierten en tus palabras.<\\/p><p>Mant\\u00e9n tus palabras positivas<\\/p><p>Porque las palabras se convierten en tu acci\\u00f3n.<\\/p><p>Mant\\u00e9n tu acci\\u00f3n positiva<\\/p><p>Porque tu acci\\u00f3n se convierte en tu h\\u00e1bito.<\\/p><p>Mant\\u00e9n tu h\\u00e1bito positivo,<\\/p><p>Porque tu h\\u00e1bito se convierte en tu estilo de vida.<\\/p><p>Mant\\u00e9n tu estilo de vida positivo,<\\/p><p>Porque tu estilo de vida se convierte en tu destino.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-4.jpeg\",\"id\":211,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1421,224,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1422,224,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:9:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(1429,225,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1430,226,'_elementor_template_type','wp-page'),(1431,226,'_elementor_edit_mode','builder'),(1432,226,'_elementor_version','3.12.2'),(1433,226,'_wp_page_template','default'),(1434,226,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1435,226,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"NUESTROS PENSAMIENTOS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mant\\u00e9n tus pensamientos positivos,<\\/p><p>Porque los pensamientos se convierten en tus palabras.<\\/p><p>Mant\\u00e9n tus palabras positivas<\\/p><p>Porque las palabras se convierten en tu acci\\u00f3n.<\\/p><p>Mant\\u00e9n tu acci\\u00f3n positiva<\\/p><p>Porque tu acci\\u00f3n se convierte en tu h\\u00e1bito.<\\/p><p>Mant\\u00e9n tu h\\u00e1bito positivo,<\\/p><p>Porque tu h\\u00e1bito se convierte en tu estilo de vida.<\\/p><p>Mant\\u00e9n tu estilo de vida positivo,<\\/p><p>Porque tu estilo de vida se convierte en tu destino.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-4.jpeg\",\"id\":211,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1436,226,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1437,227,'_elementor_template_type','wp-page'),(1438,227,'_elementor_edit_mode','builder'),(1439,227,'_elementor_version','3.12.2'),(1440,227,'_wp_page_template','default'),(1441,227,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1442,227,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMETETE A TI MISMO\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>(uno de los poemas motivacionales m\\u00e1s cl\\u00e1sicos)<\\/p><p>Prom\\u00e9tete a ti mismo ser tan fuerte que nada pueda<br \\/>perturbar tu tranquilidad.<\\/p><p>Para hablar de salud, felicidad y prosperidad a<br \\/>cada persona que conozcas.<\\/p><p>Para hacer que todos tus amigos sientan que hay<br \\/>algo en ellos.<\\/p><p>Para mirar el lado soleado de todo y hacer realidad tu<br \\/>optimismo.<\\/p><p>Pensar s\\u00f3lo en lo mejor, trabajar s\\u00f3lo para lo mejor,<br \\/>y esperar s\\u00f3lo lo mejor.<\\/p><p>Estar tan entusiasmado con el \\u00e9xito de los dem\\u00e1s<br \\/>como lo eres con el tuyo propio.<\\/p><p>Olvidar los errores del pasado y presionar sobre los<br \\/>mayores logros del futuro.<\\/p><p>Llevar un semblante alegre en todo momento y dar<br \\/>una sonrisa a cada persona viva que conozcas.<\\/p><p>Dedicar tanto tiempo a la mejora de ti mismo<br \\/>que no tengas tiempo para criticar a los dem\\u00e1s.<\\/p><p>Ser demasiado grande para la preocupaci\\u00f3n, demasiado noble para la ira, y demasiado fuerte para el miedo, y demasiado<br \\/>feliz para permitir la<br \\/>presencia de problemas.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1443,227,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4593,613,'_elementor_template_type','wp-page'),(4594,613,'_elementor_edit_mode','builder'),(4595,613,'_elementor_version','3.12.2'),(4596,613,'_wp_page_template','default'),(4597,613,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4598,613,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMETETE A TI MISMO\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>(uno de los poemas motivacionales m\\u00e1s cl\\u00e1sicos)<\\/p><p>Prom\\u00e9tete a ti mismo ser tan fuerte que nada pueda<br \\/>perturbar tu tranquilidad.<\\/p><p>Para hablar de salud, felicidad y prosperidad a<br \\/>cada persona que conozcas.<\\/p><p>Para hacer que todos tus amigos sientan que hay<br \\/>algo en ellos.<\\/p><p>Para mirar el lado soleado de todo y hacer realidad tu<br \\/>optimismo.<\\/p><p>Pensar s\\u00f3lo en lo mejor, trabajar s\\u00f3lo para lo mejor,<br \\/>y esperar s\\u00f3lo lo mejor.<\\/p><p>Estar tan entusiasmado con el \\u00e9xito de los dem\\u00e1s<br \\/>como lo eres con el tuyo propio.<\\/p><p>Olvidar los errores del pasado y presionar sobre los<br \\/>mayores logros del futuro.<\\/p><p>Llevar un semblante alegre en todo momento y dar<br \\/>una sonrisa a cada persona viva que conozcas.<\\/p><p>Dedicar tanto tiempo a la mejora de ti mismo<br \\/>que no tengas tiempo para criticar a los dem\\u00e1s.<\\/p><p>Ser demasiado grande para la preocupaci\\u00f3n, demasiado noble para la ira, y demasiado fuerte para el miedo, y demasiado<br \\/>feliz para permitir la<br \\/>presencia de problemas.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1445,228,'_elementor_template_type','wp-page'),(1446,228,'_elementor_edit_mode','builder'),(1447,228,'_edit_lock','1686767678:1'),(1448,228,'_elementor_version','3.13.4'),(1449,228,'_edit_last','1'),(1450,228,'_wp_page_template','default'),(1451,228,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1452,228,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMISE YOURSELF -NOW\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">Of all the things you can do,<\\/p><p align=\\\"center\\\">promise yourself you will try.<\\/p><p align=\\\"center\\\">It doesn\'t even matter if you win,<\\/p><p align=\\\"center\\\">as long as you apply.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">No one can ask anything of you except yourself.<\\/p><p align=\\\"center\\\">If you don\'t want to make a move,<\\/p><p align=\\\"center\\\">it\'s you who\'ll be left out.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">So don\'t allow yourself to miss out on important things.<\\/p><p align=\\\"center\\\">You may not feel that they are worthy,<\\/p><p align=\\\"center\\\">yet they can turn out to be your wings.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">Experiences make us whole,<\\/p><p align=\\\"center\\\">and make life feel fulfilled.<\\/p><p align=\\\"center\\\">And when it\'s time to look back,<\\/p><p align=\\\"center\\\">don\'t let yourself feel unskilled.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">So don\'t allow yourself to stop,<\\/p><p align=\\\"center\\\">for no apparent reason.<\\/p><p align=\\\"center\\\">Promise yourself you will try,<\\/p><p align=\\\"center\\\">and take on any season.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1478,232,'_elementor_template_type','wp-page'),(1479,232,'_elementor_edit_mode','builder'),(1480,232,'_elementor_version','3.12.2'),(1481,232,'_wp_page_template','default'),(1453,228,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1454,228,'_eael_custom_js',''),(1464,230,'_elementor_template_type','wp-page'),(1465,230,'_elementor_edit_mode','builder'),(1466,230,'_elementor_version','3.12.2'),(1467,230,'_wp_page_template','default'),(1468,230,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1469,230,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMETETE A TI MISMO\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>(uno de los poemas motivacionales m\\u00e1s cl\\u00e1sicos)<\\/p><p>Prom\\u00e9tete a ti mismo ser tan fuerte que nada pueda<br \\/>perturbar tu tranquilidad.<\\/p><p>Para hablar de salud, felicidad y prosperidad a<br \\/>cada persona que conozcas.<\\/p><p>Para hacer que todos tus amigos sientan que hay<br \\/>algo en ellos.<\\/p><p>Para mirar el lado soleado de todo y hacer realidad tu<br \\/>optimismo.<\\/p><p>Pensar s\\u00f3lo en lo mejor, trabajar s\\u00f3lo para lo mejor,<br \\/>y esperar s\\u00f3lo lo mejor.<\\/p><p>Estar tan entusiasmado con el \\u00e9xito de los dem\\u00e1s<br \\/>como lo eres con el tuyo propio.<\\/p><p>Olvidar los errores del pasado y presionar sobre los<br \\/>mayores logros del futuro.<\\/p><p>Llevar un semblante alegre en todo momento y dar<br \\/>una sonrisa a cada persona viva que conozcas.<\\/p><p>Dedicar tanto tiempo a la mejora de ti mismo<br \\/>que no tengas tiempo para criticar a los dem\\u00e1s.<\\/p><p>Ser demasiado grande para la preocupaci\\u00f3n, demasiado noble para la ira, y demasiado fuerte para el miedo, y demasiado<br \\/>feliz para permitir la<br \\/>presencia de problemas.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1456,229,'_elementor_template_type','wp-page'),(1457,229,'_elementor_edit_mode','builder'),(1458,229,'_elementor_version','3.12.2'),(1459,229,'_wp_page_template','default'),(1460,229,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1461,229,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMETETE A TI MISMO\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>(uno de los poemas motivacionales m\\u00e1s cl\\u00e1sicos)<\\/p><p>Prom\\u00e9tete a ti mismo ser tan fuerte que nada pueda<br \\/>perturbar tu tranquilidad.<\\/p><p>Para hablar de salud, felicidad y prosperidad a<br \\/>cada persona que conozcas.<\\/p><p>Para hacer que todos tus amigos sientan que hay<br \\/>algo en ellos.<\\/p><p>Para mirar el lado soleado de todo y hacer realidad tu<br \\/>optimismo.<\\/p><p>Pensar s\\u00f3lo en lo mejor, trabajar s\\u00f3lo para lo mejor,<br \\/>y esperar s\\u00f3lo lo mejor.<\\/p><p>Estar tan entusiasmado con el \\u00e9xito de los dem\\u00e1s<br \\/>como lo eres con el tuyo propio.<\\/p><p>Olvidar los errores del pasado y presionar sobre los<br \\/>mayores logros del futuro.<\\/p><p>Llevar un semblante alegre en todo momento y dar<br \\/>una sonrisa a cada persona viva que conozcas.<\\/p><p>Dedicar tanto tiempo a la mejora de ti mismo<br \\/>que no tengas tiempo para criticar a los dem\\u00e1s.<\\/p><p>Ser demasiado grande para la preocupaci\\u00f3n, demasiado noble para la ira, y demasiado fuerte para el miedo, y demasiado<br \\/>feliz para permitir la<br \\/>presencia de problemas.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1462,229,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1463,229,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:9:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(1470,230,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1471,231,'_elementor_template_type','wp-page'),(1472,231,'_elementor_edit_mode','builder'),(1473,231,'_elementor_version','3.12.2'),(1474,231,'_wp_page_template','default'),(1475,231,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1476,231,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMETETE A TI MISMO\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>(uno de los poemas motivacionales m\\u00e1s cl\\u00e1sicos)<\\/p><p>Prom\\u00e9tete a ti mismo ser tan fuerte que nada pueda<br \\/>perturbar tu tranquilidad.<\\/p><p>Para hablar de salud, felicidad y prosperidad a<br \\/>cada persona que conozcas.<\\/p><p>Para hacer que todos tus amigos sientan que hay<br \\/>algo en ellos.<\\/p><p>Para mirar el lado soleado de todo y hacer realidad tu<br \\/>optimismo.<\\/p><p>Pensar s\\u00f3lo en lo mejor, trabajar s\\u00f3lo para lo mejor,<br \\/>y esperar s\\u00f3lo lo mejor.<\\/p><p>Estar tan entusiasmado con el \\u00e9xito de los dem\\u00e1s<br \\/>como lo eres con el tuyo propio.<\\/p><p>Olvidar los errores del pasado y presionar sobre los<br \\/>mayores logros del futuro.<\\/p><p>Llevar un semblante alegre en todo momento y dar<br \\/>una sonrisa a cada persona viva que conozcas.<\\/p><p>Dedicar tanto tiempo a la mejora de ti mismo<br \\/>que no tengas tiempo para criticar a los dem\\u00e1s.<\\/p><p>Ser demasiado grande para la preocupaci\\u00f3n, demasiado noble para la ira, y demasiado fuerte para el miedo, y demasiado<br \\/>feliz para permitir la<br \\/>presencia de problemas.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1477,231,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1482,232,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1483,232,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMETETE A TI MISMO, AHORA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>De todas las cosas que puedes hacer,<\\/p><p>Prom\\u00e9tete a ti mismo que lo intentar\\u00e1s.<\\/p><p>Ni siquiera importa si ganas,<\\/p><p>siempre y cuando lo solicites.<\\/p><p>Nadie puede pedirte nada excepto a ti mismo.<\\/p><p>Si no quieres hacer un movimiento,<\\/p><p>Eres t\\u00fa quien se quedar\\u00e1 fuera.<\\/p><p>As\\u00ed que no te permitas perderte cosas importantes.<\\/p><p>Puede que no sientas que son dignos,<\\/p><p>Sin embargo, pueden llegar a ser tus alas.<\\/p><p>Las experiencias nos hacen completos,<\\/p><p>y hacer que la vida se sienta plena.<\\/p><p>Y cuando llega el momento de mirar hacia atr\\u00e1s,<\\/p><p>No te dejes sentir inexperto.<\\/p><p>As\\u00ed que no te permitas parar,<\\/p><p>sin raz\\u00f3n aparente.<\\/p><p>Prom\\u00e9tete a ti mismo que lo intentar\\u00e1s,<\\/p><p>y enfr\\u00e9ntate a cualquier temporada.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1484,232,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4626,617,'_elementor_template_type','wp-page'),(4627,617,'_elementor_edit_mode','builder'),(4628,617,'_elementor_version','3.12.2'),(4629,617,'_wp_page_template','default'),(4630,617,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4631,617,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMETETE A TI MISMO, AHORA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>De todas las cosas que puedes hacer,<\\/p><p>Prom\\u00e9tete a ti mismo que lo intentar\\u00e1s.<\\/p><p>Ni siquiera importa si ganas,<\\/p><p>siempre y cuando lo solicites.<\\/p><p>Nadie puede pedirte nada excepto a ti mismo.<\\/p><p>Si no quieres hacer un movimiento,<\\/p><p>Eres t\\u00fa quien se quedar\\u00e1 fuera.<\\/p><p>As\\u00ed que no te permitas perderte cosas importantes.<\\/p><p>Puede que no sientas que son dignos,<\\/p><p>Sin embargo, pueden llegar a ser tus alas.<\\/p><p>Las experiencias nos hacen completos,<\\/p><p>y hacer que la vida se sienta plena.<\\/p><p>Y cuando llega el momento de mirar hacia atr\\u00e1s,<\\/p><p>No te dejes sentir inexperto.<\\/p><p>As\\u00ed que no te permitas parar,<\\/p><p>sin raz\\u00f3n aparente.<\\/p><p>Prom\\u00e9tete a ti mismo que lo intentar\\u00e1s,<\\/p><p>y enfr\\u00e9ntate a cualquier temporada.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1486,233,'_menu_item_type','post_type'),(1487,233,'_menu_item_menu_item_parent','165'),(1488,233,'_menu_item_object_id','228'),(1489,233,'_menu_item_object','page'),(1490,233,'_menu_item_target',''),(1491,233,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1492,233,'_menu_item_xfn',''),(1493,233,'_menu_item_url',''),(1504,235,'_elementor_template_type','wp-page'),(1495,234,'_menu_item_type','post_type'),(1496,234,'_menu_item_menu_item_parent','165'),(1497,234,'_menu_item_object_id','223'),(1498,234,'_menu_item_object','page'),(1499,234,'_menu_item_target',''),(1500,234,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1501,234,'_menu_item_xfn',''),(1502,234,'_menu_item_url',''),(1505,235,'_elementor_edit_mode','builder'),(1506,235,'_edit_lock','1686767769:1'),(1507,235,'_elementor_version','3.13.4'),(1508,235,'_edit_last','1'),(1509,235,'_wp_page_template','default'),(1510,235,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1511,235,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"START WHERE YOU STAND\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">By Berton Braley<\\/p><p align=\\\"center\\\">Start where you stand and never mind the past,<br \\/>The past won\'t help you in beginning new,<br \\/>If you have left it all behind at last<br \\/>Why, that\'s enough, you\'re done with it, you\'re through;<br \\/>This is another chapter in the book,<br \\/>This is another race that you have planned,<br \\/>Don\'t give the vanished days a backward look,<br \\/>Start where you stand.<\\/p><p align=\\\"center\\\">The world won\'t care about your old defeats<br \\/>If you can start anew and win success;<br \\/>The future is your time, and time is fleet<br \\/>And there is much of work and strain and stress;<br \\/>Forget the buried woes and dead despairs,<br \\/>Here is a brand-new trial right at hand,<br \\/>The future is for him who does and dares,<br \\/>Start where you stand.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#1A32D7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1512,235,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1513,235,'_eael_custom_js',''),(1523,237,'_elementor_template_type','wp-page'),(1524,237,'_elementor_edit_mode','builder'),(1525,237,'_elementor_version','3.12.2'),(1526,237,'_wp_page_template','default'),(1527,237,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1528,237,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMETETE A TI MISMO, AHORA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>De todas las cosas que puedes hacer,<\\/p><p>Prom\\u00e9tete a ti mismo que lo intentar\\u00e1s.<\\/p><p>Ni siquiera importa si ganas,<\\/p><p>siempre y cuando lo solicites.<\\/p><p>Nadie puede pedirte nada excepto a ti mismo.<\\/p><p>Si no quieres hacer un movimiento,<\\/p><p>Eres t\\u00fa quien se quedar\\u00e1 fuera.<\\/p><p>As\\u00ed que no te permitas perderte cosas importantes.<\\/p><p>Puede que no sientas que son dignos,<\\/p><p>Sin embargo, pueden llegar a ser tus alas.<\\/p><p>Las experiencias nos hacen completos,<\\/p><p>y hacer que la vida se sienta plena.<\\/p><p>Y cuando llega el momento de mirar hacia atr\\u00e1s,<\\/p><p>No te dejes sentir inexperto.<\\/p><p>As\\u00ed que no te permitas parar,<\\/p><p>sin raz\\u00f3n aparente.<\\/p><p>Prom\\u00e9tete a ti mismo que lo intentar\\u00e1s,<\\/p><p>y enfr\\u00e9ntate a cualquier temporada.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1515,236,'_elementor_template_type','wp-page'),(1516,236,'_elementor_edit_mode','builder'),(1517,236,'_elementor_version','3.12.2'),(1518,236,'_wp_page_template','default'),(1519,236,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1520,236,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMETETE A TI MISMO, AHORA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>De todas las cosas que puedes hacer,<\\/p><p>Prom\\u00e9tete a ti mismo que lo intentar\\u00e1s.<\\/p><p>Ni siquiera importa si ganas,<\\/p><p>siempre y cuando lo solicites.<\\/p><p>Nadie puede pedirte nada excepto a ti mismo.<\\/p><p>Si no quieres hacer un movimiento,<\\/p><p>Eres t\\u00fa quien se quedar\\u00e1 fuera.<\\/p><p>As\\u00ed que no te permitas perderte cosas importantes.<\\/p><p>Puede que no sientas que son dignos,<\\/p><p>Sin embargo, pueden llegar a ser tus alas.<\\/p><p>Las experiencias nos hacen completos,<\\/p><p>y hacer que la vida se sienta plena.<\\/p><p>Y cuando llega el momento de mirar hacia atr\\u00e1s,<\\/p><p>No te dejes sentir inexperto.<\\/p><p>As\\u00ed que no te permitas parar,<\\/p><p>sin raz\\u00f3n aparente.<\\/p><p>Prom\\u00e9tete a ti mismo que lo intentar\\u00e1s,<\\/p><p>y enfr\\u00e9ntate a cualquier temporada.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1521,236,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1522,236,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:9:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(1529,237,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1530,238,'_elementor_template_type','wp-page'),(1531,238,'_elementor_edit_mode','builder'),(1532,238,'_elementor_version','3.12.2'),(1533,238,'_wp_page_template','default'),(1534,238,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1535,238,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMETETE A TI MISMO, AHORA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>De todas las cosas que puedes hacer,<\\/p><p>Prom\\u00e9tete a ti mismo que lo intentar\\u00e1s.<\\/p><p>Ni siquiera importa si ganas,<\\/p><p>siempre y cuando lo solicites.<\\/p><p>Nadie puede pedirte nada excepto a ti mismo.<\\/p><p>Si no quieres hacer un movimiento,<\\/p><p>Eres t\\u00fa quien se quedar\\u00e1 fuera.<\\/p><p>As\\u00ed que no te permitas perderte cosas importantes.<\\/p><p>Puede que no sientas que son dignos,<\\/p><p>Sin embargo, pueden llegar a ser tus alas.<\\/p><p>Las experiencias nos hacen completos,<\\/p><p>y hacer que la vida se sienta plena.<\\/p><p>Y cuando llega el momento de mirar hacia atr\\u00e1s,<\\/p><p>No te dejes sentir inexperto.<\\/p><p>As\\u00ed que no te permitas parar,<\\/p><p>sin raz\\u00f3n aparente.<\\/p><p>Prom\\u00e9tete a ti mismo que lo intentar\\u00e1s,<\\/p><p>y enfr\\u00e9ntate a cualquier temporada.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1536,238,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4670,623,'_elementor_template_type','wp-page'),(1537,239,'_elementor_template_type','wp-page'),(1538,239,'_elementor_edit_mode','builder'),(1539,239,'_elementor_version','3.12.2'),(1540,239,'_wp_page_template','default'),(1541,239,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1542,239,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMIENCE DONDE SE ENCUENTRA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Por Berton Braley<\\/p><p>Comienza donde est\\u00e1s parado y no te preocupes por el pasado, El pasado no te ayudar\\u00e1 a comenzar de nuevo, Si lo has dejado todo atr\\u00e1s por fin<br \\/>Por qu\\u00e9, eso es suficiente, has terminado con eso,<br \\/><br \\/>has terminado;<br \\/>Este es otro cap\\u00edtulo del libro, Esta es otra carrera que has planeado, No mires hacia atr\\u00e1s los d\\u00edas desaparecidos,<br \\/><br \\/><br \\/>Comienza donde est\\u00e1s parado.<\\/p><p>Al mundo no le importar\\u00e1n tus viejas derrotas<br \\/>Si puedes comenzar de nuevo y ganar el \\u00e9xito;<br \\/>El futuro es tu tiempo, y el tiempo es flota<br \\/>Y hay mucho trabajo, tensi\\u00f3n y estr\\u00e9s;<br \\/>Olv\\u00eddate de los males enterrados y las desesperaciones muertas, Aqu\\u00ed hay una nueva prueba a la mano, El futuro es para el que hace y se atreve,<br \\/><br \\/><br \\/>Comienza donde est\\u00e1s parado.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1543,239,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4656,621,'_elementor_template_type','wp-page'),(4657,621,'_elementor_edit_mode','builder'),(4658,621,'_elementor_version','3.12.2'),(4659,621,'_wp_page_template','default'),(4660,621,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4661,621,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMIENCE DONDE SE ENCUENTRA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Por Berton Braley<\\/p><p>Comienza donde est\\u00e1s parado y no te preocupes por el pasado, El pasado no te ayudar\\u00e1 a comenzar de nuevo, Si lo has dejado todo atr\\u00e1s por fin<br \\/>Por qu\\u00e9, eso es suficiente, has terminado con eso,<br \\/><br \\/>has terminado;<br \\/>Este es otro cap\\u00edtulo del libro, Esta es otra carrera que has planeado, No mires hacia atr\\u00e1s los d\\u00edas desaparecidos,<br \\/><br \\/><br \\/>Comienza donde est\\u00e1s parado.<\\/p><p>Al mundo no le importar\\u00e1n tus viejas derrotas<br \\/>Si puedes comenzar de nuevo y ganar el \\u00e9xito;<br \\/>El futuro es tu tiempo, y el tiempo es flota<br \\/>Y hay mucho trabajo, tensi\\u00f3n y estr\\u00e9s;<br \\/>Olv\\u00eddate de los males enterrados y las desesperaciones muertas, Aqu\\u00ed hay una nueva prueba a la mano, El futuro es para el que hace y se atreve,<br \\/><br \\/><br \\/>Comienza donde est\\u00e1s parado.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1545,240,'_menu_item_type','post_type'),(1546,240,'_menu_item_menu_item_parent','165'),(1547,240,'_menu_item_object_id','235'),(1548,240,'_menu_item_object','page'),(1549,240,'_menu_item_target',''),(1550,240,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1551,240,'_menu_item_xfn',''),(1552,240,'_menu_item_url',''),(4157,562,'_elementor_template_type','wp-page'),(1555,241,'_elementor_template_type','wp-page'),(1556,241,'_elementor_edit_mode','builder'),(1557,241,'_edit_lock','1686767913:1'),(1558,241,'_elementor_version','3.13.4'),(1559,241,'_edit_last','1'),(1560,241,'_wp_page_template','default'),(1561,241,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1562,241,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODAY I\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">Today I have decided,<\\/p><p align=\\\"center\\\">that it\'s time to take control.<\\/p><p align=\\\"center\\\">There won\'t be anymore sitting,<\\/p><p align=\\\"center\\\">and waiting, this is my goal.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">Today I see it so clearly,<\\/p><p align=\\\"center\\\">I am all that I have.<\\/p><p align=\\\"center\\\">If I want to get something done,<\\/p><p align=\\\"center\\\">it\'s up to me to pave my own path.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">Today I will set my goal,<\\/p><p align=\\\"center\\\">and work to see it through.<\\/p><p align=\\\"center\\\">I\'m tired of being afraid,<\\/p><p align=\\\"center\\\">it\'s time for my dreams to come true.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">Today I am quite happy,<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#1A32D7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1588,245,'_elementor_template_type','wp-page'),(1589,245,'_elementor_edit_mode','builder'),(1590,245,'_elementor_version','3.12.2'),(1591,245,'_wp_page_template','default'),(1592,245,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1563,241,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1564,241,'_eael_custom_js',''),(1574,243,'_elementor_template_type','wp-page'),(1575,243,'_elementor_edit_mode','builder'),(1576,243,'_elementor_version','3.12.2'),(1577,243,'_wp_page_template','default'),(1578,243,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1579,243,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMIENCE DONDE SE ENCUENTRA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Por Berton Braley<\\/p><p>Comienza donde est\\u00e1s parado y no te preocupes por el pasado, El pasado no te ayudar\\u00e1 a comenzar de nuevo, Si lo has dejado todo atr\\u00e1s por fin<br \\/>Por qu\\u00e9, eso es suficiente, has terminado con eso,<br \\/><br \\/>has terminado;<br \\/>Este es otro cap\\u00edtulo del libro, Esta es otra carrera que has planeado, No mires hacia atr\\u00e1s los d\\u00edas desaparecidos,<br \\/><br \\/><br \\/>Comienza donde est\\u00e1s parado.<\\/p><p>Al mundo no le importar\\u00e1n tus viejas derrotas<br \\/>Si puedes comenzar de nuevo y ganar el \\u00e9xito;<br \\/>El futuro es tu tiempo, y el tiempo es flota<br \\/>Y hay mucho trabajo, tensi\\u00f3n y estr\\u00e9s;<br \\/>Olv\\u00eddate de los males enterrados y las desesperaciones muertas, Aqu\\u00ed hay una nueva prueba a la mano, El futuro es para el que hace y se atreve,<br \\/><br \\/><br \\/>Comienza donde est\\u00e1s parado.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1566,242,'_elementor_template_type','wp-page'),(1567,242,'_elementor_edit_mode','builder'),(1568,242,'_elementor_version','3.12.2'),(1569,242,'_wp_page_template','default'),(1570,242,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1571,242,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMIENCE DONDE SE ENCUENTRA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Por Berton Braley<\\/p><p>Comienza donde est\\u00e1s parado y no te preocupes por el pasado, El pasado no te ayudar\\u00e1 a comenzar de nuevo, Si lo has dejado todo atr\\u00e1s por fin<br \\/>Por qu\\u00e9, eso es suficiente, has terminado con eso,<br \\/><br \\/>has terminado;<br \\/>Este es otro cap\\u00edtulo del libro, Esta es otra carrera que has planeado, No mires hacia atr\\u00e1s los d\\u00edas desaparecidos,<br \\/><br \\/><br \\/>Comienza donde est\\u00e1s parado.<\\/p><p>Al mundo no le importar\\u00e1n tus viejas derrotas<br \\/>Si puedes comenzar de nuevo y ganar el \\u00e9xito;<br \\/>El futuro es tu tiempo, y el tiempo es flota<br \\/>Y hay mucho trabajo, tensi\\u00f3n y estr\\u00e9s;<br \\/>Olv\\u00eddate de los males enterrados y las desesperaciones muertas, Aqu\\u00ed hay una nueva prueba a la mano, El futuro es para el que hace y se atreve,<br \\/><br \\/><br \\/>Comienza donde est\\u00e1s parado.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1572,242,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1573,242,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:9:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(1580,243,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1581,244,'_elementor_template_type','wp-page'),(1582,244,'_elementor_edit_mode','builder'),(1583,244,'_elementor_version','3.12.2'),(1584,244,'_wp_page_template','default'),(1585,244,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1586,244,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMIENCE DONDE SE ENCUENTRA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Por Berton Braley<\\/p><p>Comienza donde est\\u00e1s parado y no te preocupes por el pasado, El pasado no te ayudar\\u00e1 a comenzar de nuevo, Si lo has dejado todo atr\\u00e1s por fin<br \\/>Por qu\\u00e9, eso es suficiente, has terminado con eso,<br \\/><br \\/>has terminado;<br \\/>Este es otro cap\\u00edtulo del libro, Esta es otra carrera que has planeado, No mires hacia atr\\u00e1s los d\\u00edas desaparecidos,<br \\/><br \\/><br \\/>Comienza donde est\\u00e1s parado.<\\/p><p>Al mundo no le importar\\u00e1n tus viejas derrotas<br \\/>Si puedes comenzar de nuevo y ganar el \\u00e9xito;<br \\/>El futuro es tu tiempo, y el tiempo es flota<br \\/>Y hay mucho trabajo, tensi\\u00f3n y estr\\u00e9s;<br \\/>Olv\\u00eddate de los males enterrados y las desesperaciones muertas, Aqu\\u00ed hay una nueva prueba a la mano, El futuro es para el que hace y se atreve,<br \\/><br \\/><br \\/>Comienza donde est\\u00e1s parado.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1587,244,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1593,245,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOY\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hoy he decidido,<\\/p><p>que es hora de tomar el control.<\\/p><p>No habr\\u00e1 m\\u00e1s sentado,<\\/p><p>Y esperando, este es mi objetivo.<\\/p><p>Hoy lo veo tan claramente,<\\/p><p>Soy todo lo que tengo.<\\/p><p>Si quiero hacer algo,<\\/p><p>Depende de m\\u00ed allanar mi propio camino.<\\/p><p>Hoy voy a establecer mi meta,<\\/p><p>y trabajar para llevarlo a cabo.<\\/p><p>Estoy cansado de tener miedo,<\\/p><p>Es hora de que mis sue\\u00f1os se hagan realidad.<\\/p><p>Hoy estoy bastante feliz.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1594,245,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4686,625,'_elementor_template_type','wp-page'),(4687,625,'_elementor_edit_mode','builder'),(4688,625,'_elementor_version','3.12.2'),(4689,625,'_wp_page_template','default'),(4690,625,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4691,625,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOY\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hoy he decidido,<\\/p><p>que es hora de tomar el control.<\\/p><p>No habr\\u00e1 m\\u00e1s sentado,<\\/p><p>Y esperando, este es mi objetivo.<\\/p><p>Hoy lo veo tan claramente,<\\/p><p>Soy todo lo que tengo.<\\/p><p>Si quiero hacer algo,<\\/p><p>Depende de m\\u00ed allanar mi propio camino.<\\/p><p>Hoy voy a establecer mi meta,<\\/p><p>y trabajar para llevarlo a cabo.<\\/p><p>Estoy cansado de tener miedo,<\\/p><p>Es hora de que mis sue\\u00f1os se hagan realidad.<\\/p><p>Hoy estoy bastante feliz.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1597,246,'_elementor_template_type','wp-page'),(1598,246,'_elementor_edit_mode','builder'),(1599,246,'_edit_lock','1686768070:1'),(1600,246,'_elementor_version','3.13.4'),(1601,246,'_edit_last','1'),(1602,246,'_wp_page_template','default'),(1603,246,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1604,246,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"YOU POSSESS TEHE ENERGY\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\" align=\\\"center\\\">Like attracts like.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">If you feel defeated, you will be.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">If you are weary, you will lose momentum.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">If you are of joyful focus, the negative will have no choice but to recede.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">Decide to laugh in the face of adversity.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">Know you are powerful enough to supersede all difficulty.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">Do not let your thoughts wander.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">Be powerful.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">Know yourself.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">\\u00a0Decide to be in control of your reality.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">There are no victims except those who have given up their power.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">You possess the energy, create and take control of your destiny<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#1A32D7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1605,246,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1606,246,'_eael_custom_js',''),(1618,248,'_elementor_template_type','wp-page'),(1619,248,'_elementor_edit_mode','builder'),(1620,248,'_elementor_version','3.12.2'),(1621,248,'_wp_page_template','default'),(1622,248,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1623,248,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOY\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hoy he decidido,<\\/p><p>que es hora de tomar el control.<\\/p><p>No habr\\u00e1 m\\u00e1s sentado,<\\/p><p>Y esperando, este es mi objetivo.<\\/p><p>Hoy lo veo tan claramente,<\\/p><p>Soy todo lo que tengo.<\\/p><p>Si quiero hacer algo,<\\/p><p>Depende de m\\u00ed allanar mi propio camino.<\\/p><p>Hoy voy a establecer mi meta,<\\/p><p>y trabajar para llevarlo a cabo.<\\/p><p>Estoy cansado de tener miedo,<\\/p><p>Es hora de que mis sue\\u00f1os se hagan realidad.<\\/p><p>Hoy estoy bastante feliz.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1609,247,'_elementor_template_type','wp-page'),(1610,247,'_elementor_edit_mode','builder'),(1611,247,'_elementor_version','3.12.2'),(1612,247,'_wp_page_template','default'),(1613,247,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1614,247,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOY\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hoy he decidido,<\\/p><p>que es hora de tomar el control.<\\/p><p>No habr\\u00e1 m\\u00e1s sentado,<\\/p><p>Y esperando, este es mi objetivo.<\\/p><p>Hoy lo veo tan claramente,<\\/p><p>Soy todo lo que tengo.<\\/p><p>Si quiero hacer algo,<\\/p><p>Depende de m\\u00ed allanar mi propio camino.<\\/p><p>Hoy voy a establecer mi meta,<\\/p><p>y trabajar para llevarlo a cabo.<\\/p><p>Estoy cansado de tener miedo,<\\/p><p>Es hora de que mis sue\\u00f1os se hagan realidad.<\\/p><p>Hoy estoy bastante feliz.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1615,247,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1616,247,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:9:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4155,561,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1624,248,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1626,249,'_elementor_template_type','wp-page'),(1627,249,'_elementor_edit_mode','builder'),(1628,249,'_elementor_version','3.12.2'),(1629,249,'_wp_page_template','default'),(1630,249,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1631,249,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOY\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hoy he decidido,<\\/p><p>que es hora de tomar el control.<\\/p><p>No habr\\u00e1 m\\u00e1s sentado,<\\/p><p>Y esperando, este es mi objetivo.<\\/p><p>Hoy lo veo tan claramente,<\\/p><p>Soy todo lo que tengo.<\\/p><p>Si quiero hacer algo,<\\/p><p>Depende de m\\u00ed allanar mi propio camino.<\\/p><p>Hoy voy a establecer mi meta,<\\/p><p>y trabajar para llevarlo a cabo.<\\/p><p>Estoy cansado de tener miedo,<\\/p><p>Es hora de que mis sue\\u00f1os se hagan realidad.<\\/p><p>Hoy estoy bastante feliz.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1632,249,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1634,250,'_elementor_template_type','wp-page'),(1635,250,'_elementor_edit_mode','builder'),(1636,250,'_elementor_version','3.12.2'),(1637,250,'_wp_page_template','default'),(1638,250,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1639,250,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TU POSEES LA ENERGIA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hoy he decidido,<\\/p><p>que es hora de tomar el control.<\\/p><p>No habr\\u00e1 m\\u00e1s sentado,<\\/p><p>Y esperando, este es mi objetivo.<\\/p><p>Hoy lo veo tan claramente,<\\/p><p>Soy todo lo que tengo.<\\/p><p>Si quiero hacer algo,<\\/p><p>Depende de m\\u00ed allanar mi propio camino.<\\/p><p>Hoy voy a establecer mi meta,<\\/p><p>y trabajar para llevarlo a cabo.<\\/p><p>Estoy cansado de tener miedo,<\\/p><p>Es hora de que mis sue\\u00f1os se hagan realidad.<\\/p><p>Hoy estoy bastante feliz.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1640,250,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1645,252,'_elementor_template_type','wp-page'),(1646,252,'_elementor_edit_mode','builder'),(1647,252,'_elementor_version','3.12.2'),(1648,252,'_wp_page_template','default'),(1649,252,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1650,252,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TU POSEES LA ENERGIA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hoy he decidido,<\\/p><p>que es hora de tomar el control.<\\/p><p>No habr\\u00e1 m\\u00e1s sentado,<\\/p><p>Y esperando, este es mi objetivo.<\\/p><p>Hoy lo veo tan claramente,<\\/p><p>Soy todo lo que tengo.<\\/p><p>Si quiero hacer algo,<\\/p><p>Depende de m\\u00ed allanar mi propio camino.<\\/p><p>Hoy voy a establecer mi meta,<\\/p><p>y trabajar para llevarlo a cabo.<\\/p><p>Estoy cansado de tener miedo,<\\/p><p>Es hora de que mis sue\\u00f1os se hagan realidad.<\\/p><p>Hoy estoy bastante feliz.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1643,251,'_wp_attached_file','2023/04/images-8.jpeg'),(1644,251,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:284;s:6:\"height\";i:177;s:4:\"file\";s:21:\"2023/04/images-8.jpeg\";s:8:\"filesize\";i:6549;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"images-8-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4502;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1651,252,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1652,253,'_elementor_template_type','wp-page'),(1653,253,'_elementor_edit_mode','builder'),(1654,253,'_elementor_version','3.12.2'),(1655,253,'_wp_page_template','default'),(1656,253,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1657,253,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TU POSEES LA ENERGIA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hoy he decidido,<\\/p><p>que es hora de tomar el control.<\\/p><p>No habr\\u00e1 m\\u00e1s sentado,<\\/p><p>Y esperando, este es mi objetivo.<\\/p><p>Hoy lo veo tan claramente,<\\/p><p>Soy todo lo que tengo.<\\/p><p>Si quiero hacer algo,<\\/p><p>Depende de m\\u00ed allanar mi propio camino.<\\/p><p>Hoy voy a establecer mi meta,<\\/p><p>y trabajar para llevarlo a cabo.<\\/p><p>Estoy cansado de tener miedo,<\\/p><p>Es hora de que mis sue\\u00f1os se hagan realidad.<\\/p><p>Hoy estoy bastante feliz.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1658,253,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1659,254,'_elementor_template_type','wp-page'),(1660,254,'_elementor_edit_mode','builder'),(1661,254,'_elementor_version','3.12.2'),(1662,254,'_wp_page_template','default'),(1663,254,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1664,254,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TU POSEES LA ENERGIA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lo semejante atrae a lo semejante.<\\/p><p>Si te sientes derrotado, lo ser\\u00e1s.<\\/p><p>Si est\\u00e1s cansado, perder\\u00e1s impulso.<\\/p><p>Si eres de enfoque alegre, lo negativo no tendr\\u00e1 m\\u00e1s remedio que retroceder.<\\/p><p>Decide re\\u00edr ante la adversidad.<\\/p><p>Sepa que es lo suficientemente poderoso como para superar toda dificultad.<\\/p><p>No dejes que tus pensamientos divaguen.<\\/p><p>S\\u00e9 poderoso.<\\/p><p>Con\\u00f3cete a ti mismo.<\\/p><p>Decide tener el control de tu realidad.<\\/p><p>No hay v\\u00edctimas, excepto aquellos que han renunciado a su poder.<\\/p><p>Posees la energ\\u00eda, creas y tomas el control de tu destino<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1665,254,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4799,640,'_elementor_template_type','wp-page'),(4800,640,'_elementor_edit_mode','builder'),(4801,640,'_elementor_version','3.12.2'),(4802,640,'_wp_page_template','default'),(4803,640,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4804,640,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TU POSEES LA ENERGIA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lo semejante atrae a lo semejante.<\\/p><p>Si te sientes derrotado, lo ser\\u00e1s.<\\/p><p>Si est\\u00e1s cansado, perder\\u00e1s impulso.<\\/p><p>Si eres de enfoque alegre, lo negativo no tendr\\u00e1 m\\u00e1s remedio que retroceder.<\\/p><p>Decide re\\u00edr ante la adversidad.<\\/p><p>Sepa que es lo suficientemente poderoso como para superar toda dificultad.<\\/p><p>No dejes que tus pensamientos divaguen.<\\/p><p>S\\u00e9 poderoso.<\\/p><p>Con\\u00f3cete a ti mismo.<\\/p><p>Decide tener el control de tu realidad.<\\/p><p>No hay v\\u00edctimas, excepto aquellos que han renunciado a su poder.<\\/p><p>Posees la energ\\u00eda, creas y tomas el control de tu destino<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1667,255,'_menu_item_type','post_type'),(1668,255,'_menu_item_menu_item_parent','165'),(1669,255,'_menu_item_object_id','246'),(1670,255,'_menu_item_object','page'),(1671,255,'_menu_item_target',''),(1672,255,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1673,255,'_menu_item_xfn',''),(1674,255,'_menu_item_url',''),(1685,257,'_elementor_template_type','wp-page'),(1676,256,'_menu_item_type','post_type'),(1677,256,'_menu_item_menu_item_parent','165'),(1678,256,'_menu_item_object_id','241'),(1679,256,'_menu_item_object','page'),(1680,256,'_menu_item_target',''),(1681,256,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1682,256,'_menu_item_xfn',''),(1683,256,'_menu_item_url',''),(1686,257,'_elementor_edit_mode','builder'),(1687,257,'_edit_lock','1686768213:1'),(1688,257,'_elementor_version','3.13.4'),(1689,257,'_edit_last','1'),(1690,257,'_wp_page_template','default'),(1691,257,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1692,257,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODAY\'S DREAMS ARE TOMORROW\'S SUCCESSES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">Don\'t be afraid of high hopes<br \\/>or plans that seem to be out of reach.<br \\/>Life is meant to be experienced,<br \\/>and every situation allows for<br \\/>learning and growth.<\\/p><p align=\\\"center\\\">Motivation is a positive starting point,<br \\/>and action places you on a forward path.<br \\/>A dream is a blueprint<br \\/>of a goal not yet achieved;<br \\/>the only difference between the two<br \\/>is the effort involved in attaining<br \\/>what you hope to accomplish.<\\/p><p align=\\\"center\\\">Let your mind and heart urge you on;<br \\/>allow the power of your will<br \\/>to lead you to your destination.<\\/p><p align=\\\"center\\\">Don\'t count the steps ahead;<br \\/>just add up the total<br \\/>of steps already covered,<br \\/>and multiply it by<br \\/>faith, confidence, and endurance.<\\/p><p align=\\\"center\\\">Always remember that<br \\/>for those who persist,<br \\/>today\'s dreams are transformed<br \\/>into tomorrow\'s successes.<\\/p><p align=\\\"center\\\">~ Kelly D. Caron ~<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#1A32D7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1693,257,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1694,257,'_eael_custom_js',''),(1704,259,'_elementor_template_type','wp-page'),(1705,259,'_elementor_edit_mode','builder'),(1706,259,'_elementor_version','3.12.2'),(1707,259,'_wp_page_template','default'),(1708,259,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1709,259,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TU POSEES LA ENERGIA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lo semejante atrae a lo semejante.<\\/p><p>Si te sientes derrotado, lo ser\\u00e1s.<\\/p><p>Si est\\u00e1s cansado, perder\\u00e1s impulso.<\\/p><p>Si eres de enfoque alegre, lo negativo no tendr\\u00e1 m\\u00e1s remedio que retroceder.<\\/p><p>Decide re\\u00edr ante la adversidad.<\\/p><p>Sepa que es lo suficientemente poderoso como para superar toda dificultad.<\\/p><p>No dejes que tus pensamientos divaguen.<\\/p><p>S\\u00e9 poderoso.<\\/p><p>Con\\u00f3cete a ti mismo.<\\/p><p>Decide tener el control de tu realidad.<\\/p><p>No hay v\\u00edctimas, excepto aquellos que han renunciado a su poder.<\\/p><p>Posees la energ\\u00eda, creas y tomas el control de tu destino<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1696,258,'_elementor_template_type','wp-page'),(1697,258,'_elementor_edit_mode','builder'),(1698,258,'_elementor_version','3.12.2'),(1699,258,'_wp_page_template','default'),(1700,258,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1701,258,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TU POSEES LA ENERGIA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lo semejante atrae a lo semejante.<\\/p><p>Si te sientes derrotado, lo ser\\u00e1s.<\\/p><p>Si est\\u00e1s cansado, perder\\u00e1s impulso.<\\/p><p>Si eres de enfoque alegre, lo negativo no tendr\\u00e1 m\\u00e1s remedio que retroceder.<\\/p><p>Decide re\\u00edr ante la adversidad.<\\/p><p>Sepa que es lo suficientemente poderoso como para superar toda dificultad.<\\/p><p>No dejes que tus pensamientos divaguen.<\\/p><p>S\\u00e9 poderoso.<\\/p><p>Con\\u00f3cete a ti mismo.<\\/p><p>Decide tener el control de tu realidad.<\\/p><p>No hay v\\u00edctimas, excepto aquellos que han renunciado a su poder.<\\/p><p>Posees la energ\\u00eda, creas y tomas el control de tu destino<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1702,258,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1703,258,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:9:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(1710,259,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1711,260,'_elementor_template_type','wp-page'),(1712,260,'_elementor_edit_mode','builder'),(1713,260,'_elementor_version','3.12.2'),(1714,260,'_wp_page_template','default'),(1715,260,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1716,260,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TU POSEES LA ENERGIA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lo semejante atrae a lo semejante.<\\/p><p>Si te sientes derrotado, lo ser\\u00e1s.<\\/p><p>Si est\\u00e1s cansado, perder\\u00e1s impulso.<\\/p><p>Si eres de enfoque alegre, lo negativo no tendr\\u00e1 m\\u00e1s remedio que retroceder.<\\/p><p>Decide re\\u00edr ante la adversidad.<\\/p><p>Sepa que es lo suficientemente poderoso como para superar toda dificultad.<\\/p><p>No dejes que tus pensamientos divaguen.<\\/p><p>S\\u00e9 poderoso.<\\/p><p>Con\\u00f3cete a ti mismo.<\\/p><p>Decide tener el control de tu realidad.<\\/p><p>No hay v\\u00edctimas, excepto aquellos que han renunciado a su poder.<\\/p><p>Posees la energ\\u00eda, creas y tomas el control de tu destino<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1717,260,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1718,261,'_elementor_template_type','wp-page'),(1719,261,'_elementor_edit_mode','builder'),(1720,261,'_elementor_version','3.12.2'),(1721,261,'_wp_page_template','default'),(1722,261,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1723,261,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOS SUE\\u00d1OS DE HOY SON LOS EXITOS DE MA\\u00d1ANA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>No tengas miedo de grandes esperanzas<br \\/>o planes que parecen estar fuera de tu alcance.<br \\/>La vida est\\u00e1 destinada a ser experimentada,<br \\/>y cada situaci\\u00f3n permite el<br \\/>aprendizaje y el crecimiento.<\\/p><p>La motivaci\\u00f3n es un punto de partida positivo,<br \\/>y la acci\\u00f3n te coloca en un camino hacia adelante.<br \\/>Un sue\\u00f1o es un plano<br \\/>de una meta a\\u00fan no alcanzada;<br \\/>La \\u00fanica diferencia entre los dos<br \\/>es el esfuerzo involucrado en lograr<br \\/>lo que esperas lograr.<\\/p><p>Deja que tu mente y tu coraz\\u00f3n te impulsen;<br \\/>Permite que el poder de tu voluntad<br \\/>te lleve a tu destino.<\\/p><p>No cuentes los pasos por delante;<br \\/>Simplemente suma el total<br \\/>de pasos ya cubiertos, y multipl\\u00edcalo por<br \\/>fe,<br \\/>confianza y resistencia.<\\/p><p>Recuerde siempre que para aquellos que<br \\/>persisten,<br \\/>los sue\\u00f1os de hoy se transforman<br \\/>en \\u00e9xitos de ma\\u00f1ana.<\\/p><p>~ Kelly D. Caron ~<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1724,261,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4716,629,'_elementor_template_type','wp-page'),(4717,629,'_elementor_edit_mode','builder'),(4718,629,'_elementor_version','3.12.2'),(4719,629,'_wp_page_template','default'),(4720,629,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4721,629,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOS SUE\\u00d1OS DE HOY SON LOS EXITOS DE MA\\u00d1ANA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>No tengas miedo de grandes esperanzas<br \\/>o planes que parecen estar fuera de tu alcance.<br \\/>La vida est\\u00e1 destinada a ser experimentada,<br \\/>y cada situaci\\u00f3n permite el<br \\/>aprendizaje y el crecimiento.<\\/p><p>La motivaci\\u00f3n es un punto de partida positivo,<br \\/>y la acci\\u00f3n te coloca en un camino hacia adelante.<br \\/>Un sue\\u00f1o es un plano<br \\/>de una meta a\\u00fan no alcanzada;<br \\/>La \\u00fanica diferencia entre los dos<br \\/>es el esfuerzo involucrado en lograr<br \\/>lo que esperas lograr.<\\/p><p>Deja que tu mente y tu coraz\\u00f3n te impulsen;<br \\/>Permite que el poder de tu voluntad<br \\/>te lleve a tu destino.<\\/p><p>No cuentes los pasos por delante;<br \\/>Simplemente suma el total<br \\/>de pasos ya cubiertos, y multipl\\u00edcalo por<br \\/>fe,<br \\/>confianza y resistencia.<\\/p><p>Recuerde siempre que para aquellos que<br \\/>persisten,<br \\/>los sue\\u00f1os de hoy se transforman<br \\/>en \\u00e9xitos de ma\\u00f1ana.<\\/p><p>~ Kelly D. Caron ~<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1726,262,'_elementor_template_type','wp-page'),(1727,262,'_elementor_edit_mode','builder'),(1728,262,'_edit_lock','1686768303:1'),(1729,262,'_elementor_version','3.13.4'),(1730,262,'_edit_last','1'),(1731,262,'_wp_page_template','default'),(1732,262,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1733,262,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WITHIN YOU IS THE STENGHT TO MEET TO MEET LIFE\'S CHALLENGES !\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">You are stronger than you think,<br \\/>remember to stand tall.<\\/p><p align=\\\"center\\\">Every challenge in your life<br \\/>helps you to grow.<\\/p><p align=\\\"center\\\">Every problem you encounter<br \\/>strengthens your mind and your soul.<\\/p><p align=\\\"center\\\">Every trouble you overcome<br \\/>increases your understanding of life.<\\/p><p align=\\\"center\\\">When all your troubles weigh<br \\/>heavily on your shoulders,<br \\/>remember that beneath the burden<br \\/>you can stand tall,<br \\/>because you are never given<br \\/>more than you can handle...<br \\/>and you are stronger than you think<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#1A32D7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1759,266,'_elementor_template_type','wp-page'),(1760,266,'_elementor_edit_mode','builder'),(1761,266,'_elementor_version','3.12.2'),(1762,266,'_wp_page_template','default'),(1763,266,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1734,262,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1735,262,'_eael_custom_js',''),(1745,264,'_elementor_template_type','wp-page'),(1746,264,'_elementor_edit_mode','builder'),(1747,264,'_elementor_version','3.12.2'),(1748,264,'_wp_page_template','default'),(1749,264,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1750,264,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOS SUE\\u00d1OS DE HOY SON LOS EXITOS DE MA\\u00d1ANA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>No tengas miedo de grandes esperanzas<br \\/>o planes que parecen estar fuera de tu alcance.<br \\/>La vida est\\u00e1 destinada a ser experimentada,<br \\/>y cada situaci\\u00f3n permite el<br \\/>aprendizaje y el crecimiento.<\\/p><p>La motivaci\\u00f3n es un punto de partida positivo,<br \\/>y la acci\\u00f3n te coloca en un camino hacia adelante.<br \\/>Un sue\\u00f1o es un plano<br \\/>de una meta a\\u00fan no alcanzada;<br \\/>La \\u00fanica diferencia entre los dos<br \\/>es el esfuerzo involucrado en lograr<br \\/>lo que esperas lograr.<\\/p><p>Deja que tu mente y tu coraz\\u00f3n te impulsen;<br \\/>Permite que el poder de tu voluntad<br \\/>te lleve a tu destino.<\\/p><p>No cuentes los pasos por delante;<br \\/>Simplemente suma el total<br \\/>de pasos ya cubiertos, y multipl\\u00edcalo por<br \\/>fe,<br \\/>confianza y resistencia.<\\/p><p>Recuerde siempre que para aquellos que<br \\/>persisten,<br \\/>los sue\\u00f1os de hoy se transforman<br \\/>en \\u00e9xitos de ma\\u00f1ana.<\\/p><p>~ Kelly D. Caron ~<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1737,263,'_elementor_template_type','wp-page'),(1738,263,'_elementor_edit_mode','builder'),(1739,263,'_elementor_version','3.12.2'),(1740,263,'_wp_page_template','default'),(1741,263,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1742,263,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOS SUE\\u00d1OS DE HOY SON LOS EXITOS DE MA\\u00d1ANA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>No tengas miedo de grandes esperanzas<br \\/>o planes que parecen estar fuera de tu alcance.<br \\/>La vida est\\u00e1 destinada a ser experimentada,<br \\/>y cada situaci\\u00f3n permite el<br \\/>aprendizaje y el crecimiento.<\\/p><p>La motivaci\\u00f3n es un punto de partida positivo,<br \\/>y la acci\\u00f3n te coloca en un camino hacia adelante.<br \\/>Un sue\\u00f1o es un plano<br \\/>de una meta a\\u00fan no alcanzada;<br \\/>La \\u00fanica diferencia entre los dos<br \\/>es el esfuerzo involucrado en lograr<br \\/>lo que esperas lograr.<\\/p><p>Deja que tu mente y tu coraz\\u00f3n te impulsen;<br \\/>Permite que el poder de tu voluntad<br \\/>te lleve a tu destino.<\\/p><p>No cuentes los pasos por delante;<br \\/>Simplemente suma el total<br \\/>de pasos ya cubiertos, y multipl\\u00edcalo por<br \\/>fe,<br \\/>confianza y resistencia.<\\/p><p>Recuerde siempre que para aquellos que<br \\/>persisten,<br \\/>los sue\\u00f1os de hoy se transforman<br \\/>en \\u00e9xitos de ma\\u00f1ana.<\\/p><p>~ Kelly D. Caron ~<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1743,263,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1744,263,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:9:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(1751,264,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1752,265,'_elementor_template_type','wp-page'),(1753,265,'_elementor_edit_mode','builder'),(1754,265,'_elementor_version','3.12.2'),(1755,265,'_wp_page_template','default'),(1756,265,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1757,265,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOS SUE\\u00d1OS DE HOY SON LOS EXITOS DE MA\\u00d1ANA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>No tengas miedo de grandes esperanzas<br \\/>o planes que parecen estar fuera de tu alcance.<br \\/>La vida est\\u00e1 destinada a ser experimentada,<br \\/>y cada situaci\\u00f3n permite el<br \\/>aprendizaje y el crecimiento.<\\/p><p>La motivaci\\u00f3n es un punto de partida positivo,<br \\/>y la acci\\u00f3n te coloca en un camino hacia adelante.<br \\/>Un sue\\u00f1o es un plano<br \\/>de una meta a\\u00fan no alcanzada;<br \\/>La \\u00fanica diferencia entre los dos<br \\/>es el esfuerzo involucrado en lograr<br \\/>lo que esperas lograr.<\\/p><p>Deja que tu mente y tu coraz\\u00f3n te impulsen;<br \\/>Permite que el poder de tu voluntad<br \\/>te lleve a tu destino.<\\/p><p>No cuentes los pasos por delante;<br \\/>Simplemente suma el total<br \\/>de pasos ya cubiertos, y multipl\\u00edcalo por<br \\/>fe,<br \\/>confianza y resistencia.<\\/p><p>Recuerde siempre que para aquellos que<br \\/>persisten,<br \\/>los sue\\u00f1os de hoy se transforman<br \\/>en \\u00e9xitos de ma\\u00f1ana.<\\/p><p>~ Kelly D. Caron ~<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1758,265,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1764,266,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOS SUE\\u00d1OS DE HOY SON LOS EXITOS DE MA\\u00d1ANA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Eres m\\u00e1s fuerte de lo que piensas,<br \\/>recuerda mantenerte erguido.<\\/p><p>Cada desaf\\u00edo en tu vida<br \\/>te ayuda a crecer.<\\/p><p>Cada problema que encuentras<br \\/>fortalece tu mente y tu alma.<\\/p><p>Cada problema que superas<br \\/>aumenta tu comprensi\\u00f3n de la vida.<\\/p><p>Cuando todos tus problemas pesen<br \\/>mucho sobre tus hombros, recuerda que debajo de la carga<br \\/>puedes mantenerte erguido,<br \\/><br \\/>porque nunca se te da<br \\/>m\\u00e1s de lo que puedes manejar ...<br \\/>y eres m\\u00e1s fuerte de lo que piensas.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1765,266,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1767,267,'_elementor_template_type','wp-page'),(1768,267,'_elementor_edit_mode','builder'),(1769,267,'_elementor_version','3.12.2'),(1770,267,'_wp_page_template','default'),(1771,267,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1772,267,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOS SUE\\u00d1OS DE HOY SON LOS EXITOS DE MA\\u00d1ANA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Eres m\\u00e1s fuerte de lo que piensas,<br \\/>recuerda mantenerte erguido.<\\/p><p>Cada desaf\\u00edo en tu vida<br \\/>te ayuda a crecer.<\\/p><p>Cada problema que encuentras<br \\/>fortalece tu mente y tu alma.<\\/p><p>Cada problema que superas<br \\/>aumenta tu comprensi\\u00f3n de la vida.<\\/p><p>Cuando todos tus problemas pesen<br \\/>mucho sobre tus hombros, recuerda que debajo de la carga<br \\/>puedes mantenerte erguido,<br \\/><br \\/>porque nunca se te da<br \\/>m\\u00e1s de lo que puedes manejar ...<br \\/>y eres m\\u00e1s fuerte de lo que piensas.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1773,267,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1774,268,'_elementor_template_type','wp-page'),(1775,268,'_elementor_edit_mode','builder'),(1776,268,'_elementor_version','3.12.2'),(1777,268,'_wp_page_template','default'),(1778,268,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1779,268,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOS SUE\\u00d1OS DE HOY SON LOS EXITOS DE MA\\u00d1ANA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Eres m\\u00e1s fuerte de lo que piensas,<br \\/>recuerda mantenerte erguido.<\\/p><p>Cada desaf\\u00edo en tu vida<br \\/>te ayuda a crecer.<\\/p><p>Cada problema que encuentras<br \\/>fortalece tu mente y tu alma.<\\/p><p>Cada problema que superas<br \\/>aumenta tu comprensi\\u00f3n de la vida.<\\/p><p>Cuando todos tus problemas pesen<br \\/>mucho sobre tus hombros, recuerda que debajo de la carga<br \\/>puedes mantenerte erguido,<br \\/><br \\/>porque nunca se te da<br \\/>m\\u00e1s de lo que puedes manejar ...<br \\/>y eres m\\u00e1s fuerte de lo que piensas.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1780,268,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1781,269,'_elementor_template_type','wp-page'),(1782,269,'_elementor_edit_mode','builder'),(1783,269,'_elementor_version','3.12.2'),(1784,269,'_wp_page_template','default'),(1785,269,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1786,269,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a1DENTRO DE TI ESTA LA FUERZA PARA ENFRENTAR LOS DESAFIOS DE LA VIDA!\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Eres m\\u00e1s fuerte de lo que piensas,<br \\/>recuerda mantenerte erguido.<\\/p><p>Cada desaf\\u00edo en tu vida<br \\/>te ayuda a crecer.<\\/p><p>Cada problema que encuentras<br \\/>fortalece tu mente y tu alma.<\\/p><p>Cada problema que superas<br \\/>aumenta tu comprensi\\u00f3n de la vida.<\\/p><p>Cuando todos tus problemas pesen<br \\/>mucho sobre tus hombros, recuerda que debajo de la carga<br \\/>puedes mantenerte erguido,<br \\/><br \\/>porque nunca se te da<br \\/>m\\u00e1s de lo que puedes manejar ...<br \\/>y eres m\\u00e1s fuerte de lo que piensas.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1787,269,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1791,271,'_elementor_template_type','wp-page'),(1792,271,'_elementor_edit_mode','builder'),(1793,271,'_elementor_version','3.12.2'),(1794,271,'_wp_page_template','default'),(1795,271,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1796,271,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a1DENTRO DE TI ESTA LA FUERZA PARA ENFRENTAR LOS DESAFIOS DE LA VIDA!\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Eres m\\u00e1s fuerte de lo que piensas,<br \\/>recuerda mantenerte erguido.<\\/p><p>Cada desaf\\u00edo en tu vida<br \\/>te ayuda a crecer.<\\/p><p>Cada problema que encuentras<br \\/>fortalece tu mente y tu alma.<\\/p><p>Cada problema que superas<br \\/>aumenta tu comprensi\\u00f3n de la vida.<\\/p><p>Cuando todos tus problemas pesen<br \\/>mucho sobre tus hombros, recuerda que debajo de la carga<br \\/>puedes mantenerte erguido,<br \\/><br \\/>porque nunca se te da<br \\/>m\\u00e1s de lo que puedes manejar ...<br \\/>y eres m\\u00e1s fuerte de lo que piensas.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1789,270,'_wp_attached_file','2023/04/images-9.jpeg'),(1790,270,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:275;s:6:\"height\";i:183;s:4:\"file\";s:21:\"2023/04/images-9.jpeg\";s:8:\"filesize\";i:6507;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"images-9-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5547;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1797,271,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1798,272,'_elementor_template_type','wp-page'),(1799,272,'_elementor_edit_mode','builder'),(1800,272,'_elementor_version','3.12.2'),(1801,272,'_wp_page_template','default'),(1802,272,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1803,272,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a1DENTRO DE TI ESTA LA FUERZA PARA ENFRENTAR LOS DESAFIOS DE LA VIDA!\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Eres m\\u00e1s fuerte de lo que piensas,<br \\/>recuerda mantenerte erguido.<\\/p><p>Cada desaf\\u00edo en tu vida<br \\/>te ayuda a crecer.<\\/p><p>Cada problema que encuentras<br \\/>fortalece tu mente y tu alma.<\\/p><p>Cada problema que superas<br \\/>aumenta tu comprensi\\u00f3n de la vida.<\\/p><p>Cuando todos tus problemas pesen<br \\/>mucho sobre tus hombros, recuerda que debajo de la carga<br \\/>puedes mantenerte erguido,<br \\/><br \\/>porque nunca se te da<br \\/>m\\u00e1s de lo que puedes manejar ...<br \\/>y eres m\\u00e1s fuerte de lo que piensas.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1804,272,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1805,273,'_elementor_template_type','wp-page'),(1806,273,'_elementor_edit_mode','builder'),(1807,273,'_elementor_version','3.12.2'),(1808,273,'_wp_page_template','default'),(1809,273,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1810,273,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a1DENTRO DE TI ESTA LA FUERZA PARA ENFRENTAR LOS DESAFIOS DE LA VIDA!\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Eres m\\u00e1s fuerte de lo que piensas,<br \\/>recuerda mantenerte erguido.<\\/p><p>Cada desaf\\u00edo en tu vida<br \\/>te ayuda a crecer.<\\/p><p>Cada problema que encuentras<br \\/>fortalece tu mente y tu alma.<\\/p><p>Cada problema que superas<br \\/>aumenta tu comprensi\\u00f3n de la vida.<\\/p><p>Cuando todos tus problemas pesen<br \\/>mucho sobre tus hombros, recuerda que debajo de la carga<br \\/>puedes mantenerte erguido,<br \\/><br \\/>porque nunca se te da<br \\/>m\\u00e1s de lo que puedes manejar ...<br \\/>y eres m\\u00e1s fuerte de lo que piensas.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-9.jpeg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1811,273,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4768,636,'_elementor_template_type','wp-page'),(4769,636,'_elementor_edit_mode','builder'),(4770,636,'_elementor_version','3.12.2'),(4771,636,'_wp_page_template','default'),(4772,636,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4773,636,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a1DENTRO DE TI ESTA LA FUERZA PARA ENFRENTAR LOS DESAFIOS DE LA VIDA!\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Eres m\\u00e1s fuerte de lo que piensas,<br \\/>recuerda mantenerte erguido.<\\/p><p>Cada desaf\\u00edo en tu vida<br \\/>te ayuda a crecer.<\\/p><p>Cada problema que encuentras<br \\/>fortalece tu mente y tu alma.<\\/p><p>Cada problema que superas<br \\/>aumenta tu comprensi\\u00f3n de la vida.<\\/p><p>Cuando todos tus problemas pesen<br \\/>mucho sobre tus hombros, recuerda que debajo de la carga<br \\/>puedes mantenerte erguido,<br \\/><br \\/>porque nunca se te da<br \\/>m\\u00e1s de lo que puedes manejar ...<br \\/>y eres m\\u00e1s fuerte de lo que piensas.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-9.jpeg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1813,274,'_menu_item_type','post_type'),(1814,274,'_menu_item_menu_item_parent','165'),(1815,274,'_menu_item_object_id','262'),(1816,274,'_menu_item_object','page'),(1817,274,'_menu_item_target',''),(1818,274,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1819,274,'_menu_item_xfn',''),(1820,274,'_menu_item_url',''),(1831,276,'_elementor_template_type','wp-page'),(1822,275,'_menu_item_type','post_type'),(1823,275,'_menu_item_menu_item_parent','165'),(1824,275,'_menu_item_object_id','257'),(1825,275,'_menu_item_object','page'),(1826,275,'_menu_item_target',''),(1827,275,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1828,275,'_menu_item_xfn',''),(1829,275,'_menu_item_url',''),(1832,276,'_elementor_edit_mode','builder'),(1833,276,'_edit_lock','1686854621:1'),(1834,276,'_elementor_version','3.13.3'),(1835,276,'_edit_last','1'),(1836,276,'_wp_page_template','default'),(1837,276,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1838,276,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-sheep-lion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-story-of-the-butterfly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/this-is-good\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wise-saint\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-two-frogs-in-trouble\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/tomorrow-is-going-to-be-better\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/whos-in-charge-of-your-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/an-interesting-funeral\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1877,282,'_elementor_template_type','wp-page'),(1878,282,'_elementor_edit_mode','builder'),(1879,282,'_elementor_version','3.12.2'),(1880,282,'_wp_page_template','default'),(1881,282,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1882,282,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1839,276,'_elementor_page_assets','a:0:{}'),(1840,276,'_eael_custom_js',''),(1863,280,'_elementor_template_type','wp-page'),(1864,280,'_elementor_edit_mode','builder'),(1865,280,'_elementor_version','3.12.2'),(1866,280,'_wp_page_template','default'),(1867,280,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1868,280,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODO ES POSIBLE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong><em>Cree en ti mismo y recuerda que todo es posible<\\/em><\\/strong><\\/h2><p>Cree en lo que te hace sentir bien.<br \\/>Cree en lo que te hace feliz.<br \\/>Cree en los sue\\u00f1os que siempre has querido que se hagan realidad<br \\/>y dales todas las oportunidades para hacerlo.<\\/p><p>La vida no tiene promesas de lo que vendr\\u00e1 en tu camino.<br \\/>Debes buscar tus propios ideales<br \\/>y trabajar para alcanzarlos.<\\/p><p>La vida no da garant\\u00edas en cuanto a lo que tendr\\u00e1s.<br \\/>Simplemente te da tiempo para tomar decisiones<br \\/>y\\u00a0arriesgarte<br \\/>y descubrir cualquier secreto que pueda surgir en tu camino.<\\/p><p>Si est\\u00e1s dispuesto a aprovechar las oportunidades que se te dan<br \\/>y\\u00a0utilizar las habilidades que tienes,<br \\/>constantemente llenar\\u00e1s tu vida<br \\/>con momentos especiales y momentos inolvidables.<\\/p><p>Nadie conoce los misterios de la vida o su significado \\u00faltimo,\\u00a0pero para aquellos que est\\u00e1n dispuestos<br \\/>a creer en sus sue\\u00f1os y en s\\u00ed mismos,<br \\/><br \\/>la\\u00a0vida es un regalo precioso en el que todo es posible.<\\/p><p>~ Dena DiIaconi ~<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1843,277,'_elementor_template_type','wp-page'),(1844,277,'_elementor_edit_mode','builder'),(1845,277,'_elementor_version','3.12.2'),(1846,277,'_wp_page_template','default'),(1847,277,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1848,277,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODO ES POSIBLE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong><em>Cree en ti mismo y recuerda que todo es posible<\\/em><\\/strong><\\/h2><p>Cree en lo que te hace sentir bien.<br \\/>Cree en lo que te hace feliz.<br \\/>Cree en los sue\\u00f1os que siempre has querido que se hagan realidad<br \\/>y dales todas las oportunidades para hacerlo.<\\/p><p>La vida no tiene promesas de lo que vendr\\u00e1 en tu camino.<br \\/>Debes buscar tus propios ideales<br \\/>y trabajar para alcanzarlos.<\\/p><p>La vida no da garant\\u00edas en cuanto a lo que tendr\\u00e1s.<br \\/>Simplemente te da tiempo para tomar decisiones<br \\/>y\\u00a0arriesgarte<br \\/>y descubrir cualquier secreto que pueda surgir en tu camino.<\\/p><p>Si est\\u00e1s dispuesto a aprovechar las oportunidades que se te dan<br \\/>y\\u00a0utilizar las habilidades que tienes,<br \\/>constantemente llenar\\u00e1s tu vida<br \\/>con momentos especiales y momentos inolvidables.<\\/p><p>Nadie conoce los misterios de la vida o su significado \\u00faltimo,\\u00a0pero para aquellos que est\\u00e1n dispuestos<br \\/>a creer en sus sue\\u00f1os y en s\\u00ed mismos,<br \\/><br \\/>la\\u00a0vida es un regalo precioso en el que todo es posible.<\\/p><p>~ Dena DiIaconi ~<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1849,277,'_elementor_page_assets','a:0:{}'),(1850,277,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}}'),(1926,287,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/en\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1892,283,'_menu_item_url',''),(1883,282,'_elementor_page_assets','a:0:{}'),(1895,284,'_elementor_template_type','wp-page'),(1896,284,'_elementor_edit_mode','builder'),(1897,284,'_elementor_version','3.12.2'),(1898,284,'_wp_page_template','default'),(1899,284,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1900,284,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1885,283,'_menu_item_type','post_type'),(1886,283,'_menu_item_menu_item_parent','0'),(1887,283,'_menu_item_object_id','276'),(1888,283,'_menu_item_object','page'),(1889,283,'_menu_item_target',''),(1890,283,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1891,283,'_menu_item_xfn',''),(1861,279,'_wp_attached_file','2023/04/descarga-5.jpeg'),(1862,279,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:273;s:6:\"height\";i:185;s:4:\"file\";s:23:\"2023/04/descarga-5.jpeg\";s:8:\"filesize\";i:7139;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"descarga-5-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6368;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1869,280,'_elementor_page_assets','a:0:{}'),(1870,281,'_elementor_template_type','wp-page'),(1871,281,'_elementor_edit_mode','builder'),(1872,281,'_elementor_version','3.12.2'),(1873,281,'_wp_page_template','default'),(1874,281,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1875,281,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODO ES POSIBLE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong><em>Cree en ti mismo y recuerda que todo es posible<\\/em><\\/strong><\\/h2><p>Cree en lo que te hace sentir bien.<br \\/>Cree en lo que te hace feliz.<br \\/>Cree en los sue\\u00f1os que siempre has querido que se hagan realidad<br \\/>y dales todas las oportunidades para hacerlo.<\\/p><p>La vida no tiene promesas de lo que vendr\\u00e1 en tu camino.<br \\/>Debes buscar tus propios ideales<br \\/>y trabajar para alcanzarlos.<\\/p><p>La vida no da garant\\u00edas en cuanto a lo que tendr\\u00e1s.<br \\/>Simplemente te da tiempo para tomar decisiones<br \\/>y\\u00a0arriesgarte<br \\/>y descubrir cualquier secreto que pueda surgir en tu camino.<\\/p><p>Si est\\u00e1s dispuesto a aprovechar las oportunidades que se te dan<br \\/>y\\u00a0utilizar las habilidades que tienes,<br \\/>constantemente llenar\\u00e1s tu vida<br \\/>con momentos especiales y momentos inolvidables.<\\/p><p>Nadie conoce los misterios de la vida o su significado \\u00faltimo,\\u00a0pero para aquellos que est\\u00e1n dispuestos<br \\/>a creer en sus sue\\u00f1os y en s\\u00ed mismos,<br \\/><br \\/>la\\u00a0vida es un regalo precioso en el que todo es posible.<\\/p><p>~ Dena DiIaconi ~<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1876,281,'_elementor_page_assets','a:0:{}'),(1901,284,'_elementor_page_assets','a:0:{}'),(1903,285,'_elementor_template_type','wp-page'),(1904,285,'_elementor_edit_mode','builder'),(1905,285,'_elementor_version','3.12.2'),(1906,285,'_wp_page_template','default'),(1907,285,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1908,285,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1909,285,'_elementor_page_assets','a:0:{}'),(1911,286,'_elementor_template_type','wp-page'),(1912,286,'_elementor_edit_mode','builder'),(1913,286,'_elementor_version','3.12.2'),(1914,286,'_wp_page_template','default'),(1915,286,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1916,286,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/en\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1917,286,'_elementor_page_assets','a:0:{}'),(1921,287,'_elementor_template_type','wp-page'),(1922,287,'_elementor_edit_mode','builder'),(1923,287,'_elementor_version','3.12.2'),(1924,287,'_wp_page_template','default'),(1925,287,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1954,291,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1927,287,'_elementor_page_assets','a:0:{}'),(1929,288,'_elementor_template_type','wp-page'),(1930,288,'_elementor_edit_mode','builder'),(1931,288,'_elementor_version','3.12.2'),(1932,288,'_wp_page_template','default'),(1933,288,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1934,288,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/en\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1935,288,'_elementor_page_assets','a:0:{}'),(1937,289,'_elementor_template_type','wp-page'),(1938,289,'_elementor_edit_mode','builder'),(1939,289,'_elementor_version','3.12.2'),(1940,289,'_wp_page_template','default'),(1941,289,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1942,289,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1943,289,'_elementor_page_assets','a:0:{}'),(1949,291,'_elementor_template_type','wp-page'),(1950,291,'_elementor_edit_mode','builder'),(1951,291,'_elementor_version','3.12.2'),(1952,291,'_wp_page_template','default'),(1953,291,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1993,298,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1947,290,'_wp_attached_file','2023/04/descarga-6.jpeg'),(1948,290,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:168;s:4:\"file\";s:23:\"2023/04/descarga-6.jpeg\";s:8:\"filesize\";i:5668;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"descarga-6-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1955,291,'_elementor_page_assets','a:0:{}'),(1957,292,'_elementor_template_type','wp-page'),(1958,292,'_elementor_edit_mode','builder'),(1959,292,'_elementor_version','3.12.2'),(1960,292,'_wp_page_template','default'),(1961,292,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1962,292,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1963,292,'_elementor_page_assets','a:0:{}'),(1965,293,'_elementor_template_type','wp-page'),(1966,293,'_elementor_edit_mode','builder'),(1967,293,'_elementor_version','3.12.2'),(1968,293,'_wp_page_template','default'),(1969,293,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1970,293,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1971,293,'_elementor_page_assets','a:0:{}'),(1988,298,'_elementor_template_type','wp-page'),(1989,298,'_elementor_edit_mode','builder'),(1990,298,'_elementor_version','3.12.2'),(1991,298,'_wp_page_template','default'),(1992,298,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(1974,294,'_wp_attached_file','2023/04/images-10.jpeg'),(1975,294,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:281;s:6:\"height\";i:180;s:4:\"file\";s:22:\"2023/04/images-10.jpeg\";s:8:\"filesize\";i:6047;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"images-10-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5197;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2028,304,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2029,304,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2008,300,'_elementor_page_assets','a:0:{}'),(2002,300,'_elementor_template_type','wp-page'),(2003,300,'_elementor_edit_mode','builder'),(2004,300,'_elementor_version','3.12.2'),(2005,300,'_wp_page_template','default'),(2006,300,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2007,300,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1984,296,'_wp_attached_file','2023/04/images-11.jpeg'),(1985,296,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:290;s:6:\"height\";i:174;s:4:\"file\";s:22:\"2023/04/images-11.jpeg\";s:8:\"filesize\";i:7188;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"images-11-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5032;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1986,297,'_wp_attached_file','2023/04/descarga-7.jpeg'),(1987,297,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:259;s:6:\"height\";i:194;s:4:\"file\";s:23:\"2023/04/descarga-7.jpeg\";s:8:\"filesize\";i:7603;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"descarga-7-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6216;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1994,298,'_elementor_page_assets','a:0:{}'),(1995,299,'_elementor_template_type','wp-page'),(1996,299,'_elementor_edit_mode','builder'),(1997,299,'_elementor_version','3.12.2'),(1998,299,'_wp_page_template','default'),(1999,299,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2000,299,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2001,299,'_elementor_page_assets','a:0:{}'),(2024,304,'_elementor_template_type','wp-page'),(2025,304,'_elementor_edit_mode','builder'),(2026,304,'_elementor_version','3.12.2'),(2027,304,'_wp_page_template','default'),(2020,302,'_wp_attached_file','2023/04/images-12.jpeg'),(2021,302,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:259;s:6:\"height\";i:194;s:4:\"file\";s:22:\"2023/04/images-12.jpeg\";s:8:\"filesize\";i:6129;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"images-12-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5009;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2057,309,'_elementor_edit_mode','builder'),(2058,309,'_elementor_version','3.12.2'),(2059,309,'_wp_page_template','default'),(2060,309,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2044,306,'_elementor_page_assets','a:0:{}'),(2061,309,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2040,306,'_elementor_version','3.12.2'),(2041,306,'_wp_page_template','default'),(2042,306,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2043,306,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2038,306,'_elementor_template_type','wp-page'),(2039,306,'_elementor_edit_mode','builder'),(2022,303,'_wp_attached_file','2023/04/da-un-paso-adelante.png'),(2023,303,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1015;s:6:\"height\";i:465;s:4:\"file\";s:31:\"2023/04/da-un-paso-adelante.png\";s:8:\"filesize\";i:452332;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"da-un-paso-adelante-300x137.png\";s:5:\"width\";i:300;s:6:\"height\";i:137;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54119;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"da-un-paso-adelante-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33411;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"da-un-paso-adelante-768x352.png\";s:5:\"width\";i:768;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:313488;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2030,304,'_elementor_page_assets','a:0:{}'),(2031,305,'_elementor_template_type','wp-page'),(2032,305,'_elementor_edit_mode','builder'),(2033,305,'_elementor_version','3.12.2'),(2034,305,'_wp_page_template','default'),(2035,305,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2036,305,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2037,305,'_elementor_page_assets','a:0:{}'),(2056,309,'_elementor_template_type','wp-page'),(2099,317,'_wp_page_template','default'),(2100,317,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2101,317,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2076,311,'_elementor_page_assets','a:0:{}'),(2070,311,'_elementor_template_type','wp-page'),(2071,311,'_elementor_edit_mode','builder'),(2072,311,'_elementor_version','3.12.2'),(2073,311,'_wp_page_template','default'),(2074,311,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2075,311,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2054,308,'_wp_attached_file','2023/04/descarga-8.jpeg'),(2055,308,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:23:\"2023/04/descarga-8.jpeg\";s:8:\"filesize\";i:12402;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"descarga-8-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9530;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2062,309,'_elementor_page_assets','a:0:{}'),(2063,310,'_elementor_template_type','wp-page'),(2064,310,'_elementor_edit_mode','builder'),(2065,310,'_elementor_version','3.12.2'),(2066,310,'_wp_page_template','default'),(2067,310,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2068,310,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2069,310,'_elementor_page_assets','a:0:{}'),(2096,317,'_elementor_template_type','wp-page'),(2097,317,'_elementor_edit_mode','builder'),(2098,317,'_elementor_version','3.12.2'),(2088,313,'_wp_attached_file','2023/04/descarga-9.jpeg'),(2089,313,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:253;s:6:\"height\";i:199;s:4:\"file\";s:23:\"2023/04/descarga-9.jpeg\";s:8:\"filesize\";i:13957;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"descarga-9-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9153;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2110,319,'_elementor_template_type','wp-page'),(2111,319,'_elementor_edit_mode','builder'),(2112,319,'_elementor_version','3.12.2'),(2113,319,'_wp_page_template','default'),(2114,319,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2090,314,'_wp_attached_file','2023/04/descarga-10.jpeg'),(2091,314,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:275;s:6:\"height\";i:183;s:4:\"file\";s:24:\"2023/04/descarga-10.jpeg\";s:8:\"filesize\";i:7760;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"descarga-10-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6941;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2092,315,'_wp_attached_file','2023/04/descarga-11.jpeg'),(2093,315,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:259;s:6:\"height\";i:194;s:4:\"file\";s:24:\"2023/04/descarga-11.jpeg\";s:8:\"filesize\";i:9428;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"descarga-11-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7331;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2115,319,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2094,316,'_wp_attached_file','2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg'),(2095,316,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:874;s:6:\"height\";i:480;s:4:\"file\";s:45:\"2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\";s:8:\"filesize\";i:32867;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10783;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"ee3caa2d0f7980ae26f7cfe2bfb13957-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5686;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:422;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33453;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2102,317,'_elementor_page_assets','a:0:{}'),(2103,318,'_elementor_template_type','wp-page'),(2104,318,'_elementor_edit_mode','builder'),(2105,318,'_elementor_version','3.12.2'),(2106,318,'_wp_page_template','default'),(2107,318,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2108,318,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2109,318,'_elementor_page_assets','a:0:{}'),(2116,319,'_elementor_page_assets','a:0:{}'),(2134,325,'_elementor_template_type','wp-page'),(2135,325,'_elementor_edit_mode','builder'),(2136,325,'_elementor_version','3.12.2'),(2137,325,'_wp_page_template','default'),(2138,325,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2139,325,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2118,320,'_wp_attached_file','2023/04/descarga-12.jpeg'),(2119,320,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:263;s:6:\"height\";i:191;s:4:\"file\";s:24:\"2023/04/descarga-12.jpeg\";s:8:\"filesize\";i:7298;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"descarga-12-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5935;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2120,321,'_wp_attached_file','2023/04/ventana.png'),(2121,321,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:780;s:6:\"height\";i:414;s:4:\"file\";s:19:\"2023/04/ventana.png\";s:8:\"filesize\";i:468685;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"ventana-300x159.png\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:94440;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"ventana-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49370;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"ventana-768x408.png\";s:5:\"width\";i:768;s:6:\"height\";i:408;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:449530;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2148,327,'_elementor_template_type','wp-page'),(2149,327,'_elementor_edit_mode','builder'),(2150,327,'_elementor_version','3.12.2'),(2151,327,'_wp_page_template','default'),(2152,327,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2153,327,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2130,323,'_wp_attached_file','2023/04/El-rey-con-cuatro-esposas.jpg'),(2131,323,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:37:\"2023/04/El-rey-con-cuatro-esposas.jpg\";s:8:\"filesize\";i:160920;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"El-rey-con-cuatro-esposas-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16206;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"El-rey-con-cuatro-esposas-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108216;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"El-rey-con-cuatro-esposas-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8217;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"El-rey-con-cuatro-esposas-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70812;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2132,324,'_wp_attached_file','2023/04/pensamientos-1.jpg'),(2133,324,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:699;s:6:\"height\";i:378;s:4:\"file\";s:26:\"2023/04/pensamientos-1.jpg\";s:8:\"filesize\";i:99477;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"pensamientos-1-300x162.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11962;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"pensamientos-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5985;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2140,325,'_elementor_page_assets','a:0:{}'),(2141,326,'_elementor_template_type','wp-page'),(2142,326,'_elementor_edit_mode','builder'),(2143,326,'_elementor_version','3.12.2'),(2144,326,'_wp_page_template','default'),(2145,326,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2146,326,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2147,326,'_elementor_page_assets','a:0:{}'),(2154,327,'_elementor_page_assets','a:0:{}'),(2170,332,'_elementor_template_type','wp-page'),(2171,332,'_elementor_edit_mode','builder'),(2172,332,'_elementor_version','3.12.2'),(2173,332,'_wp_page_template','default'),(2174,332,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2175,332,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2184,334,'_elementor_template_type','wp-page'),(2185,334,'_elementor_edit_mode','builder'),(2186,334,'_elementor_version','3.12.2'),(2187,334,'_wp_page_template','default'),(2188,334,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2189,334,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2168,331,'_wp_attached_file','2023/04/el-leon-que-se-creia-cordero.jpg'),(2164,329,'_wp_attached_file','2023/04/images-13.jpeg'),(2165,329,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:336;s:6:\"height\";i:150;s:4:\"file\";s:22:\"2023/04/images-13.jpeg\";s:8:\"filesize\";i:9295;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"images-13-300x134.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10198;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"images-13-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5625;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2166,330,'_wp_attached_file','2023/04/descarga-13.jpeg'),(2167,330,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:274;s:6:\"height\";i:184;s:4:\"file\";s:24:\"2023/04/descarga-13.jpeg\";s:8:\"filesize\";i:7445;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"descarga-13-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6212;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2169,331,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:494;s:4:\"file\";s:40:\"2023/04/el-leon-que-se-creia-cordero.jpg\";s:8:\"filesize\";i:80897;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"el-leon-que-se-creia-cordero-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13869;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"el-leon-que-se-creia-cordero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7039;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"el-leon-que-se-creia-cordero-768x474.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:474;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63296;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2176,332,'_elementor_page_assets','a:0:{}'),(2177,333,'_elementor_template_type','wp-page'),(2178,333,'_elementor_edit_mode','builder'),(2179,333,'_elementor_version','3.12.2'),(2180,333,'_wp_page_template','default'),(2181,333,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2182,333,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2183,333,'_elementor_page_assets','a:0:{}'),(2190,334,'_elementor_page_assets','a:0:{}'),(2204,338,'_elementor_template_type','wp-page'),(2205,338,'_elementor_edit_mode','builder'),(2206,338,'_elementor_version','3.12.2'),(2207,338,'_wp_page_template','default'),(2208,338,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2209,338,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2218,340,'_elementor_template_type','wp-page'),(2219,340,'_elementor_edit_mode','builder'),(2220,340,'_elementor_version','3.12.2'),(2221,340,'_wp_page_template','default'),(2222,340,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2223,340,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2200,336,'_wp_attached_file','2023/04/sddefault.jpg'),(2201,336,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:21:\"2023/04/sddefault.jpg\";s:8:\"filesize\";i:50279;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"sddefault-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14200;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"sddefault-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6424;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2202,337,'_wp_attached_file','2023/04/descarga-14.jpeg'),(2203,337,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:216;s:6:\"height\";i:233;s:4:\"file\";s:24:\"2023/04/descarga-14.jpeg\";s:8:\"filesize\";i:8357;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"descarga-14-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6467;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2210,338,'_elementor_page_assets','a:0:{}'),(2211,339,'_elementor_template_type','wp-page'),(2212,339,'_elementor_edit_mode','builder'),(2213,339,'_elementor_version','3.12.2'),(2214,339,'_wp_page_template','default'),(2215,339,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2216,339,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2217,339,'_elementor_page_assets','a:0:{}'),(2224,340,'_elementor_page_assets','a:0:{}'),(2244,346,'_elementor_template_type','wp-page'),(2245,346,'_elementor_edit_mode','builder'),(2246,346,'_elementor_version','3.12.2'),(2247,346,'_wp_page_template','default'),(2248,346,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2249,346,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2238,343,'_wp_attached_file','2023/04/descarga-16.jpeg'),(2239,343,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:310;s:6:\"height\";i:162;s:4:\"file\";s:24:\"2023/04/descarga-16.jpeg\";s:8:\"filesize\";i:8611;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"descarga-16-300x157.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10510;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"descarga-16-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6488;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2227,341,'_wp_attached_file','2023/04/descarga-15.jpeg'),(2228,341,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:168;s:4:\"file\";s:24:\"2023/04/descarga-15.jpeg\";s:8:\"filesize\";i:6162;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"descarga-15-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6398;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2258,348,'_elementor_template_type','wp-page'),(2259,348,'_elementor_edit_mode','builder'),(2260,348,'_elementor_version','3.12.2'),(2261,348,'_wp_page_template','default'),(2262,348,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpjv_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (2263,348,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2240,344,'_wp_attached_file','2023/04/descarga-17.jpeg'),(2241,344,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:318;s:6:\"height\";i:159;s:4:\"file\";s:24:\"2023/04/descarga-17.jpeg\";s:8:\"filesize\";i:12336;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"descarga-17-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15332;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"descarga-17-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8254;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2242,345,'_wp_attached_file','2023/04/descarga-18.jpeg'),(2243,345,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:317;s:6:\"height\";i:159;s:4:\"file\";s:24:\"2023/04/descarga-18.jpeg\";s:8:\"filesize\";i:3823;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"descarga-18-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5004;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"descarga-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3442;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2250,346,'_elementor_page_assets','a:0:{}'),(2251,347,'_elementor_template_type','wp-page'),(2252,347,'_elementor_edit_mode','builder'),(2253,347,'_elementor_version','3.12.2'),(2254,347,'_wp_page_template','default'),(2255,347,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2256,347,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2257,347,'_elementor_page_assets','a:0:{}'),(2264,348,'_elementor_page_assets','a:0:{}'),(2276,351,'_elementor_template_type','wp-page'),(2277,351,'_elementor_edit_mode','builder'),(2278,351,'_elementor_version','3.12.2'),(2279,351,'_wp_page_template','default'),(2280,351,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2281,351,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2290,353,'_elementor_template_type','wp-page'),(2291,353,'_elementor_edit_mode','builder'),(2292,353,'_elementor_version','3.12.2'),(2293,353,'_wp_page_template','default'),(2294,353,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2295,353,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2274,350,'_wp_attached_file','2023/04/descarga-19.jpeg'),(2275,350,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:284;s:6:\"height\";i:177;s:4:\"file\";s:24:\"2023/04/descarga-19.jpeg\";s:8:\"filesize\";i:6491;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"descarga-19-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5894;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2282,351,'_elementor_page_assets','a:0:{}'),(2283,352,'_elementor_template_type','wp-page'),(2284,352,'_elementor_edit_mode','builder'),(2285,352,'_elementor_version','3.12.2'),(2286,352,'_wp_page_template','default'),(2287,352,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2288,352,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2289,352,'_elementor_page_assets','a:0:{}'),(2296,353,'_elementor_page_assets','a:0:{}'),(2432,369,'_elementor_template_type','wp-page'),(2433,369,'_elementor_edit_mode','builder'),(2434,369,'_elementor_version','3.12.2'),(2435,369,'_wp_page_template','default'),(2436,369,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2437,369,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2298,354,'_elementor_template_type','wp-page'),(2299,354,'_elementor_edit_mode','builder'),(2300,354,'_edit_lock','1686768823:1'),(2301,354,'_elementor_version','3.13.4'),(2302,354,'_edit_last','1'),(2303,354,'_wp_page_template','default'),(2304,354,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2305,354,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">There is this story about a famous research scientist who had made several very important medical breakthroughs. He was being interviewed by a newspaper reporter who asked him why he thought he was able to be so much more creative than the average person. What set him so far apart from others?<\\/p><p style=\\\"text-align: justify;\\\">He responded that, in his opinion, it all came from an experience with his mother that occurred when he was about two years old. He had been trying to remove a bottle of milk from the refrigerator when he lost his grip on the slippery bottle and it fell, spilling its contents all over the kitchen floor - a veritable sea of milk!<\\/p><p style=\\\"text-align: justify;\\\">When his mother came into the kitchen, instead of yelling at him, giving him a lecture, or punishing him, she said, \\\"Robert, what a great and wonderful mess you have made! I have rarely seen such a huge puddle of milk. Well, the damage has already been done. Would you like to get down and play in the milk for a few minutes before we clean it up?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Indeed, he did. After a few minutes, his mother said, \\\"You know, Robert, whenever you make a mess like this, eventually you have to clean it up and restore everything to its proper order. So, how would you like to do that? We could use a sponge, a towel, or a mop. Which do you prefer?\\\"<\\/p><p style=\\\"text-align: justify;\\\">He chose the sponge and together they cleaned up the spilled milk.<\\/p><p style=\\\"text-align: justify;\\\">His mother then said, \\\"You know, what we have here is a failed experiment in how to effectively carry a big milk bottle with two tiny hands. Let\'s go out in the back yard and fill the bottle with water and see if you can discover a way to carry it without dropping it.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The little boy learned that if he grasped the bottle at the top near the lip with both hands, he could carry it without dropping it. This renowned scientist then remarked that it was at that moment that he knew he didn\'t need to be afraid to make mistakes. Instead, he learned that mistakes were just opportunities for learning something new, which is, after all, what scientific experiments are all about. Even if the experiment \\\"doesn\'t work,\\\" we usually learn something valuable from it.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2306,354,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2307,354,'_eael_custom_js',''),(2317,356,'_elementor_template_type','wp-page'),(2318,356,'_elementor_edit_mode','builder'),(2319,356,'_elementor_version','3.12.2'),(2320,356,'_wp_page_template','default'),(2321,356,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2322,356,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMETETE A TI MISMO\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>(uno de los poemas motivacionales m\\u00e1s cl\\u00e1sicos)<\\/p><p>Prom\\u00e9tete a ti mismo ser tan fuerte que nada pueda<br \\/>perturbar tu tranquilidad.<\\/p><p>Para hablar de salud, felicidad y prosperidad a<br \\/>cada persona que conozcas.<\\/p><p>Para hacer que todos tus amigos sientan que hay<br \\/>algo en ellos.<\\/p><p>Para mirar el lado soleado de todo y hacer realidad tu<br \\/>optimismo.<\\/p><p>Pensar s\\u00f3lo en lo mejor, trabajar s\\u00f3lo para lo mejor,<br \\/>y esperar s\\u00f3lo lo mejor.<\\/p><p>Estar tan entusiasmado con el \\u00e9xito de los dem\\u00e1s<br \\/>como lo eres con el tuyo propio.<\\/p><p>Olvidar los errores del pasado y presionar sobre los<br \\/>mayores logros del futuro.<\\/p><p>Llevar un semblante alegre en todo momento y dar<br \\/>una sonrisa a cada persona viva que conozcas.<\\/p><p>Dedicar tanto tiempo a la mejora de ti mismo<br \\/>que no tengas tiempo para criticar a los dem\\u00e1s.<\\/p><p>Ser demasiado grande para la preocupaci\\u00f3n, demasiado noble para la ira, y demasiado fuerte para el miedo, y demasiado<br \\/>feliz para permitir la<br \\/>presencia de problemas.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2309,355,'_elementor_template_type','wp-page'),(2310,355,'_elementor_edit_mode','builder'),(2311,355,'_elementor_version','3.12.2'),(2312,355,'_wp_page_template','default'),(2313,355,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2314,355,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMETETE A TI MISMO\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>(uno de los poemas motivacionales m\\u00e1s cl\\u00e1sicos)<\\/p><p>Prom\\u00e9tete a ti mismo ser tan fuerte que nada pueda<br \\/>perturbar tu tranquilidad.<\\/p><p>Para hablar de salud, felicidad y prosperidad a<br \\/>cada persona que conozcas.<\\/p><p>Para hacer que todos tus amigos sientan que hay<br \\/>algo en ellos.<\\/p><p>Para mirar el lado soleado de todo y hacer realidad tu<br \\/>optimismo.<\\/p><p>Pensar s\\u00f3lo en lo mejor, trabajar s\\u00f3lo para lo mejor,<br \\/>y esperar s\\u00f3lo lo mejor.<\\/p><p>Estar tan entusiasmado con el \\u00e9xito de los dem\\u00e1s<br \\/>como lo eres con el tuyo propio.<\\/p><p>Olvidar los errores del pasado y presionar sobre los<br \\/>mayores logros del futuro.<\\/p><p>Llevar un semblante alegre en todo momento y dar<br \\/>una sonrisa a cada persona viva que conozcas.<\\/p><p>Dedicar tanto tiempo a la mejora de ti mismo<br \\/>que no tengas tiempo para criticar a los dem\\u00e1s.<\\/p><p>Ser demasiado grande para la preocupaci\\u00f3n, demasiado noble para la ira, y demasiado fuerte para el miedo, y demasiado<br \\/>feliz para permitir la<br \\/>presencia de problemas.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2315,355,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2316,355,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:9:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(2323,356,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2324,357,'_elementor_template_type','wp-page'),(2325,357,'_elementor_edit_mode','builder'),(2326,357,'_elementor_version','3.12.2'),(2327,357,'_wp_page_template','default'),(2328,357,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2329,357,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMETETE A TI MISMO\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>(uno de los poemas motivacionales m\\u00e1s cl\\u00e1sicos)<\\/p><p>Prom\\u00e9tete a ti mismo ser tan fuerte que nada pueda<br \\/>perturbar tu tranquilidad.<\\/p><p>Para hablar de salud, felicidad y prosperidad a<br \\/>cada persona que conozcas.<\\/p><p>Para hacer que todos tus amigos sientan que hay<br \\/>algo en ellos.<\\/p><p>Para mirar el lado soleado de todo y hacer realidad tu<br \\/>optimismo.<\\/p><p>Pensar s\\u00f3lo en lo mejor, trabajar s\\u00f3lo para lo mejor,<br \\/>y esperar s\\u00f3lo lo mejor.<\\/p><p>Estar tan entusiasmado con el \\u00e9xito de los dem\\u00e1s<br \\/>como lo eres con el tuyo propio.<\\/p><p>Olvidar los errores del pasado y presionar sobre los<br \\/>mayores logros del futuro.<\\/p><p>Llevar un semblante alegre en todo momento y dar<br \\/>una sonrisa a cada persona viva que conozcas.<\\/p><p>Dedicar tanto tiempo a la mejora de ti mismo<br \\/>que no tengas tiempo para criticar a los dem\\u00e1s.<\\/p><p>Ser demasiado grande para la preocupaci\\u00f3n, demasiado noble para la ira, y demasiado fuerte para el miedo, y demasiado<br \\/>feliz para permitir la<br \\/>presencia de problemas.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2330,357,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2331,358,'_elementor_template_type','wp-page'),(2332,358,'_elementor_edit_mode','builder'),(2333,358,'_elementor_version','3.12.2'),(2334,358,'_wp_page_template','default'),(2335,358,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2336,358,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2337,358,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5044,674,'_elementor_template_type','wp-page'),(5045,674,'_elementor_edit_mode','builder'),(5046,674,'_elementor_version','3.12.2'),(5047,674,'_wp_page_template','default'),(5048,674,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5049,674,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2340,359,'_elementor_template_type','wp-page'),(2341,359,'_elementor_edit_mode','builder'),(2342,359,'_edit_lock','1686768896:1'),(2343,359,'_elementor_version','3.13.4'),(2344,359,'_edit_last','1'),(2345,359,'_wp_page_template','default'),(2346,359,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2347,359,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.<\\/h3><h3>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.<\\/h3><h3>Here\'s what you do,\\\" said the Doctor, \\\"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\\\"<\\/h3><h3>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \\\"I\'m about 40 feet away, let\'s see what happens.\\\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\\\"<\\/h3><h3>No response.<\\/h3><h3>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>Still no response.<\\/h3><h3>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\\\"<\\/h3><h3>Again he gets no response.<\\/h3><h3>So he walks up to the kitchen door, about 10 feet away. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>Again there is no response.<\\/h3><h3>So he walks right up behind her. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>\\\"James, for the FIFTH time I\'ve said, Lima Beans!\\\"<\\/h3><h3>The problem may not be with the other person as we always think, could be very much within us!<\\/h3>\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6926,929,'_elementor_template_type','wp-page'),(6927,929,'_elementor_edit_mode','builder'),(6928,929,'_elementor_version','3.13.3'),(6929,929,'_wp_page_template','default'),(6930,929,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6874,923,'_elementor_template_type','wp-page'),(2377,363,'_elementor_template_type','wp-page'),(2378,363,'_elementor_edit_mode','builder'),(2379,363,'_elementor_version','3.12.2'),(2380,363,'_wp_page_template','default'),(2381,363,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2382,363,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un hombre tem\\u00eda que su esposa no estuviera escuchando tan bien como sol\\u00eda hacerlo y pens\\u00f3 que podr\\u00eda necesitar un aud\\u00edfono. Sin estar muy seguro de c\\u00f3mo acercarse a ella, llam\\u00f3 al m\\u00e9dico de familia para discutir el problema.<\\/p><p>El Doctor le dijo que hay una simple prueba informal que el marido podr\\u00eda realizar para darle al Doctor una mejor idea sobre su p\\u00e9rdida auditiva.<\\/p><p>Esto es lo que haces\\\", dijo el Doctor, \\\"p\\u00e1rate a unos 40 pies de distancia de ella, y en un tono de conversaci\\u00f3n normal mira si te escucha. Si no, ve a 30 pies, luego a 20 pies, y as\\u00ed sucesivamente hasta que obtengas una respuesta\\\".<\\/p><p>Esa noche, la esposa est\\u00e1 en la cocina cocinando la cena, y \\u00e9l estaba en el estudio. Se dice a s\\u00ed mismo: \\\"Estoy a unos 40 pies de distancia, veamos qu\\u00e9 pasa\\\". Luego, en un tono normal, pregunta: \'Cari\\u00f1o, \\u00bfqu\\u00e9 hay para cenar?\'<\\/p><p>Sin respuesta.<\\/p><p>As\\u00ed que el esposo se acerca a la cocina, a unos 30 pies de su esposa y repite: \\\"Cari\\u00f1o, \\u00bfqu\\u00e9 hay para cenar?\\\"<\\/p><p>Todav\\u00eda no hay respuesta.<\\/p><p>Luego se muda al comedor donde est\\u00e1 a unos 20 pies de su esposa y pregunta: \\\"Cari\\u00f1o, \\u00bfqu\\u00e9 hay para cenar?\\\"<\\/p><p>Una vez m\\u00e1s no obtiene respuesta.<\\/p><p>As\\u00ed que camina hacia la puerta de la cocina, a unos 10 pies de distancia. \\\"Cari\\u00f1o, \\u00bfqu\\u00e9 hay para cenar?\\\"<\\/p><p>Una vez m\\u00e1s, no hay respuesta.<\\/p><p>As\\u00ed que camina justo detr\\u00e1s de ella. \\\"Cari\\u00f1o, \\u00bfqu\\u00e9 hay para cenar?\\\"<\\/p><p>\\\"James, por QUINTA vez he dicho, \\u00a1Frijoles Lima!\\\"<\\/p><p><strong>El problema puede no ser con la otra persona como siempre pensamos, \\u00a1podr\\u00eda estar muy dentro de nosotros!<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2348,359,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2349,359,'_eael_custom_js',''),(2361,361,'_elementor_template_type','wp-page'),(2362,361,'_elementor_edit_mode','builder'),(2363,361,'_elementor_version','3.12.2'),(2364,361,'_wp_page_template','default'),(2365,361,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2366,361,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2352,360,'_elementor_template_type','wp-page'),(2353,360,'_elementor_edit_mode','builder'),(2354,360,'_elementor_version','3.12.2'),(2355,360,'_wp_page_template','default'),(2356,360,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2357,360,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2358,360,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2359,360,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4405,589,'_elementor_template_type','wp-page'),(4406,589,'_elementor_edit_mode','builder'),(4407,589,'_elementor_version','3.13.2'),(2367,361,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4408,589,'_wp_page_template','default'),(4409,589,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2369,362,'_elementor_template_type','wp-page'),(2370,362,'_elementor_edit_mode','builder'),(2371,362,'_elementor_version','3.12.2'),(2372,362,'_wp_page_template','default'),(2373,362,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2374,362,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2375,362,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4410,589,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SE LO QUE QUIERAS SER!\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a1Puedes ser\\u00a0<strong>lo que<\\/strong><br \\/><strong>quieras ser!<\\/strong><\\/p><p>Hay dentro de ti<br \\/>todo el potencial<br \\/>para ser lo que\\u00a0quieras ser,<br \\/>toda la energ\\u00eda<br \\/>para hacer lo que quieras hacer.<\\/p><p>Imag\\u00ednate como te gustar\\u00eda ser,\\u00a0haciendo lo que quieres hacer,\\u00a0y cada d\\u00eda,<br \\/><br \\/>da un paso<br \\/>hacia tu sue\\u00f1o.<\\/p><p>Y aunque a veces parezca demasiado<br \\/>dif\\u00edcil continuar,<br \\/>af\\u00e9rrate a tu sue\\u00f1o.<\\/p><p>Una ma\\u00f1ana te despertar\\u00e1s para descubrir<br \\/>que\\u00a0eres la persona con la que so\\u00f1aste,\\u00a0haciendo lo que quer\\u00edas hacer,\\u00a0simplemente porque tuviste el coraje<br \\/>de creer en tu potencial<br \\/>y aferrarte a tu sue\\u00f1o.<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000EB\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2383,363,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5074,678,'_elementor_template_type','wp-page'),(5075,678,'_elementor_edit_mode','builder'),(5076,678,'_elementor_version','3.12.2'),(5077,678,'_wp_page_template','default'),(5078,678,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5079,678,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un hombre tem\\u00eda que su esposa no estuviera escuchando tan bien como sol\\u00eda hacerlo y pens\\u00f3 que podr\\u00eda necesitar un aud\\u00edfono. Sin estar muy seguro de c\\u00f3mo acercarse a ella, llam\\u00f3 al m\\u00e9dico de familia para discutir el problema.<\\/p><p>El Doctor le dijo que hay una simple prueba informal que el marido podr\\u00eda realizar para darle al Doctor una mejor idea sobre su p\\u00e9rdida auditiva.<\\/p><p>Esto es lo que haces\\\", dijo el Doctor, \\\"p\\u00e1rate a unos 40 pies de distancia de ella, y en un tono de conversaci\\u00f3n normal mira si te escucha. Si no, ve a 30 pies, luego a 20 pies, y as\\u00ed sucesivamente hasta que obtengas una respuesta\\\".<\\/p><p>Esa noche, la esposa est\\u00e1 en la cocina cocinando la cena, y \\u00e9l estaba en el estudio. Se dice a s\\u00ed mismo: \\\"Estoy a unos 40 pies de distancia, veamos qu\\u00e9 pasa\\\". Luego, en un tono normal, pregunta: \'Cari\\u00f1o, \\u00bfqu\\u00e9 hay para cenar?\'<\\/p><p>Sin respuesta.<\\/p><p>As\\u00ed que el esposo se acerca a la cocina, a unos 30 pies de su esposa y repite: \\\"Cari\\u00f1o, \\u00bfqu\\u00e9 hay para cenar?\\\"<\\/p><p>Todav\\u00eda no hay respuesta.<\\/p><p>Luego se muda al comedor donde est\\u00e1 a unos 20 pies de su esposa y pregunta: \\\"Cari\\u00f1o, \\u00bfqu\\u00e9 hay para cenar?\\\"<\\/p><p>Una vez m\\u00e1s no obtiene respuesta.<\\/p><p>As\\u00ed que camina hacia la puerta de la cocina, a unos 10 pies de distancia. \\\"Cari\\u00f1o, \\u00bfqu\\u00e9 hay para cenar?\\\"<\\/p><p>Una vez m\\u00e1s, no hay respuesta.<\\/p><p>As\\u00ed que camina justo detr\\u00e1s de ella. \\\"Cari\\u00f1o, \\u00bfqu\\u00e9 hay para cenar?\\\"<\\/p><p>\\\"James, por QUINTA vez he dicho, \\u00a1Frijoles Lima!\\\"<\\/p><p><strong>El problema puede no ser con la otra persona como siempre pensamos, \\u00a1podr\\u00eda estar muy dentro de nosotros!<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2386,364,'_elementor_template_type','wp-page'),(2387,364,'_elementor_edit_mode','builder'),(2388,364,'_edit_lock','1686769138:1'),(2389,364,'_elementor_version','3.13.4'),(2390,364,'_edit_last','1'),(2391,364,'_wp_page_template','default'),(2392,364,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2393,364,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \\\"Who would like this $20 bill?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Hands started going up.<\\/p><p style=\\\"text-align: justify;\\\">He said, \\\"I am going to give this $20 to one of you but first, let me do this.\\\" He proceeded to crumple the dollar bill up.<\\/p><p style=\\\"text-align: justify;\\\">He then asked, \\\"Who still wants it?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Still the hands were up in the air.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Well,\\\" he replied, \\\"What if I do this?\\\" And he dropped it on the ground and started to grind it into the floor with his shoe.<\\/p><p style=\\\"text-align: justify;\\\">He picked it up, now all crumpled and dirty. \\\"Now who still wants it?\\\" Still the hands went into the air.<\\/p><p style=\\\"text-align: justify;\\\">\\\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.<\\/p><p style=\\\"text-align: justify;\\\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.<\\/p><p style=\\\"text-align: justify;\\\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2423,368,'_elementor_template_type','wp-page'),(2424,368,'_elementor_edit_mode','builder'),(2425,368,'_elementor_version','3.12.2'),(2426,368,'_wp_page_template','default'),(2427,368,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2428,368,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un conocido orador comenz\\u00f3 su seminario sosteniendo un billete de $ 20. En la sala de 200, pregunt\\u00f3: \\\"\\u00bfA qui\\u00e9n le gustar\\u00eda este billete de 20 d\\u00f3lares?\\\"<\\/p><p>Las manos comenzaron a subir.<\\/p><p>\\u00c9l dijo: \\\"Voy a darle estos $ 20 a uno de ustedes, pero primero, d\\u00e9jenme hacer esto\\\". Procedi\\u00f3 a arrugar el billete de un d\\u00f3lar.<\\/p><p>Luego pregunt\\u00f3: \\\"\\u00bfQui\\u00e9n todav\\u00eda lo quiere?\\\"<\\/p><p>A\\u00fan as\\u00ed, las manos estaban en el aire.<\\/p><p>\\\"Bueno\\\", respondi\\u00f3, \\\"\\u00bfy si hago esto?\\\" Y lo dej\\u00f3 caer al suelo y comenz\\u00f3 a molerlo en el suelo con su zapato.<\\/p><p>Lo recogi\\u00f3, ahora todo arrugado y sucio. \\\"Ahora, \\u00bfqui\\u00e9n todav\\u00eda lo quiere?\\\" A\\u00fan as\\u00ed, las manos se elevaron en el aire.<\\/p><p>\\\"Mis amigos, todos ustedes han aprendido una lecci\\u00f3n muy valiosa. No importa lo que le hiciera al dinero, todav\\u00eda lo quer\\u00edas porque no disminu\\u00eda su valor. Todav\\u00eda val\\u00eda $ 20.<\\/p><p>Muchas veces en nuestras vidas, somos dejados caer, arrugados y molidos en la tierra por las decisiones que tomamos y las circunstancias que se nos presentan.<\\/p><p>Sentimos que no valemos nada. Pero no importa lo que haya sucedido o lo que suceda, nunca perder\\u00e1 su valor. Tienes alma divina. Eres especial, \\u00a1nunca lo olvides!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2394,364,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2395,364,'_eael_custom_js',''),(2407,366,'_elementor_template_type','wp-page'),(2408,366,'_elementor_edit_mode','builder'),(2409,366,'_elementor_version','3.12.2'),(2410,366,'_wp_page_template','default'),(2411,366,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2412,366,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2398,365,'_elementor_template_type','wp-page'),(2399,365,'_elementor_edit_mode','builder'),(2400,365,'_elementor_version','3.12.2'),(2401,365,'_wp_page_template','default'),(2402,365,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2403,365,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2404,365,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2405,365,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(2413,366,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2415,367,'_elementor_template_type','wp-page'),(2416,367,'_elementor_edit_mode','builder'),(2417,367,'_elementor_version','3.12.2'),(2418,367,'_wp_page_template','default'),(2419,367,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2420,367,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2421,367,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2429,368,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5104,682,'_elementor_template_type','wp-page'),(5105,682,'_elementor_edit_mode','builder'),(5106,682,'_elementor_version','3.12.2'),(5107,682,'_wp_page_template','default'),(5108,682,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5109,682,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un conocido orador comenz\\u00f3 su seminario sosteniendo un billete de $ 20. En la sala de 200, pregunt\\u00f3: \\\"\\u00bfA qui\\u00e9n le gustar\\u00eda este billete de 20 d\\u00f3lares?\\\"<\\/p><p>Las manos comenzaron a subir.<\\/p><p>\\u00c9l dijo: \\\"Voy a darle estos $ 20 a uno de ustedes, pero primero, d\\u00e9jenme hacer esto\\\". Procedi\\u00f3 a arrugar el billete de un d\\u00f3lar.<\\/p><p>Luego pregunt\\u00f3: \\\"\\u00bfQui\\u00e9n todav\\u00eda lo quiere?\\\"<\\/p><p>A\\u00fan as\\u00ed, las manos estaban en el aire.<\\/p><p>\\\"Bueno\\\", respondi\\u00f3, \\\"\\u00bfy si hago esto?\\\" Y lo dej\\u00f3 caer al suelo y comenz\\u00f3 a molerlo en el suelo con su zapato.<\\/p><p>Lo recogi\\u00f3, ahora todo arrugado y sucio. \\\"Ahora, \\u00bfqui\\u00e9n todav\\u00eda lo quiere?\\\" A\\u00fan as\\u00ed, las manos se elevaron en el aire.<\\/p><p>\\\"Mis amigos, todos ustedes han aprendido una lecci\\u00f3n muy valiosa. No importa lo que le hiciera al dinero, todav\\u00eda lo quer\\u00edas porque no disminu\\u00eda su valor. Todav\\u00eda val\\u00eda $ 20.<\\/p><p>Muchas veces en nuestras vidas, somos dejados caer, arrugados y molidos en la tierra por las decisiones que tomamos y las circunstancias que se nos presentan.<\\/p><p>Sentimos que no valemos nada. Pero no importa lo que haya sucedido o lo que suceda, nunca perder\\u00e1 su valor. Tienes alma divina. Eres especial, \\u00a1nunca lo olvides!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2438,369,'_elementor_page_assets','a:0:{}'),(2439,370,'_elementor_template_type','wp-page'),(2440,370,'_elementor_edit_mode','builder'),(2441,370,'_elementor_version','3.12.2'),(2442,370,'_wp_page_template','default'),(2443,370,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2444,370,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2445,370,'_elementor_page_assets','a:0:{}'),(2446,371,'_elementor_template_type','wp-page'),(2447,371,'_elementor_edit_mode','builder'),(2448,371,'_elementor_version','3.12.2'),(2449,371,'_wp_page_template','default'),(2450,371,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2451,371,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2452,371,'_elementor_page_assets','a:0:{}'),(2454,372,'_elementor_template_type','wp-page'),(2455,372,'_elementor_edit_mode','builder'),(2456,372,'_elementor_version','3.12.2'),(2457,372,'_wp_page_template','default'),(2458,372,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2459,372,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2460,372,'_elementor_page_assets','a:0:{}'),(2461,373,'_elementor_template_type','wp-page'),(2462,373,'_elementor_edit_mode','builder'),(2463,373,'_elementor_version','3.12.2'),(2464,373,'_wp_page_template','default'),(2465,373,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2466,373,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2467,373,'_elementor_page_assets','a:0:{}'),(2468,374,'_elementor_template_type','wp-page'),(2469,374,'_elementor_edit_mode','builder'),(2470,374,'_elementor_version','3.12.2'),(2471,374,'_wp_page_template','default'),(2472,374,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2473,374,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2474,374,'_elementor_page_assets','a:0:{}'),(2476,375,'_elementor_template_type','wp-page'),(2477,375,'_elementor_edit_mode','builder'),(2478,375,'_elementor_version','3.12.2'),(2479,375,'_wp_page_template','default'),(2480,375,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2481,375,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2482,375,'_elementor_page_assets','a:0:{}'),(2483,376,'_elementor_template_type','wp-page'),(2484,376,'_elementor_edit_mode','builder'),(2485,376,'_elementor_version','3.12.2'),(2486,376,'_wp_page_template','default'),(2487,376,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2488,376,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2489,376,'_elementor_page_assets','a:0:{}'),(2490,377,'_elementor_template_type','wp-page'),(2491,377,'_elementor_edit_mode','builder'),(2492,377,'_elementor_version','3.12.2'),(2493,377,'_wp_page_template','default'),(2494,377,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2495,377,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2496,377,'_elementor_page_assets','a:0:{}'),(2745,404,'_elementor_template_type','wp-page'),(2746,404,'_elementor_edit_mode','builder'),(2747,404,'_elementor_version','3.12.2'),(2748,404,'_wp_page_template','default'),(2749,404,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2750,404,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4146,560,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2501,378,'_elementor_template_type','wp-page'),(2502,378,'_elementor_edit_mode','builder'),(2503,378,'_edit_lock','1691535877:1'),(2504,378,'_elementor_version','3.13.4'),(2505,378,'_edit_last','1'),(2506,378,'_wp_page_template','default'),(2507,378,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2508,378,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Three farmers gathered to evaluate and share their experiences from the year passed. Each had a hundred square meter of land on which they farmed. At the end of the meeting, the first farmer said, \\\"The situation was very hard and it will be much worse for next year.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The second replied, \\\"You are certainly right. As a matter of fact, after working very hard the whole year, from sunrise to sunset, I only gained 1% profit after all expenses.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Calculating his own numbers, the first farmer replied, \\\"I believe that my total profit is exactly the same as yours, which is 1%.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The two of them looked at the third farmer and asked, \\\"How much profit did you make during this year?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The third farmer kindly replied, \\\"Gentleman, with all due respect, I obtained a 5% profit during this year.\\\"<\\/p><p style=\\\"text-align: justify;\\\">That was followed by a long silence...<\\/p><p style=\\\"text-align: justify;\\\">\\\"How come? 5% profit?? That is impossible!!!! How did you do that???\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"Very easy and simple math,\\\" said the third farmer. \\\"I made the very same 1% profit as you did. ... plus 4% that represents the immense pleasure to be able to enjoy this view, milk my cows and enjoy the most of my farm. That gives me 5% total profit.\\\"<\\/p><p style=\\\"text-align: justify;\\\"><b>Moral Of the Story:<\\/b> All of us have to take care of our farm (that is our hundred square meter land) and get the maximum profit while enjoying every instant of our lives and work!!!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2547,383,'_elementor_template_type','wp-page'),(2548,383,'_elementor_edit_mode','builder'),(2549,383,'_elementor_version','3.12.2'),(2550,383,'_wp_page_template','default'),(2551,383,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2552,383,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tres agricultores se reunieron para evaluar y compartir sus experiencias del a\\u00f1o pasado. Cada uno ten\\u00eda cien metros cuadrados de tierra en la que cultivaban. Al final de la reuni\\u00f3n, el primer agricultor dijo: \\\"La situaci\\u00f3n era muy dif\\u00edcil y ser\\u00e1 mucho peor para el pr\\u00f3ximo a\\u00f1o\\\".<\\/p><p>El segundo respondi\\u00f3: \\\"Ciertamente tienes raz\\u00f3n. De hecho, despu\\u00e9s de trabajar muy duro todo el a\\u00f1o, desde el amanecer hasta el atardecer, solo obtuve un 1% de ganancias despu\\u00e9s de todos los gastos\\\".<\\/p><p>Calculando sus propios n\\u00fameros, el primer agricultor respondi\\u00f3: \\\"Creo que mi ganancia total es exactamente la misma que la suya, que es del 1%\\\".<\\/p><p>Los dos miraron al tercer agricultor y le preguntaron: \\\"\\u00bfCu\\u00e1ntas ganancias obtuviste durante este a\\u00f1o?\\\"<\\/p><p>El tercer agricultor respondi\\u00f3 amablemente: \\\"Caballero, con el debido respeto, obtuve una ganancia del 5% durante este a\\u00f1o\\\".<\\/p><p>Eso fue seguido por un largo silencio ...<\\/p><p>\\\"\\u00bfC\\u00f3mo es que? 5% de ganancia?? Eso es imposible!!!! \\u00bfC\\u00f3mo lo hiciste???\\\"<\\/p><p>\\\"Matem\\u00e1ticas muy f\\u00e1ciles y simples\\\", dijo el tercer agricultor. \\\"Obtuve el mismo beneficio del 1% que t\\u00fa. ... m\\u00e1s un 4% que representa el inmenso placer de poder disfrutar de esta vista, orde\\u00f1ar mis vacas y disfrutar al m\\u00e1ximo de mi granja. Eso me da un 5% de ganancia total\\\".<\\/p><p><strong>Moraleja de la historia:<\\/strong>\\u00a0Todos tenemos que cuidar nuestra granja (que es nuestra tierra de cien metros cuadrados) y obtener el m\\u00e1ximo beneficio mientras disfrutamos de cada instante de nuestras vidas y trabajo!!!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2509,378,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2510,378,'_eael_custom_js',''),(2531,381,'_elementor_template_type','wp-page'),(2532,381,'_elementor_edit_mode','builder'),(2533,381,'_elementor_version','3.12.2'),(2534,381,'_wp_page_template','default'),(2535,381,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2536,381,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2513,379,'_elementor_template_type','wp-page'),(2514,379,'_elementor_edit_mode','builder'),(2515,379,'_elementor_version','3.12.2'),(2516,379,'_wp_page_template','default'),(2517,379,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2518,379,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2519,379,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2520,379,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(2522,380,'_elementor_template_type','wp-page'),(2523,380,'_elementor_edit_mode','builder'),(2524,380,'_elementor_version','3.12.2'),(2525,380,'_wp_page_template','default'),(2526,380,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2527,380,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2528,380,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2529,380,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(2537,381,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2539,382,'_elementor_template_type','wp-page'),(2540,382,'_elementor_edit_mode','builder'),(2541,382,'_elementor_version','3.12.2'),(2542,382,'_wp_page_template','default'),(2543,382,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2544,382,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2545,382,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2553,383,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5165,690,'_elementor_template_type','wp-page'),(5166,690,'_elementor_edit_mode','builder'),(5167,690,'_elementor_version','3.12.2'),(5168,690,'_wp_page_template','default'),(5169,690,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5170,690,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tres agricultores se reunieron para evaluar y compartir sus experiencias del a\\u00f1o pasado. Cada uno ten\\u00eda cien metros cuadrados de tierra en la que cultivaban. Al final de la reuni\\u00f3n, el primer agricultor dijo: \\\"La situaci\\u00f3n era muy dif\\u00edcil y ser\\u00e1 mucho peor para el pr\\u00f3ximo a\\u00f1o\\\".<\\/p><p>El segundo respondi\\u00f3: \\\"Ciertamente tienes raz\\u00f3n. De hecho, despu\\u00e9s de trabajar muy duro todo el a\\u00f1o, desde el amanecer hasta el atardecer, solo obtuve un 1% de ganancias despu\\u00e9s de todos los gastos\\\".<\\/p><p>Calculando sus propios n\\u00fameros, el primer agricultor respondi\\u00f3: \\\"Creo que mi ganancia total es exactamente la misma que la suya, que es del 1%\\\".<\\/p><p>Los dos miraron al tercer agricultor y le preguntaron: \\\"\\u00bfCu\\u00e1ntas ganancias obtuviste durante este a\\u00f1o?\\\"<\\/p><p>El tercer agricultor respondi\\u00f3 amablemente: \\\"Caballero, con el debido respeto, obtuve una ganancia del 5% durante este a\\u00f1o\\\".<\\/p><p>Eso fue seguido por un largo silencio ...<\\/p><p>\\\"\\u00bfC\\u00f3mo es que? 5% de ganancia?? Eso es imposible!!!! \\u00bfC\\u00f3mo lo hiciste???\\\"<\\/p><p>\\\"Matem\\u00e1ticas muy f\\u00e1ciles y simples\\\", dijo el tercer agricultor. \\\"Obtuve el mismo beneficio del 1% que t\\u00fa. ... m\\u00e1s un 4% que representa el inmenso placer de poder disfrutar de esta vista, orde\\u00f1ar mis vacas y disfrutar al m\\u00e1ximo de mi granja. Eso me da un 5% de ganancia total\\\".<\\/p><p><strong>Moraleja de la historia:<\\/strong>\\u00a0Todos tenemos que cuidar nuestra granja (que es nuestra tierra de cien metros cuadrados) y obtener el m\\u00e1ximo beneficio mientras disfrutamos de cada instante de nuestras vidas y trabajo!!!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2557,384,'_elementor_template_type','wp-page'),(2558,384,'_elementor_edit_mode','builder'),(2559,384,'_edit_lock','1686769360:1'),(2560,384,'_elementor_version','3.13.4'),(2561,384,'_edit_last','1'),(2562,384,'_wp_page_template','default'),(2563,384,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2564,384,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Bringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \\\"A View from the Zoo\\\", Gary Richmond describes<\\/p><p style=\\\"text-align: justify;\\\">how a newborn giraffe learns its first lesson.<br \\/>The mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing.\\u00a0She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.<\\/p><p style=\\\"text-align: justify;\\\">When it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.<\\/p><p style=\\\"text-align: justify;\\\">Then the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.<\\/p><p style=\\\"text-align: justify;\\\">The late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.<\\/p><p style=\\\"text-align: justify;\\\">Stone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \\\"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.<\\/p><p style=\\\"text-align: justify;\\\">\\\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\\\"<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2565,384,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2566,384,'_eael_custom_js',''),(2578,386,'_elementor_template_type','wp-page'),(2579,386,'_elementor_edit_mode','builder'),(2580,386,'_elementor_version','3.12.2'),(2581,386,'_wp_page_template','default'),(2582,386,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2583,386,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2569,385,'_elementor_template_type','wp-page'),(2570,385,'_elementor_edit_mode','builder'),(2571,385,'_elementor_version','3.12.2'),(2572,385,'_wp_page_template','default'),(2573,385,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2574,385,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2575,385,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2576,385,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(2584,386,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2586,387,'_elementor_template_type','wp-page'),(2587,387,'_elementor_edit_mode','builder'),(2588,387,'_elementor_version','3.12.2'),(2589,387,'_wp_page_template','default'),(2590,387,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2591,387,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2592,387,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5215,696,'_elementor_template_type','wp-page'),(5216,696,'_elementor_edit_mode','builder'),(5217,696,'_elementor_version','3.12.2'),(5218,696,'_wp_page_template','default'),(5219,696,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5220,696,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Bringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \\\"A View from the Zoo\\\", Gary Richmond describes<\\/p><p style=\\\"text-align: justify;\\\">how a newborn giraffe learns its first lesson.<br \\/>The mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing.\\u00a0She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.<\\/p><p style=\\\"text-align: justify;\\\">When it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.<\\/p><p style=\\\"text-align: justify;\\\">Then the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.<\\/p><p style=\\\"text-align: justify;\\\">The late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.<\\/p><p style=\\\"text-align: justify;\\\">Stone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \\\"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.<\\/p><p style=\\\"text-align: justify;\\\">\\\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\\\"<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2594,388,'_elementor_template_type','wp-page'),(2595,388,'_elementor_edit_mode','builder'),(2596,388,'_elementor_version','3.12.2'),(2597,388,'_wp_page_template','default'),(2598,388,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2599,388,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Traer una jirafa al mundo es una tarea dif\\u00edcil. Una jirafa beb\\u00e9 cae a 10 pies del \\u00fatero de su madre y generalmente aterriza sobre su espalda. En cuesti\\u00f3n de segundos se da la vuelta y mete las piernas debajo de su cuerpo. Desde esta posici\\u00f3n considera el mundo por primera vez y se sacude los \\u00faltimos vestigios del fluido de parto de sus ojos y o\\u00eddos. Luego, la madre jirafa presenta groseramente a su descendencia la realidad de la vida. En su libro, \\\"A View from the Zoo\\\", Gary Richmond describe<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">C\\u00f3mo una jirafa reci\\u00e9n nacida aprende su primera lecci\\u00f3n.<br \\/>La jirafa madre baja la cabeza el tiempo suficiente para echar un vistazo r\\u00e1pido. Luego se posiciona directamente sobre su pantorrilla. Ella espera aproximadamente un minuto, y luego hace lo m\\u00e1s irrazonable. Ella balancea su pierna larga y colgante hacia afuera y patea a su beb\\u00e9, de modo que se env\\u00eda con la cabeza extendida sobre los talones.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Cuando no se levanta, el proceso violento se repite una y otra vez. La lucha por levantarse es trascendental. A medida que el ternero se cansa, la madre lo patea nuevamente para estimular sus esfuerzos. Finalmente, la pantorrilla se para por primera vez sobre sus patas tambaleantes.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Entonces la jirafa madre hace lo m\\u00e1s notable. Ella lo patea de sus pies de nuevo. \\u00bfPor qu\\u00e9? Ella quiere que recuerde c\\u00f3mo se levant\\u00f3. En la naturaleza, las jirafas beb\\u00e9s deben poder levantarse lo m\\u00e1s r\\u00e1pido posible para permanecer con la manada, donde hay seguridad. Leones, hienas, leopardos y perros de caza salvajes disfrutan de jirafas j\\u00f3venes, y tambi\\u00e9n lo conseguir\\u00edan, si la madre no le ense\\u00f1ara a su cr\\u00eda a levantarse r\\u00e1pidamente y seguir adelante.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">El difunto Irving Stone entendi\\u00f3 esto. Pas\\u00f3 toda una vida estudiando la grandeza, escribiendo biograf\\u00edas noveladas de hombres como Miguel \\u00c1ngel, Vincent van Gogh, Sigmund Freud y Charles Darwin.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Una vez le preguntaron a Stone si hab\\u00eda encontrado un hilo que recorriera la vida de todas estas personas excepcionales. \\u00c9l dijo: \\\"Escribo sobre personas que en alg\\u00fan momento de su vida tienen una visi\\u00f3n o sue\\u00f1o de algo que deber\\u00eda lograrse y van a trabajar.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">\\\"Son golpeados en la cabeza, derribados, vilipendiados, y durante a\\u00f1os no llegan a ninguna parte. Pero cada vez que son derribados se ponen de pie. No puedes destruir a estas personas. Y al final de sus vidas han logrado una parte modesta de lo que se propusieron hacer\\\".<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2600,388,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5199,694,'_elementor_template_type','wp-page'),(5200,694,'_elementor_edit_mode','builder'),(5201,694,'_elementor_version','3.12.2'),(5202,694,'_wp_page_template','default'),(5203,694,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5204,694,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Traer una jirafa al mundo es una tarea dif\\u00edcil. Una jirafa beb\\u00e9 cae a 10 pies del \\u00fatero de su madre y generalmente aterriza sobre su espalda. En cuesti\\u00f3n de segundos se da la vuelta y mete las piernas debajo de su cuerpo. Desde esta posici\\u00f3n considera el mundo por primera vez y se sacude los \\u00faltimos vestigios del fluido de parto de sus ojos y o\\u00eddos. Luego, la madre jirafa presenta groseramente a su descendencia la realidad de la vida. En su libro, \\\"A View from the Zoo\\\", Gary Richmond describe<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">C\\u00f3mo una jirafa reci\\u00e9n nacida aprende su primera lecci\\u00f3n.<br \\/>La jirafa madre baja la cabeza el tiempo suficiente para echar un vistazo r\\u00e1pido. Luego se posiciona directamente sobre su pantorrilla. Ella espera aproximadamente un minuto, y luego hace lo m\\u00e1s irrazonable. Ella balancea su pierna larga y colgante hacia afuera y patea a su beb\\u00e9, de modo que se env\\u00eda con la cabeza extendida sobre los talones.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Cuando no se levanta, el proceso violento se repite una y otra vez. La lucha por levantarse es trascendental. A medida que el ternero se cansa, la madre lo patea nuevamente para estimular sus esfuerzos. Finalmente, la pantorrilla se para por primera vez sobre sus patas tambaleantes.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Entonces la jirafa madre hace lo m\\u00e1s notable. Ella lo patea de sus pies de nuevo. \\u00bfPor qu\\u00e9? Ella quiere que recuerde c\\u00f3mo se levant\\u00f3. En la naturaleza, las jirafas beb\\u00e9s deben poder levantarse lo m\\u00e1s r\\u00e1pido posible para permanecer con la manada, donde hay seguridad. Leones, hienas, leopardos y perros de caza salvajes disfrutan de jirafas j\\u00f3venes, y tambi\\u00e9n lo conseguir\\u00edan, si la madre no le ense\\u00f1ara a su cr\\u00eda a levantarse r\\u00e1pidamente y seguir adelante.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">El difunto Irving Stone entendi\\u00f3 esto. Pas\\u00f3 toda una vida estudiando la grandeza, escribiendo biograf\\u00edas noveladas de hombres como Miguel \\u00c1ngel, Vincent van Gogh, Sigmund Freud y Charles Darwin.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Una vez le preguntaron a Stone si hab\\u00eda encontrado un hilo que recorriera la vida de todas estas personas excepcionales. \\u00c9l dijo: \\\"Escribo sobre personas que en alg\\u00fan momento de su vida tienen una visi\\u00f3n o sue\\u00f1o de algo que deber\\u00eda lograrse y van a trabajar.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">\\\"Son golpeados en la cabeza, derribados, vilipendiados, y durante a\\u00f1os no llegan a ninguna parte. Pero cada vez que son derribados se ponen de pie. No puedes destruir a estas personas. Y al final de sus vidas han logrado una parte modesta de lo que se propusieron hacer\\\".<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2604,389,'_elementor_template_type','wp-page'),(2605,389,'_elementor_edit_mode','builder'),(2606,389,'_edit_lock','1686853991:1'),(2607,389,'_elementor_version','3.13.4'),(2608,389,'_edit_last','1'),(2609,389,'_wp_page_template','default'),(2610,389,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2611,389,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Sir Winston Churchill took three years getting through eighth grade because he had trouble learning English. It seems ironic that years later Oxford University asked him to address its commencement exercises.<\\/p><p style=\\\"text-align: justify;\\\">He arrived with his usual props. A cigar, a cane and a top hat accompanied Churchill wherever he went. As Churchill approached the podium, the crowd rose in appreciative applause. With unmatched dignity, he settled the crowd and stood confident before his admirers. Removing the cigar and carefully placing the top hat on the podium, Churchill gazed at his waiting audience. Authority rang in Churchill\'s voice as he shouted, \\\"Never give up!\\\"<\\/p><p style=\\\"text-align: justify;\\\">Several seconds passed before he rose to his toes and repeated: \\\"Never give up!\\\" His words thundered in their ears. There was a deafening silence as Churchill reached for his hat and cigar, steadied himself with his cane and left the platform. His commencement address was finished<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5246,700,'_elementor_template_type','wp-page'),(5247,700,'_elementor_edit_mode','builder'),(2641,393,'_elementor_template_type','wp-page'),(2642,393,'_elementor_edit_mode','builder'),(2643,393,'_elementor_version','3.12.2'),(2644,393,'_wp_page_template','default'),(2645,393,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2646,393,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sir Winston Churchill tard\\u00f3 tres a\\u00f1os en terminar el octavo grado porque ten\\u00eda problemas para aprender ingl\\u00e9s. Parece ir\\u00f3nico que a\\u00f1os m\\u00e1s tarde la Universidad de Oxford le pidiera que abordara sus ejercicios de graduaci\\u00f3n.<\\/p><p>Lleg\\u00f3 con sus accesorios habituales. Un cigarro, un bast\\u00f3n y un sombrero de copa acompa\\u00f1aban a Churchill dondequiera que iba. Cuando Churchill se acerc\\u00f3 al podio, la multitud se levant\\u00f3 en aplausos agradecidos. Con una dignidad inigualable, acomod\\u00f3 a la multitud y se mantuvo confiado ante sus admiradores. Quitando el cigarro y colocando cuidadosamente el sombrero de copa en el podio, Churchill mir\\u00f3 a su audiencia que esperaba. La autoridad son\\u00f3 en la voz de Churchill mientras gritaba: \\\"\\u00a1Nunca te rindas!\\\"<\\/p><p>Pasaron varios segundos antes de que se pusiera de pie y repitiera: \\\"\\u00a1Nunca te rindas!\\\" Sus palabras tronaron en sus o\\u00eddos. Hubo un silencio ensordecedor cuando Churchill tom\\u00f3 su sombrero y cigarro, se estabiliz\\u00f3 con su bast\\u00f3n y abandon\\u00f3 la plataforma. Su discurso de graduaci\\u00f3n hab\\u00eda terminado<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2612,389,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2613,389,'_eael_custom_js',''),(2625,391,'_elementor_template_type','wp-page'),(2626,391,'_elementor_edit_mode','builder'),(2627,391,'_elementor_version','3.12.2'),(2628,391,'_wp_page_template','default'),(2629,391,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2630,391,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2616,390,'_elementor_template_type','wp-page'),(2617,390,'_elementor_edit_mode','builder'),(2618,390,'_elementor_version','3.12.2'),(2619,390,'_wp_page_template','default'),(2620,390,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2621,390,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2622,390,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2623,390,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(2631,391,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2633,392,'_elementor_template_type','wp-page'),(2634,392,'_elementor_edit_mode','builder'),(2635,392,'_elementor_version','3.12.2'),(2636,392,'_wp_page_template','default'),(2637,392,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2638,392,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2639,392,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2647,393,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5232,698,'_elementor_template_type','wp-page'),(5233,698,'_elementor_edit_mode','builder'),(5234,698,'_elementor_version','3.12.2'),(5235,698,'_wp_page_template','default'),(5236,698,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5237,698,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sir Winston Churchill tard\\u00f3 tres a\\u00f1os en terminar el octavo grado porque ten\\u00eda problemas para aprender ingl\\u00e9s. Parece ir\\u00f3nico que a\\u00f1os m\\u00e1s tarde la Universidad de Oxford le pidiera que abordara sus ejercicios de graduaci\\u00f3n.<\\/p><p>Lleg\\u00f3 con sus accesorios habituales. Un cigarro, un bast\\u00f3n y un sombrero de copa acompa\\u00f1aban a Churchill dondequiera que iba. Cuando Churchill se acerc\\u00f3 al podio, la multitud se levant\\u00f3 en aplausos agradecidos. Con una dignidad inigualable, acomod\\u00f3 a la multitud y se mantuvo confiado ante sus admiradores. Quitando el cigarro y colocando cuidadosamente el sombrero de copa en el podio, Churchill mir\\u00f3 a su audiencia que esperaba. La autoridad son\\u00f3 en la voz de Churchill mientras gritaba: \\\"\\u00a1Nunca te rindas!\\\"<\\/p><p>Pasaron varios segundos antes de que se pusiera de pie y repitiera: \\\"\\u00a1Nunca te rindas!\\\" Sus palabras tronaron en sus o\\u00eddos. Hubo un silencio ensordecedor cuando Churchill tom\\u00f3 su sombrero y cigarro, se estabiliz\\u00f3 con su bast\\u00f3n y abandon\\u00f3 la plataforma. Su discurso de graduaci\\u00f3n hab\\u00eda terminado<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4145,560,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SE LO QUE QUIERAS SER!\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a1Puedes ser\\u00a0<strong>lo que<\\/strong><br \\/><strong>quieras ser!<\\/strong><\\/p><p>Hay dentro de ti<br \\/>todo el potencial<br \\/>para ser lo que\\u00a0quieras ser,<br \\/>toda la energ\\u00eda<br \\/>para hacer lo que quieras hacer.<\\/p><p>Imag\\u00ednate como te gustar\\u00eda ser,\\u00a0haciendo lo que quieres hacer,\\u00a0y cada d\\u00eda,<br \\/><br \\/>da un paso<br \\/>hacia tu sue\\u00f1o.<\\/p><p>Y aunque a veces parezca demasiado<br \\/>dif\\u00edcil continuar,<br \\/>af\\u00e9rrate a tu sue\\u00f1o.<\\/p><p>Una ma\\u00f1ana te despertar\\u00e1s para descubrir<br \\/>que\\u00a0eres la persona con la que so\\u00f1aste,\\u00a0haciendo lo que quer\\u00edas hacer,\\u00a0simplemente porque tuviste el coraje<br \\/>de creer en tu potencial<br \\/>y aferrarte a tu sue\\u00f1o.<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000EB\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2651,394,'_elementor_template_type','wp-page'),(2652,394,'_elementor_edit_mode','builder'),(2653,394,'_edit_lock','1686854347:1'),(2654,394,'_elementor_version','3.13.4'),(2655,394,'_edit_last','1'),(2656,394,'_wp_page_template','default'),(2657,394,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2658,394,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">This is a \\u00a0parable of a farmer who owned an old mule. The mule fell into the farmer\'s well. The farmer heard the mule \'braying\' -- or whatever mules do when they fall into wells. After carefully assessing the situation, the farmer felt sorry for the mule, but decided that neither the mule nor the well was worth saving. Instead, he called his neighbors together and told them what had happened and asked them to help haul dirt to bury the old mule in the well and put him out of his misery.<\\/p><p style=\\\"text-align: justify;\\\">Initially, the old mule was hysterical! But as the farmer and his neighbors continued shoveling and the dirt hit his back, a thought struck him. It suddenly dawned on him that every time a shovel load of dirt landed on his back: he should shake it off and step up! This is what the old mule did, blow after blow. \\\"Shake it off and step up... shake it off and step up... shake it off and step up!\\\" he repeated to encourage himself.<\\/p><p style=\\\"text-align: justify;\\\">No matter how painful the blows, or distressing the situation seemed, the old mule fought \\\"panic\\\" and just kept right on shaking it off and stepping up! You guessed it! It wasn\'t long before the old mule, battered and exhausted, stepped triumphantly over the wall of that well! What seemed like it would bury him, actually end up blessing him. All because of the manner in which he handled his adversity.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5279,704,'_elementor_template_type','wp-page'),(5280,704,'_elementor_edit_mode','builder'),(5281,704,'_elementor_version','3.12.2'),(2688,398,'_elementor_template_type','wp-page'),(2689,398,'_elementor_edit_mode','builder'),(2690,398,'_elementor_version','3.12.2'),(2691,398,'_wp_page_template','default'),(2692,398,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2693,398,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Esta es una par\\u00e1bola de un granjero que pose\\u00eda una vieja mula. La mula cay\\u00f3 en el pozo del granjero. El granjero escuch\\u00f3 a la mula \\\"rebuznar\\\", o lo que sea que hagan las mulas cuando caen en pozos. Despu\\u00e9s de evaluar cuidadosamente la situaci\\u00f3n, el granjero sinti\\u00f3 l\\u00e1stima por la mula, pero decidi\\u00f3 que no val\\u00eda la pena salvar ni la mula ni el pozo. En cambio, llam\\u00f3 a sus vecinos y les cont\\u00f3 lo que hab\\u00eda sucedido y les pidi\\u00f3 que ayudaran a acarrear tierra para enterrar a la vieja mula en el pozo y sacarlo de su miseria.<\\/p><p>\\u00a1Inicialmente, la vieja mula estaba hist\\u00e9rica! Pero cuando el granjero y sus vecinos continuaron paleando y la tierra golpe\\u00f3 su espalda, un pensamiento lo golpe\\u00f3. De repente se dio cuenta de que cada vez que una pala cargada de tierra aterrizaba en su espalda: \\u00a1deber\\u00eda sacudirla y dar un paso adelante! Esto es lo que hizo la vieja mula, golpe tras golpe. \\\"Sacude y da un paso adelante ... Ag\\u00edtalo y da un paso adelante ... \\u00a1Sacude y da un paso adelante!\\\", repiti\\u00f3 para animarse.<\\/p><p>No importa cu\\u00e1n dolorosos fueran los golpes o angustiante que pareciera la situaci\\u00f3n, \\u00a1la vieja mula luch\\u00f3 contra el \\\"p\\u00e1nico\\\" y sigui\\u00f3 sacudi\\u00e9ndose y dando un paso adelante! \\u00a1Lo has adivinado! \\u00a1No pas\\u00f3 mucho tiempo antes de que la vieja mula, maltratada y exhausta, pisara triunfalmente la pared de ese pozo! Lo que parec\\u00eda que lo enterrar\\u00eda, en realidad terminar\\u00eda bendici\\u00e9ndole. Todo por la manera en que manej\\u00f3 su adversidad.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2659,394,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2660,394,'_eael_custom_js',''),(2672,396,'_elementor_template_type','wp-page'),(2673,396,'_elementor_edit_mode','builder'),(2674,396,'_elementor_version','3.12.2'),(2675,396,'_wp_page_template','default'),(2676,396,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2677,396,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2663,395,'_elementor_template_type','wp-page'),(2664,395,'_elementor_edit_mode','builder'),(2665,395,'_elementor_version','3.12.2'),(2666,395,'_wp_page_template','default'),(2667,395,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2668,395,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2669,395,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2670,395,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4142,560,'_elementor_version','3.13.2'),(4143,560,'_wp_page_template','default'),(4144,560,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2678,396,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4140,560,'_elementor_template_type','wp-page'),(4141,560,'_elementor_edit_mode','builder'),(2680,397,'_elementor_template_type','wp-page'),(2681,397,'_elementor_edit_mode','builder'),(2682,397,'_elementor_version','3.12.2'),(2683,397,'_wp_page_template','default'),(2684,397,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2685,397,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2686,397,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2694,398,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4138,559,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5263,702,'_elementor_template_type','wp-page'),(5264,702,'_elementor_edit_mode','builder'),(5265,702,'_elementor_version','3.12.2'),(5266,702,'_wp_page_template','default'),(5267,702,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5268,702,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Esta es una par\\u00e1bola de un granjero que pose\\u00eda una vieja mula. La mula cay\\u00f3 en el pozo del granjero. El granjero escuch\\u00f3 a la mula \\\"rebuznar\\\", o lo que sea que hagan las mulas cuando caen en pozos. Despu\\u00e9s de evaluar cuidadosamente la situaci\\u00f3n, el granjero sinti\\u00f3 l\\u00e1stima por la mula, pero decidi\\u00f3 que no val\\u00eda la pena salvar ni la mula ni el pozo. En cambio, llam\\u00f3 a sus vecinos y les cont\\u00f3 lo que hab\\u00eda sucedido y les pidi\\u00f3 que ayudaran a acarrear tierra para enterrar a la vieja mula en el pozo y sacarlo de su miseria.<\\/p><p>\\u00a1Inicialmente, la vieja mula estaba hist\\u00e9rica! Pero cuando el granjero y sus vecinos continuaron paleando y la tierra golpe\\u00f3 su espalda, un pensamiento lo golpe\\u00f3. De repente se dio cuenta de que cada vez que una pala cargada de tierra aterrizaba en su espalda: \\u00a1deber\\u00eda sacudirla y dar un paso adelante! Esto es lo que hizo la vieja mula, golpe tras golpe. \\\"Sacude y da un paso adelante ... Ag\\u00edtalo y da un paso adelante ... \\u00a1Sacude y da un paso adelante!\\\", repiti\\u00f3 para animarse.<\\/p><p>No importa cu\\u00e1n dolorosos fueran los golpes o angustiante que pareciera la situaci\\u00f3n, \\u00a1la vieja mula luch\\u00f3 contra el \\\"p\\u00e1nico\\\" y sigui\\u00f3 sacudi\\u00e9ndose y dando un paso adelante! \\u00a1Lo has adivinado! \\u00a1No pas\\u00f3 mucho tiempo antes de que la vieja mula, maltratada y exhausta, pisara triunfalmente la pared de ese pozo! Lo que parec\\u00eda que lo enterrar\\u00eda, en realidad terminar\\u00eda bendici\\u00e9ndole. Todo por la manera en que manej\\u00f3 su adversidad.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2698,399,'_elementor_template_type','wp-page'),(2699,399,'_elementor_edit_mode','builder'),(2700,399,'_edit_lock','1686854419:1'),(2701,399,'_elementor_version','3.13.4'),(2702,399,'_edit_last','1'),(2703,399,'_wp_page_template','default'),(2704,399,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2705,399,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">On a beautiful morning, an older gentleman, aged 75, was sitting with his son when he asked his son what was sitting in the window. He himself was not able to recognize what it was, due to his weak eyesight.<\\/p><p style=\\\"text-align: justify;\\\">His son replied, \\\"That is the crow.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Due to his age, the older man forgot and asked again.<\\/p><p style=\\\"text-align: justify;\\\">His son again replied the same thing, \\\"That is the crow.\\\"<\\/p><p style=\\\"text-align: justify;\\\">This exchange continued for seven to eight times when, and at last, his son got annoyed and replied with anger, \\\"Why are you asking the same thing again and again?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The old man replied with tears in his eyes. \\\"Son, don\'t get angry. When you were at the age of 4 years you asked me the same question 40 times and I never got angry<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2735,403,'_elementor_template_type','wp-page'),(2736,403,'_elementor_edit_mode','builder'),(2737,403,'_elementor_version','3.12.2'),(2738,403,'_wp_page_template','default'),(2739,403,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2740,403,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>En una hermosa ma\\u00f1ana, un caballero mayor, de 75 a\\u00f1os, estaba sentado con su hijo cuando le pregunt\\u00f3 qu\\u00e9 estaba sentado en la ventana. \\u00c9l mismo no fue capaz de reconocer lo que era, debido a su d\\u00e9bil vista.<\\/p><p>Su hijo respondi\\u00f3: \\\"Ese es el cuervo\\\".<\\/p><p>Debido a su edad, el hombre mayor se olvid\\u00f3 y volvi\\u00f3 a preguntar.<\\/p><p>Su hijo volvi\\u00f3 a responder lo mismo: \\\"Ese es el cuervo\\\".<\\/p><p>Este intercambio continu\\u00f3 de siete a ocho veces cuando, y al final, su hijo se molest\\u00f3 y respondi\\u00f3 con ira: \\\"\\u00bfPor qu\\u00e9 preguntas lo mismo una y otra vez?\\\"<\\/p><p>El anciano respondi\\u00f3 con l\\u00e1grimas en los ojos. \\\"Hijo, no te enojes. Cuando ten\\u00edas 4 a\\u00f1os me hiciste la misma pregunta 40 veces y nunca me enoj\\u00e9.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2706,399,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2707,399,'_eael_custom_js',''),(2719,401,'_elementor_template_type','wp-page'),(2720,401,'_elementor_edit_mode','builder'),(2721,401,'_elementor_version','3.12.2'),(2722,401,'_wp_page_template','default'),(2723,401,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2724,401,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2710,400,'_elementor_template_type','wp-page'),(2711,400,'_elementor_edit_mode','builder'),(2712,400,'_elementor_version','3.12.2'),(2713,400,'_wp_page_template','default'),(2714,400,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2715,400,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2716,400,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2717,400,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(2725,401,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2727,402,'_elementor_template_type','wp-page'),(2728,402,'_elementor_edit_mode','builder'),(2729,402,'_elementor_version','3.12.2'),(2730,402,'_wp_page_template','default'),(2731,402,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2732,402,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2733,402,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2741,403,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5297,706,'_elementor_template_type','wp-page'),(5298,706,'_elementor_edit_mode','builder'),(5299,706,'_elementor_version','3.12.2'),(5300,706,'_wp_page_template','default'),(5301,706,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5302,706,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>En una hermosa ma\\u00f1ana, un caballero mayor, de 75 a\\u00f1os, estaba sentado con su hijo cuando le pregunt\\u00f3 qu\\u00e9 estaba sentado en la ventana. \\u00c9l mismo no fue capaz de reconocer lo que era, debido a su d\\u00e9bil vista.<\\/p><p>Su hijo respondi\\u00f3: \\\"Ese es el cuervo\\\".<\\/p><p>Debido a su edad, el hombre mayor se olvid\\u00f3 y volvi\\u00f3 a preguntar.<\\/p><p>Su hijo volvi\\u00f3 a responder lo mismo: \\\"Ese es el cuervo\\\".<\\/p><p>Este intercambio continu\\u00f3 de siete a ocho veces cuando, y al final, su hijo se molest\\u00f3 y respondi\\u00f3 con ira: \\\"\\u00bfPor qu\\u00e9 preguntas lo mismo una y otra vez?\\\"<\\/p><p>El anciano respondi\\u00f3 con l\\u00e1grimas en los ojos. \\\"Hijo, no te enojes. Cuando ten\\u00edas 4 a\\u00f1os me hiciste la misma pregunta 40 veces y nunca me enoj\\u00e9.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2751,404,'_elementor_page_assets','a:0:{}'),(2753,405,'_elementor_template_type','wp-page'),(2754,405,'_elementor_edit_mode','builder'),(2755,405,'_elementor_version','3.12.2'),(2756,405,'_wp_page_template','default'),(2757,405,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2758,405,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2759,405,'_elementor_page_assets','a:0:{}'),(2761,406,'_elementor_template_type','wp-page'),(2762,406,'_elementor_edit_mode','builder'),(2763,406,'_elementor_version','3.12.2'),(2764,406,'_wp_page_template','default'),(2765,406,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2766,406,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2767,406,'_elementor_page_assets','a:0:{}'),(2770,407,'_elementor_template_type','wp-page'),(2771,407,'_elementor_edit_mode','builder'),(2772,407,'_elementor_version','3.12.2'),(2773,407,'_wp_page_template','default'),(2774,407,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2775,407,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2776,407,'_elementor_page_assets','a:0:{}'),(2777,408,'_elementor_template_type','wp-page'),(2778,408,'_elementor_edit_mode','builder'),(2779,408,'_elementor_version','3.12.2'),(2780,408,'_wp_page_template','default'),(2781,408,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2782,408,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2783,408,'_elementor_page_assets','a:0:{}'),(2784,409,'_elementor_template_type','wp-page'),(2785,409,'_elementor_edit_mode','builder'),(2786,409,'_elementor_version','3.12.2'),(2787,409,'_wp_page_template','default'),(2788,409,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2789,409,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2790,409,'_elementor_page_assets','a:0:{}'),(2792,410,'_elementor_template_type','wp-page'),(2793,410,'_elementor_edit_mode','builder'),(2794,410,'_elementor_version','3.12.2'),(2795,410,'_wp_page_template','default'),(2796,410,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2797,410,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2798,410,'_elementor_page_assets','a:0:{}'),(2799,411,'_elementor_template_type','wp-page'),(2800,411,'_elementor_edit_mode','builder'),(2801,411,'_elementor_version','3.12.2'),(2802,411,'_wp_page_template','default'),(2803,411,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2804,411,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2805,411,'_elementor_page_assets','a:0:{}'),(2806,412,'_elementor_template_type','wp-page'),(2807,412,'_elementor_edit_mode','builder'),(2808,412,'_elementor_version','3.12.2'),(2809,412,'_wp_page_template','default'),(2810,412,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2811,412,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2812,412,'_elementor_page_assets','a:0:{}'),(2814,413,'_elementor_template_type','wp-page'),(2815,413,'_elementor_edit_mode','builder'),(2816,413,'_elementor_version','3.12.2'),(2817,413,'_wp_page_template','default'),(2818,413,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2819,413,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2820,413,'_elementor_page_assets','a:0:{}'),(2821,414,'_elementor_template_type','wp-page'),(2822,414,'_elementor_edit_mode','builder'),(2823,414,'_elementor_version','3.12.2'),(2824,414,'_wp_page_template','default'),(2825,414,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2826,414,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2827,414,'_elementor_page_assets','a:0:{}'),(2828,415,'_elementor_template_type','wp-page'),(2829,415,'_elementor_edit_mode','builder'),(2830,415,'_elementor_version','3.12.2'),(2831,415,'_wp_page_template','default'),(2832,415,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2833,415,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2834,415,'_elementor_page_assets','a:0:{}'),(2836,416,'_elementor_template_type','wp-page'),(2837,416,'_elementor_edit_mode','builder'),(2838,416,'_elementor_version','3.12.2'),(2839,416,'_wp_page_template','default'),(2840,416,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2841,416,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2842,416,'_elementor_page_assets','a:0:{}'),(2843,417,'_elementor_template_type','wp-page'),(2844,417,'_elementor_edit_mode','builder'),(2845,417,'_elementor_version','3.12.2'),(2846,417,'_wp_page_template','default'),(2847,417,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2848,417,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2849,417,'_elementor_page_assets','a:0:{}'),(2850,418,'_elementor_template_type','wp-page'),(2851,418,'_elementor_edit_mode','builder'),(2852,418,'_elementor_version','3.12.2'),(2853,418,'_wp_page_template','default'),(2854,418,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2855,418,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2856,418,'_elementor_page_assets','a:0:{}'),(3741,509,'_elementor_template_type','wp-page'),(3742,509,'_elementor_edit_mode','builder'),(3743,509,'_elementor_version','3.12.2'),(3744,509,'_wp_page_template','default'),(3745,509,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3746,509,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2859,419,'_elementor_template_type','wp-page'),(2860,419,'_elementor_edit_mode','builder'),(2861,419,'_edit_lock','1686855653:1'),(2862,419,'_elementor_version','3.13.4'),(2863,419,'_edit_last','1'),(2864,419,'_wp_page_template','default'),(2865,419,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2866,419,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One day all the employees of a very unusual company reached their office and all saw a big sign on the main door which said this:<\\/p><p>\\\"Yesterday, the person who has been hindering your growth in this company passed away. We invite you to join the funeral in the room that has been prepared in the gym.\\\"<\\/p><p>In the beginning, they all got sad for the death of one of their colleagues, but after a while they started getting curious to know who was that person who hindered the growth of their colleagues and the company itself?<\\/p><p>The excitement in the gym was such that security agents were ordered to control the crowd within the room. The more people reached the coffin, the more the excitement heated up.<\\/p><p><b>Everyone thought - \\\"Who is this person who was hindering my progress?\\\"<\\/b><\\/p><p>One by one the intrigued employees got closer to the coffin, and when they looked inside it, they suddenly became speechless.<\\/p><p>They all got to stand near the coffin, and all ended up shocked and in silence, as if someone had touched the deepest part of their soul.<\\/p><p><b>There was a mirror inside the coffin: everyone who looked inside it could see themselves!<\\/b><\\/p><p><b>There was also a sign next to the mirror that said:<\\/b><\\/p><p><b>There is only one person who is capable of setting limits to your growth and IT IS YOU!<\\/b><\\/p><p>Your life does not change when your boss changes, when your friends change, when your parents change, when your husband or wife changes, when your company changes, when your church changes, when your location changes, when your money changes, when your status changes.<\\/p><p><b>No, your life changes when YOU change<\\/b>, when you go beyond your limiting beliefs.<\\/p><p>Examine yourself, watch yourself. Don\'t be afraid of difficulties, impossibilities and losses. Be a winner, build yourself and your reality. It\'s the way you face life itself that makes the difference.<\\/p><p>A few years ago a college student, who was struggling to build his career, appeared for his professional examination. He attempted his first paper excellently but he imagined that he performed badly.<\\/p><p>Keeping this in mind, he lost concentration for the rest of the subjects and in turn, didn\'t write the other subjects well. Later on, the results came out that the paper he thought was poorly written had secured top marks in the college but in the other subjects, he failed. Why did this happen? The reason is simple: lack of belief in himself<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2867,419,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2868,419,'_eael_custom_js',''),(5134,686,'_elementor_template_type','wp-page'),(5135,686,'_elementor_edit_mode','builder'),(5136,686,'_elementor_version','3.12.2'),(5137,686,'_wp_page_template','default'),(5138,686,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5139,686,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un d\\u00eda, todos los empleados de una empresa muy inusual llegaron a su oficina y todos vieron un gran letrero en la puerta principal que dec\\u00eda esto:<\\/p><p>\\\"Ayer, la persona que ha estado obstaculizando su crecimiento en esta empresa falleci\\u00f3. Te invitamos a unirte al funeral en la sala que se ha preparado en el gimnasio\\\".<\\/p><p>Al principio, todos se pusieron tristes por la muerte de uno de sus colegas, pero despu\\u00e9s de un tiempo comenzaron a sentir curiosidad por saber qui\\u00e9n era esa persona que obstaculizaba el crecimiento de sus colegas y de la propia empresa.<\\/p><p>La emoci\\u00f3n en el gimnasio era tal que se orden\\u00f3 a los agentes de seguridad que controlaran a la multitud dentro de la sala. Cuanta m\\u00e1s gente llegaba al ata\\u00fad, m\\u00e1s se calentaba la emoci\\u00f3n.<\\/p><p><strong>Todos pensaron: \\\"\\u00bfQui\\u00e9n es esta persona que estaba obstaculizando mi progreso?\\\"<\\/strong><\\/p><p>Uno por uno, los empleados intrigados se acercaron al ata\\u00fad, y cuando miraron dentro de \\u00e9l, de repente se quedaron sin palabras.<\\/p><p>Todos llegaron a pararse cerca del ata\\u00fad, y todos terminaron conmocionados y en silencio, como si alguien hubiera tocado la parte m\\u00e1s profunda de su alma.<\\/p><p><strong>Hab\\u00eda un espejo dentro del ata\\u00fad: \\u00a1todos los que miraban dentro de \\u00e9l pod\\u00edan verse a s\\u00ed mismos!<\\/strong><\\/p><p><strong>Tambi\\u00e9n hab\\u00eda un letrero al lado del espejo que dec\\u00eda:<\\/strong><\\/p><p><strong>S\\u00f3lo hay una persona que es capaz de poner l\\u00edmites a tu crecimiento y \\u00a1ERES T\\u00da!<\\/strong><\\/p><p>Tu vida no cambia cuando cambia tu jefe, cuando cambian tus amigos, cuando cambian tus padres, cuando cambia tu esposo o esposa, cuando cambia tu compa\\u00f1\\u00eda, cuando cambia tu iglesia, cuando cambia tu ubicaci\\u00f3n, cuando cambia tu dinero, cuando cambia tu estatus.<\\/p><p><strong>No, tu vida cambia cuando T\\u00da cambias, cuando<\\/strong>\\u00a0vas m\\u00e1s all\\u00e1 de tus creencias limitantes.<\\/p><p>Exam\\u00ednate a ti mismo, obs\\u00e9rvate a ti mismo. No tengas miedo de las dificultades, imposibilidades y p\\u00e9rdidas. S\\u00e9 un ganador, constr\\u00fayete a ti mismo y a tu realidad. Es la forma en que enfrentas la vida misma lo que marca la diferencia.<\\/p><p>Hace unos a\\u00f1os, un estudiante universitario, que luchaba por construir su carrera, se present\\u00f3 para su examen profesional. Intent\\u00f3 su primer trabajo excelentemente, pero imagin\\u00f3 que se desempe\\u00f1\\u00f3 mal.<\\/p><p>Teniendo esto en cuenta, perdi\\u00f3 la concentraci\\u00f3n para el resto de las asignaturas y, a su vez, no escribi\\u00f3 bien las otras asignaturas. M\\u00e1s tarde, los resultados salieron que el documento que pensaba que estaba mal escrito hab\\u00eda obtenido las mejores calificaciones en la universidad, pero en las otras materias, fall\\u00f3. \\u00bfPor qu\\u00e9 sucedi\\u00f3 esto? La raz\\u00f3n es simple: falta de creencia en s\\u00ed mismo<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2871,420,'_elementor_template_type','wp-page'),(2872,420,'_elementor_edit_mode','builder'),(2873,420,'_edit_lock','1686854640:1'),(2874,420,'_elementor_version','3.13.4'),(2875,420,'_edit_last','1'),(2876,420,'_wp_page_template','default'),(2877,420,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2878,420,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">A vacationing American businessman standing on the pier of a quaint coastal fishing village in southern Mexico watched as a small boat with just one young Mexican fisherman pulled into the dock. Inside the small boat were several large yellowfin tuna. Enjoying the warmth of the early afternoon sun, the American complimented the Mexican on the quality of his fish.<\\/p><p style=\\\"text-align: justify;\\\">\\\"How long did it take you to catch them?\\\" the American casually asked.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Oh, a few hours,\\\" the Mexican fisherman replied.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Why don\'t you stay out longer and catch more fish?\\\" the American businessman then asked.<\\/p><p style=\\\"text-align: justify;\\\">The Mexican warmly replied, \\\"With this I have more than enough to support my family\'s needs.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The businessman then became serious, \\\"But what do you do with the rest of your time?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Responding with a smile, the Mexican fisherman answered, \\\"I sleep late, play with my children, watch ballgames, and take siesta with my wife. Sometimes in the evenings I take a stroll into the village to see my friends, play the guitar, sing a few songs...\\\"<\\/p><p style=\\\"text-align: justify;\\\">The American businessman impatiently interrupted, \\\"Look, I have an MBA from Harvard, and I can help you to be more profitable. You can start by fishing several hours longer every day. You can then sell the extra fish you catch. With the extra money, you can buy a bigger boat. With the additional income that larger boat will bring, before long you can buy a second boat, then a third one, and so on, until you have an entire fleet of fishing boats.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Proud of his own sharp thinking, he excitedly elaborated a grand scheme which could bring even bigger profits, \\\"Then, instead of selling your catch to a middleman you\'ll be able to sell your fish directly to the processor, or even open your own cannery. Eventually, you could control the product, processing and distribution. You could leave this tiny coastal village and move to Mexico City, or possibly even Los Angeles or New York City, where you could even further expand your enterprise.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Having never thought of such things, the Mexican fisherman asked, \\\"But how long will all this take?\\\"<\\/p><p style=\\\"text-align: justify;\\\">After a rapid mental calculation, the Harvard MBA pronounced, \\\"Probably about 15-20 years, maybe less if you work really hard.\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"And then what, se\\u00f1or?\\\" asked the fisherman.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Why, that\'s the best part!\\\" answered the businessman with a laugh. \\\"When the time is right, you would sell your company stock to the public and become very rich. You would make millions.\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"Millions? Really? What would I do with it all?\\\" asked the young fisherman in disbelief.<\\/p><p style=\\\"text-align: justify;\\\">The businessman boasted, \\\"Then you could happily retire with all the money you\'ve made. You could move to a quaint coastal fishing village where you could sleep late, play with your grandchildren, watch ballgames, and take siesta with your wife. You could stroll to the village in the evenings where you could play the guitar and sing with your friends all you want.\\\"<br \\/>The moral of the story is: <strong>Know what really matters in life, and you may find that it is already much closer than you think<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2879,420,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2880,420,'_eael_custom_js',''),(5338,711,'_elementor_template_type','wp-page'),(5339,711,'_elementor_edit_mode','builder'),(5340,711,'_elementor_version','3.12.2'),(5341,711,'_wp_page_template','default'),(5342,711,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5343,711,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un hombre de negocios estadounidense de vacaciones parado en el muelle de un pintoresco pueblo pesquero costero en el sur de M\\u00e9xico observ\\u00f3 c\\u00f3mo un peque\\u00f1o bote con solo un joven pescador mexicano se detuvo en el muelle. Dentro del peque\\u00f1o bote hab\\u00eda varios atunes aleta amarilla grandes. Disfrutando del calor del sol de la tarde, el estadounidense felicit\\u00f3 al mexicano por la calidad de su pescado.<\\/p><p>\\\"\\u00bfCu\\u00e1nto tiempo te llev\\u00f3 atraparlos?\\\", Pregunt\\u00f3 casualmente el estadounidense.<\\/p><p>\\\"Oh, unas horas\\\", respondi\\u00f3 el pescador mexicano.<\\/p><p>\\\"\\u00bfPor qu\\u00e9 no te quedas m\\u00e1s tiempo y pescas m\\u00e1s peces?\\\", pregunt\\u00f3 entonces el empresario estadounidense.<\\/p><p>El mexicano respondi\\u00f3 calurosamente: \\\"Con esto tengo m\\u00e1s que suficiente para apoyar las necesidades de mi familia\\\".<\\/p><p>El hombre de negocios entonces se puso serio, \\\"\\u00bfPero qu\\u00e9 haces con el resto de tu tiempo?\\\"<\\/p><p>Respondiendo con una sonrisa, el pescador mexicano respondi\\u00f3: \\\"Duermo hasta tarde, juego con mis hijos, veo juegos de pelota y tomo una siesta con mi esposa. A veces por las noches doy un paseo por el pueblo para ver a mis amigos, tocar la guitarra, cantar algunas canciones...\\\"<\\/p><p>El empresario estadounidense interrumpi\\u00f3 con impaciencia: \\\"Mira, tengo un MBA de Harvard y puedo ayudarte a ser m\\u00e1s rentable. Puede comenzar pescando varias horas m\\u00e1s todos los d\\u00edas. A continuaci\\u00f3n, puede vender el pescado extra que captura. Con el dinero extra, puedes comprar un barco m\\u00e1s grande. Con los ingresos adicionales que traer\\u00e1 un barco m\\u00e1s grande, en poco tiempo puede comprar un segundo barco, luego un tercero, y as\\u00ed sucesivamente, hasta que tenga una flota completa de barcos de pesca\\\".<\\/p><p>Orgulloso de su propio pensamiento agudo, elabor\\u00f3 con entusiasmo un gran plan que podr\\u00eda generar ganancias a\\u00fan mayores: \\\"Entonces, en lugar de vender su captura a un intermediario, podr\\u00e1 vender su pescado directamente al procesador, o incluso abrir su propia f\\u00e1brica de conservas. Eventualmente, podr\\u00eda controlar el producto, el procesamiento y la distribuci\\u00f3n. Podr\\u00edas dejar este peque\\u00f1o pueblo costero y mudarte a la Ciudad de M\\u00e9xico, o posiblemente incluso a Los \\u00c1ngeles o Nueva York, donde podr\\u00edas expandir a\\u00fan m\\u00e1s tu empresa\\\".<\\/p><p>Como nunca hab\\u00eda pensado en tales cosas, el pescador mexicano pregunt\\u00f3: \\\"\\u00bfPero cu\\u00e1nto tiempo tomar\\u00e1 todo esto?\\\"<\\/p><p>Despu\\u00e9s de un r\\u00e1pido c\\u00e1lculo mental, el MBA de Harvard pronunci\\u00f3: \\\"Probablemente unos 15-20 a\\u00f1os, tal vez menos si trabajas muy duro\\\".<\\/p><p>\\\"\\u00bfY luego qu\\u00e9, se\\u00f1or?\\\", pregunt\\u00f3 el pescador.<\\/p><p>\\\"\\u00a1Por qu\\u00e9, esa es la mejor parte!\\\", Respondi\\u00f3 el empresario con una sonrisa. \\\"Cuando sea el momento adecuado, vender\\u00edas las acciones de tu empresa al p\\u00fablico y te volver\\u00edas muy rico. Ganar\\u00edas millones\\\".<\\/p><p>\\\"\\u00bfMillones? \\u00bfRealmente? \\u00bfQu\\u00e9 har\\u00eda yo con todo esto?\\\", pregunt\\u00f3 el joven pescador con incredulidad.<\\/p><p>El empresario se jact\\u00f3: \\\"Entonces podr\\u00edas jubilarte felizmente con todo el dinero que has ganado. Podr\\u00edas mudarte a un pintoresco pueblo pesquero costero donde podr\\u00edas dormir hasta tarde, jugar con tus nietos, ver juegos de pelota y tomar la siesta con tu esposa. Pod\\u00edas pasear hasta el pueblo por las noches, donde pod\\u00edas tocar la guitarra y cantar con tus amigos todo lo que quisieras\\\".<br \\/>La moraleja de la historia es:\\u00a0<strong>Sepa lo que realmente importa en la vida, y puede encontrar que ya est\\u00e1 mucho m\\u00e1s cerca de lo que piensa.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2883,421,'_elementor_template_type','wp-page'),(2884,421,'_elementor_edit_mode','builder'),(2885,421,'_elementor_version','3.12.2'),(2886,421,'_wp_page_template','default'),(2887,421,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2888,421,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2889,421,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2890,421,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(2892,422,'_elementor_template_type','wp-page'),(2893,422,'_elementor_edit_mode','builder'),(2894,422,'_elementor_version','3.12.2'),(2895,422,'_wp_page_template','default'),(2896,422,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2897,422,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2898,422,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2899,422,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(2901,423,'_elementor_template_type','wp-page'),(2902,423,'_elementor_edit_mode','builder'),(2903,423,'_elementor_version','3.12.2'),(2904,423,'_wp_page_template','default'),(2905,423,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2906,423,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2907,423,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2908,423,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5352,713,'_elementor_template_type','wp-page'),(5353,713,'_elementor_edit_mode','builder'),(5354,713,'_elementor_version','3.12.2'),(2910,424,'_elementor_template_type','wp-page'),(2911,424,'_elementor_edit_mode','builder'),(2912,424,'_elementor_version','3.12.2'),(2913,424,'_wp_page_template','default'),(2914,424,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2915,424,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un hombre de negocios estadounidense de vacaciones parado en el muelle de un pintoresco pueblo pesquero costero en el sur de M\\u00e9xico observ\\u00f3 c\\u00f3mo un peque\\u00f1o bote con solo un joven pescador mexicano se detuvo en el muelle. Dentro del peque\\u00f1o bote hab\\u00eda varios atunes aleta amarilla grandes. Disfrutando del calor del sol de la tarde, el estadounidense felicit\\u00f3 al mexicano por la calidad de su pescado.<\\/p><p>\\\"\\u00bfCu\\u00e1nto tiempo te llev\\u00f3 atraparlos?\\\", Pregunt\\u00f3 casualmente el estadounidense.<\\/p><p>\\\"Oh, unas horas\\\", respondi\\u00f3 el pescador mexicano.<\\/p><p>\\\"\\u00bfPor qu\\u00e9 no te quedas m\\u00e1s tiempo y pescas m\\u00e1s peces?\\\", pregunt\\u00f3 entonces el empresario estadounidense.<\\/p><p>El mexicano respondi\\u00f3 calurosamente: \\\"Con esto tengo m\\u00e1s que suficiente para apoyar las necesidades de mi familia\\\".<\\/p><p>El hombre de negocios entonces se puso serio, \\\"\\u00bfPero qu\\u00e9 haces con el resto de tu tiempo?\\\"<\\/p><p>Respondiendo con una sonrisa, el pescador mexicano respondi\\u00f3: \\\"Duermo hasta tarde, juego con mis hijos, veo juegos de pelota y tomo una siesta con mi esposa. A veces por las noches doy un paseo por el pueblo para ver a mis amigos, tocar la guitarra, cantar algunas canciones...\\\"<\\/p><p>El empresario estadounidense interrumpi\\u00f3 con impaciencia: \\\"Mira, tengo un MBA de Harvard y puedo ayudarte a ser m\\u00e1s rentable. Puede comenzar pescando varias horas m\\u00e1s todos los d\\u00edas. A continuaci\\u00f3n, puede vender el pescado extra que captura. Con el dinero extra, puedes comprar un barco m\\u00e1s grande. Con los ingresos adicionales que traer\\u00e1 un barco m\\u00e1s grande, en poco tiempo puede comprar un segundo barco, luego un tercero, y as\\u00ed sucesivamente, hasta que tenga una flota completa de barcos de pesca\\\".<\\/p><p>Orgulloso de su propio pensamiento agudo, elabor\\u00f3 con entusiasmo un gran plan que podr\\u00eda generar ganancias a\\u00fan mayores: \\\"Entonces, en lugar de vender su captura a un intermediario, podr\\u00e1 vender su pescado directamente al procesador, o incluso abrir su propia f\\u00e1brica de conservas. Eventualmente, podr\\u00eda controlar el producto, el procesamiento y la distribuci\\u00f3n. Podr\\u00edas dejar este peque\\u00f1o pueblo costero y mudarte a la Ciudad de M\\u00e9xico, o posiblemente incluso a Los \\u00c1ngeles o Nueva York, donde podr\\u00edas expandir a\\u00fan m\\u00e1s tu empresa\\\".<\\/p><p>Como nunca hab\\u00eda pensado en tales cosas, el pescador mexicano pregunt\\u00f3: \\\"\\u00bfPero cu\\u00e1nto tiempo tomar\\u00e1 todo esto?\\\"<\\/p><p>Despu\\u00e9s de un r\\u00e1pido c\\u00e1lculo mental, el MBA de Harvard pronunci\\u00f3: \\\"Probablemente unos 15-20 a\\u00f1os, tal vez menos si trabajas muy duro\\\".<\\/p><p>\\\"\\u00bfY luego qu\\u00e9, se\\u00f1or?\\\", pregunt\\u00f3 el pescador.<\\/p><p>\\\"\\u00a1Por qu\\u00e9, esa es la mejor parte!\\\", Respondi\\u00f3 el empresario con una sonrisa. \\\"Cuando sea el momento adecuado, vender\\u00edas las acciones de tu empresa al p\\u00fablico y te volver\\u00edas muy rico. Ganar\\u00edas millones\\\".<\\/p><p>\\\"\\u00bfMillones? \\u00bfRealmente? \\u00bfQu\\u00e9 har\\u00eda yo con todo esto?\\\", pregunt\\u00f3 el joven pescador con incredulidad.<\\/p><p>El empresario se jact\\u00f3: \\\"Entonces podr\\u00edas jubilarte felizmente con todo el dinero que has ganado. Podr\\u00edas mudarte a un pintoresco pueblo pesquero costero donde podr\\u00edas dormir hasta tarde, jugar con tus nietos, ver juegos de pelota y tomar la siesta con tu esposa. Pod\\u00edas pasear hasta el pueblo por las noches, donde pod\\u00edas tocar la guitarra y cantar con tus amigos todo lo que quisieras\\\".<br \\/>La moraleja de la historia es:\\u00a0<strong>Sepa lo que realmente importa en la vida, y puede encontrar que ya est\\u00e1 mucho m\\u00e1s cerca de lo que piensa.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2916,424,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2917,424,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(2920,425,'_elementor_template_type','wp-page'),(2921,425,'_elementor_edit_mode','builder'),(2922,425,'_edit_lock','1686854571:1'),(2923,425,'_elementor_version','3.13.4'),(2924,425,'_edit_last','1'),(2925,425,'_wp_page_template','default'),(2926,425,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2927,425,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">This is a powerful message for our modern society. We seem to have lost our bearing and our sense of direction.<\\/p><p style=\\\"text-align: justify;\\\">One young academically excellent person went to apply for a managerial position in a big company. He passed the first interview; the director did the last interview. The director discovered from the CV that the youth\'s academic achievements were excellent all the way, from the secondary school until the postgraduate research, never had a year when he did not score.<\\/p><p style=\\\"text-align: justify;\\\">The director asked, \\\"Did you obtain any scholarships in school?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth answered, \\\"None.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The director asked, \\\"Was it your father who paid for your school fees?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth answered, \\\"My father passed away when I was one year old, it was my mother who paid for my school fees.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The director asked, \\\"Where did your mother work?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth answered, \\\"My mother worked as laundry woman.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The director requested the youth to show his hands. The youth showed a pair of hands that were smooth and perfect.<\\/p><p style=\\\"text-align: justify;\\\">The director asked, \\\"Have you ever helped your mother wash the clothes before?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth answered, \\\"Never, my mother always wanted me to study and read more books. Furthermore, my mother can wash clothes faster than me.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The director said, \\\"I have a request. When you go back today, go and clean your mother\'s hands, and then see me tomorrow morning.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth felt that his chance of landing the job was high. When he went back, he happily requested his mother to let him clean her hands. His mother felt strange. Happy but with mixed feelings, she showed her hands to the young man.<\\/p><p style=\\\"text-align: justify;\\\">The youth cleaned his mother\'s hands slowly. His tear fell as he did that. It was the first time he noticed that his mother\'s hands were so wrinkled, and there were so many bruises in her hands. Some bruises were so painful that his mother shivered when they were cleaned with water.<\\/p><p style=\\\"text-align: justify;\\\">This was the first time the youth realized that it was this pair of hands that washed the clothes everyday to enable him to pay the school fee. The bruises in the mother\'s hands were the price that the mother had to pay for his graduation, academic excellence and his future.<\\/p><p style=\\\"text-align: justify;\\\">After finishing the cleaning of his mother\'s hands, the youth quietly washed all the remaining clothes for his mother.<\\/p><p style=\\\"text-align: justify;\\\">That night, mother and son talked for a very long time.<\\/p><p style=\\\"text-align: justify;\\\">Next morning, the youth went to the director\'s office.<\\/p><p style=\\\"text-align: justify;\\\">The Director noticed the tears in the youth\'s eyes, asked: \\\"Can you tell me what have you done and learned yesterday in your house?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth answered, \\\"I cleaned my mother\'s hands and also finished cleaning all the remaining clothes.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The Director asked, \\\"Please tell me your feelings.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth said:<\\/p><ol style=\\\"text-align: justify;\\\" start=\\\"1\\\"><li>I know now what appreciation is. Without my mother, there would not have been the successful me today.<\\/li><li>By working together and helping my mother, only now I realize how difficult and tough it is to get something done.<\\/li><li>I have come to appreciate the importance and value of family relationships.<\\/li><\\/ol><p style=\\\"text-align: justify;\\\">The director said, \\\"This is what I am looking for to be my manager. I want to recruit a person who can appreciate the help of others, a person who knows the sufferings of others to get things done, and a person who would not put money as his only goal in life. You are hired.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Later on, this young person worked very hard and received the respect of his subordinates. Every employee worked diligently and as a team. The company\'s performance improved tremendously<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2928,425,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2929,425,'_eael_custom_js',''),(5368,715,'_elementor_template_type','wp-page'),(5369,715,'_elementor_edit_mode','builder'),(5370,715,'_elementor_version','3.12.2'),(5371,715,'_wp_page_template','default'),(5372,715,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5373,715,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Este es un mensaje poderoso para nuestra sociedad moderna. Parece que hemos perdido nuestro rumbo y nuestro sentido de direcci\\u00f3n.<\\/p><p>Una persona joven acad\\u00e9micamente excelente fue a solicitar un puesto directivo en una gran empresa. Pas\\u00f3 la primera entrevista; El director hizo la \\u00faltima entrevista. El director descubri\\u00f3 en el CV que los logros acad\\u00e9micos del joven fueron excelentes hasta el final, desde la escuela secundaria hasta la investigaci\\u00f3n de posgrado, nunca tuvo un a\\u00f1o en el que no puntu\\u00f3.<\\/p><p>El director pregunt\\u00f3: \\\"\\u00bfObtuviste alguna beca en la escuela?\\\"<\\/p><p>El joven respondi\\u00f3: \\\"Ninguno\\\".<\\/p><p>El director pregunt\\u00f3: \\\"\\u00bfFue tu padre quien pag\\u00f3 tus cuotas escolares?\\\"<\\/p><p>El joven respondi\\u00f3: \\\"Mi padre falleci\\u00f3 cuando yo ten\\u00eda un a\\u00f1o, fue mi madre quien pag\\u00f3 mis cuotas escolares\\\".<\\/p><p>El director pregunt\\u00f3: \\\"\\u00bfD\\u00f3nde trabajaba tu madre?\\\"<\\/p><p>El joven respondi\\u00f3: \\\"Mi madre trabajaba como lavandera\\\".<\\/p><p>El director le pidi\\u00f3 al joven que mostrara sus manos. El joven mostr\\u00f3 un par de manos que eran suaves y perfectas.<\\/p><p>El director pregunt\\u00f3: \\\"\\u00bfAlguna vez has ayudado a tu madre a lavar la ropa antes?\\\"<\\/p><p>El joven respondi\\u00f3: \\\"Nunca, mi madre siempre quiso que estudiara y leyera m\\u00e1s libros. Adem\\u00e1s, mi madre puede lavar la ropa m\\u00e1s r\\u00e1pido que yo\\\".<\\/p><p>El director dijo: \\\"Tengo una solicitud. Cuando regreses hoy, ve y limpia las manos de tu madre, y luego m\\u00edrame ma\\u00f1ana por la ma\\u00f1ana\\\".<\\/p><p>El joven sinti\\u00f3 que sus posibilidades de conseguir el trabajo eran altas. Cuando regres\\u00f3, felizmente le pidi\\u00f3 a su madre que le permitiera limpiarse las manos. Su madre se sinti\\u00f3 extra\\u00f1a. Feliz pero con sentimientos encontrados, mostr\\u00f3 sus manos al joven.<\\/p><p>El joven limpi\\u00f3 las manos de su madre lentamente. Su l\\u00e1grima cay\\u00f3 mientras lo hac\\u00eda. Fue la primera vez que not\\u00f3 que las manos de su madre estaban tan arrugadas y hab\\u00eda tantos moretones en sus manos. Algunos moretones eran tan dolorosos que su madre se estremeci\\u00f3 cuando los limpiaron con agua.<\\/p><p>Esta fue la primera vez que el joven se dio cuenta de que era este par de manos las que lavaban la ropa todos los d\\u00edas para permitirle pagar la cuota escolar. Los moretones en las manos de la madre fueron el precio que la madre tuvo que pagar por su graduaci\\u00f3n, excelencia acad\\u00e9mica y su futuro.<\\/p><p>Despu\\u00e9s de terminar la limpieza de las manos de su madre, el joven lav\\u00f3 en silencio toda la ropa restante para su madre.<\\/p><p>Esa noche, madre e hijo hablaron durante mucho tiempo.<\\/p><p>A la ma\\u00f1ana siguiente, el joven fue a la oficina del director.<\\/p><p>El director not\\u00f3 las l\\u00e1grimas en los ojos del joven y pregunt\\u00f3: \\\"\\u00bfPuede decirme qu\\u00e9 ha hecho y aprendido ayer en su casa?\\\"<\\/p><p>El joven respondi\\u00f3: \\\"Limpi\\u00e9 las manos de mi madre y tambi\\u00e9n termin\\u00e9 de limpiar toda la ropa restante\\\".<\\/p><p>El director pregunt\\u00f3: \\\"Por favor, d\\u00edgame sus sentimientos\\\".<\\/p><p>El joven dijo:<\\/p><ol><li>Ahora s\\u00e9 lo que es el aprecio. Sin mi madre, no habr\\u00eda habido el \\u00e9xito de m\\u00ed hoy.<\\/li><li>Al trabajar juntos y ayudar a mi madre, solo ahora me doy cuenta de lo dif\\u00edcil y dif\\u00edcil que es hacer algo.<\\/li><li>He llegado a apreciar la importancia y el valor de las relaciones familiares.<\\/li><\\/ol><p>El director dijo: \\\"Esto es lo que estoy buscando para ser mi gerente. Quiero reclutar a una persona que pueda apreciar la ayuda de los dem\\u00e1s, una persona que conozca los sufrimientos de los dem\\u00e1s para hacer las cosas, y una persona que no ponga el dinero como su \\u00fanico objetivo en la vida. Est\\u00e1s contratado\\\".<\\/p><p>M\\u00e1s tarde, este joven trabaj\\u00f3 muy duro y recibi\\u00f3 el respeto de sus subordinados. Cada empleado trabaj\\u00f3 diligentemente y en equipo. El rendimiento de la compa\\u00f1\\u00eda mejor\\u00f3 enormemente<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4132,559,'_elementor_template_type','wp-page'),(4133,559,'_elementor_edit_mode','builder'),(4134,559,'_elementor_version','3.13.2'),(2932,426,'_elementor_template_type','wp-page'),(2933,426,'_elementor_edit_mode','builder'),(2934,426,'_elementor_version','3.12.2'),(2935,426,'_wp_page_template','default'),(2936,426,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2937,426,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2938,426,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2939,426,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(2941,427,'_elementor_template_type','wp-page'),(2942,427,'_elementor_edit_mode','builder'),(2943,427,'_elementor_version','3.12.2'),(2944,427,'_wp_page_template','default'),(2945,427,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2946,427,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2947,427,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2948,427,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(2950,428,'_elementor_template_type','wp-page'),(2951,428,'_elementor_edit_mode','builder'),(2952,428,'_elementor_version','3.12.2'),(2953,428,'_wp_page_template','default'),(2954,428,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2955,428,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2956,428,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2957,428,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4137,559,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SE LO QUE QUIERAS SER!\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a1Puedes ser\\u00a0<strong>lo que<\\/strong><br \\/><strong>quieras ser!<\\/strong><\\/p><p>Hay dentro de ti<br \\/>todo el potencial<br \\/>para ser lo que\\u00a0quieras ser,<br \\/>toda la energ\\u00eda<br \\/>para hacer lo que quieras hacer.<\\/p><p>Imag\\u00ednate como te gustar\\u00eda ser,\\u00a0haciendo lo que quieres hacer,\\u00a0y cada d\\u00eda,<br \\/><br \\/>da un paso<br \\/>hacia tu sue\\u00f1o.<\\/p><p>Y aunque a veces parezca demasiado<br \\/>dif\\u00edcil continuar,<br \\/>af\\u00e9rrate a tu sue\\u00f1o.<\\/p><p>Una ma\\u00f1ana te despertar\\u00e1s para descubrir<br \\/>que\\u00a0eres la persona con la que so\\u00f1aste,\\u00a0haciendo lo que quer\\u00edas hacer,\\u00a0simplemente porque tuviste el coraje<br \\/>de creer en tu potencial<br \\/>y aferrarte a tu sue\\u00f1o.<\\/p>\",\"align\":\"center\",\"text_color\":\"#010801\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2959,429,'_elementor_template_type','wp-page'),(2960,429,'_elementor_edit_mode','builder'),(2961,429,'_elementor_version','3.12.2'),(2962,429,'_wp_page_template','default'),(2963,429,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2964,429,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Este es un mensaje poderoso para nuestra sociedad moderna. Parece que hemos perdido nuestro rumbo y nuestro sentido de direcci\\u00f3n.<\\/p><p>Una persona joven acad\\u00e9micamente excelente fue a solicitar un puesto directivo en una gran empresa. Pas\\u00f3 la primera entrevista; El director hizo la \\u00faltima entrevista. El director descubri\\u00f3 en el CV que los logros acad\\u00e9micos del joven fueron excelentes hasta el final, desde la escuela secundaria hasta la investigaci\\u00f3n de posgrado, nunca tuvo un a\\u00f1o en el que no puntu\\u00f3.<\\/p><p>El director pregunt\\u00f3: \\\"\\u00bfObtuviste alguna beca en la escuela?\\\"<\\/p><p>El joven respondi\\u00f3: \\\"Ninguno\\\".<\\/p><p>El director pregunt\\u00f3: \\\"\\u00bfFue tu padre quien pag\\u00f3 tus cuotas escolares?\\\"<\\/p><p>El joven respondi\\u00f3: \\\"Mi padre falleci\\u00f3 cuando yo ten\\u00eda un a\\u00f1o, fue mi madre quien pag\\u00f3 mis cuotas escolares\\\".<\\/p><p>El director pregunt\\u00f3: \\\"\\u00bfD\\u00f3nde trabajaba tu madre?\\\"<\\/p><p>El joven respondi\\u00f3: \\\"Mi madre trabajaba como lavandera\\\".<\\/p><p>El director le pidi\\u00f3 al joven que mostrara sus manos. El joven mostr\\u00f3 un par de manos que eran suaves y perfectas.<\\/p><p>El director pregunt\\u00f3: \\\"\\u00bfAlguna vez has ayudado a tu madre a lavar la ropa antes?\\\"<\\/p><p>El joven respondi\\u00f3: \\\"Nunca, mi madre siempre quiso que estudiara y leyera m\\u00e1s libros. Adem\\u00e1s, mi madre puede lavar la ropa m\\u00e1s r\\u00e1pido que yo\\\".<\\/p><p>El director dijo: \\\"Tengo una solicitud. Cuando regreses hoy, ve y limpia las manos de tu madre, y luego m\\u00edrame ma\\u00f1ana por la ma\\u00f1ana\\\".<\\/p><p>El joven sinti\\u00f3 que sus posibilidades de conseguir el trabajo eran altas. Cuando regres\\u00f3, felizmente le pidi\\u00f3 a su madre que le permitiera limpiarse las manos. Su madre se sinti\\u00f3 extra\\u00f1a. Feliz pero con sentimientos encontrados, mostr\\u00f3 sus manos al joven.<\\/p><p>El joven limpi\\u00f3 las manos de su madre lentamente. Su l\\u00e1grima cay\\u00f3 mientras lo hac\\u00eda. Fue la primera vez que not\\u00f3 que las manos de su madre estaban tan arrugadas y hab\\u00eda tantos moretones en sus manos. Algunos moretones eran tan dolorosos que su madre se estremeci\\u00f3 cuando los limpiaron con agua.<\\/p><p>Esta fue la primera vez que el joven se dio cuenta de que era este par de manos las que lavaban la ropa todos los d\\u00edas para permitirle pagar la cuota escolar. Los moretones en las manos de la madre fueron el precio que la madre tuvo que pagar por su graduaci\\u00f3n, excelencia acad\\u00e9mica y su futuro.<\\/p><p>Despu\\u00e9s de terminar la limpieza de las manos de su madre, el joven lav\\u00f3 en silencio toda la ropa restante para su madre.<\\/p><p>Esa noche, madre e hijo hablaron durante mucho tiempo.<\\/p><p>A la ma\\u00f1ana siguiente, el joven fue a la oficina del director.<\\/p><p>El director not\\u00f3 las l\\u00e1grimas en los ojos del joven y pregunt\\u00f3: \\\"\\u00bfPuede decirme qu\\u00e9 ha hecho y aprendido ayer en su casa?\\\"<\\/p><p>El joven respondi\\u00f3: \\\"Limpi\\u00e9 las manos de mi madre y tambi\\u00e9n termin\\u00e9 de limpiar toda la ropa restante\\\".<\\/p><p>El director pregunt\\u00f3: \\\"Por favor, d\\u00edgame sus sentimientos\\\".<\\/p><p>El joven dijo:<\\/p><ol><li>Ahora s\\u00e9 lo que es el aprecio. Sin mi madre, no habr\\u00eda habido el \\u00e9xito de m\\u00ed hoy.<\\/li><li>Al trabajar juntos y ayudar a mi madre, solo ahora me doy cuenta de lo dif\\u00edcil y dif\\u00edcil que es hacer algo.<\\/li><li>He llegado a apreciar la importancia y el valor de las relaciones familiares.<\\/li><\\/ol><p>El director dijo: \\\"Esto es lo que estoy buscando para ser mi gerente. Quiero reclutar a una persona que pueda apreciar la ayuda de los dem\\u00e1s, una persona que conozca los sufrimientos de los dem\\u00e1s para hacer las cosas, y una persona que no ponga el dinero como su \\u00fanico objetivo en la vida. Est\\u00e1s contratado\\\".<\\/p><p>M\\u00e1s tarde, este joven trabaj\\u00f3 muy duro y recibi\\u00f3 el respeto de sus subordinados. Cada empleado trabaj\\u00f3 diligentemente y en equipo. El rendimiento de la compa\\u00f1\\u00eda mejor\\u00f3 enormemente<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2965,429,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2966,429,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4135,559,'_wp_page_template','default'),(4136,559,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2969,430,'_elementor_template_type','wp-page'),(2970,430,'_elementor_edit_mode','builder'),(2971,430,'_edit_lock','1686854820:1'),(2972,430,'_elementor_version','3.13.4'),(2973,430,'_edit_last','1'),(2974,430,'_wp_page_template','default'),(2975,430,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2976,430,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A disciple and his teacher were walking through the forest. The disciple was disturbed by the fact that his mind was in constant unrest.<\\/p><p>He asked his teacher: \\\"Why most people\'s minds are restless, and only a few possess a calm mind? What can one do to still the mind?\\\"<\\/p><p>The teacher looked at the disciple, smiled and said:<br \\/>\\\"I will tell you a story. An elephant was standing and picking leaves from a tree. A small fly came, flying and buzzing near his ear. The elephant waved it away with his long ears. Then the fly came again, and the elephant waved it away once more.\\\"<\\/p><p>This was repeated several times. Then the elephant asked the fly:<br \\/>\\\"Why are you so restless and noisy? Why can\'t you stay for a while in one place?\\\"<\\/p><p>The fly answered: \\\"I am attracted to whatever I see, hear or smell. My five senses, and everything that happens around me, pull me constantly in all directions, and I cannot resist them. What is your secret? How can you stay so calm and still?\\\"<\\/p><p>The elephant stopped eating and said:<br \\/>\\\"My five senses do not rule my attention. I am in control of my attention, and I can direct it wherever I want. This helps me to get immersed in whatever I do, and therefore, keep my mind focused and calm. Now that I am eating, I am completely immersed in eating. In this way, I can enjoy my food and chew it better. I control my attention, and not the other way around, and this helps me stay peaceful.\\\"<\\/p><p>Upon hearing these words, the disciple\'s eyes opened wide, and a smile appeared on his face. He looked at his teacher and said:<br \\/>\\\"I understand! My mind will be in constant unrest, if my five senses, and whatever is happening in the world around me are in control of it. On the other hand, if I am in command of my five senses, able to disregard sense impressions, my mind would become calm, and I will be able to disregard its restlessness.\\\"<\\/p><p>\\\"Yes, that\'s right,\\\" answered the teacher,\\\" The mind is restless and goes wherever the attention is. Control your attention, and you control your mind.\\\"<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5413,721,'_elementor_edit_mode','builder'),(5414,721,'_elementor_version','3.12.2'),(5415,721,'_wp_page_template','default'),(5416,721,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2977,430,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2978,430,'_eael_custom_js',''),(5398,719,'_elementor_template_type','wp-page'),(5399,719,'_elementor_edit_mode','builder'),(5400,719,'_elementor_version','3.12.2'),(5401,719,'_wp_page_template','default'),(5402,719,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5403,719,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un disc\\u00edpulo y su maestro caminaban por el bosque. El disc\\u00edpulo estaba perturbado por el hecho de que su mente estaba en constante inquietud.<\\/p><p>Le pregunt\\u00f3 a su maestro: \\\"\\u00bfPor qu\\u00e9 la mente de la mayor\\u00eda de las personas est\\u00e1n inquietas y solo unos pocos poseen una mente tranquila? \\u00bfQu\\u00e9 puede uno hacer para calmar la mente?\\\"<\\/p><p>El maestro mir\\u00f3 al disc\\u00edpulo, sonri\\u00f3 y dijo:<br \\/>\\\"Te contar\\u00e9 una historia. Un elefante estaba de pie y recogiendo hojas de un \\u00e1rbol. Lleg\\u00f3 una peque\\u00f1a mosca, volando y zumbando cerca de su o\\u00eddo. El elefante lo agit\\u00f3 con sus largas orejas. Entonces la mosca volvi\\u00f3 y el elefante la despidi\\u00f3 una vez m\\u00e1s\\\".<\\/p><p>Esto se repiti\\u00f3 varias veces. Entonces el elefante le pregunt\\u00f3 a la mosca:<br \\/>\\\"\\u00bfPor qu\\u00e9 est\\u00e1s tan inquieta y ruidosa? \\u00bfPor qu\\u00e9 no puedes quedarte un rato en un solo lugar?\\\"<\\/p><p>La mosca respondi\\u00f3: \\\"Me atrae todo lo que veo, oigo u huelo. Mis cinco sentidos, y todo lo que sucede a mi alrededor, me tiran constantemente en todas direcciones, y no puedo resistirme a ellos. \\u00bfCu\\u00e1l es tu secreto? \\u00bfC\\u00f3mo puedes mantenerte tan tranquilo y quieto?\\\"<\\/p><p>El elefante dej\\u00f3 de comer y dijo:<br \\/>\\\"Mis cinco sentidos no gobiernan mi atenci\\u00f3n. Tengo el control de mi atenci\\u00f3n y puedo dirigirla a donde quiera. Esto me ayuda a sumergirme en todo lo que hago y, por lo tanto, mantener mi mente enfocada y tranquila. Ahora que estoy comiendo, estoy completamente inmerso en comer. De esta manera, puedo disfrutar de mi comida y masticarla mejor. Controlo mi atenci\\u00f3n, y no al rev\\u00e9s, y esto me ayuda a mantenerme en paz\\\".<\\/p><p>Al escuchar estas palabras, los ojos del disc\\u00edpulo se abrieron de par en par y una sonrisa apareci\\u00f3 en su rostro. Mir\\u00f3 a su maestro y dijo:<br \\/>\\\"\\u00a1Entiendo! Mi mente estar\\u00e1 en constante inquietud, si mis cinco sentidos, y lo que sea que est\\u00e9 sucediendo en el mundo que me rodea est\\u00e1n en control de ella. Por otro lado, si estoy al mando de mis cinco sentidos, capaz de ignorar las impresiones sensoriales, mi mente se calmar\\u00eda y podr\\u00e9 ignorar su inquietud\\\".<\\/p><p>\\\"S\\u00ed, es cierto\\\", respondi\\u00f3 el maestro, \\\"La mente est\\u00e1 inquieta y va a donde est\\u00e9 la atenci\\u00f3n. Controla tu atenci\\u00f3n y controlas tu mente\\\".<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2981,431,'_elementor_template_type','wp-page'),(2982,431,'_elementor_edit_mode','builder'),(2983,431,'_elementor_version','3.12.2'),(2984,431,'_wp_page_template','default'),(2985,431,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2986,431,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2987,431,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2988,431,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(2990,432,'_elementor_template_type','wp-page'),(2991,432,'_elementor_edit_mode','builder'),(2992,432,'_elementor_version','3.12.2'),(2993,432,'_wp_page_template','default'),(2994,432,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(2995,432,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2996,432,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2997,432,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4130,558,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2999,433,'_elementor_template_type','wp-page'),(3000,433,'_elementor_edit_mode','builder'),(3001,433,'_elementor_version','3.12.2'),(3002,433,'_wp_page_template','default'),(3003,433,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3004,433,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3005,433,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3006,433,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5412,721,'_elementor_template_type','wp-page'),(3008,434,'_elementor_template_type','wp-page'),(3009,434,'_elementor_edit_mode','builder'),(3010,434,'_elementor_version','3.12.2'),(3011,434,'_wp_page_template','default'),(3012,434,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3013,434,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un disc\\u00edpulo y su maestro caminaban por el bosque. El disc\\u00edpulo estaba perturbado por el hecho de que su mente estaba en constante inquietud.<\\/p><p>Le pregunt\\u00f3 a su maestro: \\\"\\u00bfPor qu\\u00e9 la mente de la mayor\\u00eda de las personas est\\u00e1n inquietas y solo unos pocos poseen una mente tranquila? \\u00bfQu\\u00e9 puede uno hacer para calmar la mente?\\\"<\\/p><p>El maestro mir\\u00f3 al disc\\u00edpulo, sonri\\u00f3 y dijo:<br \\/>\\\"Te contar\\u00e9 una historia. Un elefante estaba de pie y recogiendo hojas de un \\u00e1rbol. Lleg\\u00f3 una peque\\u00f1a mosca, volando y zumbando cerca de su o\\u00eddo. El elefante lo agit\\u00f3 con sus largas orejas. Entonces la mosca volvi\\u00f3 y el elefante la despidi\\u00f3 una vez m\\u00e1s\\\".<\\/p><p>Esto se repiti\\u00f3 varias veces. Entonces el elefante le pregunt\\u00f3 a la mosca:<br \\/>\\\"\\u00bfPor qu\\u00e9 est\\u00e1s tan inquieta y ruidosa? \\u00bfPor qu\\u00e9 no puedes quedarte un rato en un solo lugar?\\\"<\\/p><p>La mosca respondi\\u00f3: \\\"Me atrae todo lo que veo, oigo u huelo. Mis cinco sentidos, y todo lo que sucede a mi alrededor, me tiran constantemente en todas direcciones, y no puedo resistirme a ellos. \\u00bfCu\\u00e1l es tu secreto? \\u00bfC\\u00f3mo puedes mantenerte tan tranquilo y quieto?\\\"<\\/p><p>El elefante dej\\u00f3 de comer y dijo:<br \\/>\\\"Mis cinco sentidos no gobiernan mi atenci\\u00f3n. Tengo el control de mi atenci\\u00f3n y puedo dirigirla a donde quiera. Esto me ayuda a sumergirme en todo lo que hago y, por lo tanto, mantener mi mente enfocada y tranquila. Ahora que estoy comiendo, estoy completamente inmerso en comer. De esta manera, puedo disfrutar de mi comida y masticarla mejor. Controlo mi atenci\\u00f3n, y no al rev\\u00e9s, y esto me ayuda a mantenerme en paz\\\".<\\/p><p>Al escuchar estas palabras, los ojos del disc\\u00edpulo se abrieron de par en par y una sonrisa apareci\\u00f3 en su rostro. Mir\\u00f3 a su maestro y dijo:<br \\/>\\\"\\u00a1Entiendo! Mi mente estar\\u00e1 en constante inquietud, si mis cinco sentidos, y lo que sea que est\\u00e9 sucediendo en el mundo que me rodea est\\u00e1n en control de ella. Por otro lado, si estoy al mando de mis cinco sentidos, capaz de ignorar las impresiones sensoriales, mi mente se calmar\\u00eda y podr\\u00e9 ignorar su inquietud\\\".<\\/p><p>\\\"S\\u00ed, es cierto\\\", respondi\\u00f3 el maestro, \\\"La mente est\\u00e1 inquieta y va a donde est\\u00e9 la atenci\\u00f3n. Controla tu atenci\\u00f3n y controlas tu mente\\\".<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3014,434,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3015,434,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3018,435,'_elementor_template_type','wp-page'),(3019,435,'_elementor_edit_mode','builder'),(3020,435,'_edit_lock','1686855402:1'),(3021,435,'_elementor_version','3.13.4'),(3022,435,'_edit_last','1'),(3023,435,'_wp_page_template','default'),(3024,435,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3025,435,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">There once was a little boy who had a bad temper. His father gave him a bag of nails and told him that every time he lost his temper, he must hammer a nail into the fence. The first day the boy had driven 37 nails into the fence. Over the next few weeks as he learned to control his anger, the number of nails hammered daily, gradually dwindled down. He discovered it was easier to hold his temper than to drive those nails into the fence.<\\/p><p style=\\\"text-align: justify;\\\">Finally the day came when the boy didn\'t lose his temper at all. He told his father about it and the father suggested that the boy now pull out one nail for each day that he was able to hold his temper. The days passed and the young boy was finally able to tell his father that all the nails were gone.<\\/p><p style=\\\"text-align: justify;\\\">The father took his son by the hand and led him to the fence. He said \\\"you have done well, my son, but look at the holes in the fence. The fence will never be the same. When you say things in anger, they leave a scar just like this one.\\\" You can put a knife in a man and draw it out. It won\'t matter how many times you say I\'m sorry, the wound is still there. Make sure you control your temper the next time you are tempted to say something you will regret later.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5442,725,'_elementor_template_type','wp-page'),(5443,725,'_elementor_edit_mode','builder'),(3057,439,'_elementor_template_type','wp-page'),(3058,439,'_elementor_edit_mode','builder'),(3059,439,'_elementor_version','3.12.2'),(3060,439,'_wp_page_template','default'),(3061,439,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3062,439,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hab\\u00eda una vez un ni\\u00f1o peque\\u00f1o que ten\\u00eda mal genio. Su padre le dio una bolsa de clavos y le dijo que cada vez que perdiera los estribos, deb\\u00eda clavar un clavo en la cerca. El primer d\\u00eda el ni\\u00f1o hab\\u00eda clavado 37 clavos en la cerca. Durante las siguientes semanas, a medida que aprendi\\u00f3 a controlar su ira, el n\\u00famero de clavos martillados diariamente, disminuy\\u00f3 gradualmente. Descubri\\u00f3 que era m\\u00e1s f\\u00e1cil mantener el temperamento que clavar esos clavos en la cerca.<\\/p><p>Finalmente lleg\\u00f3 el d\\u00eda en que el ni\\u00f1o no perdi\\u00f3 los estribos en absoluto. Se lo cont\\u00f3 a su padre y el padre sugiri\\u00f3 que el ni\\u00f1o ahora sacara un clavo por cada d\\u00eda que pudiera mantener su temperamento. Los d\\u00edas pasaron y el ni\\u00f1o finalmente pudo decirle a su padre que todas las u\\u00f1as hab\\u00edan desaparecido.<\\/p><p>El padre tom\\u00f3 a su hijo de la mano y lo llev\\u00f3 a la cerca. \\u00c9l dijo: \\\"Lo has hecho bien, hijo m\\u00edo, pero mira los agujeros en la cerca. La valla nunca ser\\u00e1 la misma. Cuando dices cosas con ira, dejan una cicatriz como esta\\\". Puedes poner un cuchillo en un hombre y sacarlo. No importar\\u00e1 cu\\u00e1ntas veces digas que lo siento, la herida todav\\u00eda est\\u00e1 all\\u00ed. Aseg\\u00farate de controlar tu temperamento la pr\\u00f3xima vez que te sientas tentado a decir algo de lo que te arrepentir\\u00e1s m\\u00e1s tarde.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3026,435,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3027,435,'_eael_custom_js',''),(5428,723,'_elementor_template_type','wp-page'),(5429,723,'_elementor_edit_mode','builder'),(5430,723,'_elementor_version','3.12.2'),(5431,723,'_wp_page_template','default'),(5432,723,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5433,723,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hab\\u00eda una vez un ni\\u00f1o peque\\u00f1o que ten\\u00eda mal genio. Su padre le dio una bolsa de clavos y le dijo que cada vez que perdiera los estribos, deb\\u00eda clavar un clavo en la cerca. El primer d\\u00eda el ni\\u00f1o hab\\u00eda clavado 37 clavos en la cerca. Durante las siguientes semanas, a medida que aprendi\\u00f3 a controlar su ira, el n\\u00famero de clavos martillados diariamente, disminuy\\u00f3 gradualmente. Descubri\\u00f3 que era m\\u00e1s f\\u00e1cil mantener el temperamento que clavar esos clavos en la cerca.<\\/p><p>Finalmente lleg\\u00f3 el d\\u00eda en que el ni\\u00f1o no perdi\\u00f3 los estribos en absoluto. Se lo cont\\u00f3 a su padre y el padre sugiri\\u00f3 que el ni\\u00f1o ahora sacara un clavo por cada d\\u00eda que pudiera mantener su temperamento. Los d\\u00edas pasaron y el ni\\u00f1o finalmente pudo decirle a su padre que todas las u\\u00f1as hab\\u00edan desaparecido.<\\/p><p>El padre tom\\u00f3 a su hijo de la mano y lo llev\\u00f3 a la cerca. \\u00c9l dijo: \\\"Lo has hecho bien, hijo m\\u00edo, pero mira los agujeros en la cerca. La valla nunca ser\\u00e1 la misma. Cuando dices cosas con ira, dejan una cicatriz como esta\\\". Puedes poner un cuchillo en un hombre y sacarlo. No importar\\u00e1 cu\\u00e1ntas veces digas que lo siento, la herida todav\\u00eda est\\u00e1 all\\u00ed. Aseg\\u00farate de controlar tu temperamento la pr\\u00f3xima vez que te sientas tentado a decir algo de lo que te arrepentir\\u00e1s m\\u00e1s tarde.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3030,436,'_elementor_template_type','wp-page'),(3031,436,'_elementor_edit_mode','builder'),(3032,436,'_elementor_version','3.12.2'),(3033,436,'_wp_page_template','default'),(3034,436,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3035,436,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3036,436,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3037,436,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3039,437,'_elementor_template_type','wp-page'),(3040,437,'_elementor_edit_mode','builder'),(3041,437,'_elementor_version','3.12.2'),(3042,437,'_wp_page_template','default'),(3043,437,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3044,437,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3045,437,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3046,437,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3048,438,'_elementor_template_type','wp-page'),(3049,438,'_elementor_edit_mode','builder'),(3050,438,'_elementor_version','3.12.2'),(3051,438,'_wp_page_template','default'),(3052,438,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3053,438,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3054,438,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3055,438,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3063,439,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3064,439,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3067,440,'_elementor_template_type','wp-page'),(3068,440,'_elementor_edit_mode','builder'),(3069,440,'_edit_lock','1686854973:1'),(3070,440,'_elementor_version','3.13.4'),(3071,440,'_edit_last','1'),(3072,440,'_wp_page_template','default'),(3073,440,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3074,440,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">When I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up.<\\/p><p style=\\\"text-align: justify;\\\">I wrote down<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5472,729,'_elementor_template_type','wp-page'),(3106,444,'_elementor_template_type','wp-page'),(3107,444,'_elementor_edit_mode','builder'),(3108,444,'_elementor_version','3.12.2'),(3109,444,'_wp_page_template','default'),(3110,444,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3111,444,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cuando ten\\u00eda 5 a\\u00f1os, mi madre siempre me dec\\u00eda que la felicidad era la clave de la vida. Cuando fui a la escuela, me preguntaron qu\\u00e9 quer\\u00eda ser cuando creciera.<\\/p><p>Escrib\\u00ed \'feliz\'. Me dijeron que no entend\\u00eda la tarea, y les dije que no entend\\u00edan la vida.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3075,440,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3076,440,'_eael_custom_js',''),(5458,727,'_elementor_template_type','wp-page'),(5459,727,'_elementor_edit_mode','builder'),(5460,727,'_elementor_version','3.12.2'),(5461,727,'_wp_page_template','default'),(5462,727,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpjv_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (5463,727,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cuando ten\\u00eda 5 a\\u00f1os, mi madre siempre me dec\\u00eda que la felicidad era la clave de la vida. Cuando fui a la escuela, me preguntaron qu\\u00e9 quer\\u00eda ser cuando creciera.<\\/p><p>Escrib\\u00ed \'feliz\'. Me dijeron que no entend\\u00eda la tarea, y les dije que no entend\\u00edan la vida.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4124,558,'_elementor_template_type','wp-page'),(3079,441,'_elementor_template_type','wp-page'),(3080,441,'_elementor_edit_mode','builder'),(3081,441,'_elementor_version','3.12.2'),(3082,441,'_wp_page_template','default'),(3083,441,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3084,441,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3085,441,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3086,441,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3088,442,'_elementor_template_type','wp-page'),(3089,442,'_elementor_edit_mode','builder'),(3090,442,'_elementor_version','3.12.2'),(3091,442,'_wp_page_template','default'),(3092,442,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3093,442,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3094,442,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3095,442,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3097,443,'_elementor_template_type','wp-page'),(3098,443,'_elementor_edit_mode','builder'),(3099,443,'_elementor_version','3.12.2'),(3100,443,'_wp_page_template','default'),(3101,443,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3102,443,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3103,443,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3104,443,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3112,444,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3113,444,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3116,445,'_elementor_template_type','wp-page'),(3117,445,'_elementor_edit_mode','builder'),(3118,445,'_edit_lock','1686855271:1'),(3119,445,'_elementor_version','3.13.4'),(3120,445,'_edit_last','1'),(3121,445,'_wp_page_template','default'),(3122,445,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3123,445,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Two men, both seriously ill, occupied the same hospital room. One man was allowed to sit up in his bed for an hour each afternoon to help drain the fluid from his lungs. His bed was next to the room\'s only window. The other man had to spend all his time flat on his back.<\\/p><p style=\\\"text-align: justify;\\\">The men talked for hours on end. They spoke of their wives and families, their homes, their jobs, their involvement in the military service, where they had been on vacation.<\\/p><p style=\\\"text-align: justify;\\\">And every afternoon when the man in the bed by the window could sit up, he would pass the time by describing to his roommate all the things he could see outside the window. The man in the other bed began to live for those one-hour periods where his world would be broadened and enlivened by all the activity and color of the world outside.<\\/p><p style=\\\"text-align: justify;\\\">The window overlooked a park with a lovely lake. Ducks and swans played on the water while children sailed their model boats. Young lovers walked arm in arm amidst flowers of every color of the rainbow. Grand old trees graced the landscape, and a fine view of the city skyline could be seen in the distance.<\\/p><p style=\\\"text-align: justify;\\\">As the man by the window described all this in exquisite detail, the man on the other side of the room would close his eyes and imagine the picturesque scene.<\\/p><p style=\\\"text-align: justify;\\\">One warm afternoon the man by the window described a parade passing by. Although the other man couldn\'t hear the band - he could see it in his mind\'s eye as the gentleman by the window portrayed it with descriptive words.<\\/p><p style=\\\"text-align: justify;\\\">Days and weeks passed. One morning, the day nurse arrived to bring water for their baths only to find the lifeless body of the man by the window, who had died peacefully in his sleep. She was saddened and called the hospital attendants to take the body away.<\\/p><p style=\\\"text-align: justify;\\\">As soon as it seemed appropriate, the other man asked if he could be moved next to the window. The nurse was happy to make the switch, and after making sure he was comfortable, she left him alone. Slowly, painfully, he propped himself up on one elbow to take his first look at the world outside. Finally, he would have the joy of seeing it for himself.<\\/p><p style=\\\"text-align: justify;\\\">He strained to slowly turn to look out the window beside the bed. It faced a blank wall. The man asked the nurse what could have compelled his deceased roommate who had described such wonderful things outside this window. The nurse responded that the man was blind and could not even see the wall. She said, \\\"Perhaps he just wanted to encourage you.\\\"<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3124,445,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3125,445,'_eael_custom_js',''),(5488,731,'_elementor_template_type','wp-page'),(5489,731,'_elementor_edit_mode','builder'),(5490,731,'_elementor_version','3.12.2'),(5491,731,'_wp_page_template','default'),(5492,731,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5493,731,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Dos hombres, ambos gravemente enfermos, ocuparon la misma habitaci\\u00f3n del hospital. A un hombre se le permiti\\u00f3 sentarse en su cama durante una hora cada tarde para ayudar a drenar el l\\u00edquido de sus pulmones. Su cama estaba al lado de la \\u00fanica ventana de la habitaci\\u00f3n. El otro hombre ten\\u00eda que pasar todo su tiempo boca arriba.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Los hombres hablaron durante horas y horas. Hablaron de sus esposas y familias, sus hogares, sus trabajos, su participaci\\u00f3n en el servicio militar, donde hab\\u00edan estado de vacaciones.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Y todas las tardes, cuando el hombre en la cama junto a la ventana pod\\u00eda sentarse, pasaba el tiempo describiendo a su compa\\u00f1ero de cuarto todas las cosas que pod\\u00eda ver fuera de la ventana. El hombre en la otra cama comenz\\u00f3 a vivir durante esos per\\u00edodos de una hora en los que su mundo se ampliar\\u00eda y animar\\u00eda por toda la actividad y el color del mundo exterior.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">La ventana daba a un parque con un hermoso lago. Patos y cisnes jugaban en el agua mientras los ni\\u00f1os navegaban en sus modelos de barcos. Los j\\u00f3venes amantes caminaron del brazo en medio de flores de todos los colores del arco iris. Grandes \\u00e1rboles viejos adornaban el paisaje, y una hermosa vista del horizonte de la ciudad se pod\\u00eda ver en la distancia.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Mientras el hombre junto a la ventana describ\\u00eda todo esto con exquisito detalle, el hombre al otro lado de la habitaci\\u00f3n cerraba los ojos e imaginaba la pintoresca escena.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Una c\\u00e1lida tarde, el hombre junto a la ventana describi\\u00f3 un desfile que pasaba. Aunque el otro hombre no pod\\u00eda escuchar a la banda, pod\\u00eda verla en su mente mientras el caballero junto a la ventana la retrataba con palabras descriptivas.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Pasaron d\\u00edas y semanas. Una ma\\u00f1ana, la enfermera de d\\u00eda lleg\\u00f3 para traer agua para sus ba\\u00f1os solo para encontrar el cuerpo sin vida del hombre junto a la ventana, que hab\\u00eda muerto pac\\u00edficamente mientras dorm\\u00eda. Se entristeci\\u00f3 y llam\\u00f3 a los asistentes del hospital para que se llevaran el cuerpo.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Tan pronto como pareci\\u00f3 apropiado, el otro hombre pregunt\\u00f3 si pod\\u00eda ser movido al lado de la ventana. La enfermera estaba feliz de hacer el cambio, y despu\\u00e9s de asegurarse de que estaba c\\u00f3modo, lo dej\\u00f3 solo. Lentamente, dolorosamente, se apoy\\u00f3 en un codo para echar un primer vistazo al mundo exterior. Finalmente, tendr\\u00eda la alegr\\u00eda de verlo por s\\u00ed mismo.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Se esforz\\u00f3 por girar lentamente para mirar por la ventana al lado de la cama. Se enfrentaba a una pared en blanco. El hombre le pregunt\\u00f3 a la enfermera qu\\u00e9 podr\\u00eda haber obligado a su compa\\u00f1ero de cuarto fallecido que hab\\u00eda descrito cosas tan maravillosas fuera de esta ventana. La enfermera respondi\\u00f3 que el hombre era ciego y ni siquiera pod\\u00eda ver la pared. Ella dijo: \\\"Tal vez \\u00e9l solo quer\\u00eda animarte\\\".<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3128,446,'_elementor_template_type','wp-page'),(3129,446,'_elementor_edit_mode','builder'),(3130,446,'_elementor_version','3.12.2'),(3131,446,'_wp_page_template','default'),(3132,446,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3133,446,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3134,446,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3135,446,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4125,558,'_elementor_edit_mode','builder'),(4126,558,'_elementor_version','3.13.2'),(4127,558,'_wp_page_template','default'),(3137,447,'_elementor_template_type','wp-page'),(3138,447,'_elementor_edit_mode','builder'),(3139,447,'_elementor_version','3.12.2'),(3140,447,'_wp_page_template','default'),(3141,447,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3142,447,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3143,447,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3144,447,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4128,558,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3146,448,'_elementor_template_type','wp-page'),(3147,448,'_elementor_edit_mode','builder'),(3148,448,'_elementor_version','3.12.2'),(3149,448,'_wp_page_template','default'),(3150,448,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3151,448,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3152,448,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3153,448,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4129,558,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SE LO QUE QUIERAS SER!\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a1Puedes ser\\u00a0<strong>lo que<\\/strong><br \\/><strong>quieras ser!<\\/strong><\\/p><p>Hay dentro de ti<br \\/>todo el potencial<br \\/>para ser lo que\\u00a0quieras ser,<br \\/>toda la energ\\u00eda<br \\/>para hacer lo que quieras hacer.<\\/p><p>Imag\\u00ednate como te gustar\\u00eda ser,\\u00a0haciendo lo que quieres hacer,\\u00a0y cada d\\u00eda,<br \\/><br \\/>da un paso<br \\/>hacia tu sue\\u00f1o.<\\/p><p>Y aunque a veces parezca demasiado<br \\/>dif\\u00edcil continuar,<br \\/>af\\u00e9rrate a tu sue\\u00f1o.<\\/p><p>Una ma\\u00f1ana te despertar\\u00e1s para descubrir<br \\/>que\\u00a0eres la persona con la que so\\u00f1aste,\\u00a0haciendo lo que quer\\u00edas hacer,\\u00a0simplemente porque tuviste el coraje<br \\/>de creer en tu potencial<br \\/>y aferrarte a tu sue\\u00f1o.<\\/p>\",\"align\":\"center\",\"text_color\":\"#010801\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5502,733,'_elementor_template_type','wp-page'),(5503,733,'_elementor_edit_mode','builder'),(5504,733,'_elementor_version','3.12.2'),(5505,733,'_wp_page_template','default'),(5506,733,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5507,733,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Two men, both seriously ill, occupied the same hospital room. One man was allowed to sit up in his bed for an hour each afternoon to help drain the fluid from his lungs. His bed was next to the room\'s only window. The other man had to spend all his time flat on his back.<\\/p><p style=\\\"text-align: justify;\\\">The men talked for hours on end. They spoke of their wives and families, their homes, their jobs, their involvement in the military service, where they had been on vacation.<\\/p><p style=\\\"text-align: justify;\\\">And every afternoon when the man in the bed by the window could sit up, he would pass the time by describing to his roommate all the things he could see outside the window. The man in the other bed began to live for those one-hour periods where his world would be broadened and enlivened by all the activity and color of the world outside.<\\/p><p style=\\\"text-align: justify;\\\">The window overlooked a park with a lovely lake. Ducks and swans played on the water while children sailed their model boats. Young lovers walked arm in arm amidst flowers of every color of the rainbow. Grand old trees graced the landscape, and a fine view of the city skyline could be seen in the distance.<\\/p><p style=\\\"text-align: justify;\\\">As the man by the window described all this in exquisite detail, the man on the other side of the room would close his eyes and imagine the picturesque scene.<\\/p><p style=\\\"text-align: justify;\\\">One warm afternoon the man by the window described a parade passing by. Although the other man couldn\'t hear the band - he could see it in his mind\'s eye as the gentleman by the window portrayed it with descriptive words.<\\/p><p style=\\\"text-align: justify;\\\">Days and weeks passed. One morning, the day nurse arrived to bring water for their baths only to find the lifeless body of the man by the window, who had died peacefully in his sleep. She was saddened and called the hospital attendants to take the body away.<\\/p><p style=\\\"text-align: justify;\\\">As soon as it seemed appropriate, the other man asked if he could be moved next to the window. The nurse was happy to make the switch, and after making sure he was comfortable, she left him alone. Slowly, painfully, he propped himself up on one elbow to take his first look at the world outside. Finally, he would have the joy of seeing it for himself.<\\/p><p style=\\\"text-align: justify;\\\">He strained to slowly turn to look out the window beside the bed. It faced a blank wall. The man asked the nurse what could have compelled his deceased roommate who had described such wonderful things outside this window. The nurse responded that the man was blind and could not even see the wall. She said, \\\"Perhaps he just wanted to encourage you.\\\"<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3155,449,'_elementor_template_type','wp-page'),(3156,449,'_elementor_edit_mode','builder'),(3157,449,'_elementor_version','3.12.2'),(3158,449,'_wp_page_template','default'),(3159,449,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3160,449,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Dos hombres, ambos gravemente enfermos, ocuparon la misma habitaci\\u00f3n del hospital. A un hombre se le permiti\\u00f3 sentarse en su cama durante una hora cada tarde para ayudar a drenar el l\\u00edquido de sus pulmones. Su cama estaba al lado de la \\u00fanica ventana de la habitaci\\u00f3n. El otro hombre ten\\u00eda que pasar todo su tiempo boca arriba.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Los hombres hablaron durante horas y horas. Hablaron de sus esposas y familias, sus hogares, sus trabajos, su participaci\\u00f3n en el servicio militar, donde hab\\u00edan estado de vacaciones.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Y todas las tardes, cuando el hombre en la cama junto a la ventana pod\\u00eda sentarse, pasaba el tiempo describiendo a su compa\\u00f1ero de cuarto todas las cosas que pod\\u00eda ver fuera de la ventana. El hombre en la otra cama comenz\\u00f3 a vivir durante esos per\\u00edodos de una hora en los que su mundo se ampliar\\u00eda y animar\\u00eda por toda la actividad y el color del mundo exterior.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">La ventana daba a un parque con un hermoso lago. Patos y cisnes jugaban en el agua mientras los ni\\u00f1os navegaban en sus modelos de barcos. Los j\\u00f3venes amantes caminaron del brazo en medio de flores de todos los colores del arco iris. Grandes \\u00e1rboles viejos adornaban el paisaje, y una hermosa vista del horizonte de la ciudad se pod\\u00eda ver en la distancia.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Mientras el hombre junto a la ventana describ\\u00eda todo esto con exquisito detalle, el hombre al otro lado de la habitaci\\u00f3n cerraba los ojos e imaginaba la pintoresca escena.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Una c\\u00e1lida tarde, el hombre junto a la ventana describi\\u00f3 un desfile que pasaba. Aunque el otro hombre no pod\\u00eda escuchar a la banda, pod\\u00eda verla en su mente mientras el caballero junto a la ventana la retrataba con palabras descriptivas.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Pasaron d\\u00edas y semanas. Una ma\\u00f1ana, la enfermera de d\\u00eda lleg\\u00f3 para traer agua para sus ba\\u00f1os solo para encontrar el cuerpo sin vida del hombre junto a la ventana, que hab\\u00eda muerto pac\\u00edficamente mientras dorm\\u00eda. Se entristeci\\u00f3 y llam\\u00f3 a los asistentes del hospital para que se llevaran el cuerpo.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Tan pronto como pareci\\u00f3 apropiado, el otro hombre pregunt\\u00f3 si pod\\u00eda ser movido al lado de la ventana. La enfermera estaba feliz de hacer el cambio, y despu\\u00e9s de asegurarse de que estaba c\\u00f3modo, lo dej\\u00f3 solo. Lentamente, dolorosamente, se apoy\\u00f3 en un codo para echar un primer vistazo al mundo exterior. Finalmente, tendr\\u00eda la alegr\\u00eda de verlo por s\\u00ed mismo.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Se esforz\\u00f3 por girar lentamente para mirar por la ventana al lado de la cama. Se enfrentaba a una pared en blanco. El hombre le pregunt\\u00f3 a la enfermera qu\\u00e9 podr\\u00eda haber obligado a su compa\\u00f1ero de cuarto fallecido que hab\\u00eda descrito cosas tan maravillosas fuera de esta ventana. La enfermera respondi\\u00f3 que el hombre era ciego y ni siquiera pod\\u00eda ver la pared. Ella dijo: \\\"Tal vez \\u00e9l solo quer\\u00eda animarte\\\".<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3161,449,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3162,449,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3165,450,'_elementor_template_type','wp-page'),(3166,450,'_elementor_edit_mode','builder'),(3167,450,'_edit_lock','1686855061:1'),(3168,450,'_elementor_version','3.13.4'),(3169,450,'_edit_last','1'),(3170,450,'_wp_page_template','default'),(3171,450,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3172,450,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Once upon a time there was a rich king who had four wives. He loved the fourth wife the most and adorned her with rich robes and treated her to the finest delicacies. He gave her nothing but the best.<\\/p><p>He also loved the third wife very much and showed her off to neighboring kingdoms. However, he feared that one day she would leave him for another.<\\/p><p>He also loved his second wife. She was his confidante and she was always kind, considerate and patient with him. Whenever the king faced a problem, he could confide in her to help him get through the difficult times.<\\/p><p>The king\'s first wife was a very loyal partner and had made great contributions in maintaining his wealth and kingdom. However, he did not love the first wife but although she loved him deeply, he hardly took notice of her.<\\/p><p>One day, the King fell ill and he knew that his time was short. Thus, he asked the 4th wife, \\\"I have loved you the most endowed you with the finest clothing and showered great care over you. Now that I\'m dying, will you follow me and keep me company?\\\"<\\/p><p>\\\"No way!\\\" replied the 4th wife and she walked away without another word.<\\/p><p>Her answer cut like a sharp knife right into his heart.<\\/p><p>\\u00a0<\\/p><p>The sad king asked the third wife, \\\"I have loved you all my life. Now that I\'m dying, will you follow me and keep me company?\\\"<\\/p><p>\\\"No!\\\" replied the 3rd wife. \\\"Life is too good! When you die, I am going to remarry!\\\"<\\/p><p>His heart sank and turned cold.<\\/p><p>He then asked the 2nd wife, \\\"I have always turned to you for help and you\'ve always been there for me. When I die, will you follow me and keep me company?\\\"<\\/p><p>\\\"I\'m sorry, I can\'t help you out of this time!\\\" replied the 2nd wife. \\\"The very most, I can only send you to your grave.\\\"<\\/p><p>Her answer came like a bolt of thunder and the King was devastated.<\\/p><p>Then a voice called out: \\\"I\'ll leave with you and follow you no matter where you go.\\\"<\\/p><p>The king looked up and there was his first wife. She was so skinny, because she suffered from malnutrition. Greatly grieved the King said, \\\"I should have taken better care of you when I had a chance!\\\"<\\/p><p>Our 4th wife is our BODY. No matter how much time and effort we lavish in making it look great, it\'ll leave us when we die.<\\/p><p>Our 3rd wife is our POSSESSIONS, STATUS and WEALTH. When we die, it will all go to others.<\\/p><p>Our 2nd wife is our FAMILY and friends. No matter how much they have been there for us, the furthest they can stay by us is up to the grave.<\\/p><p>Our 1st wife is our SOUL, often neglected in pursuit of wealth, power and pleasures of the ego. However, our Soul is the only thing that will follow us wherever we go. So cultivate, strengthen and cherish it now! It is your greatest gift to offer the world.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3173,450,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3174,450,'_eael_custom_js',''),(5518,735,'_elementor_template_type','wp-page'),(5519,735,'_elementor_edit_mode','builder'),(5520,735,'_elementor_version','3.12.2'),(5521,735,'_wp_page_template','default'),(5522,735,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5523,735,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hab\\u00eda una vez un rey rico que ten\\u00eda cuatro esposas. Amaba m\\u00e1s a la cuarta esposa y la adornaba con ricas t\\u00fanicas y la trataba con las mejores delicias. \\u00c9l no le dio nada m\\u00e1s que lo mejor.<\\/p><p>Tambi\\u00e9n amaba mucho a la tercera esposa y la mostr\\u00f3 a los reinos vecinos. Sin embargo, tem\\u00eda que un d\\u00eda ella lo dejara por otro.<\\/p><p>Tambi\\u00e9n amaba a su segunda esposa. Ella era su confidente y siempre fue amable, considerada y paciente con \\u00e9l. Cada vez que el rey enfrentaba un problema, pod\\u00eda confiar en ella para ayudarlo a superar los tiempos dif\\u00edciles.<\\/p><p>La primera esposa del rey era una compa\\u00f1era muy leal y hab\\u00eda hecho grandes contribuciones en el mantenimiento de su riqueza y reino. Sin embargo, \\u00e9l no amaba a la primera esposa, pero aunque ella lo amaba profundamente, apenas se fijaba en ella.<\\/p><p>Un d\\u00eda, el rey cay\\u00f3 enfermo y supo que su tiempo era corto. Por lo tanto, le pregunt\\u00f3 a la 4\\u00aa esposa: \\\"Te he amado m\\u00e1s bien con la mejor ropa y he derramado gran cuidado sobre ti. Ahora que me estoy muriendo, \\u00bfme seguir\\u00e1s y me har\\u00e1s compa\\u00f1\\u00eda?\\\"<\\/p><p>\\\"\\u00a1De ninguna manera!\\\", respondi\\u00f3 la 4\\u00aa esposa y ella se alej\\u00f3 sin decir otra palabra.<\\/p><p>Su respuesta cort\\u00f3 como un cuchillo afilado directamente en su coraz\\u00f3n.<\\/p><p>\\u00a0<\\/p><p>El triste rey le pregunt\\u00f3 a la tercera esposa: \\\"Te he amado toda mi vida. Ahora que me estoy muriendo, \\u00bfme seguir\\u00e1s y me har\\u00e1s compa\\u00f1\\u00eda?\\\"<\\/p><p>\\\"\\u00a1No!\\\", Respondi\\u00f3 la 3\\u00aa esposa. \\\"\\u00a1La vida es demasiado buena! \\u00a1Cuando mueras, me voy a volver a casar!\\\"<\\/p><p>Su coraz\\u00f3n se hundi\\u00f3 y se enfri\\u00f3.<\\/p><p>Luego le pregunt\\u00f3 a la 2\\u00aa esposa: \\\"Siempre he recurrido a ti en busca de ayuda y siempre has estado ah\\u00ed para m\\u00ed. Cuando muera, \\u00bfme seguir\\u00e1s y me har\\u00e1s compa\\u00f1\\u00eda?\\\"<\\/p><p>\\\"\\u00a1Lo siento, no puedo ayudarte a salir de este tiempo!\\\", Respondi\\u00f3 la 2\\u00aa esposa. \\\"Lo m\\u00e1s, solo puedo enviarte a tu tumba\\\".<\\/p><p>Su respuesta lleg\\u00f3 como un trueno y el rey qued\\u00f3 devastado.<\\/p><p>Entonces una voz grit\\u00f3: \\\"Me ir\\u00e9 contigo y te seguir\\u00e9 sin importar a d\\u00f3nde vayas\\\".<\\/p><p>El rey levant\\u00f3 la vista y all\\u00ed estaba su primera esposa. Estaba tan delgada, porque sufr\\u00eda de desnutrici\\u00f3n. Muy afligido, el rey dijo: \\\"\\u00a1Deber\\u00eda haberte cuidado mejor cuando tuve la oportunidad!\\\"<\\/p><p>Nuestra 4\\u00aa esposa es nuestro CUERPO. No importa cu\\u00e1nto tiempo y esfuerzo prodigemos para que se vea genial, nos dejar\\u00e1 cuando muramos.<\\/p><p>Nuestra 3\\u00aa esposa es nuestras POSESIONES, ESTATUS y RIQUEZA. Cuando morimos, todo ir\\u00e1 a otros.<\\/p><p>Nuestra 2\\u00aa esposa es nuestra FAMILIA y amigos. No importa cu\\u00e1nto hayan estado all\\u00ed para nosotros, lo m\\u00e1s lejos que pueden quedarse con nosotros es hasta la tumba.<\\/p><p>Nuestra 1\\u00aa esposa es nuestra ALMA, a menudo descuidada en la b\\u00fasqueda de riqueza, poder y placeres del ego. Sin embargo, nuestra Alma es lo \\u00fanico que nos seguir\\u00e1 dondequiera que vayamos. \\u00a1As\\u00ed que cultiva, fortalece y aprecia ahora! Es tu mayor regalo ofrecer al mundo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3177,451,'_elementor_template_type','wp-page'),(3178,451,'_elementor_edit_mode','builder'),(3179,451,'_elementor_version','3.12.2'),(3180,451,'_wp_page_template','default'),(3181,451,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3182,451,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3183,451,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3184,451,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3186,452,'_elementor_template_type','wp-page'),(3187,452,'_elementor_edit_mode','builder'),(3188,452,'_elementor_version','3.12.2'),(3189,452,'_wp_page_template','default'),(3190,452,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3191,452,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3192,452,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3193,452,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3195,453,'_elementor_template_type','wp-page'),(3196,453,'_elementor_edit_mode','builder'),(3197,453,'_elementor_version','3.12.2'),(3198,453,'_wp_page_template','default'),(3199,453,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3200,453,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3201,453,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3202,453,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5532,737,'_elementor_template_type','wp-page'),(5533,737,'_elementor_edit_mode','builder'),(5534,737,'_elementor_version','3.12.2'),(5535,737,'_wp_page_template','default'),(5536,737,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5537,737,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Once upon a time there was a rich king who had four wives. He loved the fourth wife the most and adorned her with rich robes and treated her to the finest delicacies. He gave her nothing but the best.<\\/p><p>He also loved the third wife very much and showed her off to neighboring kingdoms. However, he feared that one day she would leave him for another.<\\/p><p>He also loved his second wife. She was his confidante and she was always kind, considerate and patient with him. Whenever the king faced a problem, he could confide in her to help him get through the difficult times.<\\/p><p>The king\'s first wife was a very loyal partner and had made great contributions in maintaining his wealth and kingdom. However, he did not love the first wife but although she loved him deeply, he hardly took notice of her.<\\/p><p>One day, the King fell ill and he knew that his time was short. Thus, he asked the 4th wife, \\\"I have loved you the most endowed you with the finest clothing and showered great care over you. Now that I\'m dying, will you follow me and keep me company?\\\"<\\/p><p>\\\"No way!\\\" replied the 4th wife and she walked away without another word.<\\/p><p>Her answer cut like a sharp knife right into his heart.<\\/p><p>\\u00a0<\\/p><p>The sad king asked the third wife, \\\"I have loved you all my life. Now that I\'m dying, will you follow me and keep me company?\\\"<\\/p><p>\\\"No!\\\" replied the 3rd wife. \\\"Life is too good! When you die, I am going to remarry!\\\"<\\/p><p>His heart sank and turned cold.<\\/p><p>He then asked the 2nd wife, \\\"I have always turned to you for help and you\'ve always been there for me. When I die, will you follow me and keep me company?\\\"<\\/p><p>\\\"I\'m sorry, I can\'t help you out of this time!\\\" replied the 2nd wife. \\\"The very most, I can only send you to your grave.\\\"<\\/p><p>Her answer came like a bolt of thunder and the King was devastated.<\\/p><p>Then a voice called out: \\\"I\'ll leave with you and follow you no matter where you go.\\\"<\\/p><p>The king looked up and there was his first wife. She was so skinny, because she suffered from malnutrition. Greatly grieved the King said, \\\"I should have taken better care of you when I had a chance!\\\"<\\/p><p>Our 4th wife is our BODY. No matter how much time and effort we lavish in making it look great, it\'ll leave us when we die.<\\/p><p>Our 3rd wife is our POSSESSIONS, STATUS and WEALTH. When we die, it will all go to others.<\\/p><p>Our 2nd wife is our FAMILY and friends. No matter how much they have been there for us, the furthest they can stay by us is up to the grave.<\\/p><p>Our 1st wife is our SOUL, often neglected in pursuit of wealth, power and pleasures of the ego. However, our Soul is the only thing that will follow us wherever we go. So cultivate, strengthen and cherish it now! It is your greatest gift to offer the world.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3204,454,'_elementor_template_type','wp-page'),(3205,454,'_elementor_edit_mode','builder'),(3206,454,'_elementor_version','3.12.2'),(3207,454,'_wp_page_template','default'),(3208,454,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3209,454,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hab\\u00eda una vez un rey rico que ten\\u00eda cuatro esposas. Amaba m\\u00e1s a la cuarta esposa y la adornaba con ricas t\\u00fanicas y la trataba con las mejores delicias. \\u00c9l no le dio nada m\\u00e1s que lo mejor.<\\/p><p>Tambi\\u00e9n amaba mucho a la tercera esposa y la mostr\\u00f3 a los reinos vecinos. Sin embargo, tem\\u00eda que un d\\u00eda ella lo dejara por otro.<\\/p><p>Tambi\\u00e9n amaba a su segunda esposa. Ella era su confidente y siempre fue amable, considerada y paciente con \\u00e9l. Cada vez que el rey enfrentaba un problema, pod\\u00eda confiar en ella para ayudarlo a superar los tiempos dif\\u00edciles.<\\/p><p>La primera esposa del rey era una compa\\u00f1era muy leal y hab\\u00eda hecho grandes contribuciones en el mantenimiento de su riqueza y reino. Sin embargo, \\u00e9l no amaba a la primera esposa, pero aunque ella lo amaba profundamente, apenas se fijaba en ella.<\\/p><p>Un d\\u00eda, el rey cay\\u00f3 enfermo y supo que su tiempo era corto. Por lo tanto, le pregunt\\u00f3 a la 4\\u00aa esposa: \\\"Te he amado m\\u00e1s bien con la mejor ropa y he derramado gran cuidado sobre ti. Ahora que me estoy muriendo, \\u00bfme seguir\\u00e1s y me har\\u00e1s compa\\u00f1\\u00eda?\\\"<\\/p><p>\\\"\\u00a1De ninguna manera!\\\", respondi\\u00f3 la 4\\u00aa esposa y ella se alej\\u00f3 sin decir otra palabra.<\\/p><p>Su respuesta cort\\u00f3 como un cuchillo afilado directamente en su coraz\\u00f3n.<\\/p><p>\\u00a0<\\/p><p>El triste rey le pregunt\\u00f3 a la tercera esposa: \\\"Te he amado toda mi vida. Ahora que me estoy muriendo, \\u00bfme seguir\\u00e1s y me har\\u00e1s compa\\u00f1\\u00eda?\\\"<\\/p><p>\\\"\\u00a1No!\\\", Respondi\\u00f3 la 3\\u00aa esposa. \\\"\\u00a1La vida es demasiado buena! \\u00a1Cuando mueras, me voy a volver a casar!\\\"<\\/p><p>Su coraz\\u00f3n se hundi\\u00f3 y se enfri\\u00f3.<\\/p><p>Luego le pregunt\\u00f3 a la 2\\u00aa esposa: \\\"Siempre he recurrido a ti en busca de ayuda y siempre has estado ah\\u00ed para m\\u00ed. Cuando muera, \\u00bfme seguir\\u00e1s y me har\\u00e1s compa\\u00f1\\u00eda?\\\"<\\/p><p>\\\"\\u00a1Lo siento, no puedo ayudarte a salir de este tiempo!\\\", Respondi\\u00f3 la 2\\u00aa esposa. \\\"Lo m\\u00e1s, solo puedo enviarte a tu tumba\\\".<\\/p><p>Su respuesta lleg\\u00f3 como un trueno y el rey qued\\u00f3 devastado.<\\/p><p>Entonces una voz grit\\u00f3: \\\"Me ir\\u00e9 contigo y te seguir\\u00e9 sin importar a d\\u00f3nde vayas\\\".<\\/p><p>El rey levant\\u00f3 la vista y all\\u00ed estaba su primera esposa. Estaba tan delgada, porque sufr\\u00eda de desnutrici\\u00f3n. Muy afligido, el rey dijo: \\\"\\u00a1Deber\\u00eda haberte cuidado mejor cuando tuve la oportunidad!\\\"<\\/p><p>Nuestra 4\\u00aa esposa es nuestro CUERPO. No importa cu\\u00e1nto tiempo y esfuerzo prodigemos para que se vea genial, nos dejar\\u00e1 cuando muramos.<\\/p><p>Nuestra 3\\u00aa esposa es nuestras POSESIONES, ESTATUS y RIQUEZA. Cuando morimos, todo ir\\u00e1 a otros.<\\/p><p>Nuestra 2\\u00aa esposa es nuestra FAMILIA y amigos. No importa cu\\u00e1nto hayan estado all\\u00ed para nosotros, lo m\\u00e1s lejos que pueden quedarse con nosotros es hasta la tumba.<\\/p><p>Nuestra 1\\u00aa esposa es nuestra ALMA, a menudo descuidada en la b\\u00fasqueda de riqueza, poder y placeres del ego. Sin embargo, nuestra Alma es lo \\u00fanico que nos seguir\\u00e1 dondequiera que vayamos. \\u00a1As\\u00ed que cultiva, fortalece y aprecia ahora! Es tu mayor regalo ofrecer al mundo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3210,454,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3211,454,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4120,557,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3214,455,'_elementor_template_type','wp-page'),(3215,455,'_elementor_edit_mode','builder'),(3216,455,'_edit_lock','1686855119:1'),(3217,455,'_elementor_version','3.13.4'),(3218,455,'_edit_last','1'),(3219,455,'_wp_page_template','default'),(3220,455,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3221,455,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>By Remez Sasson<\\/p><p>One day, a yogi and his disciple arrived in the big city. They had no money with them, but they needed food and a place to stay. The disciple was sure that they were going to beg for their food, and sleep in the park at night.<\\/p><p>\\\"There is a big park not far from here. We can sleep there at night\\\", said the disciple.<br \\/>\\\"In the open air?\\\" Asked the yogi.<br \\/>\\\"Yes\\\", responded the student.<\\/p><p>The yogi smiled and said: \\\"No, tonight we are going to sleep in a hotel and eat there too\\\".<\\/p><p>The student was amazed and exclaimed, \\\"We cannot afford that!\\\"<br \\/>\\\"Come and sit down\\\", said the yogi.<\\/p><p>They both sat down on the ground, and the yogi said:<br \\/>\\\"When you focus your mind intently on any subject, it comes to pass.\\\"<\\/p><p>The yogi closed his eyes and started to meditate with full concentration. After about ten minutes he got up and started to walk, with his disciple following him. They walked through several streets and alleys, until they arrived at a hotel.<\\/p><p>\\\"Come, let\'s enter inside\\\", the yogi said to his disciple.<\\/p><p>They just set foot in the entrance, when a well-dressed man approached them.<\\/p><p>\\\"I am the manager of this hotel. You look like traveling swamis, and I believe you have no money. Would you like to work in the kitchen, and in return I\'ll give you food and a place to stay?\\\"<\\/p><p>\\\"Fine\\\", the yogi responded.<\\/p><p>The disciple was perplexed and asked the yogi: \\\"Did you use any magic? How did you do that?\\\"<\\/p><p>The yogi smiled and said, \\\"I wanted to show you how the power of thoughts works. When you think with full and strong concentration about something that you want to happen, and your mind does not resist the subject of your thought, your thought materializes.\\\"<\\/p><p>\\\"The secret is concentrating, visualizing, seeing details, having faith and projecting mental and emotional energy into the mental scene. These are the general prerequisites. When your mind is empty from thoughts, and only one single thought is allowed to enter, it gains a very great power. One should be very careful with what he thinks. A concentrated thought is powerful, and exerts a very strong influence.\\\"<\\/p><p>The disciple looked at his teacher and said: \\\"I see that I have to sharpen my concentration in order to be able to use this power.\\\"<\\/p><p>\\\"Yes, this is the first step\\\", the yogi replied.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3222,455,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3223,455,'_eael_custom_js',''),(5548,739,'_elementor_template_type','wp-page'),(5549,739,'_elementor_edit_mode','builder'),(5550,739,'_elementor_version','3.12.2'),(5551,739,'_wp_page_template','default'),(5552,739,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5553,739,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Por Remez Sasson<\\/p><p>Un d\\u00eda, un yogui y su disc\\u00edpulo llegaron a la gran ciudad. No ten\\u00edan dinero con ellos, pero necesitaban comida y un lugar para quedarse. El disc\\u00edpulo estaba seguro de que iban a mendigar por su comida y dormir en el parque por la noche.<\\/p><p>\\\"Hay un gran parque no muy lejos de aqu\\u00ed. Podemos dormir all\\u00ed por la noche\\\", dijo el disc\\u00edpulo.<br \\/>\\\"\\u00bfAl aire libre?\\\" Pregunt\\u00f3 el yogui.<br \\/>\\\"S\\u00ed\\\", respondi\\u00f3 el estudiante.<\\/p><p>El yogui sonri\\u00f3 y dijo: \\\"No, esta noche vamos a dormir en un hotel y comer all\\u00ed tambi\\u00e9n\\\".<\\/p><p>El estudiante se sorprendi\\u00f3 y exclam\\u00f3: \\\"\\u00a1No podemos permitirnos eso!\\\"<br \\/>\\\"Ven y si\\u00e9ntate\\\", dijo el yogui.<\\/p><p>Ambos se sentaron en el suelo, y el yogui dijo:<br \\/>\\\"Cuando enfocas tu mente intensamente en cualquier tema, sucede todo\\\".<\\/p><p>El yogui cerr\\u00f3 los ojos y comenz\\u00f3 a meditar con plena concentraci\\u00f3n. Despu\\u00e9s de unos diez minutos se levant\\u00f3 y comenz\\u00f3 a caminar, con su disc\\u00edpulo sigui\\u00e9ndole. Caminaron por varias calles y callejones, hasta que llegaron a un hotel.<\\/p><p>\\\"Ven, entremos dentro\\\", le dijo el yogui a su disc\\u00edpulo.<\\/p><p>Acaban de poner un pie en la entrada, cuando un hombre bien vestido se les acerc\\u00f3.<\\/p><p>\\\"Soy el gerente de este hotel. Pareces swamis viajeros, y creo que no tienes dinero. \\u00bfTe gustar\\u00eda trabajar en la cocina y, a cambio, te dar\\u00e9 comida y un lugar para quedarte?\\\"<\\/p><p>\\\"Bien\\\", respondi\\u00f3 el yogui.<\\/p><p>El disc\\u00edpulo estaba perplejo y le pregunt\\u00f3 al yogui: \\\"\\u00bfUsaste alguna magia? \\u00bfC\\u00f3mo hiciste eso?\\\"<\\/p><p>El yogui sonri\\u00f3 y dijo: \\\"Quer\\u00eda mostrarte c\\u00f3mo funciona el poder de los pensamientos. Cuando piensas con plena y fuerte concentraci\\u00f3n sobre algo que quieres que suceda, y tu mente no se resiste al tema de tu pensamiento, tu pensamiento se materializa.<\\/p><p>\\\"El secreto es concentrarse, visualizar, ver detalles, tener fe y proyectar energ\\u00eda mental y emocional en la escena mental. Estos son los requisitos previos generales. Cuando tu mente est\\u00e1 vac\\u00eda de pensamientos, y solo un pensamiento puede entrar, gana un poder muy grande. Uno debe tener mucho cuidado con lo que piensa. Un pensamiento concentrado es poderoso y ejerce una influencia muy fuerte\\\".<\\/p><p>El disc\\u00edpulo mir\\u00f3 a su maestro y dijo: \\\"Veo que tengo que agudizar mi concentraci\\u00f3n para poder usar este poder\\\".<\\/p><p>\\\"S\\u00ed, este es el primer paso\\\", respondi\\u00f3 el yogui.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3226,456,'_elementor_template_type','wp-page'),(3227,456,'_elementor_edit_mode','builder'),(3228,456,'_elementor_version','3.12.2'),(3229,456,'_wp_page_template','default'),(3230,456,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3231,456,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3232,456,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3233,456,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3235,457,'_elementor_template_type','wp-page'),(3236,457,'_elementor_edit_mode','builder'),(3237,457,'_elementor_version','3.12.2'),(3238,457,'_wp_page_template','default'),(3239,457,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3240,457,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3241,457,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3242,457,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3244,458,'_elementor_template_type','wp-page'),(3245,458,'_elementor_edit_mode','builder'),(3246,458,'_elementor_version','3.12.2'),(3247,458,'_wp_page_template','default'),(3248,458,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3249,458,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3250,458,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3251,458,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5562,741,'_elementor_template_type','wp-page'),(5563,741,'_elementor_edit_mode','builder'),(5564,741,'_elementor_version','3.12.2'),(3253,459,'_elementor_template_type','wp-page'),(3254,459,'_elementor_edit_mode','builder'),(3255,459,'_elementor_version','3.12.2'),(3256,459,'_wp_page_template','default'),(3257,459,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3258,459,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Por Remez Sasson<\\/p><p>Un d\\u00eda, un yogui y su disc\\u00edpulo llegaron a la gran ciudad. No ten\\u00edan dinero con ellos, pero necesitaban comida y un lugar para quedarse. El disc\\u00edpulo estaba seguro de que iban a mendigar por su comida y dormir en el parque por la noche.<\\/p><p>\\\"Hay un gran parque no muy lejos de aqu\\u00ed. Podemos dormir all\\u00ed por la noche\\\", dijo el disc\\u00edpulo.<br \\/>\\\"\\u00bfAl aire libre?\\\" Pregunt\\u00f3 el yogui.<br \\/>\\\"S\\u00ed\\\", respondi\\u00f3 el estudiante.<\\/p><p>El yogui sonri\\u00f3 y dijo: \\\"No, esta noche vamos a dormir en un hotel y comer all\\u00ed tambi\\u00e9n\\\".<\\/p><p>El estudiante se sorprendi\\u00f3 y exclam\\u00f3: \\\"\\u00a1No podemos permitirnos eso!\\\"<br \\/>\\\"Ven y si\\u00e9ntate\\\", dijo el yogui.<\\/p><p>Ambos se sentaron en el suelo, y el yogui dijo:<br \\/>\\\"Cuando enfocas tu mente intensamente en cualquier tema, sucede todo\\\".<\\/p><p>El yogui cerr\\u00f3 los ojos y comenz\\u00f3 a meditar con plena concentraci\\u00f3n. Despu\\u00e9s de unos diez minutos se levant\\u00f3 y comenz\\u00f3 a caminar, con su disc\\u00edpulo sigui\\u00e9ndole. Caminaron por varias calles y callejones, hasta que llegaron a un hotel.<\\/p><p>\\\"Ven, entremos dentro\\\", le dijo el yogui a su disc\\u00edpulo.<\\/p><p>Acaban de poner un pie en la entrada, cuando un hombre bien vestido se les acerc\\u00f3.<\\/p><p>\\\"Soy el gerente de este hotel. Pareces swamis viajeros, y creo que no tienes dinero. \\u00bfTe gustar\\u00eda trabajar en la cocina y, a cambio, te dar\\u00e9 comida y un lugar para quedarte?\\\"<\\/p><p>\\\"Bien\\\", respondi\\u00f3 el yogui.<\\/p><p>El disc\\u00edpulo estaba perplejo y le pregunt\\u00f3 al yogui: \\\"\\u00bfUsaste alguna magia? \\u00bfC\\u00f3mo hiciste eso?\\\"<\\/p><p>El yogui sonri\\u00f3 y dijo: \\\"Quer\\u00eda mostrarte c\\u00f3mo funciona el poder de los pensamientos. Cuando piensas con plena y fuerte concentraci\\u00f3n sobre algo que quieres que suceda, y tu mente no se resiste al tema de tu pensamiento, tu pensamiento se materializa.<\\/p><p>\\\"El secreto es concentrarse, visualizar, ver detalles, tener fe y proyectar energ\\u00eda mental y emocional en la escena mental. Estos son los requisitos previos generales. Cuando tu mente est\\u00e1 vac\\u00eda de pensamientos, y solo un pensamiento puede entrar, gana un poder muy grande. Uno debe tener mucho cuidado con lo que piensa. Un pensamiento concentrado es poderoso y ejerce una influencia muy fuerte\\\".<\\/p><p>El disc\\u00edpulo mir\\u00f3 a su maestro y dijo: \\\"Veo que tengo que agudizar mi concentraci\\u00f3n para poder usar este poder\\\".<\\/p><p>\\\"S\\u00ed, este es el primer paso\\\", respondi\\u00f3 el yogui.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3259,459,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3260,459,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3263,460,'_elementor_template_type','wp-page'),(3264,460,'_elementor_edit_mode','builder'),(3265,460,'_edit_lock','1686855274:1'),(3266,460,'_elementor_version','3.13.4'),(3267,460,'_edit_last','1'),(3268,460,'_wp_page_template','default'),(3269,460,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3270,460,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Remember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.<\\/p><p style=\\\"text-align: justify;\\\">Well, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.<\\/p><p style=\\\"text-align: justify;\\\">The race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.<\\/p><p style=\\\"text-align: justify;\\\">The Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.<\\/p><p style=\\\"text-align: justify;\\\">The Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.<\\/p><p style=\\\"text-align: justify;\\\">After some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.<\\/p><p style=\\\"text-align: justify;\\\">The story does not end here.<\\/p><p style=\\\"text-align: justify;\\\">After the first race, the Rabbit learned that he lost it because of his laziness.<\\/p><p style=\\\"text-align: justify;\\\">After second race, the Turtle learned that he lost the race because his opponent was actually good at running.<\\/p><p style=\\\"text-align: justify;\\\">After the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.<\\/p><p style=\\\"text-align: justify;\\\">The Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.<\\/p><p style=\\\"text-align: justify;\\\">While running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.<\\/p><p style=\\\"text-align: justify;\\\"><b>What did they learn?<\\/b><\\/p><p style=\\\"text-align: justify;\\\">They both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3271,460,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3272,460,'_eael_custom_js',''),(5578,743,'_elementor_template_type','wp-page'),(5579,743,'_elementor_edit_mode','builder'),(5580,743,'_elementor_version','3.12.2'),(5581,743,'_wp_page_template','default'),(5582,743,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5583,743,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00bfRecuerdas la famosa raza Conejo-Tortuga (Tortuga y Liebre)? Todos sabemos que al final de la historia el Conejo no fue capaz de ganar la carrera contra la Tortuga.<\\/p><p>Bueno, este no es realmente el final de la historia. Despu\\u00e9s de una vergonzosa derrota ante la Tortuga, el Conejo decidi\\u00f3 tener una carrera nuevamente. Esta vez, decidi\\u00f3, no tomar\\u00eda una siesta.<\\/p><p>La carrera comenz\\u00f3 y pronto el Conejo estaba lejos de la vista de la Tortuga y todos los espectadores. Esta vez no se detuvo y derrot\\u00f3 a la Tortuga por un gran margen.<\\/p><p>La Tortuga perdi\\u00f3 la carrera esta vez; Sin embargo, no se rindi\\u00f3. Desafi\\u00f3 al Conejo de nuevo en una pista de carreras diferente. El Conejo, lleno de confianza, lo acept\\u00f3. Sab\\u00eda la raz\\u00f3n por la que perdi\\u00f3 antes: su pereza durante la primera carrera. Pudo ganar la segunda carrera porque pudo trabajar en ella.<\\/p><p>La Tercera Carrera comenz\\u00f3. El Conejo, como siempre, pronto desapareci\\u00f3. Todos se re\\u00edan de la tortuga, pero el conejo no quer\\u00eda detenerse para ver por qu\\u00e9 y sigui\\u00f3 corriendo tan r\\u00e1pido como pudo. Quer\\u00eda derrotar a la Tortuga por un margen mucho mayor que la raza anterior. De repente, lleg\\u00f3 a un r\\u00edo. No pudo distinguir c\\u00f3mo cruzarlo y se vio obligado a detenerse.<\\/p><p>Despu\\u00e9s de alg\\u00fan tiempo, la tortuga lleg\\u00f3 al r\\u00edo y entr\\u00f3 con mucha confianza en \\u00e9l. Nad\\u00f3 mucho m\\u00e1s r\\u00e1pido de lo que podr\\u00eda correr. En poco tiempo cruz\\u00f3 el r\\u00edo y se dirigi\\u00f3 hacia el punto final mientras el Conejo miraba impotente mientras la Tortuga ganaba la carrera.<\\/p><p>La historia no termina aqu\\u00ed.<\\/p><p>Despu\\u00e9s de la primera carrera, el Conejo se enter\\u00f3 de que lo perdi\\u00f3 debido a su pereza.<\\/p><p>Despu\\u00e9s de la segunda carrera, la Tortuga se enter\\u00f3 de que perdi\\u00f3 la carrera porque su oponente era realmente bueno corriendo.<\\/p><p>Despu\\u00e9s de la tercera carrera, el Conejo aprendi\\u00f3 que ser m\\u00e1s r\\u00e1pido no es suficiente; Uno tambi\\u00e9n debe tener cerebro para completar la tarea.<\\/p><p>El Conejo y la Tortuga decidieron correr de nuevo. Esta vez fue solo correr y no una carrera.<\\/p><p>Mientras corr\\u00edan, hasta que llegaron al r\\u00edo, el Conejo puso a la Tortuga en su espalda. Una vez que tuvieron que cruzar el r\\u00edo, la Tortuga puso al Conejo en su espalda. Despu\\u00e9s de cruzar el r\\u00edo, el Conejo volvi\\u00f3 a poner a la Tortuga en su espalda y ambos llegaron al punto final en menos tiempo que nunca.<\\/p><p><strong>\\u00bfQu\\u00e9 aprendieron?<\\/strong><\\/p><p>Ambos aprendieron que con el trabajo en equipo pueden terminar la misma tarea m\\u00e1s r\\u00e1pido y ambos pueden disfrutar de la recompensa. Durante el tiempo que estuvieron compitiendo entre s\\u00ed, solo uno de ellos pudo ganar despu\\u00e9s de perder mucho tiempo y energ\\u00eda.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3275,461,'_elementor_template_type','wp-page'),(3276,461,'_elementor_edit_mode','builder'),(3277,461,'_elementor_version','3.12.2'),(3278,461,'_wp_page_template','default'),(3279,461,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3280,461,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3281,461,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3282,461,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3284,462,'_elementor_template_type','wp-page'),(3285,462,'_elementor_edit_mode','builder'),(3286,462,'_elementor_version','3.12.2'),(3287,462,'_wp_page_template','default'),(3288,462,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3289,462,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3290,462,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3291,462,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3293,463,'_elementor_template_type','wp-page'),(3294,463,'_elementor_edit_mode','builder'),(3295,463,'_elementor_version','3.12.2'),(3296,463,'_wp_page_template','default'),(3297,463,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3298,463,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3299,463,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3300,463,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3302,464,'_elementor_template_type','wp-page'),(3303,464,'_elementor_edit_mode','builder'),(3304,464,'_elementor_version','3.12.2'),(3305,464,'_wp_page_template','default'),(3306,464,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3307,464,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00bfRecuerdas la famosa raza Conejo-Tortuga (Tortuga y Liebre)? Todos sabemos que al final de la historia el Conejo no fue capaz de ganar la carrera contra la Tortuga.<\\/p><p>Bueno, este no es realmente el final de la historia. Despu\\u00e9s de una vergonzosa derrota ante la Tortuga, el Conejo decidi\\u00f3 tener una carrera nuevamente. Esta vez, decidi\\u00f3, no tomar\\u00eda una siesta.<\\/p><p>La carrera comenz\\u00f3 y pronto el Conejo estaba lejos de la vista de la Tortuga y todos los espectadores. Esta vez no se detuvo y derrot\\u00f3 a la Tortuga por un gran margen.<\\/p><p>La Tortuga perdi\\u00f3 la carrera esta vez; Sin embargo, no se rindi\\u00f3. Desafi\\u00f3 al Conejo de nuevo en una pista de carreras diferente. El Conejo, lleno de confianza, lo acept\\u00f3. Sab\\u00eda la raz\\u00f3n por la que perdi\\u00f3 antes: su pereza durante la primera carrera. Pudo ganar la segunda carrera porque pudo trabajar en ella.<\\/p><p>La Tercera Carrera comenz\\u00f3. El Conejo, como siempre, pronto desapareci\\u00f3. Todos se re\\u00edan de la tortuga, pero el conejo no quer\\u00eda detenerse para ver por qu\\u00e9 y sigui\\u00f3 corriendo tan r\\u00e1pido como pudo. Quer\\u00eda derrotar a la Tortuga por un margen mucho mayor que la raza anterior. De repente, lleg\\u00f3 a un r\\u00edo. No pudo distinguir c\\u00f3mo cruzarlo y se vio obligado a detenerse.<\\/p><p>Despu\\u00e9s de alg\\u00fan tiempo, la tortuga lleg\\u00f3 al r\\u00edo y entr\\u00f3 con mucha confianza en \\u00e9l. Nad\\u00f3 mucho m\\u00e1s r\\u00e1pido de lo que podr\\u00eda correr. En poco tiempo cruz\\u00f3 el r\\u00edo y se dirigi\\u00f3 hacia el punto final mientras el Conejo miraba impotente mientras la Tortuga ganaba la carrera.<\\/p><p>La historia no termina aqu\\u00ed.<\\/p><p>Despu\\u00e9s de la primera carrera, el Conejo se enter\\u00f3 de que lo perdi\\u00f3 debido a su pereza.<\\/p><p>Despu\\u00e9s de la segunda carrera, la Tortuga se enter\\u00f3 de que perdi\\u00f3 la carrera porque su oponente era realmente bueno corriendo.<\\/p><p>Despu\\u00e9s de la tercera carrera, el Conejo aprendi\\u00f3 que ser m\\u00e1s r\\u00e1pido no es suficiente; Uno tambi\\u00e9n debe tener cerebro para completar la tarea.<\\/p><p>El Conejo y la Tortuga decidieron correr de nuevo. Esta vez fue solo correr y no una carrera.<\\/p><p>Mientras corr\\u00edan, hasta que llegaron al r\\u00edo, el Conejo puso a la Tortuga en su espalda. Una vez que tuvieron que cruzar el r\\u00edo, la Tortuga puso al Conejo en su espalda. Despu\\u00e9s de cruzar el r\\u00edo, el Conejo volvi\\u00f3 a poner a la Tortuga en su espalda y ambos llegaron al punto final en menos tiempo que nunca.<\\/p><p><strong>\\u00bfQu\\u00e9 aprendieron?<\\/strong><\\/p><p>Ambos aprendieron que con el trabajo en equipo pueden terminar la misma tarea m\\u00e1s r\\u00e1pido y ambos pueden disfrutar de la recompensa. Durante el tiempo que estuvieron compitiendo entre s\\u00ed, solo uno de ellos pudo ganar despu\\u00e9s de perder mucho tiempo y energ\\u00eda.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3308,464,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3309,464,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3312,465,'_elementor_template_type','wp-page'),(3313,465,'_elementor_edit_mode','builder'),(3314,465,'_edit_lock','1686855333:1'),(3315,465,'_elementor_version','3.13.4'),(3316,465,'_edit_last','1'),(3317,465,'_wp_page_template','default'),(3318,465,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3319,465,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">An old farmer had plowed around a large rock in one of his fields for years. He had broken several plowshares and a cultivator on it and had grown rather morbid about the rock.<\\/p><p style=\\\"text-align: justify;\\\">After breaking another plowshare one day, and remembering all the trouble the rock had caused him through the years, he finally decided to do something about it.<\\/p><p style=\\\"text-align: justify;\\\">When he put the crowbar under the rock, he was surprised to discover that it was only about six inches thick and that he could break it up easily with a sledgehammer. As he was carting the pieces away he had to smile, remembering all the trouble that the rock had caused him over the years and how easy it would have been to get rid of it sooner.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5622,749,'_elementor_template_type','wp-page'),(3351,469,'_elementor_template_type','wp-page'),(3352,469,'_elementor_edit_mode','builder'),(3353,469,'_elementor_version','3.12.2'),(3354,469,'_wp_page_template','default'),(3355,469,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3356,469,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un viejo granjero hab\\u00eda arado alrededor de una gran roca en uno de sus campos durante a\\u00f1os. Hab\\u00eda roto varias rejas de arado y un cultivador en \\u00e9l y se hab\\u00eda vuelto bastante morboso sobre la roca.<\\/p><p>Despu\\u00e9s de romper otra reja de arado un d\\u00eda, y recordando todos los problemas que la roca le hab\\u00eda causado a trav\\u00e9s de los a\\u00f1os, finalmente decidi\\u00f3 hacer algo al respecto.<\\/p><p>Cuando puso la palanca debajo de la roca, se sorprendi\\u00f3 al descubrir que solo ten\\u00eda unas seis pulgadas de grosor y que pod\\u00eda romperla f\\u00e1cilmente con un mazo. Mientras se llevaba las piezas, tuvo que sonre\\u00edr, recordando todos los problemas que la roca le hab\\u00eda causado a lo largo de los a\\u00f1os y lo f\\u00e1cil que habr\\u00eda sido deshacerse de ella antes.<\\/p><p>.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3320,465,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3321,465,'_eael_custom_js',''),(5608,747,'_elementor_template_type','wp-page'),(5609,747,'_elementor_edit_mode','builder'),(5610,747,'_elementor_version','3.12.2'),(5611,747,'_wp_page_template','default'),(5612,747,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5613,747,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un viejo granjero hab\\u00eda arado alrededor de una gran roca en uno de sus campos durante a\\u00f1os. Hab\\u00eda roto varias rejas de arado y un cultivador en \\u00e9l y se hab\\u00eda vuelto bastante morboso sobre la roca.<\\/p><p>Despu\\u00e9s de romper otra reja de arado un d\\u00eda, y recordando todos los problemas que la roca le hab\\u00eda causado a trav\\u00e9s de los a\\u00f1os, finalmente decidi\\u00f3 hacer algo al respecto.<\\/p><p>Cuando puso la palanca debajo de la roca, se sorprendi\\u00f3 al descubrir que solo ten\\u00eda unas seis pulgadas de grosor y que pod\\u00eda romperla f\\u00e1cilmente con un mazo. Mientras se llevaba las piezas, tuvo que sonre\\u00edr, recordando todos los problemas que la roca le hab\\u00eda causado a lo largo de los a\\u00f1os y lo f\\u00e1cil que habr\\u00eda sido deshacerse de ella antes.<\\/p><p>.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4119,557,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SE LO QUE QUIERAS SER!\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a1Puedes ser\\u00a0<strong>lo que<\\/strong><br \\/><strong>quieras ser!<\\/strong><\\/p><p>Hay dentro de ti<br \\/>todo el potencial<br \\/>para ser lo que\\u00a0quieras ser,<br \\/>toda la energ\\u00eda<br \\/>para hacer lo que quieras hacer.<\\/p><p>Imag\\u00ednate como te gustar\\u00eda ser,\\u00a0haciendo lo que quieres hacer,\\u00a0y cada d\\u00eda,<br \\/><br \\/>da un paso<br \\/>hacia tu sue\\u00f1o.<\\/p><p>Y aunque a veces parezca demasiado<br \\/>dif\\u00edcil continuar,<br \\/>af\\u00e9rrate a tu sue\\u00f1o.<\\/p><p>Una ma\\u00f1ana te despertar\\u00e1s para descubrir<br \\/>que\\u00a0eres la persona con la que so\\u00f1aste,\\u00a0haciendo lo que quer\\u00edas hacer,\\u00a0simplemente porque tuviste el coraje<br \\/>de creer en tu potencial<br \\/>y aferrarte a tu sue\\u00f1o.<\\/p>\",\"align\":\"center\",\"text_color\":\"#010801\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3324,466,'_elementor_template_type','wp-page'),(3325,466,'_elementor_edit_mode','builder'),(3326,466,'_elementor_version','3.12.2'),(3327,466,'_wp_page_template','default'),(3328,466,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3329,466,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3330,466,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3331,466,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3333,467,'_elementor_template_type','wp-page'),(3334,467,'_elementor_edit_mode','builder'),(3335,467,'_elementor_version','3.12.2'),(3336,467,'_wp_page_template','default'),(3337,467,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3338,467,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3339,467,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3340,467,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3342,468,'_elementor_template_type','wp-page'),(3343,468,'_elementor_edit_mode','builder'),(3344,468,'_elementor_version','3.12.2'),(3345,468,'_wp_page_template','default'),(3346,468,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3347,468,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3348,468,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3349,468,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3357,469,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3358,469,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3361,470,'_elementor_template_type','wp-page'),(3362,470,'_elementor_edit_mode','builder'),(3363,470,'_edit_lock','1686855388:1'),(3364,470,'_elementor_version','3.13.4'),(3365,470,'_edit_last','1'),(3366,470,'_wp_page_template','default'),(3367,470,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3368,470,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">About the hidden nature of Atman [Soul]:<\\/p><p style=\\\"text-align: justify;\\\">\\\"We are like a king, who falling victim to amnesia, wanders his kingdom in tatters, not knowing who he really is. We are like a lion cub who, having become lost from his mother at birth, grows up by accident among sheep and takes to grazing and bleating like them, assuming that he is like them.\\\" - Themes from Hindu literature.<\\/p><p style=\\\"text-align: justify;\\\">A LIONESS was big with young and going about in search of prey when she saw a flock of sheep. She jumped upon them and died in that effort. But her little baby lion was born, motherless. The sheep took care of it, and the sheep brought it up. It grew up with them, ate grass, and bleated like the sheep. In time it became a big, full-grown lion, and still it bleated like a sheep and thought it was a sheep.<\\/p><p style=\\\"text-align: justify;\\\">One day another lion came in search of prey, and was astonished to find that in the middle of this flock of sheep was a lion who fled like the sheep at the approach of danger. He tried to get near the sheep-lion, to tell it that it was not a sheep but a lion, but the poor animal fled at his approach.<\\/p><p style=\\\"text-align: justify;\\\">However, he watched his opportunity, and one day found the sheep-lion sleeping. He approached it and said, \\\"You are a lion.\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"I am the sheep\\\" cried and bleated the other lion, and could not believe otherwise.<\\/p><p style=\\\"text-align: justify;\\\">The lion dragged him towards a lake and said, \\\"Look here, there is my reflection and yours.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Then came the comparison. The bleating lion looked at the lion and then at its own reflection, and in a moment came the idea that it was a lion. The lion roared, the bleating was gone. [Adapted from a tale by Vivekananda in the lecture \\\"The real nature of man\\\", given in London, 1899 or near by]<\\/p><p style=\\\"text-align: justify;\\\">\\u2756 \\\"You are lions . . . and perfect.\\\" - Swami Vivekananda<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3400,474,'_elementor_template_type','wp-page'),(3401,474,'_elementor_edit_mode','builder'),(3402,474,'_elementor_version','3.12.2'),(3403,474,'_wp_page_template','default'),(3404,474,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3369,470,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3370,470,'_eael_custom_js',''),(5638,751,'_elementor_template_type','wp-page'),(5639,751,'_elementor_edit_mode','builder'),(5640,751,'_elementor_version','3.12.2'),(5641,751,'_wp_page_template','default'),(5642,751,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5643,751,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sobre la naturaleza oculta de Atman [Alma]:<\\/p><p>\\\"Somos como un rey, que siendo v\\u00edctima de la amnesia, vaga por su reino hecho jirones, sin saber qui\\u00e9n es realmente. Somos como un cachorro de le\\u00f3n que, habi\\u00e9ndose perdido de su madre al nacer, crece por accidente entre ovejas y se dedica a pastar y balar como ellas, asumiendo que \\u00e9l es como ellos\\\".<\\/p><p>Una leona era grande con cr\\u00edas y andaba en busca de presas cuando vio un reba\\u00f1o de ovejas. Ella salt\\u00f3 sobre ellos y muri\\u00f3 en ese esfuerzo. Pero su peque\\u00f1o le\\u00f3n naci\\u00f3, sin madre. Las ovejas lo cuidaron y las ovejas lo criaron. Creci\\u00f3 con ellos, com\\u00eda hierba y balaba como las ovejas. Con el tiempo se convirti\\u00f3 en un le\\u00f3n grande y adulto, y todav\\u00eda balaba como una oveja y pensaba que era una oveja.<\\/p><p>Un d\\u00eda otro le\\u00f3n vino en busca de presas, y se sorprendi\\u00f3 al descubrir que en medio de este reba\\u00f1o de ovejas hab\\u00eda un le\\u00f3n que hu\\u00eda como las ovejas al acercarse el peligro. Trat\\u00f3 de acercarse al le\\u00f3n-oveja, para decirle que no era una oveja sino un le\\u00f3n, pero el pobre animal huy\\u00f3 al acercarse.<\\/p><p>Sin embargo, vio su oportunidad, y un d\\u00eda encontr\\u00f3 al le\\u00f3n oveja durmiendo. Se acerc\\u00f3 y dijo: \\\"Eres un le\\u00f3n\\\".<\\/p><p>\\\"Yo soy la oveja\\\" grit\\u00f3 y bal\\u00f3 el otro le\\u00f3n, y no pod\\u00eda creer lo contrario.<\\/p><p>El le\\u00f3n lo arrastr\\u00f3 hacia un lago y dijo: \\\"Mira aqu\\u00ed, ah\\u00ed est\\u00e1 mi reflejo y el tuyo\\\".<\\/p><p>Luego vino la comparaci\\u00f3n. El le\\u00f3n balando mir\\u00f3 al le\\u00f3n y luego a su propio reflejo, y en un momento surgi\\u00f3 la idea de que era un le\\u00f3n. El le\\u00f3n rugi\\u00f3, el balido se hab\\u00eda ido. [Adaptado de un cuento de Vivekananda en la conferencia \\\"La verdadera naturaleza del hombre\\\", dada en Londres, 1899 o cerca]<\\/p><p>\\u2756 \\\"Ustedes son leones... y perfecto.\\\" \\u2013 Swami Vivekananda<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3373,471,'_elementor_template_type','wp-page'),(3374,471,'_elementor_edit_mode','builder'),(3375,471,'_elementor_version','3.12.2'),(3376,471,'_wp_page_template','default'),(3377,471,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3378,471,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3379,471,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3380,471,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4118,557,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3382,472,'_elementor_template_type','wp-page'),(3383,472,'_elementor_edit_mode','builder'),(3384,472,'_elementor_version','3.12.2'),(3385,472,'_wp_page_template','default'),(3386,472,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3387,472,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3388,472,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3389,472,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4116,557,'_elementor_version','3.12.2'),(4117,557,'_wp_page_template','default'),(3391,473,'_elementor_template_type','wp-page'),(3392,473,'_elementor_edit_mode','builder'),(3393,473,'_elementor_version','3.12.2'),(3394,473,'_wp_page_template','default'),(3395,473,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3396,473,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3397,473,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3398,473,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4115,557,'_elementor_edit_mode','builder'),(3405,474,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sobre la naturaleza oculta de Atman [Alma]:<\\/p><p>\\\"Somos como un rey, que siendo v\\u00edctima de la amnesia, vaga por su reino hecho jirones, sin saber qui\\u00e9n es realmente. Somos como un cachorro de le\\u00f3n que, habi\\u00e9ndose perdido de su madre al nacer, crece por accidente entre ovejas y se dedica a pastar y balar como ellas, asumiendo que \\u00e9l es como ellos\\\".<\\/p><p>Una leona era grande con cr\\u00edas y andaba en busca de presas cuando vio un reba\\u00f1o de ovejas. Ella salt\\u00f3 sobre ellos y muri\\u00f3 en ese esfuerzo. Pero su peque\\u00f1o le\\u00f3n naci\\u00f3, sin madre. Las ovejas lo cuidaron y las ovejas lo criaron. Creci\\u00f3 con ellos, com\\u00eda hierba y balaba como las ovejas. Con el tiempo se convirti\\u00f3 en un le\\u00f3n grande y adulto, y todav\\u00eda balaba como una oveja y pensaba que era una oveja.<\\/p><p>Un d\\u00eda otro le\\u00f3n vino en busca de presas, y se sorprendi\\u00f3 al descubrir que en medio de este reba\\u00f1o de ovejas hab\\u00eda un le\\u00f3n que hu\\u00eda como las ovejas al acercarse el peligro. Trat\\u00f3 de acercarse al le\\u00f3n-oveja, para decirle que no era una oveja sino un le\\u00f3n, pero el pobre animal huy\\u00f3 al acercarse.<\\/p><p>Sin embargo, vio su oportunidad, y un d\\u00eda encontr\\u00f3 al le\\u00f3n oveja durmiendo. Se acerc\\u00f3 y dijo: \\\"Eres un le\\u00f3n\\\".<\\/p><p>\\\"Yo soy la oveja\\\" grit\\u00f3 y bal\\u00f3 el otro le\\u00f3n, y no pod\\u00eda creer lo contrario.<\\/p><p>El le\\u00f3n lo arrastr\\u00f3 hacia un lago y dijo: \\\"Mira aqu\\u00ed, ah\\u00ed est\\u00e1 mi reflejo y el tuyo\\\".<\\/p><p>Luego vino la comparaci\\u00f3n. El le\\u00f3n balando mir\\u00f3 al le\\u00f3n y luego a su propio reflejo, y en un momento surgi\\u00f3 la idea de que era un le\\u00f3n. El le\\u00f3n rugi\\u00f3, el balido se hab\\u00eda ido. [Adaptado de un cuento de Vivekananda en la conferencia \\\"La verdadera naturaleza del hombre\\\", dada en Londres, 1899 o cerca]<\\/p><p>\\u2756 \\\"Ustedes son leones... y perfecto.\\\" \\u2013 Swami Vivekananda<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3406,474,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3407,474,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4112,556,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3410,475,'_elementor_template_type','wp-page'),(3411,475,'_elementor_edit_mode','builder'),(3412,475,'_edit_lock','1686855444:1'),(3413,475,'_elementor_version','3.13.4'),(3414,475,'_edit_last','1'),(3415,475,'_wp_page_template','default'),(3416,475,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3417,475,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A man found a cocoon of a butterfly.<br \\/>One day a small opening appeared.<br \\/>He sat and watched the butterfly for several hours<br \\/>as it struggled to squeeze its body through the tiny hole.<br \\/>Then it stopped, as if it couldn\'t go further.<\\/p><p>So the man decided to help the butterfly.<br \\/>He took a pair of scissors and<br \\/>snipped off the remaining bits of cocoon.<br \\/>The butterfly emerged easily but<br \\/>it had a swollen body and shriveled wings.<\\/p><p>The man continued to watch it,<br \\/>expecting that any minute the wings would enlarge<br \\/>and expand enough to support the body,<br \\/>Neither happened!<br \\/>In fact the butterfly spent the rest of its life<br \\/>crawling around.<br \\/>It was never able to fly.<\\/p><p>What the man in his kindness<br \\/>and haste did not understand:<br \\/>The restricting cocoon and the struggle<br \\/>required by the butterfly to get through the opening<br \\/>was a way of forcing the fluid from the body<br \\/>into the wings so that it would be ready<br \\/>for flight once that was achieved.<\\/p><p>Sometimes struggles are exactly<br \\/>what we need in our lives.<br \\/>Going through life with no obstacles would cripple us.<br \\/>We will not be as strong as we could have been<br \\/>and we would never fly.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5685,757,'_elementor_template_type','wp-page'),(5686,757,'_elementor_edit_mode','builder'),(5687,757,'_elementor_version','3.12.2'),(3449,479,'_elementor_template_type','wp-page'),(3450,479,'_elementor_edit_mode','builder'),(3451,479,'_elementor_version','3.12.2'),(3452,479,'_wp_page_template','default'),(3453,479,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3454,479,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un hombre encontr\\u00f3 un capullo de una mariposa.<br \\/>Un d\\u00eda apareci\\u00f3 una peque\\u00f1a abertura.<br \\/>Se sent\\u00f3 y observ\\u00f3 a la mariposa durante varias horas<br \\/>mientras luchaba por apretar su cuerpo a trav\\u00e9s del peque\\u00f1o agujero.<br \\/>Luego se detuvo, como si no pudiera ir m\\u00e1s all\\u00e1.<\\/p><p>Entonces el hombre decidi\\u00f3 ayudar a la mariposa.<br \\/>Tom\\u00f3 un par de tijeras y<br \\/>cort\\u00f3 los trozos restantes de capullo.<br \\/>La mariposa emergi\\u00f3 f\\u00e1cilmente, pero<br \\/>ten\\u00eda un cuerpo hinchado y alas arrugadas.<\\/p><p>El hombre continu\\u00f3 observ\\u00e1ndolo, esperando que en cualquier momento las alas se agrandaran<br \\/>y expandieran lo suficiente como para sostener el cuerpo,<br \\/><br \\/>\\u00a1Ninguno de los dos sucedi\\u00f3!<br \\/>De hecho, la mariposa pas\\u00f3 el resto de su vida<br \\/>arrastr\\u00e1ndose.<br \\/>Nunca fue capaz de volar.<\\/p><p>Lo que el hombre en su amabilidad y prisa no entendi\\u00f3:<br \\/>El capullo restrictivo<br \\/>y la lucha<br \\/>requerida por la mariposa para atravesar la abertura era una forma de forzar el fluido del cuerpo<br \\/>hacia las alas<br \\/>para que estuviera listo<br \\/>para volar una vez que se lograra.<\\/p><p>A veces las luchas son exactamente<br \\/>lo que necesitamos en nuestras vidas.<br \\/>Ir por la vida sin obst\\u00e1culos nos paralizar\\u00eda.<br \\/>No seremos tan fuertes como podr\\u00edamos haber sido<br \\/>y nunca volar\\u00edamos.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3418,475,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3419,475,'_eael_custom_js',''),(5669,755,'_elementor_template_type','wp-page'),(5670,755,'_elementor_edit_mode','builder'),(5671,755,'_elementor_version','3.12.2'),(5672,755,'_wp_page_template','default'),(5673,755,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5674,755,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un hombre encontr\\u00f3 un capullo de una mariposa.<br \\/>Un d\\u00eda apareci\\u00f3 una peque\\u00f1a abertura.<br \\/>Se sent\\u00f3 y observ\\u00f3 a la mariposa durante varias horas<br \\/>mientras luchaba por apretar su cuerpo a trav\\u00e9s del peque\\u00f1o agujero.<br \\/>Luego se detuvo, como si no pudiera ir m\\u00e1s all\\u00e1.<\\/p><p>Entonces el hombre decidi\\u00f3 ayudar a la mariposa.<br \\/>Tom\\u00f3 un par de tijeras y<br \\/>cort\\u00f3 los trozos restantes de capullo.<br \\/>La mariposa emergi\\u00f3 f\\u00e1cilmente, pero<br \\/>ten\\u00eda un cuerpo hinchado y alas arrugadas.<\\/p><p>El hombre continu\\u00f3 observ\\u00e1ndolo, esperando que en cualquier momento las alas se agrandaran<br \\/>y expandieran lo suficiente como para sostener el cuerpo,<br \\/><br \\/>\\u00a1Ninguno de los dos sucedi\\u00f3!<br \\/>De hecho, la mariposa pas\\u00f3 el resto de su vida<br \\/>arrastr\\u00e1ndose.<br \\/>Nunca fue capaz de volar.<\\/p><p>Lo que el hombre en su amabilidad y prisa no entendi\\u00f3:<br \\/>El capullo restrictivo<br \\/>y la lucha<br \\/>requerida por la mariposa para atravesar la abertura era una forma de forzar el fluido del cuerpo<br \\/>hacia las alas<br \\/>para que estuviera listo<br \\/>para volar una vez que se lograra.<\\/p><p>A veces las luchas son exactamente<br \\/>lo que necesitamos en nuestras vidas.<br \\/>Ir por la vida sin obst\\u00e1culos nos paralizar\\u00eda.<br \\/>No seremos tan fuertes como podr\\u00edamos haber sido<br \\/>y nunca volar\\u00edamos.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3422,476,'_elementor_template_type','wp-page'),(3423,476,'_elementor_edit_mode','builder'),(3424,476,'_elementor_version','3.12.2'),(3425,476,'_wp_page_template','default'),(3426,476,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3427,476,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3428,476,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3429,476,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3431,477,'_elementor_template_type','wp-page'),(3432,477,'_elementor_edit_mode','builder'),(3433,477,'_elementor_version','3.12.2'),(3434,477,'_wp_page_template','default'),(3435,477,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3436,477,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3437,477,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3438,477,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3440,478,'_elementor_template_type','wp-page'),(3441,478,'_elementor_edit_mode','builder'),(3442,478,'_elementor_version','3.12.2'),(3443,478,'_wp_page_template','default'),(3444,478,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3445,478,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3446,478,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3447,478,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3455,479,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3456,479,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3459,480,'_elementor_template_type','wp-page'),(3460,480,'_elementor_edit_mode','builder'),(3461,480,'_edit_lock','1686855493:1'),(3462,480,'_elementor_version','3.13.4'),(3463,480,'_edit_last','1'),(3464,480,'_wp_page_template','default'),(3465,480,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3466,480,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">An old story is told of a king in Africa who had a close friend with whom he grew up. The friend had a habit of looking at every situation that ever occurred in his life (positive or negative) and remarking, \\\"This is good!\\\"<\\/p><p style=\\\"text-align: justify;\\\">One day the king and his friend were out on a hunting expedition. The friend would load and prepare the guns for the king. The friend had apparently done something wrong in preparing one of the guns, for after taking the gun from his friend, the king fired it and his thumb was blown off. Examining the situation the friend remarked as usual, \\\"This is good!\\\" To which the king replied, \\\"No, this is NOT good!\\\" and proceeded to send his friend to jail.<\\/p><p style=\\\"text-align: justify;\\\">About a year later, the king was hunting in an area that he should have known to stay clear of. Cannibals captured him and took him to their village. They tied his hands, stacked some wood, set up a stake and bound him to the stake. As they came near to set fire to the wood, they noticed that the king was missing a thumb. Being superstitious, they never ate anyone that was less than whole. So untying the king, they sent him on his way.<\\/p><p style=\\\"text-align: justify;\\\">As he returned home, he was reminded of the event that had taken his thumb and felt remorse for his treatment of his friend. He went immediately to the jail to speak with his friend. \\\"You were right,\\\" he said, \\\"it was good that my thumb was blown off.\\\" And he proceeded to tell the friend all that had just happened. \\\"And so I am very sorry for sending you to jail for so long. It was bad for me to do this.\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"No,\\\" his friend replied, \\\"This is good!\\\" \\\"What do you mean,\'This is good\'? How could it be good that I sent my friend to jail for a year?\\\" \\\"If I had NOT been in jail, I would have been with you.\\\"<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5749,765,'_elementor_template_type','wp-page'),(5750,765,'_elementor_edit_mode','builder'),(3498,484,'_elementor_template_type','wp-page'),(3499,484,'_elementor_edit_mode','builder'),(3500,484,'_elementor_version','3.12.2'),(3501,484,'_wp_page_template','default'),(3502,484,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3467,480,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3468,480,'_eael_custom_js',''),(5733,763,'_elementor_template_type','wp-page'),(5734,763,'_elementor_edit_mode','builder'),(5735,763,'_elementor_version','3.12.2'),(5736,763,'_wp_page_template','default'),(5737,763,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5738,763,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Se cuenta una vieja historia de un rey en \\u00c1frica que ten\\u00eda un amigo cercano con quien creci\\u00f3. El amigo ten\\u00eda la costumbre de mirar cada situaci\\u00f3n que ocurr\\u00eda en su vida (positiva o negativa) y comentar: \\\"\\u00a1Esto es bueno!\\\"<\\/p><p>Un d\\u00eda, el rey y su amigo estaban en una expedici\\u00f3n de caza. El amigo cargar\\u00eda y preparar\\u00eda las armas para el rey. El amigo aparentemente hab\\u00eda hecho algo mal al preparar una de las armas, porque despu\\u00e9s de quitarle el arma a su amigo, el rey la dispar\\u00f3 y le volaron el pulgar. Al examinar la situaci\\u00f3n, el amigo coment\\u00f3 como de costumbre: \\\"\\u00a1Esto es bueno!\\\" A lo que el rey respondi\\u00f3: \\\"\\u00a1No, esto NO es bueno!\\\" y procedi\\u00f3 a enviar a su amigo a la c\\u00e1rcel.<\\/p><p>Aproximadamente un a\\u00f1o despu\\u00e9s, el rey estaba cazando en un \\u00e1rea de la que deber\\u00eda haber sabido mantenerse alejado. Los can\\u00edbales lo capturaron y lo llevaron a su aldea. Le ataron las manos, apilaron madera, colocaron una estaca y lo ataron a la estaca. Cuando se acercaron para prender fuego a la madera, notaron que al rey le faltaba un pulgar. Siendo supersticiosos, nunca comieron a nadie que fuera menos que completo. As\\u00ed que desatando al rey, lo enviaron en su camino.<\\/p><p>Cuando regres\\u00f3 a casa, record\\u00f3 el evento que le hab\\u00eda quitado el pulgar y sinti\\u00f3 remordimiento por el trato que hab\\u00eda dado a su amigo. Fue inmediatamente a la c\\u00e1rcel para hablar con su amigo. \\\"Ten\\u00edas raz\\u00f3n\\\", dijo, \\\"fue bueno que me volaran el pulgar\\\". Y procedi\\u00f3 a contarle al amigo todo lo que acababa de suceder. \\\"Y por eso lamento mucho haberte enviado a la c\\u00e1rcel durante tanto tiempo. Fue malo para m\\u00ed hacer esto\\\".<\\/p><p>\\\"No\\\", respondi\\u00f3 su amigo, \\\"\\u00a1Esto es bueno!\\\" \\\"\\u00bfQu\\u00e9 quieres decir, \'Esto es bueno\'? \\u00bfC\\u00f3mo podr\\u00eda ser bueno que enviara a mi amigo a la c\\u00e1rcel por un a\\u00f1o?\\\" \\\"Si NO hubiera estado en la c\\u00e1rcel, habr\\u00eda estado contigo\\\".<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3471,481,'_elementor_template_type','wp-page'),(3472,481,'_elementor_edit_mode','builder'),(3473,481,'_elementor_version','3.12.2'),(3474,481,'_wp_page_template','default'),(3475,481,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3476,481,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3477,481,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3478,481,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3480,482,'_elementor_template_type','wp-page'),(3481,482,'_elementor_edit_mode','builder'),(3482,482,'_elementor_version','3.12.2'),(3483,482,'_wp_page_template','default'),(3484,482,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3485,482,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3486,482,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3487,482,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3489,483,'_elementor_template_type','wp-page'),(3490,483,'_elementor_edit_mode','builder'),(3491,483,'_elementor_version','3.12.2'),(3492,483,'_wp_page_template','default'),(3493,483,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3494,483,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3495,483,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3496,483,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3503,484,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Se cuenta una vieja historia de un rey en \\u00c1frica que ten\\u00eda un amigo cercano con quien creci\\u00f3. El amigo ten\\u00eda la costumbre de mirar cada situaci\\u00f3n que ocurr\\u00eda en su vida (positiva o negativa) y comentar: \\\"\\u00a1Esto es bueno!\\\"<\\/p><p>Un d\\u00eda, el rey y su amigo estaban en una expedici\\u00f3n de caza. El amigo cargar\\u00eda y preparar\\u00eda las armas para el rey. El amigo aparentemente hab\\u00eda hecho algo mal al preparar una de las armas, porque despu\\u00e9s de quitarle el arma a su amigo, el rey la dispar\\u00f3 y le volaron el pulgar. Al examinar la situaci\\u00f3n, el amigo coment\\u00f3 como de costumbre: \\\"\\u00a1Esto es bueno!\\\" A lo que el rey respondi\\u00f3: \\\"\\u00a1No, esto NO es bueno!\\\" y procedi\\u00f3 a enviar a su amigo a la c\\u00e1rcel.<\\/p><p>Aproximadamente un a\\u00f1o despu\\u00e9s, el rey estaba cazando en un \\u00e1rea de la que deber\\u00eda haber sabido mantenerse alejado. Los can\\u00edbales lo capturaron y lo llevaron a su aldea. Le ataron las manos, apilaron madera, colocaron una estaca y lo ataron a la estaca. Cuando se acercaron para prender fuego a la madera, notaron que al rey le faltaba un pulgar. Siendo supersticiosos, nunca comieron a nadie que fuera menos que completo. As\\u00ed que desatando al rey, lo enviaron en su camino.<\\/p><p>Cuando regres\\u00f3 a casa, record\\u00f3 el evento que le hab\\u00eda quitado el pulgar y sinti\\u00f3 remordimiento por el trato que hab\\u00eda dado a su amigo. Fue inmediatamente a la c\\u00e1rcel para hablar con su amigo. \\\"Ten\\u00edas raz\\u00f3n\\\", dijo, \\\"fue bueno que me volaran el pulgar\\\". Y procedi\\u00f3 a contarle al amigo todo lo que acababa de suceder. \\\"Y por eso lamento mucho haberte enviado a la c\\u00e1rcel durante tanto tiempo. Fue malo para m\\u00ed hacer esto\\\".<\\/p><p>\\\"No\\\", respondi\\u00f3 su amigo, \\\"\\u00a1Esto es bueno!\\\" \\\"\\u00bfQu\\u00e9 quieres decir, \'Esto es bueno\'? \\u00bfC\\u00f3mo podr\\u00eda ser bueno que enviara a mi amigo a la c\\u00e1rcel por un a\\u00f1o?\\\" \\\"Si NO hubiera estado en la c\\u00e1rcel, habr\\u00eda estado contigo\\\".<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3504,484,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3505,484,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3508,485,'_elementor_template_type','wp-page'),(3509,485,'_elementor_edit_mode','builder'),(3510,485,'_edit_lock','1686855530:1'),(3511,485,'_elementor_version','3.13.4'),(3512,485,'_edit_last','1'),(3513,485,'_wp_page_template','default'),(3514,485,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3515,485,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">There once was a wise sage who wandered the countryside. One day, as he passed near a village, he was approached by a woman who told him of a sick child nearby. She beseeched him to help this child.<\\/p><p style=\\\"text-align: justify;\\\">So the sage came to the village, and a crowd gathered around him, for such a man was a rare sight. One woman brought the sick child to him, and he said a prayer over her.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Do you really think your prayer will help her, when medicine has failed?\\\" yelled a man from the crowd.<\\/p><p style=\\\"text-align: justify;\\\">\\\"You know nothing of such things! You are a stupid fool!\\\" said the sage to the man.<\\/p><p style=\\\"text-align: justify;\\\">The man became very angry with these words and his face grew hot and red. He was about to say something, or perhaps strike out, when the sage walked over to him and said: \\\"If one word has such power as to make you so angry and hot, may not another have the power to heal?\\\"<\\/p><p style=\\\"text-align: justify;\\\">And thus, the sage healed two people that day.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3547,489,'_elementor_template_type','wp-page'),(3548,489,'_elementor_edit_mode','builder'),(3549,489,'_elementor_version','3.12.2'),(3550,489,'_wp_page_template','default'),(3551,489,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3552,489,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hab\\u00eda una vez un sabio sabio que vagaba por el campo. Un d\\u00eda, cuando pasaba cerca de un pueblo, se le acerc\\u00f3 una mujer que le habl\\u00f3 de un ni\\u00f1o enfermo cerca. Ella le suplic\\u00f3 que ayudara a este ni\\u00f1o.<\\/p><p>Entonces el sabio lleg\\u00f3 a la aldea, y una multitud se reuni\\u00f3 a su alrededor, porque un hombre as\\u00ed era una vista rara. Una mujer le trajo al ni\\u00f1o enfermo y \\u00e9l dijo una oraci\\u00f3n por ella.<\\/p><p>\\\"\\u00bfDe verdad crees que tu oraci\\u00f3n la ayudar\\u00e1, cuando la medicina ha fallado?\\\", Grit\\u00f3 un hombre de la multitud.<\\/p><p>\\\"\\u00a1No sabes nada de tales cosas! \\u00a1Eres un tonto est\\u00fapido!\\\", le dijo el sabio al hombre.<\\/p><p>El hombre se enoj\\u00f3 mucho con estas palabras y su rostro se puso caliente y rojo. Estaba a punto de decir algo, o tal vez atacar, cuando el sabio se acerc\\u00f3 a \\u00e9l y le dijo: \\\"Si una palabra tiene tal poder como para hacerte enojar y ardiente tanto, \\u00bfno puede otra tener el poder de sanar?\\\"<\\/p><p>Y as\\u00ed, el sabio san\\u00f3 a dos personas ese d\\u00eda.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3516,485,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3517,485,'_eael_custom_js',''),(5834,776,'_elementor_template_type','wp-page'),(5835,776,'_elementor_edit_mode','builder'),(5836,776,'_elementor_version','3.12.2'),(5837,776,'_wp_page_template','default'),(5838,776,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5839,776,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hab\\u00eda una vez un sabio sabio que vagaba por el campo. Un d\\u00eda, cuando pasaba cerca de un pueblo, se le acerc\\u00f3 una mujer que le habl\\u00f3 de un ni\\u00f1o enfermo cerca. Ella le suplic\\u00f3 que ayudara a este ni\\u00f1o.<\\/p><p>Entonces el sabio lleg\\u00f3 a la aldea, y una multitud se reuni\\u00f3 a su alrededor, porque un hombre as\\u00ed era una vista rara. Una mujer le trajo al ni\\u00f1o enfermo y \\u00e9l dijo una oraci\\u00f3n por ella.<\\/p><p>\\\"\\u00bfDe verdad crees que tu oraci\\u00f3n la ayudar\\u00e1, cuando la medicina ha fallado?\\\", Grit\\u00f3 un hombre de la multitud.<\\/p><p>\\\"\\u00a1No sabes nada de tales cosas! \\u00a1Eres un tonto est\\u00fapido!\\\", le dijo el sabio al hombre.<\\/p><p>El hombre se enoj\\u00f3 mucho con estas palabras y su rostro se puso caliente y rojo. Estaba a punto de decir algo, o tal vez atacar, cuando el sabio se acerc\\u00f3 a \\u00e9l y le dijo: \\\"Si una palabra tiene tal poder como para hacerte enojar y ardiente tanto, \\u00bfno puede otra tener el poder de sanar?\\\"<\\/p><p>Y as\\u00ed, el sabio san\\u00f3 a dos personas ese d\\u00eda.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3520,486,'_elementor_template_type','wp-page'),(3521,486,'_elementor_edit_mode','builder'),(3522,486,'_elementor_version','3.12.2'),(3523,486,'_wp_page_template','default'),(3524,486,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3525,486,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3526,486,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3527,486,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3529,487,'_elementor_template_type','wp-page'),(3530,487,'_elementor_edit_mode','builder'),(3531,487,'_elementor_version','3.12.2'),(3532,487,'_wp_page_template','default'),(3533,487,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3534,487,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3535,487,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3536,487,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3538,488,'_elementor_template_type','wp-page'),(3539,488,'_elementor_edit_mode','builder'),(3540,488,'_elementor_version','3.12.2'),(3541,488,'_wp_page_template','default'),(3542,488,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3543,488,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3544,488,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3545,488,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3553,489,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3554,489,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3557,490,'_elementor_template_type','wp-page'),(3558,490,'_elementor_edit_mode','builder'),(3559,490,'_edit_lock','1686855572:1'),(3560,490,'_elementor_version','3.13.4'),(3561,490,'_edit_last','1'),(3562,490,'_wp_page_template','default'),(3563,490,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3564,490,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">TWO FROGS - a big one and a small one - hopped into a pail of milk. The sides of the pail were shiny and smooth. The frogs were swimming round and round without being able to get out of the pail again, and every time they lifted their mouths to catch a little air to breathe, down they went. They kept on swimming and gasping like this till the big frog gave up and drowned. Then the little frog said to himself,<\\/p><p style=\\\"text-align: justify;\\\">\\\"Well, well. I will hang on as long as I can, too.\\\"<\\/p><p style=\\\"text-align: justify;\\\">It kept on for hours, when suddenly it found something solid under its feet - milk was churned to butter! Out jumped the little frog!<\\/p><p style=\\\"text-align: justify;\\\">\\u2756 <i>Said Yogananda: \\\"Be like the little frog. By all means keep battling.\\\" <\\/i><\\/p><p style=\\\"text-align: justify;\\\">\\u2756 <i>Churn your difficulty well or it may be to your loss.<\\/i><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3596,494,'_elementor_template_type','wp-page'),(3597,494,'_elementor_edit_mode','builder'),(3598,494,'_elementor_version','3.12.2'),(3599,494,'_wp_page_template','default'),(3600,494,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3601,494,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>DOS RANAS, una grande y otra peque\\u00f1a, saltaron a un cubo de leche. Los lados del cubo eran brillantes y lisos. Las ranas nadaban dando vueltas y vueltas sin poder volver a salir del cubo, y cada vez que levantaban la boca para coger un poco de aire para respirar, bajaban. Siguieron nadando y jadeando as\\u00ed hasta que la gran rana se rindi\\u00f3 y se ahog\\u00f3. Entonces la ranita se dijo a s\\u00ed misma:<\\/p><p>\\\"Bueno, bueno. Yo tambi\\u00e9n aguantar\\u00e9 todo el tiempo que pueda\\\".<\\/p><p>Continu\\u00f3 durante horas, cuando de repente encontr\\u00f3 algo s\\u00f3lido bajo sus pies: \\u00a1la leche se bati\\u00f3 en mantequilla! \\u00a1Sali\\u00f3 la ranita!<\\/p><p>\\u2756\\u00a0<em>Dijo Yogananda: \\\"S\\u00e9 como la ranita. Por supuesto, sigue luchando\\\".<\\/em><\\/p><p>\\u2756\\u00a0<em>Agite bien su dificultad o puede ser para su p\\u00e9rdida.<\\/em><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3565,490,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3566,490,'_eael_custom_js',''),(5702,759,'_elementor_template_type','wp-page'),(5703,759,'_elementor_edit_mode','builder'),(5704,759,'_elementor_version','3.12.2'),(5705,759,'_wp_page_template','default'),(5706,759,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5707,759,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>DOS RANAS, una grande y otra peque\\u00f1a, saltaron a un cubo de leche. Los lados del cubo eran brillantes y lisos. Las ranas nadaban dando vueltas y vueltas sin poder volver a salir del cubo, y cada vez que levantaban la boca para coger un poco de aire para respirar, bajaban. Siguieron nadando y jadeando as\\u00ed hasta que la gran rana se rindi\\u00f3 y se ahog\\u00f3. Entonces la ranita se dijo a s\\u00ed misma:<\\/p><p>\\\"Bueno, bueno. Yo tambi\\u00e9n aguantar\\u00e9 todo el tiempo que pueda\\\".<\\/p><p>Continu\\u00f3 durante horas, cuando de repente encontr\\u00f3 algo s\\u00f3lido bajo sus pies: \\u00a1la leche se bati\\u00f3 en mantequilla! \\u00a1Sali\\u00f3 la ranita!<\\/p><p>\\u2756\\u00a0<em>Dijo Yogananda: \\\"S\\u00e9 como la ranita. Por supuesto, sigue luchando\\\".<\\/em><\\/p><p>\\u2756\\u00a0<em>Agite bien su dificultad o puede ser para su p\\u00e9rdida.<\\/em><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3569,491,'_elementor_template_type','wp-page'),(3570,491,'_elementor_edit_mode','builder'),(3571,491,'_elementor_version','3.12.2'),(3572,491,'_wp_page_template','default'),(3573,491,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3574,491,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3575,491,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3576,491,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3578,492,'_elementor_template_type','wp-page'),(3579,492,'_elementor_edit_mode','builder'),(3580,492,'_elementor_version','3.12.2'),(3581,492,'_wp_page_template','default'),(3582,492,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3583,492,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3584,492,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3585,492,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4111,556,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SE LO QUE QUIERAS SER!\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a1Puedes ser\\u00a0<strong>lo que<\\/strong><br \\/><strong>quieras ser!<\\/strong><\\/p><p>Hay dentro de ti<br \\/>todo el potencial<br \\/>para ser lo que\\u00a0quieras ser,<br \\/>toda la energ\\u00eda<br \\/>para hacer lo que quieras hacer.<\\/p><p>Imag\\u00ednate como te gustar\\u00eda ser,\\u00a0haciendo lo que quieres hacer,\\u00a0y cada d\\u00eda,<br \\/><br \\/>da un paso<br \\/>hacia tu sue\\u00f1o.<\\/p><p>Y aunque a veces parezca demasiado<br \\/>dif\\u00edcil continuar,<br \\/>af\\u00e9rrate a tu sue\\u00f1o.<\\/p><p>Una ma\\u00f1ana te despertar\\u00e1s para descubrir<br \\/>que\\u00a0eres la persona con la que so\\u00f1aste,\\u00a0haciendo lo que quer\\u00edas hacer,\\u00a0simplemente porque tuviste el coraje<br \\/>de creer en tu potencial<br \\/>y aferrarte a tu sue\\u00f1o.<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3587,493,'_elementor_template_type','wp-page'),(3588,493,'_elementor_edit_mode','builder'),(3589,493,'_elementor_version','3.12.2'),(3590,493,'_wp_page_template','default'),(3591,493,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3592,493,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3593,493,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3594,493,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4109,556,'_wp_page_template','default'),(4110,556,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3602,494,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3603,494,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4106,556,'_elementor_template_type','wp-page'),(4107,556,'_elementor_edit_mode','builder'),(4108,556,'_elementor_version','3.12.2'),(3606,495,'_elementor_template_type','wp-page'),(3607,495,'_elementor_edit_mode','builder'),(3608,495,'_edit_lock','1686855630:1'),(3609,495,'_elementor_version','3.13.4'),(3610,495,'_edit_last','1'),(3611,495,'_wp_page_template','default'),(3612,495,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3613,495,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Please do not stand too close to the trees! You will not be able to enjoy the forest...<\\/p><p style=\\\"text-align: justify;\\\">A few years before hurricane Katrina hit New Orleans, a new expensive automobile stopped at the top of the Mississippi River Bridge and a gentleman stepped out of the car wearing very expensive clothing.<\\/p><p style=\\\"text-align: justify;\\\">He climbed over the rail and under the bridge onto a platform below the roadway preparing to jump. Cars started stopping and the traffic backed up for miles. The police arrived with the fire department, ministers and mental health professionals.<\\/p><p style=\\\"text-align: justify;\\\">They began talking to the man and telling him not to jump. They told him that he may not die; he may break all of his bones and be paralyzed for life. About half mile back in traffic was an old truck with lawn mowers, rakes, and shovels. An elderly gardener got out of his truck and walked up to where the crowd was gathered.<\\/p><p style=\\\"text-align: justify;\\\">He made his way through the people, looked over the side and hollered down to the man on the ledge, \\\"Hey, I got to go to work. Either jump or get off the bridge. If you decide not to jump, tomorrow is going to be better!\\\"<\\/p><p style=\\\"text-align: justify;\\\">With that the man climbed up onto the bridge. The police handcuffed him and placed him in the back seat of the police car. The gardener walked back to his truck waiting for the traffic to move.<\\/p><p style=\\\"text-align: justify;\\\">The minister asked the fireman, \\\"Who was that?\\\" The fireman said, \\\"He said he has to go to work!\\\"<\\/p><p style=\\\"text-align: justify;\\\">The police reported to the press that all the way to the hospital the man kept saying over and over, \\\"Tomorrow is going to be better.\\\"<\\/p><p style=\\\"text-align: justify;\\\">One must see a future, to have a future<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3645,499,'_elementor_template_type','wp-page'),(3646,499,'_elementor_edit_mode','builder'),(3647,499,'_elementor_version','3.12.2'),(3648,499,'_wp_page_template','default'),(3649,499,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3650,499,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a1Por favor, no te pares demasiado cerca de los \\u00e1rboles! No podr\\u00e1s disfrutar del bosque...<\\/p><p>Unos a\\u00f1os antes de que el hurac\\u00e1n Katrina azotara Nueva Orleans, un autom\\u00f3vil nuevo y caro se detuvo en la parte superior del puente del r\\u00edo Mississippi y un caballero sali\\u00f3 del autom\\u00f3vil con ropa muy cara.<\\/p><p>Se subi\\u00f3 por encima de la barandilla y debajo del puente a una plataforma debajo de la carretera prepar\\u00e1ndose para saltar. Los autos comenzaron a detenerse y el tr\\u00e1fico retrocedi\\u00f3 por millas. La polic\\u00eda lleg\\u00f3 con el departamento de bomberos, ministros y profesionales de la salud mental.<\\/p><p>Comenzaron a hablar con el hombre y le dijeron que no saltara. Le dijeron que no pod\\u00eda morir; Puede romperse todos los huesos y quedar paralizado de por vida. Alrededor de media milla atr\\u00e1s en el tr\\u00e1fico hab\\u00eda un viejo cami\\u00f3n con cortadoras de c\\u00e9sped, rastrillos y palas. Un jardinero anciano sali\\u00f3 de su camioneta y camin\\u00f3 hasta donde estaba reunida la multitud.<\\/p><p>Se abri\\u00f3 paso entre la gente, mir\\u00f3 a un lado y grit\\u00f3 al hombre en la cornisa: \\\"Oye, tengo que ir a trabajar. Salta o b\\u00e1jate del puente. \\u00a1Si decides no saltar, ma\\u00f1ana va a ser mejor!\\\"<\\/p><p>Con eso el hombre subi\\u00f3 al puente. La polic\\u00eda lo espos\\u00f3 y lo coloc\\u00f3 en el asiento trasero del coche de polic\\u00eda. El jardinero regres\\u00f3 a su camioneta esperando que el tr\\u00e1fico se moviera.<\\/p><p>El ministro le pregunt\\u00f3 al bombero: \\\"\\u00bfQui\\u00e9n era ese?\\\" El bombero dijo: \\\"\\u00a1Dijo que tiene que ir a trabajar!\\\"<\\/p><p>La polic\\u00eda inform\\u00f3 a la prensa que durante todo el camino hasta el hospital el hombre segu\\u00eda diciendo una y otra vez: \\\"Ma\\u00f1ana va a ser mejor\\\".<\\/p><p>Uno debe ver un futuro, tener un futuro<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3614,495,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3615,495,'_eael_custom_js',''),(5766,767,'_elementor_template_type','wp-page'),(5767,767,'_elementor_edit_mode','builder'),(5768,767,'_elementor_version','3.12.2'),(5769,767,'_wp_page_template','default'),(5770,767,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5771,767,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a1Por favor, no te pares demasiado cerca de los \\u00e1rboles! No podr\\u00e1s disfrutar del bosque...<\\/p><p>Unos a\\u00f1os antes de que el hurac\\u00e1n Katrina azotara Nueva Orleans, un autom\\u00f3vil nuevo y caro se detuvo en la parte superior del puente del r\\u00edo Mississippi y un caballero sali\\u00f3 del autom\\u00f3vil con ropa muy cara.<\\/p><p>Se subi\\u00f3 por encima de la barandilla y debajo del puente a una plataforma debajo de la carretera prepar\\u00e1ndose para saltar. Los autos comenzaron a detenerse y el tr\\u00e1fico retrocedi\\u00f3 por millas. La polic\\u00eda lleg\\u00f3 con el departamento de bomberos, ministros y profesionales de la salud mental.<\\/p><p>Comenzaron a hablar con el hombre y le dijeron que no saltara. Le dijeron que no pod\\u00eda morir; Puede romperse todos los huesos y quedar paralizado de por vida. Alrededor de media milla atr\\u00e1s en el tr\\u00e1fico hab\\u00eda un viejo cami\\u00f3n con cortadoras de c\\u00e9sped, rastrillos y palas. Un jardinero anciano sali\\u00f3 de su camioneta y camin\\u00f3 hasta donde estaba reunida la multitud.<\\/p><p>Se abri\\u00f3 paso entre la gente, mir\\u00f3 a un lado y grit\\u00f3 al hombre en la cornisa: \\\"Oye, tengo que ir a trabajar. Salta o b\\u00e1jate del puente. \\u00a1Si decides no saltar, ma\\u00f1ana va a ser mejor!\\\"<\\/p><p>Con eso el hombre subi\\u00f3 al puente. La polic\\u00eda lo espos\\u00f3 y lo coloc\\u00f3 en el asiento trasero del coche de polic\\u00eda. El jardinero regres\\u00f3 a su camioneta esperando que el tr\\u00e1fico se moviera.<\\/p><p>El ministro le pregunt\\u00f3 al bombero: \\\"\\u00bfQui\\u00e9n era ese?\\\" El bombero dijo: \\\"\\u00a1Dijo que tiene que ir a trabajar!\\\"<\\/p><p>La polic\\u00eda inform\\u00f3 a la prensa que durante todo el camino hasta el hospital el hombre segu\\u00eda diciendo una y otra vez: \\\"Ma\\u00f1ana va a ser mejor\\\".<\\/p><p>Uno debe ver un futuro, tener un futuro<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3618,496,'_elementor_template_type','wp-page'),(3619,496,'_elementor_edit_mode','builder'),(3620,496,'_elementor_version','3.12.2'),(3621,496,'_wp_page_template','default'),(3622,496,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3623,496,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3624,496,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3625,496,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4104,555,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3627,497,'_elementor_template_type','wp-page'),(3628,497,'_elementor_edit_mode','builder'),(3629,497,'_elementor_version','3.12.2'),(3630,497,'_wp_page_template','default'),(3631,497,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3632,497,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3633,497,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3634,497,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3636,498,'_elementor_template_type','wp-page'),(3637,498,'_elementor_edit_mode','builder'),(3638,498,'_elementor_version','3.12.2'),(3639,498,'_wp_page_template','default'),(3640,498,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3641,498,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3642,498,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3643,498,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3651,499,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3652,499,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3655,500,'_elementor_template_type','wp-page'),(3656,500,'_elementor_edit_mode','builder'),(3657,500,'_edit_lock','1686855751:1'),(3658,500,'_elementor_version','3.13.4'),(3659,500,'_edit_last','1'),(3660,500,'_wp_page_template','default'),(3661,500,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3662,500,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes it sounds foolish or frustrating to think positive when times are really bad and a few people make it worse for you, doesn\'t it?<\\/p><p>But just tell me, if I call you tomorrow morning, while you are still in bed and say, \\\"You are an Angel for me and I\'m blessed to have such a good person in my life. May God bless you\\\".<\\/p><p><b>How would you feel?<\\/b><\\/p><p>Won\'t it be a great feeling and a great way to start a fantastic day?<\\/p><p>Next morning I again call you but this time I say, \\\"You Rascal! You are the dumbest and most foolish person on the earth I\'ve ever met. You screwed me and you will be screwed...etc\\\".<\\/p><p><b>How would you feel now?<\\/b><\\/p><p>Of course it would be a frustrating day, with a sad feeling, because you heard all the crap in the morning while you were still in bed!<\\/p><p>Now answer my question - <b>\\\"Who is controlling \'your\' life?\\\" <\\/b><\\/p><p><b>Am I supposed to control YOUR life? Is that right?<\\/b><\\/p><p><b>When I say something good about you, does it makes you a good person and vice versa?<\\/b><\\/p><p><b>NO, YOU ARE THE MASTER OF YOUR OWN LIFE!<\\/b><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5810,773,'_elementor_template_type','wp-page'),(5811,773,'_elementor_edit_mode','builder'),(5812,773,'_elementor_version','3.12.2'),(5813,773,'_wp_page_template','default'),(5814,773,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3694,504,'_elementor_template_type','wp-page'),(3695,504,'_elementor_edit_mode','builder'),(3696,504,'_elementor_version','3.12.2'),(3697,504,'_wp_page_template','default'),(3698,504,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3699,504,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A veces suena tonto o frustrante pensar en positivo cuando los tiempos son realmente malos y algunas personas lo empeoran para ti, \\u00bfno es as\\u00ed?<\\/p><p>Pero solo dime, si te llamo ma\\u00f1ana por la ma\\u00f1ana, mientras todav\\u00eda est\\u00e1s en la cama y te digo: \\\"Eres un \\u00e1ngel para m\\u00ed y tengo la bendici\\u00f3n de tener una persona tan buena en mi vida. Que Dios los bendiga\\\".<\\/p><p><strong>\\u00bfC\\u00f3mo te sentir\\u00edas?<\\/strong><\\/p><p>\\u00bfNo ser\\u00e1 una gran sensaci\\u00f3n y una gran manera de comenzar un d\\u00eda fant\\u00e1stico?<\\/p><p>A la ma\\u00f1ana siguiente te llamo de nuevo, pero esta vez te digo: \\\"\\u00a1T\\u00fa sinverg\\u00fcenza! Eres la persona m\\u00e1s tonta y tonta de la tierra que he conocido. Me jodiste y ser\\u00e1s... etc\\\".<\\/p><p><strong>\\u00bfC\\u00f3mo te sentir\\u00edas ahora?<\\/strong><\\/p><p>\\u00a1Por supuesto que ser\\u00eda un d\\u00eda frustrante, con un sentimiento triste, porque escuchaste toda la mierda en la ma\\u00f1ana mientras a\\u00fan estabas en la cama!<\\/p><p>Ahora responde a mi pregunta:\\u00a0<strong>\\\"\\u00bfQui\\u00e9n est\\u00e1 controlando \'tu\' vida?\\\"<\\/strong><\\/p><p><strong>\\u00bfSe supone que debo controlar TU vida? \\u00bfEs eso correcto?<\\/strong><\\/p><p><strong>Cuando digo algo bueno sobre ti, \\u00bfte convierte en una buena persona y viceversa?<\\/strong><\\/p><p><strong>\\u00a1NO, ERES EL DUE\\u00d1O DE TU PROPIA VIDA!<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3663,500,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3664,500,'_eael_custom_js',''),(5796,771,'_elementor_template_type','wp-page'),(5797,771,'_elementor_edit_mode','builder'),(5798,771,'_elementor_version','3.12.2'),(5799,771,'_wp_page_template','default'),(5800,771,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5801,771,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A veces suena tonto o frustrante pensar en positivo cuando los tiempos son realmente malos y algunas personas lo empeoran para ti, \\u00bfno es as\\u00ed?<\\/p><p>Pero solo dime, si te llamo ma\\u00f1ana por la ma\\u00f1ana, mientras todav\\u00eda est\\u00e1s en la cama y te digo: \\\"Eres un \\u00e1ngel para m\\u00ed y tengo la bendici\\u00f3n de tener una persona tan buena en mi vida. Que Dios los bendiga\\\".<\\/p><p><strong>\\u00bfC\\u00f3mo te sentir\\u00edas?<\\/strong><\\/p><p>\\u00bfNo ser\\u00e1 una gran sensaci\\u00f3n y una gran manera de comenzar un d\\u00eda fant\\u00e1stico?<\\/p><p>A la ma\\u00f1ana siguiente te llamo de nuevo, pero esta vez te digo: \\\"\\u00a1T\\u00fa sinverg\\u00fcenza! Eres la persona m\\u00e1s tonta y tonta de la tierra que he conocido. Me jodiste y ser\\u00e1s... etc\\\".<\\/p><p><strong>\\u00bfC\\u00f3mo te sentir\\u00edas ahora?<\\/strong><\\/p><p>\\u00a1Por supuesto que ser\\u00eda un d\\u00eda frustrante, con un sentimiento triste, porque escuchaste toda la mierda en la ma\\u00f1ana mientras a\\u00fan estabas en la cama!<\\/p><p>Ahora responde a mi pregunta:\\u00a0<strong>\\\"\\u00bfQui\\u00e9n est\\u00e1 controlando \'tu\' vida?\\\"<\\/strong><\\/p><p><strong>\\u00bfSe supone que debo controlar TU vida? \\u00bfEs eso correcto?<\\/strong><\\/p><p><strong>Cuando digo algo bueno sobre ti, \\u00bfte convierte en una buena persona y viceversa?<\\/strong><\\/p><p><strong>\\u00a1NO, ERES EL DUE\\u00d1O DE TU PROPIA VIDA!<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3667,501,'_elementor_template_type','wp-page'),(3668,501,'_elementor_edit_mode','builder'),(3669,501,'_elementor_version','3.12.2'),(3670,501,'_wp_page_template','default'),(3671,501,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3672,501,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3673,501,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3674,501,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3676,502,'_elementor_template_type','wp-page'),(3677,502,'_elementor_edit_mode','builder'),(3678,502,'_elementor_version','3.12.2'),(3679,502,'_wp_page_template','default'),(3680,502,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3681,502,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3682,502,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3683,502,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3685,503,'_elementor_template_type','wp-page'),(3686,503,'_elementor_edit_mode','builder'),(3687,503,'_elementor_version','3.12.2'),(3688,503,'_wp_page_template','default'),(3689,503,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3690,503,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3691,503,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3692,503,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3700,504,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3701,504,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3704,505,'_elementor_template_type','wp-page'),(3705,505,'_elementor_edit_mode','builder'),(3706,505,'_elementor_version','3.12.2'),(3707,505,'_wp_page_template','default'),(3708,505,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3709,505,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3710,505,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3711,505,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3713,506,'_elementor_template_type','wp-page'),(3714,506,'_elementor_edit_mode','builder'),(3715,506,'_elementor_version','3.12.2'),(3716,506,'_wp_page_template','default'),(3717,506,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3718,506,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3719,506,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3720,506,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3722,507,'_elementor_template_type','wp-page'),(3723,507,'_elementor_edit_mode','builder'),(3724,507,'_elementor_version','3.12.2'),(3725,507,'_wp_page_template','default'),(3726,507,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3727,507,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3728,507,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3729,507,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5148,688,'_elementor_template_type','wp-page'),(5149,688,'_elementor_edit_mode','builder'),(5150,688,'_elementor_version','3.12.2'),(5151,688,'_wp_page_template','default'),(5152,688,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5153,688,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One day all the employees of a very unusual company reached their office and all saw a big sign on the main door which said this:<\\/p><p>\\\"Yesterday, the person who has been hindering your growth in this company passed away. We invite you to join the funeral in the room that has been prepared in the gym.\\\"<\\/p><p>In the beginning, they all got sad for the death of one of their colleagues, but after a while they started getting curious to know who was that person who hindered the growth of their colleagues and the company itself?<\\/p><p>The excitement in the gym was such that security agents were ordered to control the crowd within the room. The more people reached the coffin, the more the excitement heated up.<\\/p><p><b>Everyone thought - \\\"Who is this person who was hindering my progress?\\\"<\\/b><\\/p><p>One by one the intrigued employees got closer to the coffin, and when they looked inside it, they suddenly became speechless.<\\/p><p>They all got to stand near the coffin, and all ended up shocked and in silence, as if someone had touched the deepest part of their soul.<\\/p><p><b>There was a mirror inside the coffin: everyone who looked inside it could see themselves!<\\/b><\\/p><p><b>There was also a sign next to the mirror that said:<\\/b><\\/p><p><b>There is only one person who is capable of setting limits to your growth and IT IS YOU!<\\/b><\\/p><p>Your life does not change when your boss changes, when your friends change, when your parents change, when your husband or wife changes, when your company changes, when your church changes, when your location changes, when your money changes, when your status changes.<\\/p><p><b>No, your life changes when YOU change<\\/b>, when you go beyond your limiting beliefs.<\\/p><p>Examine yourself, watch yourself. Don\'t be afraid of difficulties, impossibilities and losses. Be a winner, build yourself and your reality. It\'s the way you face life itself that makes the difference.<\\/p><p>A few years ago a college student, who was struggling to build his career, appeared for his professional examination. He attempted his first paper excellently but he imagined that he performed badly.<\\/p><p>Keeping this in mind, he lost concentration for the rest of the subjects and in turn, didn\'t write the other subjects well. Later on, the results came out that the paper he thought was poorly written had secured top marks in the college but in the other subjects, he failed. Why did this happen? The reason is simple: lack of belief in himself<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3731,508,'_elementor_template_type','wp-page'),(3732,508,'_elementor_edit_mode','builder'),(3733,508,'_elementor_version','3.12.2'),(3734,508,'_wp_page_template','default'),(3735,508,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3736,508,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un d\\u00eda, todos los empleados de una empresa muy inusual llegaron a su oficina y todos vieron un gran letrero en la puerta principal que dec\\u00eda esto:<\\/p><p>\\\"Ayer, la persona que ha estado obstaculizando su crecimiento en esta empresa falleci\\u00f3. Te invitamos a unirte al funeral en la sala que se ha preparado en el gimnasio\\\".<\\/p><p>Al principio, todos se pusieron tristes por la muerte de uno de sus colegas, pero despu\\u00e9s de un tiempo comenzaron a sentir curiosidad por saber qui\\u00e9n era esa persona que obstaculizaba el crecimiento de sus colegas y de la propia empresa.<\\/p><p>La emoci\\u00f3n en el gimnasio era tal que se orden\\u00f3 a los agentes de seguridad que controlaran a la multitud dentro de la sala. Cuanta m\\u00e1s gente llegaba al ata\\u00fad, m\\u00e1s se calentaba la emoci\\u00f3n.<\\/p><p><strong>Todos pensaron: \\\"\\u00bfQui\\u00e9n es esta persona que estaba obstaculizando mi progreso?\\\"<\\/strong><\\/p><p>Uno por uno, los empleados intrigados se acercaron al ata\\u00fad, y cuando miraron dentro de \\u00e9l, de repente se quedaron sin palabras.<\\/p><p>Todos llegaron a pararse cerca del ata\\u00fad, y todos terminaron conmocionados y en silencio, como si alguien hubiera tocado la parte m\\u00e1s profunda de su alma.<\\/p><p><strong>Hab\\u00eda un espejo dentro del ata\\u00fad: \\u00a1todos los que miraban dentro de \\u00e9l pod\\u00edan verse a s\\u00ed mismos!<\\/strong><\\/p><p><strong>Tambi\\u00e9n hab\\u00eda un letrero al lado del espejo que dec\\u00eda:<\\/strong><\\/p><p><strong>S\\u00f3lo hay una persona que es capaz de poner l\\u00edmites a tu crecimiento y \\u00a1ERES T\\u00da!<\\/strong><\\/p><p>Tu vida no cambia cuando cambia tu jefe, cuando cambian tus amigos, cuando cambian tus padres, cuando cambia tu esposo o esposa, cuando cambia tu compa\\u00f1\\u00eda, cuando cambia tu iglesia, cuando cambia tu ubicaci\\u00f3n, cuando cambia tu dinero, cuando cambia tu estatus.<\\/p><p><strong>No, tu vida cambia cuando T\\u00da cambias, cuando<\\/strong>\\u00a0vas m\\u00e1s all\\u00e1 de tus creencias limitantes.<\\/p><p>Exam\\u00ednate a ti mismo, obs\\u00e9rvate a ti mismo. No tengas miedo de las dificultades, imposibilidades y p\\u00e9rdidas. S\\u00e9 un ganador, constr\\u00fayete a ti mismo y a tu realidad. Es la forma en que enfrentas la vida misma lo que marca la diferencia.<\\/p><p>Hace unos a\\u00f1os, un estudiante universitario, que luchaba por construir su carrera, se present\\u00f3 para su examen profesional. Intent\\u00f3 su primer trabajo excelentemente, pero imagin\\u00f3 que se desempe\\u00f1\\u00f3 mal.<\\/p><p>Teniendo esto en cuenta, perdi\\u00f3 la concentraci\\u00f3n para el resto de las asignaturas y, a su vez, no escribi\\u00f3 bien las otras asignaturas. M\\u00e1s tarde, los resultados salieron que el documento que pensaba que estaba mal escrito hab\\u00eda obtenido las mejores calificaciones en la universidad, pero en las otras materias, fall\\u00f3. \\u00bfPor qu\\u00e9 sucedi\\u00f3 esto? La raz\\u00f3n es simple: falta de creencia en s\\u00ed mismo<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3737,508,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3738,508,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(3747,509,'_elementor_page_assets','a:0:{}'),(3749,510,'_elementor_template_type','wp-page'),(3750,510,'_elementor_edit_mode','builder'),(3751,510,'_elementor_version','3.12.2'),(3752,510,'_wp_page_template','default'),(3753,510,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3754,510,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3755,510,'_elementor_page_assets','a:0:{}'),(3757,511,'_elementor_template_type','wp-page'),(3758,511,'_elementor_edit_mode','builder'),(3759,511,'_elementor_version','3.12.2'),(3760,511,'_wp_page_template','default'),(3761,511,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3762,511,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3763,511,'_elementor_page_assets','a:0:{}'),(3766,512,'_elementor_template_type','wp-page'),(3767,512,'_elementor_edit_mode','builder'),(3768,512,'_elementor_version','3.12.2'),(3769,512,'_wp_page_template','default'),(3770,512,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3771,512,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3772,512,'_elementor_page_assets','a:0:{}'),(3773,513,'_elementor_template_type','wp-page'),(3774,513,'_elementor_edit_mode','builder'),(3775,513,'_elementor_version','3.12.2'),(3776,513,'_wp_page_template','default'),(3777,513,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3778,513,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3779,513,'_elementor_page_assets','a:0:{}'),(3780,514,'_elementor_template_type','wp-page'),(3781,514,'_elementor_edit_mode','builder'),(3782,514,'_elementor_version','3.12.2'),(3783,514,'_wp_page_template','default'),(3784,514,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3785,514,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3786,514,'_elementor_page_assets','a:0:{}'),(3788,515,'_elementor_template_type','wp-page'),(3789,515,'_elementor_edit_mode','builder'),(3790,515,'_elementor_version','3.12.2'),(3791,515,'_wp_page_template','default'),(3792,515,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3793,515,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3794,515,'_elementor_page_assets','a:0:{}'),(3795,516,'_elementor_template_type','wp-page'),(3796,516,'_elementor_edit_mode','builder'),(3797,516,'_elementor_version','3.12.2'),(3798,516,'_wp_page_template','default'),(3799,516,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3800,516,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3801,516,'_elementor_page_assets','a:0:{}'),(3802,517,'_elementor_template_type','wp-page'),(3803,517,'_elementor_edit_mode','builder'),(3804,517,'_elementor_version','3.12.2'),(3805,517,'_wp_page_template','default'),(3806,517,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3807,517,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3808,517,'_elementor_page_assets','a:0:{}'),(3810,518,'_elementor_template_type','wp-page'),(3811,518,'_elementor_edit_mode','builder'),(3812,518,'_elementor_version','3.12.2'),(3813,518,'_wp_page_template','default'),(3814,518,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3815,518,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3816,518,'_elementor_page_assets','a:0:{}'),(3817,519,'_elementor_template_type','wp-page'),(3818,519,'_elementor_edit_mode','builder'),(3819,519,'_elementor_version','3.12.2'),(3820,519,'_wp_page_template','default'),(3821,519,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3822,519,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3823,519,'_elementor_page_assets','a:0:{}'),(3824,520,'_elementor_template_type','wp-page'),(3825,520,'_elementor_edit_mode','builder'),(3826,520,'_elementor_version','3.12.2'),(3827,520,'_wp_page_template','default'),(3828,520,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3829,520,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3830,520,'_elementor_page_assets','a:0:{}'),(3832,521,'_elementor_template_type','wp-page'),(3833,521,'_elementor_edit_mode','builder'),(3834,521,'_elementor_version','3.12.2'),(3835,521,'_wp_page_template','default'),(3836,521,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3837,521,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3838,521,'_elementor_page_assets','a:0:{}'),(3839,522,'_elementor_template_type','wp-page'),(3840,522,'_elementor_edit_mode','builder'),(3841,522,'_elementor_version','3.12.2'),(3842,522,'_wp_page_template','default'),(3843,522,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3844,522,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3845,522,'_elementor_page_assets','a:0:{}'),(3846,523,'_elementor_template_type','wp-page'),(3847,523,'_elementor_edit_mode','builder'),(3848,523,'_elementor_version','3.12.2'),(3849,523,'_wp_page_template','default'),(3850,523,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3851,523,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3852,523,'_elementor_page_assets','a:0:{}'),(3854,524,'_elementor_template_type','wp-page'),(3855,524,'_elementor_edit_mode','builder'),(3856,524,'_elementor_version','3.12.2'),(3857,524,'_wp_page_template','default'),(3858,524,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3859,524,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3860,524,'_elementor_page_assets','a:0:{}'),(3861,525,'_elementor_template_type','wp-page'),(3862,525,'_elementor_edit_mode','builder'),(3863,525,'_elementor_version','3.12.2'),(3864,525,'_wp_page_template','default'),(3865,525,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3866,525,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3867,525,'_elementor_page_assets','a:0:{}'),(3868,526,'_elementor_template_type','wp-page'),(3869,526,'_elementor_edit_mode','builder'),(3870,526,'_elementor_version','3.12.2'),(3871,526,'_wp_page_template','default'),(3872,526,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3873,526,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3874,526,'_elementor_page_assets','a:0:{}'),(3876,527,'_elementor_template_type','wp-page'),(3877,527,'_elementor_edit_mode','builder'),(3878,527,'_elementor_version','3.12.2'),(3879,527,'_wp_page_template','default'),(3880,527,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3881,527,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3882,527,'_elementor_page_assets','a:0:{}'),(3883,528,'_elementor_template_type','wp-page'),(3884,528,'_elementor_edit_mode','builder'),(3885,528,'_elementor_version','3.12.2'),(3886,528,'_wp_page_template','default'),(3887,528,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3888,528,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3889,528,'_elementor_page_assets','a:0:{}'),(3890,529,'_elementor_template_type','wp-page'),(3891,529,'_elementor_edit_mode','builder'),(3892,529,'_elementor_version','3.12.2'),(3893,529,'_wp_page_template','default'),(3894,529,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3895,529,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3896,529,'_elementor_page_assets','a:0:{}'),(3898,530,'_elementor_template_type','wp-page'),(3899,530,'_elementor_edit_mode','builder'),(3900,530,'_elementor_version','3.12.2'),(3901,530,'_wp_page_template','default'),(3902,530,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3903,530,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3904,530,'_elementor_page_assets','a:0:{}'),(3905,531,'_elementor_template_type','wp-page'),(3906,531,'_elementor_edit_mode','builder'),(3907,531,'_elementor_version','3.12.2'),(3908,531,'_wp_page_template','default'),(3909,531,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3910,531,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3911,531,'_elementor_page_assets','a:0:{}'),(3912,532,'_elementor_template_type','wp-page'),(3913,532,'_elementor_edit_mode','builder'),(3914,532,'_elementor_version','3.12.2'),(3915,532,'_wp_page_template','default'),(3916,532,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3917,532,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3918,532,'_elementor_page_assets','a:0:{}'),(3920,533,'_elementor_template_type','wp-page'),(3921,533,'_elementor_edit_mode','builder'),(3922,533,'_elementor_version','3.12.2'),(3923,533,'_wp_page_template','default'),(3924,533,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3925,533,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3926,533,'_elementor_page_assets','a:0:{}'),(3927,534,'_elementor_template_type','wp-page'),(3928,534,'_elementor_edit_mode','builder'),(3929,534,'_elementor_version','3.12.2'),(3930,534,'_wp_page_template','default'),(3931,534,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3932,534,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3933,534,'_elementor_page_assets','a:0:{}'),(3934,535,'_elementor_template_type','wp-page'),(3935,535,'_elementor_edit_mode','builder'),(3936,535,'_elementor_version','3.12.2'),(3937,535,'_wp_page_template','default'),(3938,535,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3939,535,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3940,535,'_elementor_page_assets','a:0:{}'),(3942,536,'_elementor_template_type','wp-page'),(3943,536,'_elementor_edit_mode','builder'),(3944,536,'_elementor_version','3.12.2'),(3945,536,'_wp_page_template','default'),(3946,536,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpjv_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (3947,536,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3948,536,'_elementor_page_assets','a:0:{}'),(3949,537,'_elementor_template_type','wp-page'),(3950,537,'_elementor_edit_mode','builder'),(3951,537,'_elementor_version','3.12.2'),(3952,537,'_wp_page_template','default'),(3953,537,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3954,537,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3955,537,'_elementor_page_assets','a:0:{}'),(3956,538,'_elementor_template_type','wp-page'),(3957,538,'_elementor_edit_mode','builder'),(3958,538,'_elementor_version','3.12.2'),(3959,538,'_wp_page_template','default'),(3960,538,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3961,538,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3962,538,'_elementor_page_assets','a:0:{}'),(3964,539,'_elementor_template_type','wp-page'),(3965,539,'_elementor_edit_mode','builder'),(3966,539,'_elementor_version','3.12.2'),(3967,539,'_wp_page_template','default'),(3968,539,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3969,539,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3970,539,'_elementor_page_assets','a:0:{}'),(3971,540,'_elementor_template_type','wp-page'),(3972,540,'_elementor_edit_mode','builder'),(3973,540,'_elementor_version','3.12.2'),(3974,540,'_wp_page_template','default'),(3975,540,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3976,540,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3977,540,'_elementor_page_assets','a:0:{}'),(3978,541,'_elementor_template_type','wp-page'),(3979,541,'_elementor_edit_mode','builder'),(3980,541,'_elementor_version','3.12.2'),(3981,541,'_wp_page_template','default'),(3982,541,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3983,541,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3984,541,'_elementor_page_assets','a:0:{}'),(3986,542,'_elementor_template_type','wp-page'),(3987,542,'_elementor_edit_mode','builder'),(3988,542,'_elementor_version','3.12.2'),(3989,542,'_wp_page_template','default'),(3990,542,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3991,542,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3992,542,'_elementor_page_assets','a:0:{}'),(3993,543,'_elementor_template_type','wp-page'),(3994,543,'_elementor_edit_mode','builder'),(3995,543,'_elementor_version','3.12.2'),(3996,543,'_wp_page_template','default'),(3997,543,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(3998,543,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3999,543,'_elementor_page_assets','a:0:{}'),(4000,544,'_elementor_template_type','wp-page'),(4001,544,'_elementor_edit_mode','builder'),(4002,544,'_elementor_version','3.12.2'),(4003,544,'_wp_page_template','default'),(4004,544,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4005,544,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4006,544,'_elementor_page_assets','a:0:{}'),(4008,545,'_elementor_template_type','wp-page'),(4009,545,'_elementor_edit_mode','builder'),(4010,545,'_elementor_version','3.12.2'),(4011,545,'_wp_page_template','default'),(4012,545,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4013,545,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4014,545,'_elementor_page_assets','a:0:{}'),(4015,546,'_elementor_template_type','wp-page'),(4016,546,'_elementor_edit_mode','builder'),(4017,546,'_elementor_version','3.12.2'),(4018,546,'_wp_page_template','default'),(4019,546,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4020,546,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4021,546,'_elementor_page_assets','a:0:{}'),(4022,547,'_elementor_template_type','wp-page'),(4023,547,'_elementor_edit_mode','builder'),(4024,547,'_elementor_version','3.12.2'),(4025,547,'_wp_page_template','default'),(4026,547,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4027,547,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4028,547,'_elementor_page_assets','a:0:{}'),(4030,548,'_elementor_template_type','wp-page'),(4031,548,'_elementor_edit_mode','builder'),(4032,548,'_elementor_version','3.12.2'),(4033,548,'_wp_page_template','default'),(4034,548,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4035,548,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4036,548,'_elementor_page_assets','a:0:{}'),(4037,549,'_elementor_template_type','wp-page'),(4038,549,'_elementor_edit_mode','builder'),(4039,549,'_elementor_version','3.12.2'),(4040,549,'_wp_page_template','default'),(4041,549,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4042,549,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4043,549,'_elementor_page_assets','a:0:{}'),(4044,550,'_elementor_template_type','wp-page'),(4045,550,'_elementor_edit_mode','builder'),(4046,550,'_elementor_version','3.12.2'),(4047,550,'_wp_page_template','default'),(4048,550,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4049,550,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4050,550,'_elementor_page_assets','a:0:{}'),(4052,551,'_elementor_template_type','wp-page'),(4053,551,'_elementor_edit_mode','builder'),(4054,551,'_elementor_version','3.12.2'),(4055,551,'_wp_page_template','default'),(4056,551,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4057,551,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4058,551,'_elementor_page_assets','a:0:{}'),(4059,552,'_elementor_template_type','wp-page'),(4060,552,'_elementor_edit_mode','builder'),(4061,552,'_elementor_version','3.12.2'),(4062,552,'_wp_page_template','default'),(4063,552,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4064,552,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4065,552,'_elementor_page_assets','a:0:{}'),(5940,790,'_elementor_template_type','wp-page'),(4066,553,'_elementor_template_type','wp-page'),(4067,553,'_elementor_edit_mode','builder'),(4068,553,'_elementor_version','3.12.2'),(4069,553,'_wp_page_template','default'),(4070,553,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4071,553,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4072,553,'_elementor_page_assets','a:0:{}'),(4831,644,'_elementor_template_type','wp-page'),(4832,644,'_elementor_edit_mode','builder'),(4833,644,'_elementor_version','3.12.2'),(4834,644,'_wp_page_template','default'),(4835,644,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4836,644,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4171,563,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4436,593,'_elementor_template_type','wp-page'),(4437,593,'_elementor_edit_mode','builder'),(4438,593,'_elementor_version','3.13.2'),(4439,593,'_wp_page_template','default'),(4440,593,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4441,593,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SI TIENES UN SUE\\u00d1O\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Si tienes un sue\\u00f1o<\\/strong><\\/p><p>No esperes a que llegue un d\\u00eda lejano,<br \\/>puede ser demasiado tarde antes de que hayas comenzado.<br \\/>No todos estar\\u00e1n de acuerdo con todo lo que decidas.<\\/p><p>S\\u00e9 fiel a ti mismo ante todo.<br \\/>Lo \\u00fanico importante en la vida es lo que haces<br \\/>con el tiempo que pasas aqu\\u00ed en la tierra.<\\/p><p>No tengas miedo de seguir tus deseos,<br \\/>no son tontos ni ego\\u00edstas.<br \\/>T\\u00f3mate el tiempo y haz lo que te haga sentir vivo.<\\/p><p>Deja tus miedos y remordimientos en el pasado,<br \\/>porque aqu\\u00ed es donde pertenecen.<br \\/>No te nubles hoy con cosas que no se pueden deshacer.<\\/p><p>No tienes m\\u00e1s control sobre el ayer o el ma\\u00f1ana,<br \\/>que sobre la furia de tus pasiones.<br \\/>No calmes estos sue\\u00f1os ni sacies tus deseos.<\\/p><p>Porque si lo haces, tu viaje ha terminado.<br \\/>S\\u00f3lo tienes hoy para comenzar de nuevo y seguir tus sue\\u00f1os.<br \\/>Porque al final todo lo que tenemos son nuestros recuerdos.<\\/p><p>Cuando el crep\\u00fasculo venga a nosotros, que haya, \\u00a1Sin excusas, sin explicaciones,<br \\/>sin arrepentimientos!<\\/p>\",\"align\":\"center\",\"text_color\":\"#0A0A0A\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4278,572,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images.jpeg\",\"id\":102,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \\\"persona hecha a s\\u00ed misma\\\". Proven\\u00eda de una familia modesta y trabaj\\u00f3 duro para lograr sus objetivos. Obtuvo muchas becas de m\\u00e9rito mientras era estudiante. Tiene una Maestr\\u00eda en Ingenier\\u00eda y una Maestr\\u00eda en Administraci\\u00f3n de Empresas junto con una designaci\\u00f3n de Contabilidad. Ha trabajado como ingeniero y ha ense\\u00f1ado a tiempo parcial en las universidades de Concordia y McGill.<\\/p><p>Se retir\\u00f3 alrededor de los 50 a\\u00f1os para perseguir su pasi\\u00f3n. Ha establecido una fundaci\\u00f3n caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundaci\\u00f3n tambi\\u00e9n \\\"Siete principios simples de la vida\\\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahm\\u00e1n, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiraci\\u00f3n alterna de fosas nasales. Despu\\u00e9s de hacer B.Sc con Biolog\\u00eda y Qu\\u00edmica, se convirti\\u00f3 en profesora de biolog\\u00eda en una escuela secundaria en la India. Al ense\\u00f1ar anatom\\u00eda y fisiolog\\u00eda humana y hacer yoga gradualmente, ella entendi\\u00f3 la utilidad y los hechos cient\\u00edficos involucrados detr\\u00e1s del yoga. Emigr\\u00f3 a Estados Unidos en 1994 y luego se cas\\u00f3 y emigr\\u00f3 a Canad\\u00e1. Actualmente trabaja en el laboratorio de la Academia Chambly.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Ella cree que el yoga en la esterilla como los aer\\u00f3bicos tiene efectos terap\\u00e9uticos y fisioterap\\u00e9uticos, pero al mismo tiempo tambi\\u00e9n cree en el yoga m\\u00e1s all\\u00e1 de la esterilla. Si hacemos yoga y tambi\\u00e9n llevamos una vida piadosa y libre de culpa, entonces nuestros \\u00f3rganos funcionar\\u00e1n correctamente. Porque en el momento en que hacemos algo mal, nuestro coraz\\u00f3n late aumenta, as\\u00ed que \\u00bfpor qu\\u00e9 hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas a\\u00f1aden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el s\\u00faper yoga del cerebro pueden hacer una gran contribuci\\u00f3n. Tambi\\u00e9n trata de seguir ocho ramas del yoga tanto como pueda.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4181,564,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4276,572,'_wp_page_template','default'),(4277,572,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4183,565,'_elementor_template_type','wp-page'),(4184,565,'_elementor_edit_mode','builder'),(4185,565,'_elementor_version','3.12.2'),(4186,565,'_wp_page_template','default'),(4187,565,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4188,565,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ES NUESTRA VIDA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>En la vida hay personas que nos har\\u00e1n da\\u00f1o y nos causar\\u00e1n dolor,<\\/p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.<\\/p><p>En la vida hay errores que cometeremos,<br \\/>pero debemos aprender de nuestros errores y crecer a partir de ellos.<\\/p><p>En la vida hay remordimientos con los que tendremos que vivir,<br \\/>pero debemos aprender a dejar atr\\u00e1s el pasado y darnos cuenta de que es algo que no podemos cambiar.<\\/p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br \\/>pero debemos aprender a dejar ir y seguir adelante.<\\/p><p>En la vida habr\\u00e1 obst\\u00e1culos que causar\\u00e1n interferencia,<br \\/>pero debemos aprender a superar estos desaf\\u00edos y fortalecernos.<\\/p><p>En la vida hay miedos que nos frenar\\u00e1n de lo que queremos,<br \\/>pero debemos aprender a combatirlos con el coraje de dentro.<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\",\"id\":71,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4189,565,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4274,572,'_elementor_template_type','wp-post'),(4275,572,'_elementor_version','3.12.2'),(4192,566,'_elementor_edit_mode','builder'),(4193,566,'_elementor_version','3.12.2'),(4194,566,'_wp_page_template','default'),(4195,566,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4196,566,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ES NUESTRA VIDA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>En la vida hay personas que nos har\\u00e1n da\\u00f1o y nos causar\\u00e1n dolor,<\\/p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.<\\/p><p>En la vida hay errores que cometeremos,<br \\/>pero debemos aprender de nuestros errores y crecer a partir de ellos.<\\/p><p>En la vida hay remordimientos con los que tendremos que vivir,<br \\/>pero debemos aprender a dejar atr\\u00e1s el pasado y darnos cuenta de que es algo que no podemos cambiar.<\\/p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br \\/>pero debemos aprender a dejar ir y seguir adelante.<\\/p><p>En la vida habr\\u00e1 obst\\u00e1culos que causar\\u00e1n interferencia,<br \\/>pero debemos aprender a superar estos desaf\\u00edos y fortalecernos.<\\/p><p>En la vida hay miedos que nos frenar\\u00e1n de lo que queremos,<br \\/>pero debemos aprender a combatirlos con el coraje de dentro.<\\/p>\",\"align\":\"center\",\"text_color\":\"#121311\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4197,566,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4272,571,'_elementor_page_assets','a:0:{}'),(4273,572,'_elementor_edit_mode','builder'),(4469,597,'_elementor_template_type','wp-page'),(4470,597,'_elementor_edit_mode','builder'),(4471,597,'_elementor_version','3.13.2'),(4472,597,'_wp_page_template','default'),(4473,597,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4474,597,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ES NUESTRA VIDA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>En la vida hay personas que nos har\\u00e1n da\\u00f1o y nos causar\\u00e1n dolor,<\\/p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.<\\/p><p>En la vida hay errores que cometeremos,<br \\/>pero debemos aprender de nuestros errores y crecer a partir de ellos.<\\/p><p>En la vida hay remordimientos con los que tendremos que vivir,<br \\/>pero debemos aprender a dejar atr\\u00e1s el pasado y darnos cuenta de que es algo que no podemos cambiar.<\\/p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br \\/>pero debemos aprender a dejar ir y seguir adelante.<\\/p><p>En la vida habr\\u00e1 obst\\u00e1culos que causar\\u00e1n interferencia,<br \\/>pero debemos aprender a superar estos desaf\\u00edos y fortalecernos.<\\/p><p>En la vida hay miedos que nos frenar\\u00e1n de lo que queremos,<br \\/>pero debemos aprender a combatirlos con el coraje de dentro.<\\/p>\",\"align\":\"center\",\"text_color\":\"#121311\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4208,567,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4210,568,'_elementor_template_type','wp-page'),(4211,568,'_elementor_edit_mode','builder'),(4212,568,'_elementor_version','3.12.2'),(4213,568,'_wp_page_template','default'),(4214,568,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4215,568,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOLO UNA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Una canci\\u00f3n puede provocar un momento, un \\u00e1rbol puede comenzar un bosque,<br \\/><br \\/>un p\\u00e1jaro puede anunciar la primavera.<\\/p><p>Una sonrisa comienza una amistad,<br \\/>un apret\\u00f3n de manos levanta un alma.<br \\/>Una estrella puede guiar un barco en el mar, Un voto puede cambiar una naci\\u00f3n, Un rayo de sol ilumina una habitaci\\u00f3n<br \\/>Una vela borra la oscuridad,<br \\/><br \\/><br \\/>Una risa conquistar\\u00e1 la tristeza.<\\/p><p>Un paso debe comenzar cada viaje.<br \\/>Una palabra debe comenzar cada oraci\\u00f3n.<br \\/>Una esperanza elevar\\u00e1 nuestro esp\\u00edritu,<br \\/>un toque puede mostrarte que te importa.<\\/p><p>Una voz puede hablar con sabidur\\u00eda, Un coraz\\u00f3n puede saber lo que es verdad,<\\/p><p>Una vida puede marcar la diferencia, ya ves,<br \\/>\\u00a1depende de ti!<\\/p>\",\"align\":\"center\",\"text_color\":\"#A7E0A4\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\",\"id\":71,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4216,568,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4219,569,'_elementor_edit_mode','builder'),(4220,569,'_elementor_version','3.12.2'),(4221,569,'_wp_page_template','default'),(4222,569,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4223,569,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOLO UNA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Una canci\\u00f3n puede provocar un momento, un \\u00e1rbol puede comenzar un bosque,<br \\/><br \\/>un p\\u00e1jaro puede anunciar la primavera.<\\/p><p>Una sonrisa comienza una amistad,<br \\/>un apret\\u00f3n de manos levanta un alma.<br \\/>Una estrella puede guiar un barco en el mar, Un voto puede cambiar una naci\\u00f3n, Un rayo de sol ilumina una habitaci\\u00f3n<br \\/>Una vela borra la oscuridad,<br \\/><br \\/><br \\/>Una risa conquistar\\u00e1 la tristeza.<\\/p><p>Un paso debe comenzar cada viaje.<br \\/>Una palabra debe comenzar cada oraci\\u00f3n.<br \\/>Una esperanza elevar\\u00e1 nuestro esp\\u00edritu,<br \\/>un toque puede mostrarte que te importa.<\\/p><p>Una voz puede hablar con sabidur\\u00eda, Un coraz\\u00f3n puede saber lo que es verdad,<\\/p><p>Una vida puede marcar la diferencia, ya ves,<br \\/>\\u00a1depende de ti!<\\/p>\",\"align\":\"center\",\"text_color\":\"#141614\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4224,569,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4502,601,'_elementor_template_type','wp-page'),(4503,601,'_elementor_edit_mode','builder'),(4504,601,'_elementor_version','3.13.2'),(4505,601,'_wp_page_template','default'),(4506,601,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4507,601,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOLO UNA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Una canci\\u00f3n puede provocar un momento, un \\u00e1rbol puede comenzar un bosque,<br \\/><br \\/>un p\\u00e1jaro puede anunciar la primavera.<\\/p><p>Una sonrisa comienza una amistad,<br \\/>un apret\\u00f3n de manos levanta un alma.<br \\/>Una estrella puede guiar un barco en el mar, Un voto puede cambiar una naci\\u00f3n, Un rayo de sol ilumina una habitaci\\u00f3n<br \\/>Una vela borra la oscuridad,<br \\/><br \\/><br \\/>Una risa conquistar\\u00e1 la tristeza.<\\/p><p>Un paso debe comenzar cada viaje.<br \\/>Una palabra debe comenzar cada oraci\\u00f3n.<br \\/>Una esperanza elevar\\u00e1 nuestro esp\\u00edritu,<br \\/>un toque puede mostrarte que te importa.<\\/p><p>Una voz puede hablar con sabidur\\u00eda, Un coraz\\u00f3n puede saber lo que es verdad,<\\/p><p>Una vida puede marcar la diferencia, ya ves,<br \\/>\\u00a1depende de ti!<\\/p>\",\"align\":\"center\",\"text_color\":\"#141614\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6807,908,'_wp_attached_file','2023/05/meditate-ga0015b20f_1280.jpg'),(6808,908,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:36:\"2023/05/meditate-ga0015b20f_1280.jpg\";s:8:\"filesize\";i:258817;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"meditate-ga0015b20f_1280-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13416;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"meditate-ga0015b20f_1280-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106190;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"meditate-ga0015b20f_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5224;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"meditate-ga0015b20f_1280-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65877;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8384,1101,'_elementor_template_type','wp-page'),(8385,1101,'_elementor_edit_mode','builder'),(8386,1101,'_elementor_version','3.13.3'),(8387,1101,'_wp_page_template','default'),(8388,1101,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8389,1101,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Bringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \\\"A View from the Zoo\\\", Gary Richmond describes<\\/p><p style=\\\"text-align: justify;\\\">how a newborn giraffe learns its first lesson.<br \\/>The mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing.\\u00a0She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.<\\/p><p style=\\\"text-align: justify;\\\">When it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.<\\/p><p style=\\\"text-align: justify;\\\">Then the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.<\\/p><p style=\\\"text-align: justify;\\\">The late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.<\\/p><p style=\\\"text-align: justify;\\\">Stone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \\\"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.<\\/p><p style=\\\"text-align: justify;\\\">\\\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\\\"<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7862,1040,'_elementor_template_type','wp-page'),(7863,1040,'_elementor_edit_mode','builder'),(7864,1040,'_elementor_version','3.13.3'),(7865,1040,'_wp_page_template','default'),(7866,1040,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7867,1040,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"IN OUR LIFE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\" align=\\\"center\\\">In life there are people that will hurt us and cause us pain,<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">but we must learn to forgive and forget and not hold grudges.<\\/p><p style=\\\"text-align: center;\\\">In life there are mistakes we will make,<br \\/>but we must learn from our wrongs and grow from them.<\\/p><p style=\\\"text-align: center;\\\">In life there are regrets we will have to live with,<br \\/>but we must learn to leave the past behind and realize it is something we can\'t change.<\\/p><p style=\\\"text-align: center;\\\">In life there are people we will loose forever and can\'t have back,<br \\/>but we must learn to let go &amp; move on.<\\/p><p style=\\\"text-align: center;\\\">In life there are going to be obstacles that will cause interference,<br \\/>but we must learn to overcome these challenges and grow stronger.<\\/p><p style=\\\"text-align: center;\\\">In life there are fears that will hold us back from what we want,<br \\/>but we must learn to fight them with the courage from within.<\\/p>\",\"align\":\"center\",\"text_color\":\"#121311\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4917,222,'_wp_old_date','2023-04-30'),(4918,234,'_wp_old_date','2023-04-30'),(4919,233,'_wp_old_date','2023-04-30'),(4279,572,'_elementor_page_assets','a:0:{}'),(4305,576,'_elementor_edit_mode','builder'),(4306,576,'_elementor_template_type','wp-post'),(4307,576,'_elementor_version','3.13.3'),(4308,576,'_wp_page_template','default'),(4309,576,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4310,576,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images.jpeg\",\"id\":102,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4280,573,'_elementor_edit_mode','builder'),(4281,573,'_elementor_template_type','wp-post'),(4282,573,'_elementor_version','3.12.2'),(4283,573,'_wp_page_template','default'),(4284,573,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4285,573,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images.jpeg\",\"id\":102,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahm\\u00e1n, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiraci\\u00f3n alterna de fosas nasales. Despu\\u00e9s de hacer B.Sc con Biolog\\u00eda y Qu\\u00edmica, se convirti\\u00f3 en profesora de biolog\\u00eda en una escuela secundaria en la India. Al ense\\u00f1ar anatom\\u00eda y fisiolog\\u00eda humana y hacer yoga gradualmente, ella entendi\\u00f3 la utilidad y los hechos cient\\u00edficos involucrados detr\\u00e1s del yoga. Emigr\\u00f3 a Estados Unidos en 1994 y luego se cas\\u00f3 y emigr\\u00f3 a Canad\\u00e1. Actualmente trabaja en el laboratorio de la Academia Chambly.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Ella cree que el yoga en la esterilla como los aer\\u00f3bicos tiene efectos terap\\u00e9uticos y fisioterap\\u00e9uticos, pero al mismo tiempo tambi\\u00e9n cree en el yoga m\\u00e1s all\\u00e1 de la esterilla. Si hacemos yoga y tambi\\u00e9n llevamos una vida piadosa y libre de culpa, entonces nuestros \\u00f3rganos funcionar\\u00e1n correctamente. Porque en el momento en que hacemos algo mal, nuestro coraz\\u00f3n late aumenta, as\\u00ed que \\u00bfpor qu\\u00e9 hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas a\\u00f1aden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el s\\u00faper yoga del cerebro pueden hacer una gran contribuci\\u00f3n. Tambi\\u00e9n trata de seguir ocho ramas del yoga tanto como pueda.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4286,573,'_elementor_page_assets','a:0:{}'),(4289,574,'_elementor_edit_mode','builder'),(4290,574,'_elementor_template_type','wp-post'),(4291,574,'_elementor_version','3.13.3'),(4292,574,'_wp_page_template','default'),(4293,574,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4294,574,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images.jpeg\",\"id\":102,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahm\\u00e1n, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiraci\\u00f3n alterna de fosas nasales. Despu\\u00e9s de hacer B.Sc con Biolog\\u00eda y Qu\\u00edmica, se convirti\\u00f3 en profesora de biolog\\u00eda en una escuela secundaria en la India. Al ense\\u00f1ar anatom\\u00eda y fisiolog\\u00eda humana y hacer yoga gradualmente, ella entendi\\u00f3 la utilidad y los hechos cient\\u00edficos involucrados detr\\u00e1s del yoga. Emigr\\u00f3 a Estados Unidos en 1994 y luego se cas\\u00f3 y emigr\\u00f3 a Canad\\u00e1. Actualmente trabaja en el laboratorio de la Academia Chambly.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Ella cree que el yoga en la esterilla como los aer\\u00f3bicos tiene efectos terap\\u00e9uticos y fisioterap\\u00e9uticos, pero al mismo tiempo tambi\\u00e9n cree en el yoga m\\u00e1s all\\u00e1 de la esterilla. Si hacemos yoga y tambi\\u00e9n llevamos una vida piadosa y libre de culpa, entonces nuestros \\u00f3rganos funcionar\\u00e1n correctamente. Porque en el momento en que hacemos algo mal, nuestro coraz\\u00f3n late aumenta, as\\u00ed que \\u00bfpor qu\\u00e9 hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas a\\u00f1aden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el s\\u00faper yoga del cerebro pueden hacer una gran contribuci\\u00f3n. Tambi\\u00e9n trata de seguir ocho ramas del yoga tanto como pueda.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6701,891,'_elementor_edit_mode','builder'),(6702,891,'_elementor_template_type','wp-post'),(6703,891,'_elementor_version','3.13.3'),(6704,891,'_wp_page_template','default'),(6705,891,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6706,891,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images.jpeg\",\"id\":102,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4295,574,'_elementor_page_assets','a:0:{}'),(4297,575,'_elementor_edit_mode','builder'),(4298,575,'_elementor_template_type','wp-post'),(4299,575,'_elementor_version','3.13.3'),(4300,575,'_wp_page_template','default'),(4301,575,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4302,575,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images.jpeg\",\"id\":102,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahm\\u00e1n, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiraci\\u00f3n alterna de fosas nasales. Despu\\u00e9s de hacer B.Sc con Biolog\\u00eda y Qu\\u00edmica, se convirti\\u00f3 en profesora de biolog\\u00eda en una escuela secundaria en la India. Al ense\\u00f1ar anatom\\u00eda y fisiolog\\u00eda humana y hacer yoga gradualmente, ella entendi\\u00f3 la utilidad y los hechos cient\\u00edficos involucrados detr\\u00e1s del yoga. Emigr\\u00f3 a Estados Unidos en 1994 y luego se cas\\u00f3 y emigr\\u00f3 a Canad\\u00e1. Actualmente trabaja en el laboratorio de la Academia Chambly.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Ella cree que el yoga en la esterilla como los aer\\u00f3bicos tiene efectos terap\\u00e9uticos y fisioterap\\u00e9uticos, pero al mismo tiempo tambi\\u00e9n cree en el yoga m\\u00e1s all\\u00e1 de la esterilla. Si hacemos yoga y tambi\\u00e9n llevamos una vida piadosa y libre de culpa, entonces nuestros \\u00f3rganos funcionar\\u00e1n correctamente. Porque en el momento en que hacemos algo mal, nuestro coraz\\u00f3n late aumenta, as\\u00ed que \\u00bfpor qu\\u00e9 hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas a\\u00f1aden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el s\\u00faper yoga del cerebro pueden hacer una gran contribuci\\u00f3n. Tambi\\u00e9n trata de seguir ocho ramas del yoga tanto como pueda.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4303,575,'_elementor_page_assets','a:0:{}'),(4311,576,'_elementor_page_assets','a:0:{}'),(4320,577,'_elementor_page_assets','a:0:{}'),(4321,578,'_elementor_edit_mode','builder'),(4322,578,'_elementor_template_type','wp-page'),(4323,578,'_elementor_version','3.12.2'),(4324,578,'_wp_page_template','default'),(4325,578,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4326,578,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">Hacer que la pr\\u00e1ctica b\\u00e1sica de yoga sea f\\u00e1cilmente accesible para todos sin cargo.<\\/span><\\/p><p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">El fundador de Divya Yoga Swami Ram Dev dice: \\\"La buena salud es un derecho de nacimiento de la humanidad\\\". Al realizar posturas de yoga, \\/ asanas, ejercicios, mudras,<b>pranayams<i>,\\u00a0<\\/i><\\/b>meditaci\\u00f3n y al proporcionar un discurso motivacional pr\\u00e1ctico ayudan a desarrollar una mente libre de estr\\u00e9s y un cuerpo libre de enfermedades. Ayuda a cuidar el cuerpo, la mente y el alma y vivir una vida feliz, saludable y satisfactoria. Haga hincapi\\u00e9 en que la clave para un cuerpo f\\u00edsico saludable y un estado mental sano est\\u00e1 bajo el control de uno. Al ponernos en contacto con el ser interior podemos experimentar un estado de \\\"Bienaventuranza y Anand\\\".<\\/span><\\/p><p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">Este Divya yoga es para personas de todas las edades. Comenzamos con ejercicios de calentamiento (12-15), saludo al sol y discurso motivacional. Luego practicamos 90-100 combinaciones de asanas, posturas y ejercicios. Tambi\\u00e9n realizamos algo de acupresi\\u00f3n, 6 mudras, 7 pranayams y micro ejercicios para ojos, dedos de manos, pies, cara y cuello. Tambi\\u00e9n se incluye yoga de la risa y s\\u00faper yoga cerebral. Terminamos con \'Shav Asana\', poema motivacional, mantra y oraci\\u00f3n,\\u00a0<\\/span><span style=\\\"color: #111111; font-family: Helvetica, sans-serif; font-size: 1rem;\\\">Despu\\u00e9s del yoga, la s\\u00faper comida, es decir, las uvas y el pl\\u00e1tano est\\u00e1n disponibles para los yoguis.<\\/span><\\/p><p style=\\\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-family: \'Helvetica\',sans-serif; color: #111111;\\\">El yoga es un medio maravilloso de ejercitar, estirar y relajar el cuerpo \\/ mente para que pueda ser saludable y duradero. Ayuda en la coordinaci\\u00f3n del cuerpo, la mente y el alma. Tambi\\u00e9n creamos un entorno donde las personas pueden interactuar para su mejoramiento y bien de la sociedad.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4327,578,'_elementor_page_assets','a:0:{}'),(4334,579,'_elementor_page_assets','a:0:{}'),(6776,904,'_elementor_edit_mode','builder'),(6777,904,'_elementor_template_type','wp-page'),(6778,904,'_elementor_version','3.13.3'),(6779,904,'_wp_page_template','default'),(6780,904,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6781,904,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">To make basic yoga practice easily accessible to everyone without charge.<\\/p><p style=\\\"text-align: justify;\\\">Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i> <\\/i><\\/b>exercise<b>s<i>, <\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p><p style=\\\"text-align: justify;\\\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p><p style=\\\"text-align: justify;\\\">After yoga super food i. e. grapes and banana are available for Yogies.<\\/p><p style=\\\"text-align: justify;\\\">Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4336,580,'_elementor_edit_mode','builder'),(4337,580,'_elementor_template_type','wp-page'),(4338,580,'_elementor_version','3.13.3'),(4339,580,'_wp_page_template','default'),(4340,580,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4341,580,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">To make basic yoga practice easily accessible to everyone without charge.<\\/p><p style=\\\"text-align: justify;\\\">Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i> <\\/i><\\/b>exercise<b>s<i>, <\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p><p style=\\\"text-align: justify;\\\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p><p style=\\\"text-align: justify;\\\">After yoga super food i. e. grapes and banana are available for Yogies.<\\/p><p style=\\\"text-align: justify;\\\">Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4342,580,'_elementor_page_assets','a:0:{}'),(4343,580,'_elementor_controls_usage','a:4:{s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:2:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}}'),(4345,581,'_elementor_edit_mode','builder'),(4346,581,'_elementor_template_type','wp-page'),(4347,581,'_elementor_version','3.12.2'),(4348,581,'_wp_page_template','default'),(4349,581,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4350,581,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3242cf9\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"1155c00\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"cecc2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"237929a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"de47540\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"1536x1536\",\"width\":{\"unit\":\"%\",\"size\":91,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":133,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"48113ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"035f315\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"340bd1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"8779274\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-5.jpeg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72996c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"454ca25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-1.jpeg\",\"id\":106,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4351,581,'_elementor_page_assets','a:0:{}'),(4352,581,'_elementor_controls_usage','a:4:{s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:2:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;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:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:6;s:10:\"image_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:2;s:5:\"space\";i:2;s:6:\"height\";i:1;}}}}}'),(4354,582,'_elementor_edit_mode','builder'),(4355,582,'_elementor_template_type','wp-page'),(4356,582,'_elementor_version','3.12.2'),(4357,582,'_wp_page_template','default'),(4358,583,'_elementor_template_type','wp-page'),(4359,583,'_elementor_edit_mode','builder'),(4360,583,'_elementor_version','3.12.2'),(4361,583,'_wp_page_template','default'),(4362,583,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4363,583,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODO ES POSIBLE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong><em>Cree en ti mismo y recuerda que todo es posible<\\/em><\\/strong><\\/h2><p>Cree en lo que te hace sentir bien.<br \\/>Cree en lo que te hace feliz.<br \\/>Cree en los sue\\u00f1os que siempre has querido que se hagan realidad<br \\/>y dales todas las oportunidades para hacerlo.<\\/p><p>La vida no tiene promesas de lo que vendr\\u00e1 en tu camino.<br \\/>Debes buscar tus propios ideales<br \\/>y trabajar para alcanzarlos.<\\/p><p>La vida no da garant\\u00edas en cuanto a lo que tendr\\u00e1s.<br \\/>Simplemente te da tiempo para tomar decisiones<br \\/>y\\u00a0arriesgarte<br \\/>y descubrir cualquier secreto que pueda surgir en tu camino.<\\/p><p>Si est\\u00e1s dispuesto a aprovechar las oportunidades que se te dan<br \\/>y\\u00a0utilizar las habilidades que tienes,<br \\/>constantemente llenar\\u00e1s tu vida<br \\/>con momentos especiales y momentos inolvidables.<\\/p><p>Nadie conoce los misterios de la vida o su significado \\u00faltimo,\\u00a0pero para aquellos que est\\u00e1n dispuestos<br \\/>a creer en sus sue\\u00f1os y en s\\u00ed mismos,<br \\/><br \\/>la\\u00a0vida es un regalo precioso en el que todo es posible.<\\/p><p>~ Dena DiIaconi ~<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4364,583,'_elementor_page_assets','a:0:{}'),(4365,583,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}}'),(4372,584,'_elementor_page_assets','a:0:{}'),(4373,585,'_elementor_template_type','wp-page'),(4374,585,'_elementor_edit_mode','builder'),(4375,585,'_elementor_version','3.12.2'),(4376,585,'_wp_page_template','default'),(4377,585,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4378,585,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODO ES POSIBLE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong><em>Cree en ti mismo y recuerda que todo es posible<\\/em><\\/strong><\\/h2><p>Cree en lo que te hace sentir bien.<br \\/>Cree en lo que te hace feliz.<br \\/>Cree en los sue\\u00f1os que siempre has querido que se hagan realidad<br \\/>y dales todas las oportunidades para hacerlo.<\\/p><p>La vida no tiene promesas de lo que vendr\\u00e1 en tu camino.<br \\/>Debes buscar tus propios ideales<br \\/>y trabajar para alcanzarlos.<\\/p><p>La vida no da garant\\u00edas en cuanto a lo que tendr\\u00e1s.<br \\/>Simplemente te da tiempo para tomar decisiones<br \\/>y\\u00a0arriesgarte<br \\/>y descubrir cualquier secreto que pueda surgir en tu camino.<\\/p><p>Si est\\u00e1s dispuesto a aprovechar las oportunidades que se te dan<br \\/>y\\u00a0utilizar las habilidades que tienes,<br \\/>constantemente llenar\\u00e1s tu vida<br \\/>con momentos especiales y momentos inolvidables.<\\/p><p>Nadie conoce los misterios de la vida o su significado \\u00faltimo,\\u00a0pero para aquellos que est\\u00e1n dispuestos<br \\/>a creer en sus sue\\u00f1os y en s\\u00ed mismos,<br \\/><br \\/>la\\u00a0vida es un regalo precioso en el que todo es posible.<\\/p><p>~ Dena DiIaconi ~<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4379,585,'_elementor_page_assets','a:0:{}'),(4380,586,'_elementor_template_type','wp-page'),(4381,586,'_elementor_edit_mode','builder'),(4382,586,'_elementor_version','3.12.2'),(4383,586,'_wp_page_template','default'),(4384,586,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4385,586,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODO ES POSIBLE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\"><em><strong>Believe in Yourself,and Remember that Anything Is Possible<\\/strong><\\/em><\\/span><\\/h2><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">Believe in what makes you feel good.<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> Believe in what makes you happy.<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> Believe in the dreams you\'ve always wanted to come true,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> and give them every chance to.<\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">Life holds no promises to what will come your way.<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> You must search for your own ideals<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> and work towards reaching them.<\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">Life makes no guarantees as to what you\'ll have.<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> It just gives you time to make choices<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> and to take chances<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> and to discover whatever secrets might come your way.<\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">If you are willing to take the opportunities you are given<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> and utilize the abilities you have,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> you will constantly fill your life<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> with special moments and unforgettable times.<\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">No one knows the mysteries of life or its ultimate meaning,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> but for those who are willing<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> to believe in their dreams and in themselves,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> life is a precious gift in which anything is possible.<\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">~ Dena DiIaconi ~<\\/span><\\/p>\",\"text_color\":\"#202A36\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4386,586,'_elementor_page_assets','a:0:{}'),(7554,1003,'_elementor_template_type','wp-page'),(7555,1003,'_elementor_edit_mode','builder'),(7556,1003,'_elementor_version','3.13.3'),(7557,1003,'_wp_page_template','default'),(7558,1003,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7559,1003,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODO ES POSIBLE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\"><em><strong>Believe in Yourself,and Remember that Anything Is Possible<\\/strong><\\/em><\\/span><\\/h2><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">Believe in what makes you feel good.<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> Believe in what makes you happy.<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> Believe in the dreams you\'ve always wanted to come true,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> and give them every chance to.<\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">Life holds no promises to what will come your way.<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> You must search for your own ideals<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> and work towards reaching them.<\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">Life makes no guarantees as to what you\'ll have.<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> It just gives you time to make choices<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> and to take chances<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> and to discover whatever secrets might come your way.<\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">If you are willing to take the opportunities you are given<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> and utilize the abilities you have,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> you will constantly fill your life<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> with special moments and unforgettable times.<\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">No one knows the mysteries of life or its ultimate meaning,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> but for those who are willing<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> to believe in their dreams and in themselves,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> life is a precious gift in which anything is possible.<\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">~ Dena DiIaconi ~<\\/span><\\/p>\",\"text_color\":\"#202A36\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4389,587,'_elementor_edit_mode','builder'),(4390,587,'_elementor_template_type','wp-post'),(4391,587,'_elementor_version','3.13.3'),(4392,587,'_wp_page_template','default'),(4393,587,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4394,587,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images.jpeg\",\"id\":102,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4395,587,'_elementor_page_assets','a:0:{}'),(4396,587,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:3;s:10:\"image_size\";i:2;s:22:\"image_custom_dimension\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:2;s:5:\"space\";i:1;s:6:\"height\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}}}}'),(4397,588,'_elementor_template_type','wp-page'),(4398,588,'_elementor_edit_mode','builder'),(4399,588,'_elementor_version','3.13.2'),(4400,588,'_wp_page_template','default'),(4401,588,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4402,588,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SE LO QUE QUIERAS SER!\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a1Puedes ser\\u00a0<strong>lo que<\\/strong><br \\/><strong>quieras ser!<\\/strong><\\/p><p>Hay dentro de ti<br \\/>todo el potencial<br \\/>para ser lo que\\u00a0quieras ser,<br \\/>toda la energ\\u00eda<br \\/>para hacer lo que quieras hacer.<\\/p><p>Imag\\u00ednate como te gustar\\u00eda ser,\\u00a0haciendo lo que quieres hacer,\\u00a0y cada d\\u00eda,<br \\/><br \\/>da un paso<br \\/>hacia tu sue\\u00f1o.<\\/p><p>Y aunque a veces parezca demasiado<br \\/>dif\\u00edcil continuar,<br \\/>af\\u00e9rrate a tu sue\\u00f1o.<\\/p><p>Una ma\\u00f1ana te despertar\\u00e1s para descubrir<br \\/>que\\u00a0eres la persona con la que so\\u00f1aste,\\u00a0haciendo lo que quer\\u00edas hacer,\\u00a0simplemente porque tuviste el coraje<br \\/>de creer en tu potencial<br \\/>y aferrarte a tu sue\\u00f1o.<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000EB\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4403,588,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4404,588,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;}}}}}'),(4411,589,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4412,590,'_elementor_template_type','wp-page'),(4413,590,'_elementor_edit_mode','builder'),(4414,590,'_elementor_version','3.13.2'),(4415,590,'_wp_page_template','default'),(4416,590,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4417,590,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SE LO QUE QUIERAS SER!\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a1Puedes ser\\u00a0<strong>lo que<\\/strong><br \\/><strong>quieras ser!<\\/strong><\\/p><p>Hay dentro de ti<br \\/>todo el potencial<br \\/>para ser lo que\\u00a0quieras ser,<br \\/>toda la energ\\u00eda<br \\/>para hacer lo que quieras hacer.<\\/p><p>Imag\\u00ednate como te gustar\\u00eda ser,\\u00a0haciendo lo que quieres hacer,\\u00a0y cada d\\u00eda,<br \\/><br \\/>da un paso<br \\/>hacia tu sue\\u00f1o.<\\/p><p>Y aunque a veces parezca demasiado<br \\/>dif\\u00edcil continuar,<br \\/>af\\u00e9rrate a tu sue\\u00f1o.<\\/p><p>Una ma\\u00f1ana te despertar\\u00e1s para descubrir<br \\/>que\\u00a0eres la persona con la que so\\u00f1aste,\\u00a0haciendo lo que quer\\u00edas hacer,\\u00a0simplemente porque tuviste el coraje<br \\/>de creer en tu potencial<br \\/>y aferrarte a tu sue\\u00f1o.<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000EB\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4418,590,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4419,591,'_elementor_template_type','wp-page'),(4420,591,'_elementor_edit_mode','builder'),(4421,591,'_elementor_version','3.13.2'),(4422,591,'_wp_page_template','default'),(4423,591,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4424,591,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Be Whatever  You Want To Be !\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\"><strong>You Can Be Whatever <\\/strong><\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> <strong> You Want To Be!<\\/strong><\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">There is inside you<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> all of the potential<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> to be whatever you want to be,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> all of the energy<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> to do whatever you want to do.<\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">Imagine yourself as you would like to be,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> doing what you want to do,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> and each day, take one step<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> towards your dream.<\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">And though at times it may seem too<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> difficult to continue,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> hold on to your dream.<\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">One morning you will awake to find<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> that you are the person you dreamed of,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> doing what you wanted to do,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> simply because you had the courage<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> to believe in your potential<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> and to hold on to your dream<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#000000EB\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4425,591,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7602,1009,'_elementor_template_type','wp-page'),(7603,1009,'_elementor_edit_mode','builder'),(7604,1009,'_elementor_version','3.13.3'),(7605,1009,'_wp_page_template','default'),(7606,1009,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7607,1009,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Be Whatever  You Want To Be !\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\"><strong>You Can Be Whatever <\\/strong><\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> <strong> You Want To Be!<\\/strong><\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">There is inside you<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> all of the potential<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> to be whatever you want to be,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> all of the energy<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> to do whatever you want to do.<\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">Imagine yourself as you would like to be,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> doing what you want to do,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> and each day, take one step<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> towards your dream.<\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">And though at times it may seem too<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> difficult to continue,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> hold on to your dream.<\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">One morning you will awake to find<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> that you are the person you dreamed of,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> doing what you wanted to do,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> simply because you had the courage<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> to believe in your potential<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> and to hold on to your dream<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#000000EB\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8049,1062,'_elementor_template_type','wp-page'),(8050,1062,'_elementor_edit_mode','builder'),(8051,1062,'_elementor_version','3.13.3'),(8052,1062,'_wp_page_template','default'),(8053,1062,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8054,1062,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMISE YOURSELF\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">(one the most classic motivational poems)<\\/p><p align=\\\"center\\\">Promise yourself to be so strong that nothing can<br \\/>disturb your peace of mind.<\\/p><p align=\\\"center\\\">To talk health, happiness, and prosperity to<br \\/>every person you meet.<\\/p><p align=\\\"center\\\">To make all your friends feel like there is<br \\/>something in them.<\\/p><p align=\\\"center\\\">To look at the sunny side of everything and make your<br \\/>optimism come true.<\\/p><p align=\\\"center\\\">To think only of the best, to work only for the best,<br \\/>and expect only the best.<\\/p><p align=\\\"center\\\">To be just as enthusiastic about the success of others<br \\/>as you are about your own.<\\/p><p align=\\\"center\\\">To forget the mistakes of the past and press on the<br \\/>greater achievements of the future.<\\/p><p align=\\\"center\\\">To wear a cheerful countenance at all times and give<br \\/>every living person you meet a smile.<\\/p><p align=\\\"center\\\">To give so much time to the improvement of yourself<br \\/>that you have no time to criticize others.<\\/p><p align=\\\"center\\\">To be too large for worry, too noble for anger, and too<br \\/>strong for fear, and too happy to permit the<br \\/>presence of trouble.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4428,592,'_elementor_template_type','wp-page'),(4429,592,'_elementor_edit_mode','builder'),(4430,592,'_elementor_version','3.13.2'),(4431,592,'_wp_page_template','default'),(4432,592,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4433,592,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SI TIENES UN SUE\\u00d1O\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Si tienes un sue\\u00f1o<\\/strong><\\/p><p>No esperes a que llegue un d\\u00eda lejano,<br \\/>puede ser demasiado tarde antes de que hayas comenzado.<br \\/>No todos estar\\u00e1n de acuerdo con todo lo que decidas.<\\/p><p>S\\u00e9 fiel a ti mismo ante todo.<br \\/>Lo \\u00fanico importante en la vida es lo que haces<br \\/>con el tiempo que pasas aqu\\u00ed en la tierra.<\\/p><p>No tengas miedo de seguir tus deseos,<br \\/>no son tontos ni ego\\u00edstas.<br \\/>T\\u00f3mate el tiempo y haz lo que te haga sentir vivo.<\\/p><p>Deja tus miedos y remordimientos en el pasado,<br \\/>porque aqu\\u00ed es donde pertenecen.<br \\/>No te nubles hoy con cosas que no se pueden deshacer.<\\/p><p>No tienes m\\u00e1s control sobre el ayer o el ma\\u00f1ana,<br \\/>que sobre la furia de tus pasiones.<br \\/>No calmes estos sue\\u00f1os ni sacies tus deseos.<\\/p><p>Porque si lo haces, tu viaje ha terminado.<br \\/>S\\u00f3lo tienes hoy para comenzar de nuevo y seguir tus sue\\u00f1os.<br \\/>Porque al final todo lo que tenemos son nuestros recuerdos.<\\/p><p>Cuando el crep\\u00fasculo venga a nosotros, que haya, \\u00a1Sin excusas, sin explicaciones,<br \\/>sin arrepentimientos!<\\/p>\",\"align\":\"center\",\"text_color\":\"#0A0A0A\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4434,592,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4435,592,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;}}}}}'),(4442,593,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4443,594,'_elementor_template_type','wp-page'),(4444,594,'_elementor_edit_mode','builder'),(4445,594,'_elementor_version','3.13.2'),(4446,594,'_wp_page_template','default'),(4447,594,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4448,594,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SI TIENES UN SUE\\u00d1O\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Si tienes un sue\\u00f1o<\\/strong><\\/p><p>No esperes a que llegue un d\\u00eda lejano,<br \\/>puede ser demasiado tarde antes de que hayas comenzado.<br \\/>No todos estar\\u00e1n de acuerdo con todo lo que decidas.<\\/p><p>S\\u00e9 fiel a ti mismo ante todo.<br \\/>Lo \\u00fanico importante en la vida es lo que haces<br \\/>con el tiempo que pasas aqu\\u00ed en la tierra.<\\/p><p>No tengas miedo de seguir tus deseos,<br \\/>no son tontos ni ego\\u00edstas.<br \\/>T\\u00f3mate el tiempo y haz lo que te haga sentir vivo.<\\/p><p>Deja tus miedos y remordimientos en el pasado,<br \\/>porque aqu\\u00ed es donde pertenecen.<br \\/>No te nubles hoy con cosas que no se pueden deshacer.<\\/p><p>No tienes m\\u00e1s control sobre el ayer o el ma\\u00f1ana,<br \\/>que sobre la furia de tus pasiones.<br \\/>No calmes estos sue\\u00f1os ni sacies tus deseos.<\\/p><p>Porque si lo haces, tu viaje ha terminado.<br \\/>S\\u00f3lo tienes hoy para comenzar de nuevo y seguir tus sue\\u00f1os.<br \\/>Porque al final todo lo que tenemos son nuestros recuerdos.<\\/p><p>Cuando el crep\\u00fasculo venga a nosotros, que haya, \\u00a1Sin excusas, sin explicaciones,<br \\/>sin arrepentimientos!<\\/p>\",\"align\":\"center\",\"text_color\":\"#0A0A0A\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4449,594,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4450,595,'_elementor_template_type','wp-page'),(4451,595,'_elementor_edit_mode','builder'),(4452,595,'_elementor_version','3.13.2'),(4453,595,'_wp_page_template','default'),(4454,595,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4455,595,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"IF YOU HAVE A DREAM\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\"><b>If You Have A Dream<\\/b><\\/p><p align=\\\"center\\\">Don\\u2019t wait for some distant day to come,<br \\/>it may be too late before you\\u2019ve even begun.<br \\/>Not everyone will agree with all you decide.<\\/p><p align=\\\"center\\\">Be true to yourself first and foremost.<br \\/>The only important thing in life is what you do<br \\/>with the time you spend here on earth.<\\/p><p align=\\\"center\\\">Don\\u2019t be afraid to follow your desires,<br \\/>they are not silly nor selfish.<br \\/>Take the time and do what makes you feel alive.<\\/p><p align=\\\"center\\\">Leave your fears and regrets in the past,<br \\/>for this is where they belong.<br \\/>Don\\u2019t cloud today with things that can\\u2019t be undone.<\\/p><p align=\\\"center\\\">You have no more control over yesterday or tomorrow,<br \\/>than you do the raging of your passions.<br \\/>Do not quiet these dreams nor quench your desires.<\\/p><p align=\\\"center\\\">For if you do, your journey is ended.<br \\/>You have only today to begin anew and follow your dreams.<br \\/>For in the end all we have are our memories.<\\/p><p align=\\\"center\\\">When the twilight comes to us, let there be,<br \\/>No excuses, no explanations, no regrets!<\\/p>\",\"align\":\"center\",\"text_color\":\"#0A0A0A\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4456,595,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7802,1033,'_elementor_template_type','wp-page'),(7803,1033,'_elementor_edit_mode','builder'),(7804,1033,'_elementor_version','3.13.3'),(7805,1033,'_wp_page_template','default'),(7806,1033,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7807,1033,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"IF YOU HAVE A DREAM\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\"><b>If You Have A Dream<\\/b><\\/p><p align=\\\"center\\\">Don\\u2019t wait for some distant day to come,<br \\/>it may be too late before you\\u2019ve even begun.<br \\/>Not everyone will agree with all you decide.<\\/p><p align=\\\"center\\\">Be true to yourself first and foremost.<br \\/>The only important thing in life is what you do<br \\/>with the time you spend here on earth.<\\/p><p align=\\\"center\\\">Don\\u2019t be afraid to follow your desires,<br \\/>they are not silly nor selfish.<br \\/>Take the time and do what makes you feel alive.<\\/p><p align=\\\"center\\\">Leave your fears and regrets in the past,<br \\/>for this is where they belong.<br \\/>Don\\u2019t cloud today with things that can\\u2019t be undone.<\\/p><p align=\\\"center\\\">You have no more control over yesterday or tomorrow,<br \\/>than you do the raging of your passions.<br \\/>Do not quiet these dreams nor quench your desires.<\\/p><p align=\\\"center\\\">For if you do, your journey is ended.<br \\/>You have only today to begin anew and follow your dreams.<br \\/>For in the end all we have are our memories.<\\/p><p align=\\\"center\\\">When the twilight comes to us, let there be,<br \\/>No excuses, no explanations, no regrets!<\\/p>\",\"align\":\"center\",\"text_color\":\"#0A0A0A\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8435,1107,'_elementor_template_type','wp-page'),(8436,1107,'_elementor_edit_mode','builder'),(8437,1107,'_elementor_version','3.13.3'),(8438,1107,'_wp_page_template','default'),(8439,1107,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8440,1107,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">This is a \\u00a0parable of a farmer who owned an old mule. The mule fell into the farmer\'s well. The farmer heard the mule \'braying\' -- or whatever mules do when they fall into wells. After carefully assessing the situation, the farmer felt sorry for the mule, but decided that neither the mule nor the well was worth saving. Instead, he called his neighbors together and told them what had happened and asked them to help haul dirt to bury the old mule in the well and put him out of his misery.<\\/p><p style=\\\"text-align: justify;\\\">Initially, the old mule was hysterical! But as the farmer and his neighbors continued shoveling and the dirt hit his back, a thought struck him. It suddenly dawned on him that every time a shovel load of dirt landed on his back: he should shake it off and step up! This is what the old mule did, blow after blow. \\\"Shake it off and step up... shake it off and step up... shake it off and step up!\\\" he repeated to encourage himself.<\\/p><p style=\\\"text-align: justify;\\\">No matter how painful the blows, or distressing the situation seemed, the old mule fought \\\"panic\\\" and just kept right on shaking it off and stepping up! You guessed it! It wasn\'t long before the old mule, battered and exhausted, stepped triumphantly over the wall of that well! What seemed like it would bury him, actually end up blessing him. All because of the manner in which he handled his adversity.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8790,1149,'_elementor_template_type','wp-page'),(8791,1149,'_elementor_edit_mode','builder'),(8792,1149,'_elementor_version','3.13.3'),(8793,1149,'_wp_page_template','default'),(8794,1149,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8795,1149,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A man found a cocoon of a butterfly.<br \\/>One day a small opening appeared.<br \\/>He sat and watched the butterfly for several hours<br \\/>as it struggled to squeeze its body through the tiny hole.<br \\/>Then it stopped, as if it couldn\'t go further.<\\/p><p>So the man decided to help the butterfly.<br \\/>He took a pair of scissors and<br \\/>snipped off the remaining bits of cocoon.<br \\/>The butterfly emerged easily but<br \\/>it had a swollen body and shriveled wings.<\\/p><p>The man continued to watch it,<br \\/>expecting that any minute the wings would enlarge<br \\/>and expand enough to support the body,<br \\/>Neither happened!<br \\/>In fact the butterfly spent the rest of its life<br \\/>crawling around.<br \\/>It was never able to fly.<\\/p><p>What the man in his kindness<br \\/>and haste did not understand:<br \\/>The restricting cocoon and the struggle<br \\/>required by the butterfly to get through the opening<br \\/>was a way of forcing the fluid from the body<br \\/>into the wings so that it would be ready<br \\/>for flight once that was achieved.<\\/p><p>Sometimes struggles are exactly<br \\/>what we need in our lives.<br \\/>Going through life with no obstacles would cripple us.<br \\/>We will not be as strong as we could have been<br \\/>and we would never fly.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4460,596,'_elementor_template_type','wp-page'),(4461,596,'_elementor_edit_mode','builder'),(4462,596,'_elementor_version','3.13.2'),(4463,596,'_wp_page_template','default'),(4464,596,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4465,596,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ES NUESTRA VIDA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>En la vida hay personas que nos har\\u00e1n da\\u00f1o y nos causar\\u00e1n dolor,<\\/p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.<\\/p><p>En la vida hay errores que cometeremos,<br \\/>pero debemos aprender de nuestros errores y crecer a partir de ellos.<\\/p><p>En la vida hay remordimientos con los que tendremos que vivir,<br \\/>pero debemos aprender a dejar atr\\u00e1s el pasado y darnos cuenta de que es algo que no podemos cambiar.<\\/p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br \\/>pero debemos aprender a dejar ir y seguir adelante.<\\/p><p>En la vida habr\\u00e1 obst\\u00e1culos que causar\\u00e1n interferencia,<br \\/>pero debemos aprender a superar estos desaf\\u00edos y fortalecernos.<\\/p><p>En la vida hay miedos que nos frenar\\u00e1n de lo que queremos,<br \\/>pero debemos aprender a combatirlos con el coraje de dentro.<\\/p>\",\"align\":\"center\",\"text_color\":\"#121311\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4466,596,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4467,596,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:9:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4475,597,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4477,598,'_elementor_template_type','wp-page'),(4478,598,'_elementor_edit_mode','builder'),(4479,598,'_elementor_version','3.13.2'),(4480,598,'_wp_page_template','default'),(4481,598,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4482,598,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ES NUESTRA VIDA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>En la vida hay personas que nos har\\u00e1n da\\u00f1o y nos causar\\u00e1n dolor,<\\/p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.<\\/p><p>En la vida hay errores que cometeremos,<br \\/>pero debemos aprender de nuestros errores y crecer a partir de ellos.<\\/p><p>En la vida hay remordimientos con los que tendremos que vivir,<br \\/>pero debemos aprender a dejar atr\\u00e1s el pasado y darnos cuenta de que es algo que no podemos cambiar.<\\/p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br \\/>pero debemos aprender a dejar ir y seguir adelante.<\\/p><p>En la vida habr\\u00e1 obst\\u00e1culos que causar\\u00e1n interferencia,<br \\/>pero debemos aprender a superar estos desaf\\u00edos y fortalecernos.<\\/p><p>En la vida hay miedos que nos frenar\\u00e1n de lo que queremos,<br \\/>pero debemos aprender a combatirlos con el coraje de dentro.<\\/p>\",\"align\":\"center\",\"text_color\":\"#121311\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4483,598,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7454,995,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \\\"Who would like this $20 bill?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Hands started going up.<\\/p><p style=\\\"text-align: justify;\\\">He said, \\\"I am going to give this $20 to one of you but first, let me do this.\\\" He proceeded to crumple the dollar bill up.<\\/p><p style=\\\"text-align: justify;\\\">He then asked, \\\"Who still wants it?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Still the hands were up in the air.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Well,\\\" he replied, \\\"What if I do this?\\\" And he dropped it on the ground and started to grind it into the floor with his shoe.<\\/p><p style=\\\"text-align: justify;\\\">He picked it up, now all crumpled and dirty. \\\"Now who still wants it?\\\" Still the hands went into the air.<\\/p><p style=\\\"text-align: justify;\\\">\\\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.<\\/p><p style=\\\"text-align: justify;\\\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.<\\/p><p style=\\\"text-align: justify;\\\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4485,599,'_elementor_template_type','wp-page'),(4486,599,'_elementor_edit_mode','builder'),(4487,599,'_elementor_version','3.13.2'),(4488,599,'_wp_page_template','default'),(4489,599,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4490,599,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"IN OUR LIFE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\" align=\\\"center\\\">In life there are people that will hurt us and cause us pain,<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">but we must learn to forgive and forget and not hold grudges.<\\/p><p style=\\\"text-align: center;\\\">In life there are mistakes we will make,<br \\/>but we must learn from our wrongs and grow from them.<\\/p><p style=\\\"text-align: center;\\\">In life there are regrets we will have to live with,<br \\/>but we must learn to leave the past behind and realize it is something we can\'t change.<\\/p><p style=\\\"text-align: center;\\\">In life there are people we will loose forever and can\'t have back,<br \\/>but we must learn to let go &amp; move on.<\\/p><p style=\\\"text-align: center;\\\">In life there are going to be obstacles that will cause interference,<br \\/>but we must learn to overcome these challenges and grow stronger.<\\/p><p style=\\\"text-align: center;\\\">In life there are fears that will hold us back from what we want,<br \\/>but we must learn to fight them with the courage from within.<\\/p>\",\"align\":\"center\",\"text_color\":\"#121311\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4491,599,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7452,995,'_wp_page_template','default'),(7453,995,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4494,600,'_elementor_template_type','wp-page'),(4495,600,'_elementor_edit_mode','builder'),(4496,600,'_elementor_version','3.13.2'),(4497,600,'_wp_page_template','default'),(4498,600,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4499,600,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOLO UNA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Una canci\\u00f3n puede provocar un momento, un \\u00e1rbol puede comenzar un bosque,<br \\/><br \\/>un p\\u00e1jaro puede anunciar la primavera.<\\/p><p>Una sonrisa comienza una amistad,<br \\/>un apret\\u00f3n de manos levanta un alma.<br \\/>Una estrella puede guiar un barco en el mar, Un voto puede cambiar una naci\\u00f3n, Un rayo de sol ilumina una habitaci\\u00f3n<br \\/>Una vela borra la oscuridad,<br \\/><br \\/><br \\/>Una risa conquistar\\u00e1 la tristeza.<\\/p><p>Un paso debe comenzar cada viaje.<br \\/>Una palabra debe comenzar cada oraci\\u00f3n.<br \\/>Una esperanza elevar\\u00e1 nuestro esp\\u00edritu,<br \\/>un toque puede mostrarte que te importa.<\\/p><p>Una voz puede hablar con sabidur\\u00eda, Un coraz\\u00f3n puede saber lo que es verdad,<\\/p><p>Una vida puede marcar la diferencia, ya ves,<br \\/>\\u00a1depende de ti!<\\/p>\",\"align\":\"center\",\"text_color\":\"#141614\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4500,600,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4501,600,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:9:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4508,601,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4509,602,'_elementor_template_type','wp-page'),(4510,602,'_elementor_edit_mode','builder'),(4511,602,'_elementor_version','3.13.2'),(4512,602,'_wp_page_template','default'),(4513,602,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4514,602,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"SOLO UNA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Una canci\\u00f3n puede provocar un momento, un \\u00e1rbol puede comenzar un bosque,<br \\/><br \\/>un p\\u00e1jaro puede anunciar la primavera.<\\/p><p>Una sonrisa comienza una amistad,<br \\/>un apret\\u00f3n de manos levanta un alma.<br \\/>Una estrella puede guiar un barco en el mar, Un voto puede cambiar una naci\\u00f3n, Un rayo de sol ilumina una habitaci\\u00f3n<br \\/>Una vela borra la oscuridad,<br \\/><br \\/><br \\/>Una risa conquistar\\u00e1 la tristeza.<\\/p><p>Un paso debe comenzar cada viaje.<br \\/>Una palabra debe comenzar cada oraci\\u00f3n.<br \\/>Una esperanza elevar\\u00e1 nuestro esp\\u00edritu,<br \\/>un toque puede mostrarte que te importa.<\\/p><p>Una voz puede hablar con sabidur\\u00eda, Un coraz\\u00f3n puede saber lo que es verdad,<\\/p><p>Una vida puede marcar la diferencia, ya ves,<br \\/>\\u00a1depende de ti!<\\/p>\",\"align\":\"center\",\"text_color\":\"#141614\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4515,602,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4517,603,'_elementor_edit_mode','builder'),(4518,603,'_elementor_version','3.13.2'),(4519,603,'_wp_page_template','default'),(4520,603,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4521,603,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"JUST ONE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">One song can spark a moment,<br \\/>One tree can start a forest,<br \\/>One bird can herald spring.<\\/p><p align=\\\"center\\\">One smile begins a friendship,<br \\/>One handclasp lifts a soul.<br \\/>One star can guide a ship at sea,<br \\/>One vote can change a nation,<br \\/>One sunbeam lights a room<br \\/>One candle wipes out darkness,<br \\/>One laugh will conquer gloom.<\\/p><p align=\\\"center\\\">One step must start each journey.<br \\/>One word must start each prayer.<br \\/>One hope will raise our spirits,<br \\/>One touch can show you care.<\\/p><p align=\\\"center\\\">One voice can speak with wisdom,<br \\/>One heart can know what\'s true,<\\/p><p align=\\\"center\\\">One life can make a difference,<br \\/>You see, it\'s up to you!<\\/p>\",\"align\":\"center\",\"text_color\":\"#141614\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4522,603,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7885,1043,'_elementor_template_type','wp-page'),(7886,1043,'_elementor_edit_mode','builder'),(7887,1043,'_elementor_version','3.13.3'),(7888,1043,'_wp_page_template','default'),(7889,1043,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7890,1043,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"JUST ONE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">One song can spark a moment,<br \\/>One tree can start a forest,<br \\/>One bird can herald spring.<\\/p><p align=\\\"center\\\">One smile begins a friendship,<br \\/>One handclasp lifts a soul.<br \\/>One star can guide a ship at sea,<br \\/>One vote can change a nation,<br \\/>One sunbeam lights a room<br \\/>One candle wipes out darkness,<br \\/>One laugh will conquer gloom.<\\/p><p align=\\\"center\\\">One step must start each journey.<br \\/>One word must start each prayer.<br \\/>One hope will raise our spirits,<br \\/>One touch can show you care.<\\/p><p align=\\\"center\\\">One voice can speak with wisdom,<br \\/>One heart can know what\'s true,<\\/p><p align=\\\"center\\\">One life can make a difference,<br \\/>You see, it\'s up to you!<\\/p>\",\"align\":\"center\",\"text_color\":\"#141614\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4524,604,'_elementor_template_type','wp-page'),(4525,604,'_elementor_edit_mode','builder'),(4526,604,'_elementor_version','3.12.2'),(4527,604,'_wp_page_template','default'),(4528,604,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4529,604,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"MI ZONA DE CONFORT\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sol\\u00eda tener una zona de confort donde sab\\u00eda que no fallar\\u00eda.<br \\/>Las mismas cuatro paredes y el trabajo ocupado eran realmente m\\u00e1s como la c\\u00e1rcel.<\\/p><p>Anhelaba tanto hacer las cosas que nunca hab\\u00eda hecho antes,<br \\/>pero me qued\\u00e9 dentro de mi zona de confort y camin\\u00e9 por el mismo piso de siempre.<\\/p><p>Dec\\u00eda estar tan ocupado con las cosas dentro de la zona,<br \\/>pero en el fondo anhelaba algo especial propio.<\\/p><p>No pod\\u00eda dejar pasar mi vida simplemente viendo ganar a otros.<br \\/>Contuve la respiraci\\u00f3n; Sal\\u00ed y dej\\u00e9 que comenzara el cambio.<br \\/>Di un paso y con nuevas fuerzas que nunca antes hab\\u00eda sentido,<br \\/>me desped\\u00ed de mi zona de confort y cerr\\u00e9 y cerr\\u00e9 la puerta.<\\/p><p>Si est\\u00e1s en una zona de confort, temeroso de aventurarte,<br \\/>recuerda que todos los ganadores estuvieron en alg\\u00fan momento llenos de dudas.<br \\/>Un paso o dos y la fuerza de voluntad pueden hacer realidad tus sue\\u00f1os.<\\/p><p>Alcanza tu futuro con una sonrisa; \\u00a1El \\u00e9xito est\\u00e1 ah\\u00ed para ti!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-4.jpeg\",\"id\":211,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4530,604,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4531,604,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:9:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4538,605,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4539,606,'_elementor_template_type','wp-page'),(4540,606,'_elementor_edit_mode','builder'),(4541,606,'_elementor_version','3.12.2'),(4542,606,'_wp_page_template','default'),(4543,606,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4544,606,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"MI ZONA DE CONFORT\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sol\\u00eda tener una zona de confort donde sab\\u00eda que no fallar\\u00eda.<br \\/>Las mismas cuatro paredes y el trabajo ocupado eran realmente m\\u00e1s como la c\\u00e1rcel.<\\/p><p>Anhelaba tanto hacer las cosas que nunca hab\\u00eda hecho antes,<br \\/>pero me qued\\u00e9 dentro de mi zona de confort y camin\\u00e9 por el mismo piso de siempre.<\\/p><p>Dec\\u00eda estar tan ocupado con las cosas dentro de la zona,<br \\/>pero en el fondo anhelaba algo especial propio.<\\/p><p>No pod\\u00eda dejar pasar mi vida simplemente viendo ganar a otros.<br \\/>Contuve la respiraci\\u00f3n; Sal\\u00ed y dej\\u00e9 que comenzara el cambio.<br \\/>Di un paso y con nuevas fuerzas que nunca antes hab\\u00eda sentido,<br \\/>me desped\\u00ed de mi zona de confort y cerr\\u00e9 y cerr\\u00e9 la puerta.<\\/p><p>Si est\\u00e1s en una zona de confort, temeroso de aventurarte,<br \\/>recuerda que todos los ganadores estuvieron en alg\\u00fan momento llenos de dudas.<br \\/>Un paso o dos y la fuerza de voluntad pueden hacer realidad tus sue\\u00f1os.<\\/p><p>Alcanza tu futuro con una sonrisa; \\u00a1El \\u00e9xito est\\u00e1 ah\\u00ed para ti!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-4.jpeg\",\"id\":211,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4545,606,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4547,607,'_elementor_edit_mode','builder'),(4548,607,'_elementor_version','3.12.2'),(4549,607,'_wp_page_template','default'),(4550,607,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4551,607,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Comfort Zone\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">I used to have a comfort zone where I knew I wouldn\'t fail.<br \\/>The same four walls and busywork were really more like jail.<\\/p><p align=\\\"center\\\">I longed so much to do the things I\'d never done before,<br \\/>But stayed inside my comfort zone and paced the same old floor.<\\/p><p align=\\\"center\\\">I claimed to be so busy with the things inside the zone,<br \\/>But deep inside I longed for something special of my own.<\\/p><p align=\\\"center\\\">I couldn\'t let my life go by just watching others win.<br \\/>I held my breath; I stepped outside and let the change begin.<br \\/>I took a step and with new strength I\'d never felt before,<br \\/>I kissed my comfort zone goodbye and closed and locked the door.<\\/p><p align=\\\"center\\\">If you\'re in a comfort zone, afraid to venture out,<br \\/>Remember that all winners were at one time filled with doubt.<br \\/>A step or two and will power can make your dreams come true.<\\/p><p align=\\\"center\\\">Reach for your future with a smile; success is there for you!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-4.jpeg\",\"id\":211,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4552,607,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7975,1053,'_elementor_template_type','wp-page'),(7976,1053,'_elementor_edit_mode','builder'),(7977,1053,'_elementor_version','3.13.3'),(7978,1053,'_wp_page_template','default'),(7979,1053,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7980,1053,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Comfort Zone\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">I used to have a comfort zone where I knew I wouldn\'t fail.<br \\/>The same four walls and busywork were really more like jail.<\\/p><p align=\\\"center\\\">I longed so much to do the things I\'d never done before,<br \\/>But stayed inside my comfort zone and paced the same old floor.<\\/p><p align=\\\"center\\\">I claimed to be so busy with the things inside the zone,<br \\/>But deep inside I longed for something special of my own.<\\/p><p align=\\\"center\\\">I couldn\'t let my life go by just watching others win.<br \\/>I held my breath; I stepped outside and let the change begin.<br \\/>I took a step and with new strength I\'d never felt before,<br \\/>I kissed my comfort zone goodbye and closed and locked the door.<\\/p><p align=\\\"center\\\">If you\'re in a comfort zone, afraid to venture out,<br \\/>Remember that all winners were at one time filled with doubt.<br \\/>A step or two and will power can make your dreams come true.<\\/p><p align=\\\"center\\\">Reach for your future with a smile; success is there for you!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-4.jpeg\",\"id\":211,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4554,608,'_elementor_template_type','wp-page'),(4555,608,'_elementor_edit_mode','builder'),(4556,608,'_elementor_version','3.12.2'),(4557,608,'_wp_page_template','default'),(4558,608,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4559,608,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"NUESTROS PENSAMIENTOS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mant\\u00e9n tus pensamientos positivos,<\\/p><p>Porque los pensamientos se convierten en tus palabras.<\\/p><p>Mant\\u00e9n tus palabras positivas<\\/p><p>Porque las palabras se convierten en tu acci\\u00f3n.<\\/p><p>Mant\\u00e9n tu acci\\u00f3n positiva<\\/p><p>Porque tu acci\\u00f3n se convierte en tu h\\u00e1bito.<\\/p><p>Mant\\u00e9n tu h\\u00e1bito positivo,<\\/p><p>Porque tu h\\u00e1bito se convierte en tu estilo de vida.<\\/p><p>Mant\\u00e9n tu estilo de vida positivo,<\\/p><p>Porque tu estilo de vida se convierte en tu destino.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-4.jpeg\",\"id\":211,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4560,608,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4561,608,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:9:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4568,609,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4569,610,'_elementor_template_type','wp-page'),(4570,610,'_elementor_edit_mode','builder'),(4571,610,'_elementor_version','3.12.2'),(4572,610,'_wp_page_template','default'),(4573,610,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4574,610,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"NUESTROS PENSAMIENTOS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Mant\\u00e9n tus pensamientos positivos,<\\/p><p>Porque los pensamientos se convierten en tus palabras.<\\/p><p>Mant\\u00e9n tus palabras positivas<\\/p><p>Porque las palabras se convierten en tu acci\\u00f3n.<\\/p><p>Mant\\u00e9n tu acci\\u00f3n positiva<\\/p><p>Porque tu acci\\u00f3n se convierte en tu h\\u00e1bito.<\\/p><p>Mant\\u00e9n tu h\\u00e1bito positivo,<\\/p><p>Porque tu h\\u00e1bito se convierte en tu estilo de vida.<\\/p><p>Mant\\u00e9n tu estilo de vida positivo,<\\/p><p>Porque tu estilo de vida se convierte en tu destino.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-4.jpeg\",\"id\":211,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4575,610,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4576,611,'_elementor_template_type','wp-page'),(4577,611,'_elementor_edit_mode','builder'),(4578,611,'_elementor_version','3.12.2'),(4579,611,'_wp_page_template','default'),(4580,611,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4581,611,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR THOUGHTS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">Keep your thoughts positive,<\\/p><p align=\\\"center\\\">because thoughts become your words.<\\/p><p align=\\\"center\\\">Keep your words positive<\\/p><p align=\\\"center\\\">because words become your action.<\\/p><p align=\\\"center\\\">Keep your action positive<\\/p><p align=\\\"center\\\">Because your action becomes your habit.<\\/p><p align=\\\"center\\\">Keep your habit positive,<\\/p><p align=\\\"center\\\">because your habit becomes your lifestyle.<\\/p><p align=\\\"center\\\">Keep your life style positive,<\\/p><p align=\\\"center\\\">because your life style becomes your destiny.<\\/p><p>.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-4.jpeg\",\"id\":211,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4582,611,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8023,1059,'_elementor_template_type','wp-page'),(8024,1059,'_elementor_edit_mode','builder'),(8025,1059,'_elementor_version','3.13.3'),(8026,1059,'_wp_page_template','default'),(8027,1059,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8028,1059,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR THOUGHTS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">Keep your thoughts positive,<\\/p><p align=\\\"center\\\">because thoughts become your words.<\\/p><p align=\\\"center\\\">Keep your words positive<\\/p><p align=\\\"center\\\">because words become your action.<\\/p><p align=\\\"center\\\">Keep your action positive<\\/p><p align=\\\"center\\\">Because your action becomes your habit.<\\/p><p align=\\\"center\\\">Keep your habit positive,<\\/p><p align=\\\"center\\\">because your habit becomes your lifestyle.<\\/p><p align=\\\"center\\\">Keep your life style positive,<\\/p><p align=\\\"center\\\">because your life style becomes your destiny.<\\/p><p>.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-4.jpeg\",\"id\":211,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4584,612,'_elementor_template_type','wp-page'),(4585,612,'_elementor_edit_mode','builder'),(4586,612,'_elementor_version','3.12.2'),(4587,612,'_wp_page_template','default'),(4588,612,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4589,612,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMETETE A TI MISMO\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>(uno de los poemas motivacionales m\\u00e1s cl\\u00e1sicos)<\\/p><p>Prom\\u00e9tete a ti mismo ser tan fuerte que nada pueda<br \\/>perturbar tu tranquilidad.<\\/p><p>Para hablar de salud, felicidad y prosperidad a<br \\/>cada persona que conozcas.<\\/p><p>Para hacer que todos tus amigos sientan que hay<br \\/>algo en ellos.<\\/p><p>Para mirar el lado soleado de todo y hacer realidad tu<br \\/>optimismo.<\\/p><p>Pensar s\\u00f3lo en lo mejor, trabajar s\\u00f3lo para lo mejor,<br \\/>y esperar s\\u00f3lo lo mejor.<\\/p><p>Estar tan entusiasmado con el \\u00e9xito de los dem\\u00e1s<br \\/>como lo eres con el tuyo propio.<\\/p><p>Olvidar los errores del pasado y presionar sobre los<br \\/>mayores logros del futuro.<\\/p><p>Llevar un semblante alegre en todo momento y dar<br \\/>una sonrisa a cada persona viva que conozcas.<\\/p><p>Dedicar tanto tiempo a la mejora de ti mismo<br \\/>que no tengas tiempo para criticar a los dem\\u00e1s.<\\/p><p>Ser demasiado grande para la preocupaci\\u00f3n, demasiado noble para la ira, y demasiado fuerte para el miedo, y demasiado<br \\/>feliz para permitir la<br \\/>presencia de problemas.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4590,612,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4591,612,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:9:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(7449,995,'_elementor_template_type','wp-page'),(7450,995,'_elementor_edit_mode','builder'),(7451,995,'_elementor_version','3.13.3'),(4599,613,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7448,994,'_elementor_css','a:6:{s:4:\"time\";i:1686273709;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:\"\";}'),(4601,614,'_elementor_template_type','wp-page'),(4602,614,'_elementor_edit_mode','builder'),(4603,614,'_elementor_version','3.12.2'),(4604,614,'_wp_page_template','default'),(4605,614,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4606,614,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMETETE A TI MISMO\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>(uno de los poemas motivacionales m\\u00e1s cl\\u00e1sicos)<\\/p><p>Prom\\u00e9tete a ti mismo ser tan fuerte que nada pueda<br \\/>perturbar tu tranquilidad.<\\/p><p>Para hablar de salud, felicidad y prosperidad a<br \\/>cada persona que conozcas.<\\/p><p>Para hacer que todos tus amigos sientan que hay<br \\/>algo en ellos.<\\/p><p>Para mirar el lado soleado de todo y hacer realidad tu<br \\/>optimismo.<\\/p><p>Pensar s\\u00f3lo en lo mejor, trabajar s\\u00f3lo para lo mejor,<br \\/>y esperar s\\u00f3lo lo mejor.<\\/p><p>Estar tan entusiasmado con el \\u00e9xito de los dem\\u00e1s<br \\/>como lo eres con el tuyo propio.<\\/p><p>Olvidar los errores del pasado y presionar sobre los<br \\/>mayores logros del futuro.<\\/p><p>Llevar un semblante alegre en todo momento y dar<br \\/>una sonrisa a cada persona viva que conozcas.<\\/p><p>Dedicar tanto tiempo a la mejora de ti mismo<br \\/>que no tengas tiempo para criticar a los dem\\u00e1s.<\\/p><p>Ser demasiado grande para la preocupaci\\u00f3n, demasiado noble para la ira, y demasiado fuerte para el miedo, y demasiado<br \\/>feliz para permitir la<br \\/>presencia de problemas.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4607,614,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7447,994,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4609,615,'_elementor_template_type','wp-page'),(4610,615,'_elementor_edit_mode','builder'),(4611,615,'_elementor_version','3.12.2'),(4612,615,'_wp_page_template','default'),(4613,615,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4614,615,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMISE YOURSELF\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">(one the most classic motivational poems)<\\/p><p align=\\\"center\\\">Promise yourself to be so strong that nothing can<br \\/>disturb your peace of mind.<\\/p><p align=\\\"center\\\">To talk health, happiness, and prosperity to<br \\/>every person you meet.<\\/p><p align=\\\"center\\\">To make all your friends feel like there is<br \\/>something in them.<\\/p><p align=\\\"center\\\">To look at the sunny side of everything and make your<br \\/>optimism come true.<\\/p><p align=\\\"center\\\">To think only of the best, to work only for the best,<br \\/>and expect only the best.<\\/p><p align=\\\"center\\\">To be just as enthusiastic about the success of others<br \\/>as you are about your own.<\\/p><p align=\\\"center\\\">To forget the mistakes of the past and press on the<br \\/>greater achievements of the future.<\\/p><p align=\\\"center\\\">To wear a cheerful countenance at all times and give<br \\/>every living person you meet a smile.<\\/p><p align=\\\"center\\\">To give so much time to the improvement of yourself<br \\/>that you have no time to criticize others.<\\/p><p align=\\\"center\\\">To be too large for worry, too noble for anger, and too<br \\/>strong for fear, and too happy to permit the<br \\/>presence of trouble.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4615,615,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4618,616,'_elementor_template_type','wp-page'),(4619,616,'_elementor_edit_mode','builder'),(4620,616,'_elementor_version','3.12.2'),(4621,616,'_wp_page_template','default'),(4622,616,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4623,616,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMETETE A TI MISMO, AHORA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>De todas las cosas que puedes hacer,<\\/p><p>Prom\\u00e9tete a ti mismo que lo intentar\\u00e1s.<\\/p><p>Ni siquiera importa si ganas,<\\/p><p>siempre y cuando lo solicites.<\\/p><p>Nadie puede pedirte nada excepto a ti mismo.<\\/p><p>Si no quieres hacer un movimiento,<\\/p><p>Eres t\\u00fa quien se quedar\\u00e1 fuera.<\\/p><p>As\\u00ed que no te permitas perderte cosas importantes.<\\/p><p>Puede que no sientas que son dignos,<\\/p><p>Sin embargo, pueden llegar a ser tus alas.<\\/p><p>Las experiencias nos hacen completos,<\\/p><p>y hacer que la vida se sienta plena.<\\/p><p>Y cuando llega el momento de mirar hacia atr\\u00e1s,<\\/p><p>No te dejes sentir inexperto.<\\/p><p>As\\u00ed que no te permitas parar,<\\/p><p>sin raz\\u00f3n aparente.<\\/p><p>Prom\\u00e9tete a ti mismo que lo intentar\\u00e1s,<\\/p><p>y enfr\\u00e9ntate a cualquier temporada.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4624,616,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4625,616,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:9:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4632,617,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4633,618,'_elementor_template_type','wp-page'),(4634,618,'_elementor_edit_mode','builder'),(4635,618,'_elementor_version','3.12.2'),(4636,618,'_wp_page_template','default'),(4637,618,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4638,618,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMETETE A TI MISMO, AHORA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>De todas las cosas que puedes hacer,<\\/p><p>Prom\\u00e9tete a ti mismo que lo intentar\\u00e1s.<\\/p><p>Ni siquiera importa si ganas,<\\/p><p>siempre y cuando lo solicites.<\\/p><p>Nadie puede pedirte nada excepto a ti mismo.<\\/p><p>Si no quieres hacer un movimiento,<\\/p><p>Eres t\\u00fa quien se quedar\\u00e1 fuera.<\\/p><p>As\\u00ed que no te permitas perderte cosas importantes.<\\/p><p>Puede que no sientas que son dignos,<\\/p><p>Sin embargo, pueden llegar a ser tus alas.<\\/p><p>Las experiencias nos hacen completos,<\\/p><p>y hacer que la vida se sienta plena.<\\/p><p>Y cuando llega el momento de mirar hacia atr\\u00e1s,<\\/p><p>No te dejes sentir inexperto.<\\/p><p>As\\u00ed que no te permitas parar,<\\/p><p>sin raz\\u00f3n aparente.<\\/p><p>Prom\\u00e9tete a ti mismo que lo intentar\\u00e1s,<\\/p><p>y enfr\\u00e9ntate a cualquier temporada.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4639,618,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4640,619,'_elementor_template_type','wp-page'),(4641,619,'_elementor_edit_mode','builder'),(4642,619,'_elementor_version','3.12.2'),(4643,619,'_wp_page_template','default'),(4644,619,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4645,619,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMISE YOURSELF -NOW\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">Of all the things you can do,<\\/p><p align=\\\"center\\\">promise yourself you will try.<\\/p><p align=\\\"center\\\">It doesn\'t even matter if you win,<\\/p><p align=\\\"center\\\">as long as you apply.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">No one can ask anything of you except yourself.<\\/p><p align=\\\"center\\\">If you don\'t want to make a move,<\\/p><p align=\\\"center\\\">it\'s you who\'ll be left out.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">So don\'t allow yourself to miss out on important things.<\\/p><p align=\\\"center\\\">You may not feel that they are worthy,<\\/p><p align=\\\"center\\\">yet they can turn out to be your wings.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">Experiences make us whole,<\\/p><p align=\\\"center\\\">and make life feel fulfilled.<\\/p><p align=\\\"center\\\">And when it\'s time to look back,<\\/p><p align=\\\"center\\\">don\'t let yourself feel unskilled.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">So don\'t allow yourself to stop,<\\/p><p align=\\\"center\\\">for no apparent reason.<\\/p><p align=\\\"center\\\">Promise yourself you will try,<\\/p><p align=\\\"center\\\">and take on any season.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4646,619,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8075,1065,'_elementor_template_type','wp-page'),(8076,1065,'_elementor_edit_mode','builder'),(8077,1065,'_elementor_version','3.13.3'),(8078,1065,'_wp_page_template','default'),(8079,1065,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8080,1065,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMISE YOURSELF -NOW\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">Of all the things you can do,<\\/p><p align=\\\"center\\\">promise yourself you will try.<\\/p><p align=\\\"center\\\">It doesn\'t even matter if you win,<\\/p><p align=\\\"center\\\">as long as you apply.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">No one can ask anything of you except yourself.<\\/p><p align=\\\"center\\\">If you don\'t want to make a move,<\\/p><p align=\\\"center\\\">it\'s you who\'ll be left out.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">So don\'t allow yourself to miss out on important things.<\\/p><p align=\\\"center\\\">You may not feel that they are worthy,<\\/p><p align=\\\"center\\\">yet they can turn out to be your wings.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">Experiences make us whole,<\\/p><p align=\\\"center\\\">and make life feel fulfilled.<\\/p><p align=\\\"center\\\">And when it\'s time to look back,<\\/p><p align=\\\"center\\\">don\'t let yourself feel unskilled.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">So don\'t allow yourself to stop,<\\/p><p align=\\\"center\\\">for no apparent reason.<\\/p><p align=\\\"center\\\">Promise yourself you will try,<\\/p><p align=\\\"center\\\">and take on any season.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4648,620,'_elementor_template_type','wp-page'),(4649,620,'_elementor_edit_mode','builder'),(4650,620,'_elementor_version','3.12.2'),(4651,620,'_wp_page_template','default'),(4652,620,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4653,620,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMIENCE DONDE SE ENCUENTRA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Por Berton Braley<\\/p><p>Comienza donde est\\u00e1s parado y no te preocupes por el pasado, El pasado no te ayudar\\u00e1 a comenzar de nuevo, Si lo has dejado todo atr\\u00e1s por fin<br \\/>Por qu\\u00e9, eso es suficiente, has terminado con eso,<br \\/><br \\/>has terminado;<br \\/>Este es otro cap\\u00edtulo del libro, Esta es otra carrera que has planeado, No mires hacia atr\\u00e1s los d\\u00edas desaparecidos,<br \\/><br \\/><br \\/>Comienza donde est\\u00e1s parado.<\\/p><p>Al mundo no le importar\\u00e1n tus viejas derrotas<br \\/>Si puedes comenzar de nuevo y ganar el \\u00e9xito;<br \\/>El futuro es tu tiempo, y el tiempo es flota<br \\/>Y hay mucho trabajo, tensi\\u00f3n y estr\\u00e9s;<br \\/>Olv\\u00eddate de los males enterrados y las desesperaciones muertas, Aqu\\u00ed hay una nueva prueba a la mano, El futuro es para el que hace y se atreve,<br \\/><br \\/><br \\/>Comienza donde est\\u00e1s parado.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4654,620,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4655,620,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:9:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4662,621,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4663,622,'_elementor_template_type','wp-page'),(4664,622,'_elementor_edit_mode','builder'),(4665,622,'_elementor_version','3.12.2'),(4666,622,'_wp_page_template','default'),(4667,622,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4668,622,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"COMIENCE DONDE SE ENCUENTRA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Por Berton Braley<\\/p><p>Comienza donde est\\u00e1s parado y no te preocupes por el pasado, El pasado no te ayudar\\u00e1 a comenzar de nuevo, Si lo has dejado todo atr\\u00e1s por fin<br \\/>Por qu\\u00e9, eso es suficiente, has terminado con eso,<br \\/><br \\/>has terminado;<br \\/>Este es otro cap\\u00edtulo del libro, Esta es otra carrera que has planeado, No mires hacia atr\\u00e1s los d\\u00edas desaparecidos,<br \\/><br \\/><br \\/>Comienza donde est\\u00e1s parado.<\\/p><p>Al mundo no le importar\\u00e1n tus viejas derrotas<br \\/>Si puedes comenzar de nuevo y ganar el \\u00e9xito;<br \\/>El futuro es tu tiempo, y el tiempo es flota<br \\/>Y hay mucho trabajo, tensi\\u00f3n y estr\\u00e9s;<br \\/>Olv\\u00eddate de los males enterrados y las desesperaciones muertas, Aqu\\u00ed hay una nueva prueba a la mano, El futuro es para el que hace y se atreve,<br \\/><br \\/><br \\/>Comienza donde est\\u00e1s parado.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4669,622,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4671,623,'_elementor_edit_mode','builder'),(4672,623,'_elementor_version','3.12.2'),(4673,623,'_wp_page_template','default'),(4674,623,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4675,623,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"START WHERE YOU STAND\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">By Berton Braley<\\/p><p align=\\\"center\\\">Start where you stand and never mind the past,<br \\/>The past won\'t help you in beginning new,<br \\/>If you have left it all behind at last<br \\/>Why, that\'s enough, you\'re done with it, you\'re through;<br \\/>This is another chapter in the book,<br \\/>This is another race that you have planned,<br \\/>Don\'t give the vanished days a backward look,<br \\/>Start where you stand.<\\/p><p align=\\\"center\\\">The world won\'t care about your old defeats<br \\/>If you can start anew and win success;<br \\/>The future is your time, and time is fleet<br \\/>And there is much of work and strain and stress;<br \\/>Forget the buried woes and dead despairs,<br \\/>Here is a brand-new trial right at hand,<br \\/>The future is for him who does and dares,<br \\/>Start where you stand.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4676,623,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8101,1068,'_elementor_template_type','wp-page'),(8102,1068,'_elementor_edit_mode','builder'),(8103,1068,'_elementor_version','3.13.3'),(8104,1068,'_wp_page_template','default'),(8105,1068,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8106,1068,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"START WHERE YOU STAND\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">By Berton Braley<\\/p><p align=\\\"center\\\">Start where you stand and never mind the past,<br \\/>The past won\'t help you in beginning new,<br \\/>If you have left it all behind at last<br \\/>Why, that\'s enough, you\'re done with it, you\'re through;<br \\/>This is another chapter in the book,<br \\/>This is another race that you have planned,<br \\/>Don\'t give the vanished days a backward look,<br \\/>Start where you stand.<\\/p><p align=\\\"center\\\">The world won\'t care about your old defeats<br \\/>If you can start anew and win success;<br \\/>The future is your time, and time is fleet<br \\/>And there is much of work and strain and stress;<br \\/>Forget the buried woes and dead despairs,<br \\/>Here is a brand-new trial right at hand,<br \\/>The future is for him who does and dares,<br \\/>Start where you stand.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4678,624,'_elementor_template_type','wp-page'),(4679,624,'_elementor_edit_mode','builder'),(4680,624,'_elementor_version','3.12.2'),(4681,624,'_wp_page_template','default'),(4682,624,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4683,624,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOY\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hoy he decidido,<\\/p><p>que es hora de tomar el control.<\\/p><p>No habr\\u00e1 m\\u00e1s sentado,<\\/p><p>Y esperando, este es mi objetivo.<\\/p><p>Hoy lo veo tan claramente,<\\/p><p>Soy todo lo que tengo.<\\/p><p>Si quiero hacer algo,<\\/p><p>Depende de m\\u00ed allanar mi propio camino.<\\/p><p>Hoy voy a establecer mi meta,<\\/p><p>y trabajar para llevarlo a cabo.<\\/p><p>Estoy cansado de tener miedo,<\\/p><p>Es hora de que mis sue\\u00f1os se hagan realidad.<\\/p><p>Hoy estoy bastante feliz.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4684,624,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4685,624,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:9:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4692,625,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4693,626,'_elementor_template_type','wp-page'),(4694,626,'_elementor_edit_mode','builder'),(4695,626,'_elementor_version','3.12.2'),(4696,626,'_wp_page_template','default'),(4697,626,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4698,626,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOY\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hoy he decidido,<\\/p><p>que es hora de tomar el control.<\\/p><p>No habr\\u00e1 m\\u00e1s sentado,<\\/p><p>Y esperando, este es mi objetivo.<\\/p><p>Hoy lo veo tan claramente,<\\/p><p>Soy todo lo que tengo.<\\/p><p>Si quiero hacer algo,<\\/p><p>Depende de m\\u00ed allanar mi propio camino.<\\/p><p>Hoy voy a establecer mi meta,<\\/p><p>y trabajar para llevarlo a cabo.<\\/p><p>Estoy cansado de tener miedo,<\\/p><p>Es hora de que mis sue\\u00f1os se hagan realidad.<\\/p><p>Hoy estoy bastante feliz.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4699,626,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4700,627,'_elementor_template_type','wp-page'),(4701,627,'_elementor_edit_mode','builder'),(4702,627,'_elementor_version','3.12.2'),(4703,627,'_wp_page_template','default'),(4704,627,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4705,627,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODAY I\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">Today I have decided,<\\/p><p align=\\\"center\\\">that it\'s time to take control.<\\/p><p align=\\\"center\\\">There won\'t be anymore sitting,<\\/p><p align=\\\"center\\\">and waiting, this is my goal.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">Today I see it so clearly,<\\/p><p align=\\\"center\\\">I am all that I have.<\\/p><p align=\\\"center\\\">If I want to get something done,<\\/p><p align=\\\"center\\\">it\'s up to me to pave my own path.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">Today I will set my goal,<\\/p><p align=\\\"center\\\">and work to see it through.<\\/p><p align=\\\"center\\\">I\'m tired of being afraid,<\\/p><p align=\\\"center\\\">it\'s time for my dreams to come true.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">Today I am quite happy,<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4706,627,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8127,1071,'_elementor_template_type','wp-page'),(8128,1071,'_elementor_edit_mode','builder'),(8129,1071,'_elementor_version','3.13.3'),(8130,1071,'_wp_page_template','default'),(8131,1071,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8132,1071,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODAY I\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">Today I have decided,<\\/p><p align=\\\"center\\\">that it\'s time to take control.<\\/p><p align=\\\"center\\\">There won\'t be anymore sitting,<\\/p><p align=\\\"center\\\">and waiting, this is my goal.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">Today I see it so clearly,<\\/p><p align=\\\"center\\\">I am all that I have.<\\/p><p align=\\\"center\\\">If I want to get something done,<\\/p><p align=\\\"center\\\">it\'s up to me to pave my own path.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">Today I will set my goal,<\\/p><p align=\\\"center\\\">and work to see it through.<\\/p><p align=\\\"center\\\">I\'m tired of being afraid,<\\/p><p align=\\\"center\\\">it\'s time for my dreams to come true.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">Today I am quite happy,<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4708,628,'_elementor_template_type','wp-page'),(4709,628,'_elementor_edit_mode','builder'),(4710,628,'_elementor_version','3.12.2'),(4711,628,'_wp_page_template','default'),(4712,628,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4713,628,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOS SUE\\u00d1OS DE HOY SON LOS EXITOS DE MA\\u00d1ANA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>No tengas miedo de grandes esperanzas<br \\/>o planes que parecen estar fuera de tu alcance.<br \\/>La vida est\\u00e1 destinada a ser experimentada,<br \\/>y cada situaci\\u00f3n permite el<br \\/>aprendizaje y el crecimiento.<\\/p><p>La motivaci\\u00f3n es un punto de partida positivo,<br \\/>y la acci\\u00f3n te coloca en un camino hacia adelante.<br \\/>Un sue\\u00f1o es un plano<br \\/>de una meta a\\u00fan no alcanzada;<br \\/>La \\u00fanica diferencia entre los dos<br \\/>es el esfuerzo involucrado en lograr<br \\/>lo que esperas lograr.<\\/p><p>Deja que tu mente y tu coraz\\u00f3n te impulsen;<br \\/>Permite que el poder de tu voluntad<br \\/>te lleve a tu destino.<\\/p><p>No cuentes los pasos por delante;<br \\/>Simplemente suma el total<br \\/>de pasos ya cubiertos, y multipl\\u00edcalo por<br \\/>fe,<br \\/>confianza y resistencia.<\\/p><p>Recuerde siempre que para aquellos que<br \\/>persisten,<br \\/>los sue\\u00f1os de hoy se transforman<br \\/>en \\u00e9xitos de ma\\u00f1ana.<\\/p><p>~ Kelly D. Caron ~<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4714,628,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4715,628,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:9:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4722,629,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4723,630,'_elementor_template_type','wp-page'),(4724,630,'_elementor_edit_mode','builder'),(4725,630,'_elementor_version','3.12.2'),(4726,630,'_wp_page_template','default'),(4727,630,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4728,630,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOS SUE\\u00d1OS DE HOY SON LOS EXITOS DE MA\\u00d1ANA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>No tengas miedo de grandes esperanzas<br \\/>o planes que parecen estar fuera de tu alcance.<br \\/>La vida est\\u00e1 destinada a ser experimentada,<br \\/>y cada situaci\\u00f3n permite el<br \\/>aprendizaje y el crecimiento.<\\/p><p>La motivaci\\u00f3n es un punto de partida positivo,<br \\/>y la acci\\u00f3n te coloca en un camino hacia adelante.<br \\/>Un sue\\u00f1o es un plano<br \\/>de una meta a\\u00fan no alcanzada;<br \\/>La \\u00fanica diferencia entre los dos<br \\/>es el esfuerzo involucrado en lograr<br \\/>lo que esperas lograr.<\\/p><p>Deja que tu mente y tu coraz\\u00f3n te impulsen;<br \\/>Permite que el poder de tu voluntad<br \\/>te lleve a tu destino.<\\/p><p>No cuentes los pasos por delante;<br \\/>Simplemente suma el total<br \\/>de pasos ya cubiertos, y multipl\\u00edcalo por<br \\/>fe,<br \\/>confianza y resistencia.<\\/p><p>Recuerde siempre que para aquellos que<br \\/>persisten,<br \\/>los sue\\u00f1os de hoy se transforman<br \\/>en \\u00e9xitos de ma\\u00f1ana.<\\/p><p>~ Kelly D. Caron ~<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4729,630,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4730,631,'_elementor_template_type','wp-page'),(4731,631,'_elementor_edit_mode','builder'),(4732,631,'_elementor_version','3.12.2'),(4733,631,'_wp_page_template','default'),(4734,631,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4735,631,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODAY\'S DREAMS ARE TOMORROW\'S SUCCESSES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>No tengas miedo de grandes esperanzas<br \\/>o planes que parecen estar fuera de tu alcance.<br \\/>La vida est\\u00e1 destinada a ser experimentada,<br \\/>y cada situaci\\u00f3n permite el<br \\/>aprendizaje y el crecimiento.<\\/p><p>La motivaci\\u00f3n es un punto de partida positivo,<br \\/>y la acci\\u00f3n te coloca en un camino hacia adelante.<br \\/>Un sue\\u00f1o es un plano<br \\/>de una meta a\\u00fan no alcanzada;<br \\/>La \\u00fanica diferencia entre los dos<br \\/>es el esfuerzo involucrado en lograr<br \\/>lo que esperas lograr.<\\/p><p>Deja que tu mente y tu coraz\\u00f3n te impulsen;<br \\/>Permite que el poder de tu voluntad<br \\/>te lleve a tu destino.<\\/p><p>No cuentes los pasos por delante;<br \\/>Simplemente suma el total<br \\/>de pasos ya cubiertos, y multipl\\u00edcalo por<br \\/>fe,<br \\/>confianza y resistencia.<\\/p><p>Recuerde siempre que para aquellos que<br \\/>persisten,<br \\/>los sue\\u00f1os de hoy se transforman<br \\/>en \\u00e9xitos de ma\\u00f1ana.<\\/p><p>~ Kelly D. Caron ~<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4736,631,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4738,632,'_elementor_template_type','wp-page'),(4739,632,'_elementor_edit_mode','builder'),(4740,632,'_elementor_version','3.13.3'),(4741,632,'_wp_page_template','default'),(4742,632,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4743,632,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODAY\'S DREAMS ARE TOMORROW\'S SUCCESSES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>No tengas miedo de grandes esperanzas<br \\/>o planes que parecen estar fuera de tu alcance.<br \\/>La vida est\\u00e1 destinada a ser experimentada,<br \\/>y cada situaci\\u00f3n permite el<br \\/>aprendizaje y el crecimiento.<\\/p><p>La motivaci\\u00f3n es un punto de partida positivo,<br \\/>y la acci\\u00f3n te coloca en un camino hacia adelante.<br \\/>Un sue\\u00f1o es un plano<br \\/>de una meta a\\u00fan no alcanzada;<br \\/>La \\u00fanica diferencia entre los dos<br \\/>es el esfuerzo involucrado en lograr<br \\/>lo que esperas lograr.<\\/p><p>Deja que tu mente y tu coraz\\u00f3n te impulsen;<br \\/>Permite que el poder de tu voluntad<br \\/>te lleve a tu destino.<\\/p><p>No cuentes los pasos por delante;<br \\/>Simplemente suma el total<br \\/>de pasos ya cubiertos, y multipl\\u00edcalo por<br \\/>fe,<br \\/>confianza y resistencia.<\\/p><p>Recuerde siempre que para aquellos que<br \\/>persisten,<br \\/>los sue\\u00f1os de hoy se transforman<br \\/>en \\u00e9xitos de ma\\u00f1ana.<\\/p><p>~ Kelly D. Caron ~<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4744,632,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4745,633,'_elementor_template_type','wp-page'),(4746,633,'_elementor_edit_mode','builder'),(4747,633,'_elementor_version','3.13.3'),(4748,633,'_wp_page_template','default'),(4749,633,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4750,633,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODAY\'S DREAMS ARE TOMORROW\'S SUCCESSES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>No tengas miedo de grandes esperanzas<br \\/>o planes que parecen estar fuera de tu alcance.<br \\/>La vida est\\u00e1 destinada a ser experimentada,<br \\/>y cada situaci\\u00f3n permite el<br \\/>aprendizaje y el crecimiento.<\\/p><p>La motivaci\\u00f3n es un punto de partida positivo,<br \\/>y la acci\\u00f3n te coloca en un camino hacia adelante.<br \\/>Un sue\\u00f1o es un plano<br \\/>de una meta a\\u00fan no alcanzada;<br \\/>La \\u00fanica diferencia entre los dos<br \\/>es el esfuerzo involucrado en lograr<br \\/>lo que esperas lograr.<\\/p><p>Deja que tu mente y tu coraz\\u00f3n te impulsen;<br \\/>Permite que el poder de tu voluntad<br \\/>te lleve a tu destino.<\\/p><p>No cuentes los pasos por delante;<br \\/>Simplemente suma el total<br \\/>de pasos ya cubiertos, y multipl\\u00edcalo por<br \\/>fe,<br \\/>confianza y resistencia.<\\/p><p>Recuerde siempre que para aquellos que<br \\/>persisten,<br \\/>los sue\\u00f1os de hoy se transforman<br \\/>en \\u00e9xitos de ma\\u00f1ana.<\\/p><p>~ Kelly D. Caron ~<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4751,633,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4752,634,'_elementor_template_type','wp-page'),(4753,634,'_elementor_edit_mode','builder'),(4754,634,'_elementor_version','3.13.3'),(4755,634,'_wp_page_template','default'),(4756,634,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4757,634,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODAY\'S DREAMS ARE TOMORROW\'S SUCCESSES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">Don\'t be afraid of high hopes<br \\/>or plans that seem to be out of reach.<br \\/>Life is meant to be experienced,<br \\/>and every situation allows for<br \\/>learning and growth.<\\/p><p align=\\\"center\\\">Motivation is a positive starting point,<br \\/>and action places you on a forward path.<br \\/>A dream is a blueprint<br \\/>of a goal not yet achieved;<br \\/>the only difference between the two<br \\/>is the effort involved in attaining<br \\/>what you hope to accomplish.<\\/p><p align=\\\"center\\\">Let your mind and heart urge you on;<br \\/>allow the power of your will<br \\/>to lead you to your destination.<\\/p><p align=\\\"center\\\">Don\'t count the steps ahead;<br \\/>just add up the total<br \\/>of steps already covered,<br \\/>and multiply it by<br \\/>faith, confidence, and endurance.<\\/p><p align=\\\"center\\\">Always remember that<br \\/>for those who persist,<br \\/>today\'s dreams are transformed<br \\/>into tomorrow\'s successes.<\\/p><p align=\\\"center\\\">~ Kelly D. Caron ~<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4758,634,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8179,1077,'_elementor_template_type','wp-page'),(8180,1077,'_elementor_edit_mode','builder'),(8181,1077,'_elementor_version','3.13.3'),(8182,1077,'_wp_page_template','default'),(8183,1077,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8184,1077,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODAY\'S DREAMS ARE TOMORROW\'S SUCCESSES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">Don\'t be afraid of high hopes<br \\/>or plans that seem to be out of reach.<br \\/>Life is meant to be experienced,<br \\/>and every situation allows for<br \\/>learning and growth.<\\/p><p align=\\\"center\\\">Motivation is a positive starting point,<br \\/>and action places you on a forward path.<br \\/>A dream is a blueprint<br \\/>of a goal not yet achieved;<br \\/>the only difference between the two<br \\/>is the effort involved in attaining<br \\/>what you hope to accomplish.<\\/p><p align=\\\"center\\\">Let your mind and heart urge you on;<br \\/>allow the power of your will<br \\/>to lead you to your destination.<\\/p><p align=\\\"center\\\">Don\'t count the steps ahead;<br \\/>just add up the total<br \\/>of steps already covered,<br \\/>and multiply it by<br \\/>faith, confidence, and endurance.<\\/p><p align=\\\"center\\\">Always remember that<br \\/>for those who persist,<br \\/>today\'s dreams are transformed<br \\/>into tomorrow\'s successes.<\\/p><p align=\\\"center\\\">~ Kelly D. Caron ~<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4760,635,'_elementor_template_type','wp-page'),(4761,635,'_elementor_edit_mode','builder'),(4762,635,'_elementor_version','3.12.2'),(4763,635,'_wp_page_template','default'),(4764,635,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4765,635,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a1DENTRO DE TI ESTA LA FUERZA PARA ENFRENTAR LOS DESAFIOS DE LA VIDA!\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Eres m\\u00e1s fuerte de lo que piensas,<br \\/>recuerda mantenerte erguido.<\\/p><p>Cada desaf\\u00edo en tu vida<br \\/>te ayuda a crecer.<\\/p><p>Cada problema que encuentras<br \\/>fortalece tu mente y tu alma.<\\/p><p>Cada problema que superas<br \\/>aumenta tu comprensi\\u00f3n de la vida.<\\/p><p>Cuando todos tus problemas pesen<br \\/>mucho sobre tus hombros, recuerda que debajo de la carga<br \\/>puedes mantenerte erguido,<br \\/><br \\/>porque nunca se te da<br \\/>m\\u00e1s de lo que puedes manejar ...<br \\/>y eres m\\u00e1s fuerte de lo que piensas.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-9.jpeg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4766,635,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4767,635,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:9:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4774,636,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4775,637,'_elementor_template_type','wp-page'),(4776,637,'_elementor_edit_mode','builder'),(4777,637,'_elementor_version','3.12.2'),(4778,637,'_wp_page_template','default'),(4779,637,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4780,637,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a1DENTRO DE TI ESTA LA FUERZA PARA ENFRENTAR LOS DESAFIOS DE LA VIDA!\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Eres m\\u00e1s fuerte de lo que piensas,<br \\/>recuerda mantenerte erguido.<\\/p><p>Cada desaf\\u00edo en tu vida<br \\/>te ayuda a crecer.<\\/p><p>Cada problema que encuentras<br \\/>fortalece tu mente y tu alma.<\\/p><p>Cada problema que superas<br \\/>aumenta tu comprensi\\u00f3n de la vida.<\\/p><p>Cuando todos tus problemas pesen<br \\/>mucho sobre tus hombros, recuerda que debajo de la carga<br \\/>puedes mantenerte erguido,<br \\/><br \\/>porque nunca se te da<br \\/>m\\u00e1s de lo que puedes manejar ...<br \\/>y eres m\\u00e1s fuerte de lo que piensas.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-9.jpeg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4781,637,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4782,638,'_elementor_template_type','wp-page'),(4783,638,'_elementor_edit_mode','builder'),(4784,638,'_elementor_version','3.12.2'),(4785,638,'_wp_page_template','default'),(4786,638,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4787,638,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WITHIN YOU IS THE STENGHT TO MEET TO MEET LIFE\'S CHALLENGES !\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">You are stronger than you think,<br \\/>remember to stand tall.<\\/p><p align=\\\"center\\\">Every challenge in your life<br \\/>helps you to grow.<\\/p><p align=\\\"center\\\">Every problem you encounter<br \\/>strengthens your mind and your soul.<\\/p><p align=\\\"center\\\">Every trouble you overcome<br \\/>increases your understanding of life.<\\/p><p align=\\\"center\\\">When all your troubles weigh<br \\/>heavily on your shoulders,<br \\/>remember that beneath the burden<br \\/>you can stand tall,<br \\/>because you are never given<br \\/>more than you can handle...<br \\/>and you are stronger than you think<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-9.jpeg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4788,638,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8205,1080,'_elementor_template_type','wp-page'),(8206,1080,'_elementor_edit_mode','builder'),(8207,1080,'_elementor_version','3.13.3'),(8208,1080,'_wp_page_template','default'),(8209,1080,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8210,1080,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WITHIN YOU IS THE STENGHT TO MEET TO MEET LIFE\'S CHALLENGES !\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">You are stronger than you think,<br \\/>remember to stand tall.<\\/p><p align=\\\"center\\\">Every challenge in your life<br \\/>helps you to grow.<\\/p><p align=\\\"center\\\">Every problem you encounter<br \\/>strengthens your mind and your soul.<\\/p><p align=\\\"center\\\">Every trouble you overcome<br \\/>increases your understanding of life.<\\/p><p align=\\\"center\\\">When all your troubles weigh<br \\/>heavily on your shoulders,<br \\/>remember that beneath the burden<br \\/>you can stand tall,<br \\/>because you are never given<br \\/>more than you can handle...<br \\/>and you are stronger than you think<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-9.jpeg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4791,639,'_elementor_template_type','wp-page'),(4792,639,'_elementor_edit_mode','builder'),(4793,639,'_elementor_version','3.12.2'),(4794,639,'_wp_page_template','default'),(4795,639,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4796,639,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TU POSEES LA ENERGIA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lo semejante atrae a lo semejante.<\\/p><p>Si te sientes derrotado, lo ser\\u00e1s.<\\/p><p>Si est\\u00e1s cansado, perder\\u00e1s impulso.<\\/p><p>Si eres de enfoque alegre, lo negativo no tendr\\u00e1 m\\u00e1s remedio que retroceder.<\\/p><p>Decide re\\u00edr ante la adversidad.<\\/p><p>Sepa que es lo suficientemente poderoso como para superar toda dificultad.<\\/p><p>No dejes que tus pensamientos divaguen.<\\/p><p>S\\u00e9 poderoso.<\\/p><p>Con\\u00f3cete a ti mismo.<\\/p><p>Decide tener el control de tu realidad.<\\/p><p>No hay v\\u00edctimas, excepto aquellos que han renunciado a su poder.<\\/p><p>Posees la energ\\u00eda, creas y tomas el control de tu destino<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4797,639,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4798,639,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:9:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(4805,640,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4806,641,'_elementor_template_type','wp-page'),(4807,641,'_elementor_edit_mode','builder'),(4808,641,'_elementor_version','3.12.2'),(4809,641,'_wp_page_template','default'),(4810,641,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4811,641,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TU POSEES LA ENERGIA\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lo semejante atrae a lo semejante.<\\/p><p>Si te sientes derrotado, lo ser\\u00e1s.<\\/p><p>Si est\\u00e1s cansado, perder\\u00e1s impulso.<\\/p><p>Si eres de enfoque alegre, lo negativo no tendr\\u00e1 m\\u00e1s remedio que retroceder.<\\/p><p>Decide re\\u00edr ante la adversidad.<\\/p><p>Sepa que es lo suficientemente poderoso como para superar toda dificultad.<\\/p><p>No dejes que tus pensamientos divaguen.<\\/p><p>S\\u00e9 poderoso.<\\/p><p>Con\\u00f3cete a ti mismo.<\\/p><p>Decide tener el control de tu realidad.<\\/p><p>No hay v\\u00edctimas, excepto aquellos que han renunciado a su poder.<\\/p><p>Posees la energ\\u00eda, creas y tomas el control de tu destino<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4812,641,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(4813,642,'_elementor_template_type','wp-page'),(4814,642,'_elementor_edit_mode','builder'),(4815,642,'_elementor_version','3.12.2'),(4816,642,'_wp_page_template','default'),(4817,642,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4818,642,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"YOU POSSESS TEHE ENERGY\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\" align=\\\"center\\\">Like attracts like.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">If you feel defeated, you will be.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">If you are weary, you will lose momentum.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">If you are of joyful focus, the negative will have no choice but to recede.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">Decide to laugh in the face of adversity.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">Know you are powerful enough to supersede all difficulty.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">Do not let your thoughts wander.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">Be powerful.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">Know yourself.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">\\u00a0Decide to be in control of your reality.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">There are no victims except those who have given up their power.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">You possess the energy, create and take control of your destiny<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4819,642,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8153,1074,'_elementor_template_type','wp-page'),(8154,1074,'_elementor_edit_mode','builder'),(8155,1074,'_elementor_version','3.13.3'),(8156,1074,'_wp_page_template','default'),(8157,1074,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8158,1074,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"YOU POSSESS TEHE ENERGY\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\" align=\\\"center\\\">Like attracts like.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">If you feel defeated, you will be.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">If you are weary, you will lose momentum.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">If you are of joyful focus, the negative will have no choice but to recede.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">Decide to laugh in the face of adversity.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">Know you are powerful enough to supersede all difficulty.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">Do not let your thoughts wander.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">Be powerful.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">Know yourself.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">\\u00a0Decide to be in control of your reality.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">There are no victims except those who have given up their power.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">You possess the energy, create and take control of your destiny<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4822,643,'_elementor_template_type','wp-page'),(4823,643,'_elementor_edit_mode','builder'),(4824,643,'_elementor_version','3.12.2'),(4825,643,'_wp_page_template','default'),(4826,643,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4827,643,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4828,643,'_elementor_page_assets','a:0:{}'),(4829,643,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:28;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:28;s:5:\"align\";i:26;s:14:\"caption_source\";i:26;s:7:\"caption\";i:26;s:7:\"link_to\";i:26;s:4:\"link\";i:26;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"space\";i:6;s:6:\"height\";i:6;s:5:\"width\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;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:29;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:7;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}}'),(4837,644,'_elementor_page_assets','a:0:{}'),(4839,645,'_elementor_template_type','wp-page'),(4840,645,'_elementor_edit_mode','builder'),(4841,645,'_elementor_version','3.12.2'),(4842,645,'_wp_page_template','default'),(4843,645,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4844,645,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"HISTORIAS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4845,645,'_elementor_page_assets','a:0:{}'),(4847,646,'_elementor_template_type','wp-page'),(4848,646,'_elementor_edit_mode','builder'),(4849,646,'_elementor_version','3.12.2'),(4850,646,'_wp_page_template','default'),(4851,646,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4852,646,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4853,646,'_elementor_page_assets','a:0:{}'),(5857,779,'_elementor_template_type','wp-page'),(5858,779,'_elementor_edit_mode','builder'),(5859,779,'_elementor_version','3.13.3'),(5860,779,'_wp_page_template','default'),(5861,779,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5862,779,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4856,647,'_elementor_template_type','wp-page'),(4857,647,'_elementor_edit_mode','builder'),(4858,647,'_elementor_version','3.13.3'),(4859,647,'_wp_page_template','default'),(4860,647,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4861,647,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4862,647,'_elementor_page_assets','a:0:{}'),(4863,647,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:28;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:5:\"image\";i:28;s:5:\"align\";i:26;s:14:\"caption_source\";i:26;s:7:\"caption\";i:26;s:7:\"link_to\";i:26;s:4:\"link\";i:26;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"space\";i:6;s:6:\"height\";i:6;s:5:\"width\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;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:29;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:7;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}}'),(5050,674,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5051,675,'_elementor_template_type','wp-page'),(5052,675,'_elementor_edit_mode','builder'),(5053,675,'_elementor_version','3.12.2'),(5054,675,'_wp_page_template','default'),(5055,675,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5056,675,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5057,675,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5058,676,'_elementor_template_type','wp-page'),(5059,676,'_elementor_edit_mode','builder'),(5060,676,'_elementor_version','3.12.2'),(5061,676,'_wp_page_template','default'),(5062,676,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5063,676,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">There is this story about a famous research scientist who had made several very important medical breakthroughs. He was being interviewed by a newspaper reporter who asked him why he thought he was able to be so much more creative than the average person. What set him so far apart from others?<\\/p><p style=\\\"text-align: justify;\\\">He responded that, in his opinion, it all came from an experience with his mother that occurred when he was about two years old. He had been trying to remove a bottle of milk from the refrigerator when he lost his grip on the slippery bottle and it fell, spilling its contents all over the kitchen floor - a veritable sea of milk!<\\/p><p style=\\\"text-align: justify;\\\">When his mother came into the kitchen, instead of yelling at him, giving him a lecture, or punishing him, she said, \\\"Robert, what a great and wonderful mess you have made! I have rarely seen such a huge puddle of milk. Well, the damage has already been done. Would you like to get down and play in the milk for a few minutes before we clean it up?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Indeed, he did. After a few minutes, his mother said, \\\"You know, Robert, whenever you make a mess like this, eventually you have to clean it up and restore everything to its proper order. So, how would you like to do that? We could use a sponge, a towel, or a mop. Which do you prefer?\\\"<\\/p><p style=\\\"text-align: justify;\\\">He chose the sponge and together they cleaned up the spilled milk.<\\/p><p style=\\\"text-align: justify;\\\">His mother then said, \\\"You know, what we have here is a failed experiment in how to effectively carry a big milk bottle with two tiny hands. Let\'s go out in the back yard and fill the bottle with water and see if you can discover a way to carry it without dropping it.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The little boy learned that if he grasped the bottle at the top near the lip with both hands, he could carry it without dropping it. This renowned scientist then remarked that it was at that moment that he knew he didn\'t need to be afraid to make mistakes. Instead, he learned that mistakes were just opportunities for learning something new, which is, after all, what scientific experiments are all about. Even if the experiment \\\"doesn\'t work,\\\" we usually learn something valuable from it.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5043,673,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5042,673,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8816,1152,'_elementor_template_type','wp-page'),(8817,1152,'_elementor_edit_mode','builder'),(8818,1152,'_elementor_version','3.13.3'),(8819,1152,'_wp_page_template','default'),(8820,1152,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8821,1152,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">An old story is told of a king in Africa who had a close friend with whom he grew up. The friend had a habit of looking at every situation that ever occurred in his life (positive or negative) and remarking, \\\"This is good!\\\"<\\/p><p style=\\\"text-align: justify;\\\">One day the king and his friend were out on a hunting expedition. The friend would load and prepare the guns for the king. The friend had apparently done something wrong in preparing one of the guns, for after taking the gun from his friend, the king fired it and his thumb was blown off. Examining the situation the friend remarked as usual, \\\"This is good!\\\" To which the king replied, \\\"No, this is NOT good!\\\" and proceeded to send his friend to jail.<\\/p><p style=\\\"text-align: justify;\\\">About a year later, the king was hunting in an area that he should have known to stay clear of. Cannibals captured him and took him to their village. They tied his hands, stacked some wood, set up a stake and bound him to the stake. As they came near to set fire to the wood, they noticed that the king was missing a thumb. Being superstitious, they never ate anyone that was less than whole. So untying the king, they sent him on his way.<\\/p><p style=\\\"text-align: justify;\\\">As he returned home, he was reminded of the event that had taken his thumb and felt remorse for his treatment of his friend. He went immediately to the jail to speak with his friend. \\\"You were right,\\\" he said, \\\"it was good that my thumb was blown off.\\\" And he proceeded to tell the friend all that had just happened. \\\"And so I am very sorry for sending you to jail for so long. It was bad for me to do this.\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"No,\\\" his friend replied, \\\"This is good!\\\" \\\"What do you mean,\'This is good\'? How could it be good that I sent my friend to jail for a year?\\\" \\\"If I had NOT been in jail, I would have been with you.\\\"<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8460,1110,'_elementor_template_type','wp-page'),(8461,1110,'_elementor_edit_mode','builder'),(8462,1110,'_elementor_version','3.13.3'),(8463,1110,'_wp_page_template','default'),(8464,1110,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8465,1110,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">On a beautiful morning, an older gentleman, aged 75, was sitting with his son when he asked his son what was sitting in the window. He himself was not able to recognize what it was, due to his weak eyesight.<\\/p><p style=\\\"text-align: justify;\\\">His son replied, \\\"That is the crow.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Due to his age, the older man forgot and asked again.<\\/p><p style=\\\"text-align: justify;\\\">His son again replied the same thing, \\\"That is the crow.\\\"<\\/p><p style=\\\"text-align: justify;\\\">This exchange continued for seven to eight times when, and at last, his son got annoyed and replied with anger, \\\"Why are you asking the same thing again and again?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The old man replied with tears in his eyes. \\\"Son, don\'t get angry. When you were at the age of 4 years you asked me the same question 40 times and I never got angry<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8359,1098,'_elementor_template_type','wp-page'),(8360,1098,'_elementor_edit_mode','builder'),(8361,1098,'_elementor_version','3.13.3'),(8362,1098,'_wp_page_template','default'),(8363,1098,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8364,1098,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Three farmers gathered to evaluate and share their experiences from the year passed. Each had a hundred square meter of land on which they farmed. At the end of the meeting, the first farmer said, \\\"The situation was very hard and it will be much worse for next year.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The second replied, \\\"You are certainly right. As a matter of fact, after working very hard the whole year, from sunrise to sunset, I only gained 1% profit after all expenses.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Calculating his own numbers, the first farmer replied, \\\"I believe that my total profit is exactly the same as yours, which is 1%.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The two of them looked at the third farmer and asked, \\\"How much profit did you make during this year?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The third farmer kindly replied, \\\"Gentleman, with all due respect, I obtained a 5% profit during this year.\\\"<\\/p><p style=\\\"text-align: justify;\\\">That was followed by a long silence...<\\/p><p style=\\\"text-align: justify;\\\">\\\"How come? 5% profit?? That is impossible!!!! How did you do that???\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"Very easy and simple math,\\\" said the third farmer. \\\"I made the very same 1% profit as you did. ... plus 4% that represents the immense pleasure to be able to enjoy this view, milk my cows and enjoy the most of my farm. That gives me 5% total profit.\\\"<\\/p><p style=\\\"text-align: justify;\\\"><b>Moral Of the Story:<\\/b> All of us have to take care of our farm (that is our hundred square meter land) and get the maximum profit while enjoying every instant of our lives and work!!!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5032,672,'_elementor_page_assets','a:0:{}'),(5033,672,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6648,883,'_elementor_edit_mode','builder'),(6649,883,'_elementor_template_type','wp-page'),(6650,883,'_elementor_version','3.13.3'),(6651,883,'_wp_page_template','default'),(6652,883,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/cropped-banner111.jpg\",\"id\":654,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Making the basic practice of yoga easily accessible to everyone at no charge.<br>Divya Yoga founder Swami Ram Dev says, \\\"Good health is a birthright of humanity.\\\" By performing yoga poses,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \\/ asanas, exercises, mudras, pranayamas, meditation and by providing practical motivational speech they help to develop a stress free mind and disease free body. It helps to take care of the body, mind and soul and live a happy, healthy and fulfilling life. Emphasize that the key to a healthy physical body and a healthy state of mind is in one\'s control. By getting in touch with the inner being we can experience a state of \\\"Bliss and Anand\\\".<br>This Divya yoga is for people of all ages. We start with warm-up exercises (12-15), salutation to the sun and motivational speech. Then we practice 90-100 combination of asanas, postures and exercises. We also do some acupressure, 6 mudras, 7 pranayamas and micro exercises for eyes, fingers, toes, face and neck. Laughter yoga and super brain yoga are also included. We finish with \'Shav Asana\', motivational poem, mantra and prayer,<br>After yoga, super food i.e. grapes and banana are available for yogis.<br>Yoga is a wonderful means of exercising, stretching and relaxing the body\\/mind so that it can be healthy and lasting. Helps in the coordination of the body, mind and soul. We also create an environment where people can interact for their betterment and the good of society.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><br \\/>Every Saturday morning from 9:00 a.m. to 11:00 a.m. we participate in the session, a series of physical and breathing exercises to make the body more flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poems, prayers and our mantra. Yoga is a complete lifestyle<br \\/>Every last Saturday of the month we have a guest speaker from 11:00 to 11:45 and after that we eat together. The food is provided by the Vinesh Saxena Family foundation, Meera is preparing amazing vegetarian Indian food for us, and if you want to share a small plate with us, you are welcome.<br \\/>If it\'s your first day, please come before 8.30am to take the time to fill out an information sheet. Mihaela is happy to meet you.<br \\/>Afterwards please come 10-15 minutes early to give yourself time to arrange your mat etc so we can start at 9.00am.<br \\/>See below a brief description of the exercises we practice every Saturday.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1. Workout: A series of 12-15 exercises to warm up your body: i.e. knee bend, forward bend, back bend, right bend, left bend, shoulder stretch, jump, hand swing , bend right knee, bend left knee, jump cat, body shake, downward\\/upward dog, etc.<\\/p>\\n<p>2. Salutation to the Sun \\u2013 Surya Namaskar, a flowing series of 12 postures that helps improve strength and flexibility of the muscles and spine. These poses also warm up the body and tone the abdominal muscles.<\\/p>\\n<p>3. Motivational Speech - Our teacher Vinesh Saxena shares with us wise stories and practical tips for a happy, healthy, motivated and fulfilling life.<\\/p>\\n<p><br>4. Acupressure (an alternative medicine technique derived from acupuncture): Rotating pressure on the pads of the fingers to relieve sinus problems, the middle of the palm of the hand for kidney problems, and under the thumb for thyroid wellness .<\\/p>\\n<p><br>5. Exercises for the eyes and neck: we take care of each part of the body.Eyes: move the pupil to the right, left, up and down; Turn clockwise, then counterclockwise. Reach your right arm in front, thumb up, focus on your thumb as you bring your hand up to your nose, and then take it away. Extend both arms inward, look at the center of the thumb. Spread arms apart until you can still see, stay in this position for 30 seconds, move arms back Neck: bend left, right, forward and back, turn clockwise, then counterclockwise clockwise, look to the right and look up the left.<\\/p>\\n<p>6. Seven Pranayamas (breathing exercises) When we do yoga, 75% of the benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya (Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/p><p>7. 6 mudras (finger positioning): Used in conjunction with pranayama, usually while seated, to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/p><p>8. 100 postures, exercises and asanas: with them we increase flexibility from head to toe. We are also doing stretching exercises to help our bodies stimulate the lymphatic system, targeting key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees, and feet. We do exercises to relieve arthritis, diabetes, heart disease, cholesterol, back pain, insomnia, etc.<\\/p><p>9. Laughter Yoga \\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a doctor from Mumbai. Today, it has become a global phenomenon with more than 6,000 laughter social clubs in some 60 countries. We combine unconditional laughter with Pranayama. The Laughter Yoga concept is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<\\/p><p>We also do Super Brain yoga to stimulate brain cells and improve memory. This form of yoga was invented by a Virginia doctor and is very popular in the medical community.<\\/p><p>10. Shavasana \\u2013 After your yoga session, lie on your back on the mat \\u2013 Shavasana allows the body a chance to regroup and reset. After a balanced practice, the entire body has been stretched, contracted, twisted, and inverted. The body, mind and soul get complete rest, power, motivation and happiness.<\\/p><p>11. Motivational poem: read at the end of the session to keep us motivated, focused and to recharge our batteries.<\\/p><p>12. Mantra \\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT WILL BE DEPENDS ON ME<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5036,673,'_elementor_template_type','wp-page'),(5037,673,'_elementor_edit_mode','builder'),(5038,673,'_elementor_version','3.12.2'),(5039,673,'_wp_page_template','default'),(5040,673,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5041,673,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Existe esta historia sobre un famoso cient\\u00edfico investigador que hab\\u00eda hecho varios avances m\\u00e9dicos muy importantes. Estaba siendo entrevistado por un reportero de un peri\\u00f3dico que le pregunt\\u00f3 por qu\\u00e9 pensaba que era capaz de ser mucho m\\u00e1s creativo que la persona promedio. \\u00bfQu\\u00e9 lo diferenci\\u00f3 tanto de los dem\\u00e1s?<\\/p><p>\\u00c9l respondi\\u00f3 que, en su opini\\u00f3n, todo proven\\u00eda de una experiencia con su madre que ocurri\\u00f3 cuando ten\\u00eda unos dos a\\u00f1os. Hab\\u00eda estado tratando de sacar una botella de leche del refrigerador cuando perdi\\u00f3 el control de la botella resbaladiza y cay\\u00f3, derramando su contenido por todo el piso de la cocina, \\u00a1un verdadero mar de leche!<\\/p><p>Cuando su madre entr\\u00f3 en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \\\"\\u00a1Robert, \\u00a1qu\\u00e9 gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el da\\u00f1o ya est\\u00e1 hecho. \\u00bfTe gustar\\u00eda bajar y jugar en la leche durante unos minutos antes de limpiarla?\\\"<\\/p><p>De hecho, lo hizo. Despu\\u00e9s de unos minutos, su madre dijo: \\\"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, \\u00bfc\\u00f3mo te gustar\\u00eda hacer eso? Podr\\u00edamos usar una esponja, una toalla o un trapeador. \\u00bfCu\\u00e1l prefieres?\\\"<\\/p><p>Eligi\\u00f3 la esponja y juntos limpiaron la leche derramada.<\\/p><p>Su madre luego dijo: \\\"Sabes, lo que tenemos aqu\\u00ed es un experimento fallido sobre c\\u00f3mo llevar efectivamente una botella de leche grande con dos manos peque\\u00f1as. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\\\".<\\/p><p>El ni\\u00f1o aprendi\\u00f3 que si agarraba la botella en la parte superior cerca del labio con ambas manos, pod\\u00eda llevarla sin dejarla caer. Este renombrado cient\\u00edfico coment\\u00f3 que fue en ese momento que supo que no ten\\u00eda que tener miedo de cometer errores. En cambio, aprendi\\u00f3 que los errores eran solo oportunidades para aprender algo nuevo, que es, despu\\u00e9s de todo, de lo que se tratan los experimentos cient\\u00edficos. Incluso si el experimento \\\"no funciona\\\", generalmente aprendemos algo valioso de \\u00e9l.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5025,671,'_elementor_page_assets','a:0:{}'),(5026,671,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4891,652,'_edit_lock','1728097947:1'),(4892,652,'_edit_last','1'),(4893,652,'_elementor_edit_mode','builder'),(4894,652,'_elementor_template_type','wp-page'),(4895,652,'_elementor_version','3.13.4'),(4896,654,'_wp_attached_file','2023/05/cropped-banner111.jpg'),(4897,654,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:29:\"2023/05/cropped-banner111.jpg\";s:8:\"filesize\";i:90675;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"cropped-banner111-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10675;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"cropped-banner111-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8250;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"cropped-banner111-768x221.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48927;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4898,652,'_wp_page_template','default'),(4899,652,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-copia.jpg\",\"id\":887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge<\\/p>\\n<p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>&nbsp;<\\/i><\\/b>exercise<b>s<i>,&nbsp;<\\/i><\\/b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p>\\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p>\\n<p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p>\\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"St. Lambert International Hight School 675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p>\\n<ol>\\n<li><b>Workout<\\/b>&nbsp;\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li>\\n<li><b>Sun Salutation<\\/b>&nbsp;\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li>\\n<li><b>Motivational discourse<\\/b>&nbsp;\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li>\\n<li><b>Acupressure<\\/b>&nbsp;(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,&nbsp; middle of your palm for kidney problems and&nbsp; under the thumb for the well being of thyroid.<\\/li>\\n<li><b>Eyes and neck exercises<\\/b>&nbsp;\\u2013 we take care of every part of the body.<br>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>&nbsp;&nbsp;&nbsp;&nbsp;<\\/b><br>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li>\\n<li><b>Seven Pranayamas (<\\/b>&nbsp;breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li>\\n<li><b>6 mudras&nbsp;<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li>\\n<li><b>100 postures, exercises and asanas<\\/b>&nbsp;\\u2013 with these we increase flexibility from head to toe. We are also doing&nbsp;<b>stretching<\\/b>&nbsp;exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li>\\n<li><b>Laughter yoga&nbsp;<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br>We also do&nbsp;<b>Super Brain yoga<\\/b>&nbsp;to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li>\\n<li><b>Shavasana&nbsp;<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li>\\n<li><b>Motivational poem<\\/b>&nbsp;\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li>\\n<li><b>Mantra<\\/b>&nbsp;\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li>\\n<\\/ol>\\n<p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00&nbsp;<\\/strong><br><strong>at St.Lambert International Hight School, 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8cdebb\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5319c9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38ea796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Divya Yoga Monteregie - annual calendar 2024-2025 \",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f90c261\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5f4e8c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51b3d1b\",\"elType\":\"widget\",\"settings\":{\"eael_event_items\":[{\"_id\":\"1ad6b6a\",\"eael_event_title\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \",\"eael_event_link\":{\"url\":\"https:\\/\\/us06web.zoom.us\\/meeting\\/register\\/tZIofu-qqzgiHtPlXpzEm2GoKrTks4RHEi12#\\/registration\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_event_redirection\":\"yes\",\"eael_event_start_date\":\"2024-09-28 10:30\",\"eael_event_end_date\":\"2024-09-28 12:30\"},{\"eael_event_title\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \",\"eael_event_link\":{\"url\":\"https:\\/\\/us06web.zoom.us\\/meeting\\/register\\/tZIofu-qqzgiHtPlXpzEm2GoKrTks4RHEi12#\\/registration\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_event_redirection\":\"yes\",\"eael_event_start_date\":\"2024-10-26 10:30\",\"eael_event_end_date\":\"2024-10-26 12:30\",\"_id\":\"70ef101\"},{\"_id\":\"58c28a8\",\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-07 09:00\",\"eael_event_end_date\":\"2024-09-07 11:00\",\"eael_event_bg_color\":\"#079E57\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-28 09:00\",\"eael_event_end_date\":\"2024-09-28 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"3a07192\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-28 09:00\",\"eael_event_end_date\":\"2024-09-28 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"5b8fc3c\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-21 09:00\",\"eael_event_end_date\":\"2024-09-21 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"9c1a29b\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-05 09:00\",\"eael_event_end_date\":\"2024-10-05 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"88c112e\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-12 09:00\",\"eael_event_end_date\":\"2024-10-12 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"9ee9371\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-19 09:00\",\"eael_event_end_date\":\"2024-10-19 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"4bedee7\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-26 09:00\",\"eael_event_end_date\":\"2024-10-26 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"f7418ae\"}],\"eael_event_calendar_default_date\":\"2024-09-28\",\"eael_event_details_text\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \"},\"elements\":[],\"widgetType\":\"eael-event-calendar\"}],\"isInner\":false}],\"isInner\":false}]'),(4900,655,'_elementor_edit_mode','builder'),(4901,655,'_elementor_template_type','wp-page'),(4902,655,'_elementor_version','3.13.3'),(4903,655,'_wp_page_template','default'),(4904,655,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/cropped-banner111.jpg\",\"id\":654,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4905,652,'_elementor_page_assets','a:0:{}'),(4952,663,'_elementor_edit_mode','builder'),(4953,663,'_elementor_template_type','wp-page'),(4954,663,'_elementor_version','3.13.3'),(4955,663,'_wp_page_template','default'),(4956,663,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/cropped-banner111.jpg\",\"id\":654,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4916,221,'_wp_old_date','2023-04-30'),(5171,690,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5173,691,'_elementor_template_type','wp-page'),(5174,691,'_elementor_edit_mode','builder'),(5175,691,'_elementor_version','3.12.2'),(5176,691,'_wp_page_template','default'),(5177,691,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5178,691,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tres agricultores se reunieron para evaluar y compartir sus experiencias del a\\u00f1o pasado. Cada uno ten\\u00eda cien metros cuadrados de tierra en la que cultivaban. Al final de la reuni\\u00f3n, el primer agricultor dijo: \\\"La situaci\\u00f3n era muy dif\\u00edcil y ser\\u00e1 mucho peor para el pr\\u00f3ximo a\\u00f1o\\\".<\\/p><p>El segundo respondi\\u00f3: \\\"Ciertamente tienes raz\\u00f3n. De hecho, despu\\u00e9s de trabajar muy duro todo el a\\u00f1o, desde el amanecer hasta el atardecer, solo obtuve un 1% de ganancias despu\\u00e9s de todos los gastos\\\".<\\/p><p>Calculando sus propios n\\u00fameros, el primer agricultor respondi\\u00f3: \\\"Creo que mi ganancia total es exactamente la misma que la suya, que es del 1%\\\".<\\/p><p>Los dos miraron al tercer agricultor y le preguntaron: \\\"\\u00bfCu\\u00e1ntas ganancias obtuviste durante este a\\u00f1o?\\\"<\\/p><p>El tercer agricultor respondi\\u00f3 amablemente: \\\"Caballero, con el debido respeto, obtuve una ganancia del 5% durante este a\\u00f1o\\\".<\\/p><p>Eso fue seguido por un largo silencio ...<\\/p><p>\\\"\\u00bfC\\u00f3mo es que? 5% de ganancia?? Eso es imposible!!!! \\u00bfC\\u00f3mo lo hiciste???\\\"<\\/p><p>\\\"Matem\\u00e1ticas muy f\\u00e1ciles y simples\\\", dijo el tercer agricultor. \\\"Obtuve el mismo beneficio del 1% que t\\u00fa. ... m\\u00e1s un 4% que representa el inmenso placer de poder disfrutar de esta vista, orde\\u00f1ar mis vacas y disfrutar al m\\u00e1ximo de mi granja. Eso me da un 5% de ganancia total\\\".<\\/p><p><strong>Moraleja de la historia:<\\/strong>\\u00a0Todos tenemos que cuidar nuestra granja (que es nuestra tierra de cien metros cuadrados) y obtener el m\\u00e1ximo beneficio mientras disfrutamos de cada instante de nuestras vidas y trabajo!!!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5179,691,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5181,692,'_elementor_template_type','wp-page'),(5182,692,'_elementor_edit_mode','builder'),(5183,692,'_elementor_version','3.12.2'),(5184,692,'_wp_page_template','default'),(5185,692,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5186,692,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Three farmers gathered to evaluate and share their experiences from the year passed. Each had a hundred square meter of land on which they farmed. At the end of the meeting, the first farmer said, \\\"The situation was very hard and it will be much worse for next year.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The second replied, \\\"You are certainly right. As a matter of fact, after working very hard the whole year, from sunrise to sunset, I only gained 1% profit after all expenses.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Calculating his own numbers, the first farmer replied, \\\"I believe that my total profit is exactly the same as yours, which is 1%.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The two of them looked at the third farmer and asked, \\\"How much profit did you make during this year?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The third farmer kindly replied, \\\"Gentleman, with all due respect, I obtained a 5% profit during this year.\\\"<\\/p><p style=\\\"text-align: justify;\\\">That was followed by a long silence...<\\/p><p style=\\\"text-align: justify;\\\">\\\"How come? 5% profit?? That is impossible!!!! How did you do that???\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"Very easy and simple math,\\\" said the third farmer. \\\"I made the very same 1% profit as you did. ... plus 4% that represents the immense pleasure to be able to enjoy this view, milk my cows and enjoy the most of my farm. That gives me 5% total profit.\\\"<\\/p><p style=\\\"text-align: justify;\\\"><b>Moral Of the Story:<\\/b> All of us have to take care of our farm (that is our hundred square meter land) and get the maximum profit while enjoying every instant of our lives and work!!!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5187,692,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5190,693,'_elementor_template_type','wp-page'),(5191,693,'_elementor_edit_mode','builder'),(5192,693,'_elementor_version','3.12.2'),(5193,693,'_wp_page_template','default'),(5194,693,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5195,693,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Traer una jirafa al mundo es una tarea dif\\u00edcil. Una jirafa beb\\u00e9 cae a 10 pies del \\u00fatero de su madre y generalmente aterriza sobre su espalda. En cuesti\\u00f3n de segundos se da la vuelta y mete las piernas debajo de su cuerpo. Desde esta posici\\u00f3n considera el mundo por primera vez y se sacude los \\u00faltimos vestigios del fluido de parto de sus ojos y o\\u00eddos. Luego, la madre jirafa presenta groseramente a su descendencia la realidad de la vida. En su libro, \\\"A View from the Zoo\\\", Gary Richmond describe<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">C\\u00f3mo una jirafa reci\\u00e9n nacida aprende su primera lecci\\u00f3n.<br \\/>La jirafa madre baja la cabeza el tiempo suficiente para echar un vistazo r\\u00e1pido. Luego se posiciona directamente sobre su pantorrilla. Ella espera aproximadamente un minuto, y luego hace lo m\\u00e1s irrazonable. Ella balancea su pierna larga y colgante hacia afuera y patea a su beb\\u00e9, de modo que se env\\u00eda con la cabeza extendida sobre los talones.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Cuando no se levanta, el proceso violento se repite una y otra vez. La lucha por levantarse es trascendental. A medida que el ternero se cansa, la madre lo patea nuevamente para estimular sus esfuerzos. Finalmente, la pantorrilla se para por primera vez sobre sus patas tambaleantes.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Entonces la jirafa madre hace lo m\\u00e1s notable. Ella lo patea de sus pies de nuevo. \\u00bfPor qu\\u00e9? Ella quiere que recuerde c\\u00f3mo se levant\\u00f3. En la naturaleza, las jirafas beb\\u00e9s deben poder levantarse lo m\\u00e1s r\\u00e1pido posible para permanecer con la manada, donde hay seguridad. Leones, hienas, leopardos y perros de caza salvajes disfrutan de jirafas j\\u00f3venes, y tambi\\u00e9n lo conseguir\\u00edan, si la madre no le ense\\u00f1ara a su cr\\u00eda a levantarse r\\u00e1pidamente y seguir adelante.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">El difunto Irving Stone entendi\\u00f3 esto. Pas\\u00f3 toda una vida estudiando la grandeza, escribiendo biograf\\u00edas noveladas de hombres como Miguel \\u00c1ngel, Vincent van Gogh, Sigmund Freud y Charles Darwin.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Una vez le preguntaron a Stone si hab\\u00eda encontrado un hilo que recorriera la vida de todas estas personas excepcionales. \\u00c9l dijo: \\\"Escribo sobre personas que en alg\\u00fan momento de su vida tienen una visi\\u00f3n o sue\\u00f1o de algo que deber\\u00eda lograrse y van a trabajar.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">\\\"Son golpeados en la cabeza, derribados, vilipendiados, y durante a\\u00f1os no llegan a ninguna parte. Pero cada vez que son derribados se ponen de pie. No puedes destruir a estas personas. Y al final de sus vidas han logrado una parte modesta de lo que se propusieron hacer\\\".<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5196,693,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5197,693,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(7446,994,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \\\"Who would like this $20 bill?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Hands started going up.<\\/p><p style=\\\"text-align: justify;\\\">He said, \\\"I am going to give this $20 to one of you but first, let me do this.\\\" He proceeded to crumple the dollar bill up.<\\/p><p style=\\\"text-align: justify;\\\">He then asked, \\\"Who still wants it?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Still the hands were up in the air.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Well,\\\" he replied, \\\"What if I do this?\\\" And he dropped it on the ground and started to grind it into the floor with his shoe.<\\/p><p style=\\\"text-align: justify;\\\">He picked it up, now all crumpled and dirty. \\\"Now who still wants it?\\\" Still the hands went into the air.<\\/p><p style=\\\"text-align: justify;\\\">\\\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.<\\/p><p style=\\\"text-align: justify;\\\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.<\\/p><p style=\\\"text-align: justify;\\\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5205,694,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7445,994,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5207,695,'_elementor_template_type','wp-page'),(5208,695,'_elementor_edit_mode','builder'),(5209,695,'_elementor_version','3.12.2'),(5210,695,'_wp_page_template','default'),(5211,695,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5212,695,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Traer una jirafa al mundo es una tarea dif\\u00edcil. Una jirafa beb\\u00e9 cae a 10 pies del \\u00fatero de su madre y generalmente aterriza sobre su espalda. En cuesti\\u00f3n de segundos se da la vuelta y mete las piernas debajo de su cuerpo. Desde esta posici\\u00f3n considera el mundo por primera vez y se sacude los \\u00faltimos vestigios del fluido de parto de sus ojos y o\\u00eddos. Luego, la madre jirafa presenta groseramente a su descendencia la realidad de la vida. En su libro, \\\"A View from the Zoo\\\", Gary Richmond describe<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">C\\u00f3mo una jirafa reci\\u00e9n nacida aprende su primera lecci\\u00f3n.<br \\/>La jirafa madre baja la cabeza el tiempo suficiente para echar un vistazo r\\u00e1pido. Luego se posiciona directamente sobre su pantorrilla. Ella espera aproximadamente un minuto, y luego hace lo m\\u00e1s irrazonable. Ella balancea su pierna larga y colgante hacia afuera y patea a su beb\\u00e9, de modo que se env\\u00eda con la cabeza extendida sobre los talones.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Cuando no se levanta, el proceso violento se repite una y otra vez. La lucha por levantarse es trascendental. A medida que el ternero se cansa, la madre lo patea nuevamente para estimular sus esfuerzos. Finalmente, la pantorrilla se para por primera vez sobre sus patas tambaleantes.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Entonces la jirafa madre hace lo m\\u00e1s notable. Ella lo patea de sus pies de nuevo. \\u00bfPor qu\\u00e9? Ella quiere que recuerde c\\u00f3mo se levant\\u00f3. En la naturaleza, las jirafas beb\\u00e9s deben poder levantarse lo m\\u00e1s r\\u00e1pido posible para permanecer con la manada, donde hay seguridad. Leones, hienas, leopardos y perros de caza salvajes disfrutan de jirafas j\\u00f3venes, y tambi\\u00e9n lo conseguir\\u00edan, si la madre no le ense\\u00f1ara a su cr\\u00eda a levantarse r\\u00e1pidamente y seguir adelante.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">El difunto Irving Stone entendi\\u00f3 esto. Pas\\u00f3 toda una vida estudiando la grandeza, escribiendo biograf\\u00edas noveladas de hombres como Miguel \\u00c1ngel, Vincent van Gogh, Sigmund Freud y Charles Darwin.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Una vez le preguntaron a Stone si hab\\u00eda encontrado un hilo que recorriera la vida de todas estas personas excepcionales. \\u00c9l dijo: \\\"Escribo sobre personas que en alg\\u00fan momento de su vida tienen una visi\\u00f3n o sue\\u00f1o de algo que deber\\u00eda lograrse y van a trabajar.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">\\\"Son golpeados en la cabeza, derribados, vilipendiados, y durante a\\u00f1os no llegan a ninguna parte. Pero cada vez que son derribados se ponen de pie. No puedes destruir a estas personas. Y al final de sus vidas han logrado una parte modesta de lo que se propusieron hacer\\\".<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5213,695,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7442,994,'_elementor_edit_mode','builder'),(7443,994,'_elementor_version','3.13.3'),(7444,994,'_wp_page_template','default'),(5221,696,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7441,994,'_elementor_template_type','wp-page'),(5224,697,'_elementor_template_type','wp-page'),(5225,697,'_elementor_edit_mode','builder'),(5226,697,'_elementor_version','3.12.2'),(5227,697,'_wp_page_template','default'),(5228,697,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5229,697,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sir Winston Churchill tard\\u00f3 tres a\\u00f1os en terminar el octavo grado porque ten\\u00eda problemas para aprender ingl\\u00e9s. Parece ir\\u00f3nico que a\\u00f1os m\\u00e1s tarde la Universidad de Oxford le pidiera que abordara sus ejercicios de graduaci\\u00f3n.<\\/p><p>Lleg\\u00f3 con sus accesorios habituales. Un cigarro, un bast\\u00f3n y un sombrero de copa acompa\\u00f1aban a Churchill dondequiera que iba. Cuando Churchill se acerc\\u00f3 al podio, la multitud se levant\\u00f3 en aplausos agradecidos. Con una dignidad inigualable, acomod\\u00f3 a la multitud y se mantuvo confiado ante sus admiradores. Quitando el cigarro y colocando cuidadosamente el sombrero de copa en el podio, Churchill mir\\u00f3 a su audiencia que esperaba. La autoridad son\\u00f3 en la voz de Churchill mientras gritaba: \\\"\\u00a1Nunca te rindas!\\\"<\\/p><p>Pasaron varios segundos antes de que se pusiera de pie y repitiera: \\\"\\u00a1Nunca te rindas!\\\" Sus palabras tronaron en sus o\\u00eddos. Hubo un silencio ensordecedor cuando Churchill tom\\u00f3 su sombrero y cigarro, se estabiliz\\u00f3 con su bast\\u00f3n y abandon\\u00f3 la plataforma. Su discurso de graduaci\\u00f3n hab\\u00eda terminado<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5230,697,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5231,697,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5238,698,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5239,699,'_elementor_template_type','wp-page'),(5240,699,'_elementor_edit_mode','builder'),(5241,699,'_elementor_version','3.12.2'),(5242,699,'_wp_page_template','default'),(5243,699,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5244,699,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sir Winston Churchill tard\\u00f3 tres a\\u00f1os en terminar el octavo grado porque ten\\u00eda problemas para aprender ingl\\u00e9s. Parece ir\\u00f3nico que a\\u00f1os m\\u00e1s tarde la Universidad de Oxford le pidiera que abordara sus ejercicios de graduaci\\u00f3n.<\\/p><p>Lleg\\u00f3 con sus accesorios habituales. Un cigarro, un bast\\u00f3n y un sombrero de copa acompa\\u00f1aban a Churchill dondequiera que iba. Cuando Churchill se acerc\\u00f3 al podio, la multitud se levant\\u00f3 en aplausos agradecidos. Con una dignidad inigualable, acomod\\u00f3 a la multitud y se mantuvo confiado ante sus admiradores. Quitando el cigarro y colocando cuidadosamente el sombrero de copa en el podio, Churchill mir\\u00f3 a su audiencia que esperaba. La autoridad son\\u00f3 en la voz de Churchill mientras gritaba: \\\"\\u00a1Nunca te rindas!\\\"<\\/p><p>Pasaron varios segundos antes de que se pusiera de pie y repitiera: \\\"\\u00a1Nunca te rindas!\\\" Sus palabras tronaron en sus o\\u00eddos. Hubo un silencio ensordecedor cuando Churchill tom\\u00f3 su sombrero y cigarro, se estabiliz\\u00f3 con su bast\\u00f3n y abandon\\u00f3 la plataforma. Su discurso de graduaci\\u00f3n hab\\u00eda terminado<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5245,699,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5248,700,'_elementor_version','3.12.2'),(5249,700,'_wp_page_template','default'),(5250,700,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5251,700,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Sir Winston Churchill took three years getting through eighth grade because he had trouble learning English. It seems ironic that years later Oxford University asked him to address its commencement exercises.<\\/p><p style=\\\"text-align: justify;\\\">He arrived with his usual props. A cigar, a cane and a top hat accompanied Churchill wherever he went. As Churchill approached the podium, the crowd rose in appreciative applause. With unmatched dignity, he settled the crowd and stood confident before his admirers. Removing the cigar and carefully placing the top hat on the podium, Churchill gazed at his waiting audience. Authority rang in Churchill\'s voice as he shouted, \\\"Never give up!\\\"<\\/p><p style=\\\"text-align: justify;\\\">Several seconds passed before he rose to his toes and repeated: \\\"Never give up!\\\" His words thundered in their ears. There was a deafening silence as Churchill reached for his hat and cigar, steadied himself with his cane and left the platform. His commencement address was finished<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5252,700,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8409,1104,'_elementor_template_type','wp-page'),(8410,1104,'_elementor_edit_mode','builder'),(8411,1104,'_elementor_version','3.13.3'),(8412,1104,'_wp_page_template','default'),(8413,1104,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8414,1104,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Sir Winston Churchill took three years getting through eighth grade because he had trouble learning English. It seems ironic that years later Oxford University asked him to address its commencement exercises.<\\/p><p style=\\\"text-align: justify;\\\">He arrived with his usual props. A cigar, a cane and a top hat accompanied Churchill wherever he went. As Churchill approached the podium, the crowd rose in appreciative applause. With unmatched dignity, he settled the crowd and stood confident before his admirers. Removing the cigar and carefully placing the top hat on the podium, Churchill gazed at his waiting audience. Authority rang in Churchill\'s voice as he shouted, \\\"Never give up!\\\"<\\/p><p style=\\\"text-align: justify;\\\">Several seconds passed before he rose to his toes and repeated: \\\"Never give up!\\\" His words thundered in their ears. There was a deafening silence as Churchill reached for his hat and cigar, steadied himself with his cane and left the platform. His commencement address was finished<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5254,701,'_elementor_template_type','wp-page'),(5255,701,'_elementor_edit_mode','builder'),(5256,701,'_elementor_version','3.12.2'),(5257,701,'_wp_page_template','default'),(5258,701,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5259,701,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Esta es una par\\u00e1bola de un granjero que pose\\u00eda una vieja mula. La mula cay\\u00f3 en el pozo del granjero. El granjero escuch\\u00f3 a la mula \\\"rebuznar\\\", o lo que sea que hagan las mulas cuando caen en pozos. Despu\\u00e9s de evaluar cuidadosamente la situaci\\u00f3n, el granjero sinti\\u00f3 l\\u00e1stima por la mula, pero decidi\\u00f3 que no val\\u00eda la pena salvar ni la mula ni el pozo. En cambio, llam\\u00f3 a sus vecinos y les cont\\u00f3 lo que hab\\u00eda sucedido y les pidi\\u00f3 que ayudaran a acarrear tierra para enterrar a la vieja mula en el pozo y sacarlo de su miseria.<\\/p><p>\\u00a1Inicialmente, la vieja mula estaba hist\\u00e9rica! Pero cuando el granjero y sus vecinos continuaron paleando y la tierra golpe\\u00f3 su espalda, un pensamiento lo golpe\\u00f3. De repente se dio cuenta de que cada vez que una pala cargada de tierra aterrizaba en su espalda: \\u00a1deber\\u00eda sacudirla y dar un paso adelante! Esto es lo que hizo la vieja mula, golpe tras golpe. \\\"Sacude y da un paso adelante ... Ag\\u00edtalo y da un paso adelante ... \\u00a1Sacude y da un paso adelante!\\\", repiti\\u00f3 para animarse.<\\/p><p>No importa cu\\u00e1n dolorosos fueran los golpes o angustiante que pareciera la situaci\\u00f3n, \\u00a1la vieja mula luch\\u00f3 contra el \\\"p\\u00e1nico\\\" y sigui\\u00f3 sacudi\\u00e9ndose y dando un paso adelante! \\u00a1Lo has adivinado! \\u00a1No pas\\u00f3 mucho tiempo antes de que la vieja mula, maltratada y exhausta, pisara triunfalmente la pared de ese pozo! Lo que parec\\u00eda que lo enterrar\\u00eda, en realidad terminar\\u00eda bendici\\u00e9ndole. Todo por la manera en que manej\\u00f3 su adversidad.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5260,701,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5261,701,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(7440,993,'_elementor_css','a:6:{s:4:\"time\";i:1686273709;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:\"\";}'),(5269,702,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7439,993,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5271,703,'_elementor_template_type','wp-page'),(5272,703,'_elementor_edit_mode','builder'),(5273,703,'_elementor_version','3.12.2'),(5274,703,'_wp_page_template','default'),(5275,703,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5276,703,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Esta es una par\\u00e1bola de un granjero que pose\\u00eda una vieja mula. La mula cay\\u00f3 en el pozo del granjero. El granjero escuch\\u00f3 a la mula \\\"rebuznar\\\", o lo que sea que hagan las mulas cuando caen en pozos. Despu\\u00e9s de evaluar cuidadosamente la situaci\\u00f3n, el granjero sinti\\u00f3 l\\u00e1stima por la mula, pero decidi\\u00f3 que no val\\u00eda la pena salvar ni la mula ni el pozo. En cambio, llam\\u00f3 a sus vecinos y les cont\\u00f3 lo que hab\\u00eda sucedido y les pidi\\u00f3 que ayudaran a acarrear tierra para enterrar a la vieja mula en el pozo y sacarlo de su miseria.<\\/p><p>\\u00a1Inicialmente, la vieja mula estaba hist\\u00e9rica! Pero cuando el granjero y sus vecinos continuaron paleando y la tierra golpe\\u00f3 su espalda, un pensamiento lo golpe\\u00f3. De repente se dio cuenta de que cada vez que una pala cargada de tierra aterrizaba en su espalda: \\u00a1deber\\u00eda sacudirla y dar un paso adelante! Esto es lo que hizo la vieja mula, golpe tras golpe. \\\"Sacude y da un paso adelante ... Ag\\u00edtalo y da un paso adelante ... \\u00a1Sacude y da un paso adelante!\\\", repiti\\u00f3 para animarse.<\\/p><p>No importa cu\\u00e1n dolorosos fueran los golpes o angustiante que pareciera la situaci\\u00f3n, \\u00a1la vieja mula luch\\u00f3 contra el \\\"p\\u00e1nico\\\" y sigui\\u00f3 sacudi\\u00e9ndose y dando un paso adelante! \\u00a1Lo has adivinado! \\u00a1No pas\\u00f3 mucho tiempo antes de que la vieja mula, maltratada y exhausta, pisara triunfalmente la pared de ese pozo! Lo que parec\\u00eda que lo enterrar\\u00eda, en realidad terminar\\u00eda bendici\\u00e9ndole. Todo por la manera en que manej\\u00f3 su adversidad.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5277,703,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5282,704,'_wp_page_template','default'),(5283,704,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5284,704,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">This is a \\u00a0parable of a farmer who owned an old mule. The mule fell into the farmer\'s well. The farmer heard the mule \'braying\' -- or whatever mules do when they fall into wells. After carefully assessing the situation, the farmer felt sorry for the mule, but decided that neither the mule nor the well was worth saving. Instead, he called his neighbors together and told them what had happened and asked them to help haul dirt to bury the old mule in the well and put him out of his misery.<\\/p><p style=\\\"text-align: justify;\\\">Initially, the old mule was hysterical! But as the farmer and his neighbors continued shoveling and the dirt hit his back, a thought struck him. It suddenly dawned on him that every time a shovel load of dirt landed on his back: he should shake it off and step up! This is what the old mule did, blow after blow. \\\"Shake it off and step up... shake it off and step up... shake it off and step up!\\\" he repeated to encourage himself.<\\/p><p style=\\\"text-align: justify;\\\">No matter how painful the blows, or distressing the situation seemed, the old mule fought \\\"panic\\\" and just kept right on shaking it off and stepping up! You guessed it! It wasn\'t long before the old mule, battered and exhausted, stepped triumphantly over the wall of that well! What seemed like it would bury him, actually end up blessing him. All because of the manner in which he handled his adversity.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5285,704,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5288,705,'_elementor_template_type','wp-page'),(5289,705,'_elementor_edit_mode','builder'),(5290,705,'_elementor_version','3.12.2'),(5291,705,'_wp_page_template','default'),(5292,705,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5293,705,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>En una hermosa ma\\u00f1ana, un caballero mayor, de 75 a\\u00f1os, estaba sentado con su hijo cuando le pregunt\\u00f3 qu\\u00e9 estaba sentado en la ventana. \\u00c9l mismo no fue capaz de reconocer lo que era, debido a su d\\u00e9bil vista.<\\/p><p>Su hijo respondi\\u00f3: \\\"Ese es el cuervo\\\".<\\/p><p>Debido a su edad, el hombre mayor se olvid\\u00f3 y volvi\\u00f3 a preguntar.<\\/p><p>Su hijo volvi\\u00f3 a responder lo mismo: \\\"Ese es el cuervo\\\".<\\/p><p>Este intercambio continu\\u00f3 de siete a ocho veces cuando, y al final, su hijo se molest\\u00f3 y respondi\\u00f3 con ira: \\\"\\u00bfPor qu\\u00e9 preguntas lo mismo una y otra vez?\\\"<\\/p><p>El anciano respondi\\u00f3 con l\\u00e1grimas en los ojos. \\\"Hijo, no te enojes. Cuando ten\\u00edas 4 a\\u00f1os me hiciste la misma pregunta 40 veces y nunca me enoj\\u00e9.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5294,705,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5295,705,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5303,706,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5305,707,'_elementor_template_type','wp-page'),(5306,707,'_elementor_edit_mode','builder'),(5307,707,'_elementor_version','3.12.2'),(5308,707,'_wp_page_template','default'),(5309,707,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5310,707,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>En una hermosa ma\\u00f1ana, un caballero mayor, de 75 a\\u00f1os, estaba sentado con su hijo cuando le pregunt\\u00f3 qu\\u00e9 estaba sentado en la ventana. \\u00c9l mismo no fue capaz de reconocer lo que era, debido a su d\\u00e9bil vista.<\\/p><p>Su hijo respondi\\u00f3: \\\"Ese es el cuervo\\\".<\\/p><p>Debido a su edad, el hombre mayor se olvid\\u00f3 y volvi\\u00f3 a preguntar.<\\/p><p>Su hijo volvi\\u00f3 a responder lo mismo: \\\"Ese es el cuervo\\\".<\\/p><p>Este intercambio continu\\u00f3 de siete a ocho veces cuando, y al final, su hijo se molest\\u00f3 y respondi\\u00f3 con ira: \\\"\\u00bfPor qu\\u00e9 preguntas lo mismo una y otra vez?\\\"<\\/p><p>El anciano respondi\\u00f3 con l\\u00e1grimas en los ojos. \\\"Hijo, no te enojes. Cuando ten\\u00edas 4 a\\u00f1os me hiciste la misma pregunta 40 veces y nunca me enoj\\u00e9.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5311,707,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5313,708,'_elementor_template_type','wp-page'),(5314,708,'_elementor_edit_mode','builder'),(5315,708,'_elementor_version','3.12.2'),(5316,708,'_wp_page_template','default'),(5317,708,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5318,708,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">On a beautiful morning, an older gentleman, aged 75, was sitting with his son when he asked his son what was sitting in the window. He himself was not able to recognize what it was, due to his weak eyesight.<\\/p><p style=\\\"text-align: justify;\\\">His son replied, \\\"That is the crow.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Due to his age, the older man forgot and asked again.<\\/p><p style=\\\"text-align: justify;\\\">His son again replied the same thing, \\\"That is the crow.\\\"<\\/p><p style=\\\"text-align: justify;\\\">This exchange continued for seven to eight times when, and at last, his son got annoyed and replied with anger, \\\"Why are you asking the same thing again and again?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The old man replied with tears in his eyes. \\\"Son, don\'t get angry. When you were at the age of 4 years you asked me the same question 40 times and I never got angry<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5319,708,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5322,709,'_elementor_template_type','wp-page'),(5323,709,'_elementor_edit_mode','builder'),(5324,709,'_elementor_version','3.12.2'),(5325,709,'_wp_page_template','default'),(5326,709,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5327,709,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un hombre de negocios estadounidense de vacaciones parado en el muelle de un pintoresco pueblo pesquero costero en el sur de M\\u00e9xico observ\\u00f3 c\\u00f3mo un peque\\u00f1o bote con solo un joven pescador mexicano se detuvo en el muelle. Dentro del peque\\u00f1o bote hab\\u00eda varios atunes aleta amarilla grandes. Disfrutando del calor del sol de la tarde, el estadounidense felicit\\u00f3 al mexicano por la calidad de su pescado.<\\/p><p>\\\"\\u00bfCu\\u00e1nto tiempo te llev\\u00f3 atraparlos?\\\", Pregunt\\u00f3 casualmente el estadounidense.<\\/p><p>\\\"Oh, unas horas\\\", respondi\\u00f3 el pescador mexicano.<\\/p><p>\\\"\\u00bfPor qu\\u00e9 no te quedas m\\u00e1s tiempo y pescas m\\u00e1s peces?\\\", pregunt\\u00f3 entonces el empresario estadounidense.<\\/p><p>El mexicano respondi\\u00f3 calurosamente: \\\"Con esto tengo m\\u00e1s que suficiente para apoyar las necesidades de mi familia\\\".<\\/p><p>El hombre de negocios entonces se puso serio, \\\"\\u00bfPero qu\\u00e9 haces con el resto de tu tiempo?\\\"<\\/p><p>Respondiendo con una sonrisa, el pescador mexicano respondi\\u00f3: \\\"Duermo hasta tarde, juego con mis hijos, veo juegos de pelota y tomo una siesta con mi esposa. A veces por las noches doy un paseo por el pueblo para ver a mis amigos, tocar la guitarra, cantar algunas canciones...\\\"<\\/p><p>El empresario estadounidense interrumpi\\u00f3 con impaciencia: \\\"Mira, tengo un MBA de Harvard y puedo ayudarte a ser m\\u00e1s rentable. Puede comenzar pescando varias horas m\\u00e1s todos los d\\u00edas. A continuaci\\u00f3n, puede vender el pescado extra que captura. Con el dinero extra, puedes comprar un barco m\\u00e1s grande. Con los ingresos adicionales que traer\\u00e1 un barco m\\u00e1s grande, en poco tiempo puede comprar un segundo barco, luego un tercero, y as\\u00ed sucesivamente, hasta que tenga una flota completa de barcos de pesca\\\".<\\/p><p>Orgulloso de su propio pensamiento agudo, elabor\\u00f3 con entusiasmo un gran plan que podr\\u00eda generar ganancias a\\u00fan mayores: \\\"Entonces, en lugar de vender su captura a un intermediario, podr\\u00e1 vender su pescado directamente al procesador, o incluso abrir su propia f\\u00e1brica de conservas. Eventualmente, podr\\u00eda controlar el producto, el procesamiento y la distribuci\\u00f3n. Podr\\u00edas dejar este peque\\u00f1o pueblo costero y mudarte a la Ciudad de M\\u00e9xico, o posiblemente incluso a Los \\u00c1ngeles o Nueva York, donde podr\\u00edas expandir a\\u00fan m\\u00e1s tu empresa\\\".<\\/p><p>Como nunca hab\\u00eda pensado en tales cosas, el pescador mexicano pregunt\\u00f3: \\\"\\u00bfPero cu\\u00e1nto tiempo tomar\\u00e1 todo esto?\\\"<\\/p><p>Despu\\u00e9s de un r\\u00e1pido c\\u00e1lculo mental, el MBA de Harvard pronunci\\u00f3: \\\"Probablemente unos 15-20 a\\u00f1os, tal vez menos si trabajas muy duro\\\".<\\/p><p>\\\"\\u00bfY luego qu\\u00e9, se\\u00f1or?\\\", pregunt\\u00f3 el pescador.<\\/p><p>\\\"\\u00a1Por qu\\u00e9, esa es la mejor parte!\\\", Respondi\\u00f3 el empresario con una sonrisa. \\\"Cuando sea el momento adecuado, vender\\u00edas las acciones de tu empresa al p\\u00fablico y te volver\\u00edas muy rico. Ganar\\u00edas millones\\\".<\\/p><p>\\\"\\u00bfMillones? \\u00bfRealmente? \\u00bfQu\\u00e9 har\\u00eda yo con todo esto?\\\", pregunt\\u00f3 el joven pescador con incredulidad.<\\/p><p>El empresario se jact\\u00f3: \\\"Entonces podr\\u00edas jubilarte felizmente con todo el dinero que has ganado. Podr\\u00edas mudarte a un pintoresco pueblo pesquero costero donde podr\\u00edas dormir hasta tarde, jugar con tus nietos, ver juegos de pelota y tomar la siesta con tu esposa. Pod\\u00edas pasear hasta el pueblo por las noches, donde pod\\u00edas tocar la guitarra y cantar con tus amigos todo lo que quisieras\\\".<br \\/>La moraleja de la historia es:\\u00a0<strong>Sepa lo que realmente importa en la vida, y puede encontrar que ya est\\u00e1 mucho m\\u00e1s cerca de lo que piensa.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5328,709,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5329,709,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5330,710,'_elementor_template_type','wp-page'),(5331,710,'_elementor_edit_mode','builder'),(5332,710,'_elementor_version','3.12.2'),(5333,710,'_wp_page_template','default'),(5334,710,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5335,710,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un hombre de negocios estadounidense de vacaciones parado en el muelle de un pintoresco pueblo pesquero costero en el sur de M\\u00e9xico observ\\u00f3 c\\u00f3mo un peque\\u00f1o bote con solo un joven pescador mexicano se detuvo en el muelle. Dentro del peque\\u00f1o bote hab\\u00eda varios atunes aleta amarilla grandes. Disfrutando del calor del sol de la tarde, el estadounidense felicit\\u00f3 al mexicano por la calidad de su pescado.<\\/p><p>\\\"\\u00bfCu\\u00e1nto tiempo te llev\\u00f3 atraparlos?\\\", Pregunt\\u00f3 casualmente el estadounidense.<\\/p><p>\\\"Oh, unas horas\\\", respondi\\u00f3 el pescador mexicano.<\\/p><p>\\\"\\u00bfPor qu\\u00e9 no te quedas m\\u00e1s tiempo y pescas m\\u00e1s peces?\\\", pregunt\\u00f3 entonces el empresario estadounidense.<\\/p><p>El mexicano respondi\\u00f3 calurosamente: \\\"Con esto tengo m\\u00e1s que suficiente para apoyar las necesidades de mi familia\\\".<\\/p><p>El hombre de negocios entonces se puso serio, \\\"\\u00bfPero qu\\u00e9 haces con el resto de tu tiempo?\\\"<\\/p><p>Respondiendo con una sonrisa, el pescador mexicano respondi\\u00f3: \\\"Duermo hasta tarde, juego con mis hijos, veo juegos de pelota y tomo una siesta con mi esposa. A veces por las noches doy un paseo por el pueblo para ver a mis amigos, tocar la guitarra, cantar algunas canciones...\\\"<\\/p><p>El empresario estadounidense interrumpi\\u00f3 con impaciencia: \\\"Mira, tengo un MBA de Harvard y puedo ayudarte a ser m\\u00e1s rentable. Puede comenzar pescando varias horas m\\u00e1s todos los d\\u00edas. A continuaci\\u00f3n, puede vender el pescado extra que captura. Con el dinero extra, puedes comprar un barco m\\u00e1s grande. Con los ingresos adicionales que traer\\u00e1 un barco m\\u00e1s grande, en poco tiempo puede comprar un segundo barco, luego un tercero, y as\\u00ed sucesivamente, hasta que tenga una flota completa de barcos de pesca\\\".<\\/p><p>Orgulloso de su propio pensamiento agudo, elabor\\u00f3 con entusiasmo un gran plan que podr\\u00eda generar ganancias a\\u00fan mayores: \\\"Entonces, en lugar de vender su captura a un intermediario, podr\\u00e1 vender su pescado directamente al procesador, o incluso abrir su propia f\\u00e1brica de conservas. Eventualmente, podr\\u00eda controlar el producto, el procesamiento y la distribuci\\u00f3n. Podr\\u00edas dejar este peque\\u00f1o pueblo costero y mudarte a la Ciudad de M\\u00e9xico, o posiblemente incluso a Los \\u00c1ngeles o Nueva York, donde podr\\u00edas expandir a\\u00fan m\\u00e1s tu empresa\\\".<\\/p><p>Como nunca hab\\u00eda pensado en tales cosas, el pescador mexicano pregunt\\u00f3: \\\"\\u00bfPero cu\\u00e1nto tiempo tomar\\u00e1 todo esto?\\\"<\\/p><p>Despu\\u00e9s de un r\\u00e1pido c\\u00e1lculo mental, el MBA de Harvard pronunci\\u00f3: \\\"Probablemente unos 15-20 a\\u00f1os, tal vez menos si trabajas muy duro\\\".<\\/p><p>\\\"\\u00bfY luego qu\\u00e9, se\\u00f1or?\\\", pregunt\\u00f3 el pescador.<\\/p><p>\\\"\\u00a1Por qu\\u00e9, esa es la mejor parte!\\\", Respondi\\u00f3 el empresario con una sonrisa. \\\"Cuando sea el momento adecuado, vender\\u00edas las acciones de tu empresa al p\\u00fablico y te volver\\u00edas muy rico. Ganar\\u00edas millones\\\".<\\/p><p>\\\"\\u00bfMillones? \\u00bfRealmente? \\u00bfQu\\u00e9 har\\u00eda yo con todo esto?\\\", pregunt\\u00f3 el joven pescador con incredulidad.<\\/p><p>El empresario se jact\\u00f3: \\\"Entonces podr\\u00edas jubilarte felizmente con todo el dinero que has ganado. Podr\\u00edas mudarte a un pintoresco pueblo pesquero costero donde podr\\u00edas dormir hasta tarde, jugar con tus nietos, ver juegos de pelota y tomar la siesta con tu esposa. Pod\\u00edas pasear hasta el pueblo por las noches, donde pod\\u00edas tocar la guitarra y cantar con tus amigos todo lo que quisieras\\\".<br \\/>La moraleja de la historia es:\\u00a0<strong>Sepa lo que realmente importa en la vida, y puede encontrar que ya est\\u00e1 mucho m\\u00e1s cerca de lo que piensa.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5336,710,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5337,710,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5344,711,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5345,712,'_elementor_template_type','wp-page'),(5346,712,'_elementor_edit_mode','builder'),(5347,712,'_elementor_version','3.12.2'),(5348,712,'_wp_page_template','default'),(5349,712,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5350,712,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un hombre de negocios estadounidense de vacaciones parado en el muelle de un pintoresco pueblo pesquero costero en el sur de M\\u00e9xico observ\\u00f3 c\\u00f3mo un peque\\u00f1o bote con solo un joven pescador mexicano se detuvo en el muelle. Dentro del peque\\u00f1o bote hab\\u00eda varios atunes aleta amarilla grandes. Disfrutando del calor del sol de la tarde, el estadounidense felicit\\u00f3 al mexicano por la calidad de su pescado.<\\/p><p>\\\"\\u00bfCu\\u00e1nto tiempo te llev\\u00f3 atraparlos?\\\", Pregunt\\u00f3 casualmente el estadounidense.<\\/p><p>\\\"Oh, unas horas\\\", respondi\\u00f3 el pescador mexicano.<\\/p><p>\\\"\\u00bfPor qu\\u00e9 no te quedas m\\u00e1s tiempo y pescas m\\u00e1s peces?\\\", pregunt\\u00f3 entonces el empresario estadounidense.<\\/p><p>El mexicano respondi\\u00f3 calurosamente: \\\"Con esto tengo m\\u00e1s que suficiente para apoyar las necesidades de mi familia\\\".<\\/p><p>El hombre de negocios entonces se puso serio, \\\"\\u00bfPero qu\\u00e9 haces con el resto de tu tiempo?\\\"<\\/p><p>Respondiendo con una sonrisa, el pescador mexicano respondi\\u00f3: \\\"Duermo hasta tarde, juego con mis hijos, veo juegos de pelota y tomo una siesta con mi esposa. A veces por las noches doy un paseo por el pueblo para ver a mis amigos, tocar la guitarra, cantar algunas canciones...\\\"<\\/p><p>El empresario estadounidense interrumpi\\u00f3 con impaciencia: \\\"Mira, tengo un MBA de Harvard y puedo ayudarte a ser m\\u00e1s rentable. Puede comenzar pescando varias horas m\\u00e1s todos los d\\u00edas. A continuaci\\u00f3n, puede vender el pescado extra que captura. Con el dinero extra, puedes comprar un barco m\\u00e1s grande. Con los ingresos adicionales que traer\\u00e1 un barco m\\u00e1s grande, en poco tiempo puede comprar un segundo barco, luego un tercero, y as\\u00ed sucesivamente, hasta que tenga una flota completa de barcos de pesca\\\".<\\/p><p>Orgulloso de su propio pensamiento agudo, elabor\\u00f3 con entusiasmo un gran plan que podr\\u00eda generar ganancias a\\u00fan mayores: \\\"Entonces, en lugar de vender su captura a un intermediario, podr\\u00e1 vender su pescado directamente al procesador, o incluso abrir su propia f\\u00e1brica de conservas. Eventualmente, podr\\u00eda controlar el producto, el procesamiento y la distribuci\\u00f3n. Podr\\u00edas dejar este peque\\u00f1o pueblo costero y mudarte a la Ciudad de M\\u00e9xico, o posiblemente incluso a Los \\u00c1ngeles o Nueva York, donde podr\\u00edas expandir a\\u00fan m\\u00e1s tu empresa\\\".<\\/p><p>Como nunca hab\\u00eda pensado en tales cosas, el pescador mexicano pregunt\\u00f3: \\\"\\u00bfPero cu\\u00e1nto tiempo tomar\\u00e1 todo esto?\\\"<\\/p><p>Despu\\u00e9s de un r\\u00e1pido c\\u00e1lculo mental, el MBA de Harvard pronunci\\u00f3: \\\"Probablemente unos 15-20 a\\u00f1os, tal vez menos si trabajas muy duro\\\".<\\/p><p>\\\"\\u00bfY luego qu\\u00e9, se\\u00f1or?\\\", pregunt\\u00f3 el pescador.<\\/p><p>\\\"\\u00a1Por qu\\u00e9, esa es la mejor parte!\\\", Respondi\\u00f3 el empresario con una sonrisa. \\\"Cuando sea el momento adecuado, vender\\u00edas las acciones de tu empresa al p\\u00fablico y te volver\\u00edas muy rico. Ganar\\u00edas millones\\\".<\\/p><p>\\\"\\u00bfMillones? \\u00bfRealmente? \\u00bfQu\\u00e9 har\\u00eda yo con todo esto?\\\", pregunt\\u00f3 el joven pescador con incredulidad.<\\/p><p>El empresario se jact\\u00f3: \\\"Entonces podr\\u00edas jubilarte felizmente con todo el dinero que has ganado. Podr\\u00edas mudarte a un pintoresco pueblo pesquero costero donde podr\\u00edas dormir hasta tarde, jugar con tus nietos, ver juegos de pelota y tomar la siesta con tu esposa. Pod\\u00edas pasear hasta el pueblo por las noches, donde pod\\u00edas tocar la guitarra y cantar con tus amigos todo lo que quisieras\\\".<br \\/>La moraleja de la historia es:\\u00a0<strong>Sepa lo que realmente importa en la vida, y puede encontrar que ya est\\u00e1 mucho m\\u00e1s cerca de lo que piensa.<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5351,712,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5355,713,'_wp_page_template','default'),(5356,713,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5357,713,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">A vacationing American businessman standing on the pier of a quaint coastal fishing village in southern Mexico watched as a small boat with just one young Mexican fisherman pulled into the dock. Inside the small boat were several large yellowfin tuna. Enjoying the warmth of the early afternoon sun, the American complimented the Mexican on the quality of his fish.<\\/p><p style=\\\"text-align: justify;\\\">\\\"How long did it take you to catch them?\\\" the American casually asked.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Oh, a few hours,\\\" the Mexican fisherman replied.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Why don\'t you stay out longer and catch more fish?\\\" the American businessman then asked.<\\/p><p style=\\\"text-align: justify;\\\">The Mexican warmly replied, \\\"With this I have more than enough to support my family\'s needs.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The businessman then became serious, \\\"But what do you do with the rest of your time?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Responding with a smile, the Mexican fisherman answered, \\\"I sleep late, play with my children, watch ballgames, and take siesta with my wife. Sometimes in the evenings I take a stroll into the village to see my friends, play the guitar, sing a few songs...\\\"<\\/p><p style=\\\"text-align: justify;\\\">The American businessman impatiently interrupted, \\\"Look, I have an MBA from Harvard, and I can help you to be more profitable. You can start by fishing several hours longer every day. You can then sell the extra fish you catch. With the extra money, you can buy a bigger boat. With the additional income that larger boat will bring, before long you can buy a second boat, then a third one, and so on, until you have an entire fleet of fishing boats.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Proud of his own sharp thinking, he excitedly elaborated a grand scheme which could bring even bigger profits, \\\"Then, instead of selling your catch to a middleman you\'ll be able to sell your fish directly to the processor, or even open your own cannery. Eventually, you could control the product, processing and distribution. You could leave this tiny coastal village and move to Mexico City, or possibly even Los Angeles or New York City, where you could even further expand your enterprise.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Having never thought of such things, the Mexican fisherman asked, \\\"But how long will all this take?\\\"<\\/p><p style=\\\"text-align: justify;\\\">After a rapid mental calculation, the Harvard MBA pronounced, \\\"Probably about 15-20 years, maybe less if you work really hard.\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"And then what, se\\u00f1or?\\\" asked the fisherman.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Why, that\'s the best part!\\\" answered the businessman with a laugh. \\\"When the time is right, you would sell your company stock to the public and become very rich. You would make millions.\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"Millions? Really? What would I do with it all?\\\" asked the young fisherman in disbelief.<\\/p><p style=\\\"text-align: justify;\\\">The businessman boasted, \\\"Then you could happily retire with all the money you\'ve made. You could move to a quaint coastal fishing village where you could sleep late, play with your grandchildren, watch ballgames, and take siesta with your wife. You could stroll to the village in the evenings where you could play the guitar and sing with your friends all you want.\\\"<br \\/>The moral of the story is: <strong>Know what really matters in life, and you may find that it is already much closer than you think<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5358,713,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8485,1113,'_elementor_template_type','wp-page'),(8486,1113,'_elementor_edit_mode','builder'),(8487,1113,'_elementor_version','3.13.3'),(8488,1113,'_wp_page_template','default'),(8489,1113,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8490,1113,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">A vacationing American businessman standing on the pier of a quaint coastal fishing village in southern Mexico watched as a small boat with just one young Mexican fisherman pulled into the dock. Inside the small boat were several large yellowfin tuna. Enjoying the warmth of the early afternoon sun, the American complimented the Mexican on the quality of his fish.<\\/p><p style=\\\"text-align: justify;\\\">\\\"How long did it take you to catch them?\\\" the American casually asked.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Oh, a few hours,\\\" the Mexican fisherman replied.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Why don\'t you stay out longer and catch more fish?\\\" the American businessman then asked.<\\/p><p style=\\\"text-align: justify;\\\">The Mexican warmly replied, \\\"With this I have more than enough to support my family\'s needs.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The businessman then became serious, \\\"But what do you do with the rest of your time?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Responding with a smile, the Mexican fisherman answered, \\\"I sleep late, play with my children, watch ballgames, and take siesta with my wife. Sometimes in the evenings I take a stroll into the village to see my friends, play the guitar, sing a few songs...\\\"<\\/p><p style=\\\"text-align: justify;\\\">The American businessman impatiently interrupted, \\\"Look, I have an MBA from Harvard, and I can help you to be more profitable. You can start by fishing several hours longer every day. You can then sell the extra fish you catch. With the extra money, you can buy a bigger boat. With the additional income that larger boat will bring, before long you can buy a second boat, then a third one, and so on, until you have an entire fleet of fishing boats.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Proud of his own sharp thinking, he excitedly elaborated a grand scheme which could bring even bigger profits, \\\"Then, instead of selling your catch to a middleman you\'ll be able to sell your fish directly to the processor, or even open your own cannery. Eventually, you could control the product, processing and distribution. You could leave this tiny coastal village and move to Mexico City, or possibly even Los Angeles or New York City, where you could even further expand your enterprise.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Having never thought of such things, the Mexican fisherman asked, \\\"But how long will all this take?\\\"<\\/p><p style=\\\"text-align: justify;\\\">After a rapid mental calculation, the Harvard MBA pronounced, \\\"Probably about 15-20 years, maybe less if you work really hard.\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"And then what, se\\u00f1or?\\\" asked the fisherman.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Why, that\'s the best part!\\\" answered the businessman with a laugh. \\\"When the time is right, you would sell your company stock to the public and become very rich. You would make millions.\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"Millions? Really? What would I do with it all?\\\" asked the young fisherman in disbelief.<\\/p><p style=\\\"text-align: justify;\\\">The businessman boasted, \\\"Then you could happily retire with all the money you\'ve made. You could move to a quaint coastal fishing village where you could sleep late, play with your grandchildren, watch ballgames, and take siesta with your wife. You could stroll to the village in the evenings where you could play the guitar and sing with your friends all you want.\\\"<br \\/>The moral of the story is: <strong>Know what really matters in life, and you may find that it is already much closer than you think<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5360,714,'_elementor_template_type','wp-page'),(5361,714,'_elementor_edit_mode','builder'),(5362,714,'_elementor_version','3.12.2'),(5363,714,'_wp_page_template','default'),(5364,714,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5365,714,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Este es un mensaje poderoso para nuestra sociedad moderna. Parece que hemos perdido nuestro rumbo y nuestro sentido de direcci\\u00f3n.<\\/p><p>Una persona joven acad\\u00e9micamente excelente fue a solicitar un puesto directivo en una gran empresa. Pas\\u00f3 la primera entrevista; El director hizo la \\u00faltima entrevista. El director descubri\\u00f3 en el CV que los logros acad\\u00e9micos del joven fueron excelentes hasta el final, desde la escuela secundaria hasta la investigaci\\u00f3n de posgrado, nunca tuvo un a\\u00f1o en el que no puntu\\u00f3.<\\/p><p>El director pregunt\\u00f3: \\\"\\u00bfObtuviste alguna beca en la escuela?\\\"<\\/p><p>El joven respondi\\u00f3: \\\"Ninguno\\\".<\\/p><p>El director pregunt\\u00f3: \\\"\\u00bfFue tu padre quien pag\\u00f3 tus cuotas escolares?\\\"<\\/p><p>El joven respondi\\u00f3: \\\"Mi padre falleci\\u00f3 cuando yo ten\\u00eda un a\\u00f1o, fue mi madre quien pag\\u00f3 mis cuotas escolares\\\".<\\/p><p>El director pregunt\\u00f3: \\\"\\u00bfD\\u00f3nde trabajaba tu madre?\\\"<\\/p><p>El joven respondi\\u00f3: \\\"Mi madre trabajaba como lavandera\\\".<\\/p><p>El director le pidi\\u00f3 al joven que mostrara sus manos. El joven mostr\\u00f3 un par de manos que eran suaves y perfectas.<\\/p><p>El director pregunt\\u00f3: \\\"\\u00bfAlguna vez has ayudado a tu madre a lavar la ropa antes?\\\"<\\/p><p>El joven respondi\\u00f3: \\\"Nunca, mi madre siempre quiso que estudiara y leyera m\\u00e1s libros. Adem\\u00e1s, mi madre puede lavar la ropa m\\u00e1s r\\u00e1pido que yo\\\".<\\/p><p>El director dijo: \\\"Tengo una solicitud. Cuando regreses hoy, ve y limpia las manos de tu madre, y luego m\\u00edrame ma\\u00f1ana por la ma\\u00f1ana\\\".<\\/p><p>El joven sinti\\u00f3 que sus posibilidades de conseguir el trabajo eran altas. Cuando regres\\u00f3, felizmente le pidi\\u00f3 a su madre que le permitiera limpiarse las manos. Su madre se sinti\\u00f3 extra\\u00f1a. Feliz pero con sentimientos encontrados, mostr\\u00f3 sus manos al joven.<\\/p><p>El joven limpi\\u00f3 las manos de su madre lentamente. Su l\\u00e1grima cay\\u00f3 mientras lo hac\\u00eda. Fue la primera vez que not\\u00f3 que las manos de su madre estaban tan arrugadas y hab\\u00eda tantos moretones en sus manos. Algunos moretones eran tan dolorosos que su madre se estremeci\\u00f3 cuando los limpiaron con agua.<\\/p><p>Esta fue la primera vez que el joven se dio cuenta de que era este par de manos las que lavaban la ropa todos los d\\u00edas para permitirle pagar la cuota escolar. Los moretones en las manos de la madre fueron el precio que la madre tuvo que pagar por su graduaci\\u00f3n, excelencia acad\\u00e9mica y su futuro.<\\/p><p>Despu\\u00e9s de terminar la limpieza de las manos de su madre, el joven lav\\u00f3 en silencio toda la ropa restante para su madre.<\\/p><p>Esa noche, madre e hijo hablaron durante mucho tiempo.<\\/p><p>A la ma\\u00f1ana siguiente, el joven fue a la oficina del director.<\\/p><p>El director not\\u00f3 las l\\u00e1grimas en los ojos del joven y pregunt\\u00f3: \\\"\\u00bfPuede decirme qu\\u00e9 ha hecho y aprendido ayer en su casa?\\\"<\\/p><p>El joven respondi\\u00f3: \\\"Limpi\\u00e9 las manos de mi madre y tambi\\u00e9n termin\\u00e9 de limpiar toda la ropa restante\\\".<\\/p><p>El director pregunt\\u00f3: \\\"Por favor, d\\u00edgame sus sentimientos\\\".<\\/p><p>El joven dijo:<\\/p><ol><li>Ahora s\\u00e9 lo que es el aprecio. Sin mi madre, no habr\\u00eda habido el \\u00e9xito de m\\u00ed hoy.<\\/li><li>Al trabajar juntos y ayudar a mi madre, solo ahora me doy cuenta de lo dif\\u00edcil y dif\\u00edcil que es hacer algo.<\\/li><li>He llegado a apreciar la importancia y el valor de las relaciones familiares.<\\/li><\\/ol><p>El director dijo: \\\"Esto es lo que estoy buscando para ser mi gerente. Quiero reclutar a una persona que pueda apreciar la ayuda de los dem\\u00e1s, una persona que conozca los sufrimientos de los dem\\u00e1s para hacer las cosas, y una persona que no ponga el dinero como su \\u00fanico objetivo en la vida. Est\\u00e1s contratado\\\".<\\/p><p>M\\u00e1s tarde, este joven trabaj\\u00f3 muy duro y recibi\\u00f3 el respeto de sus subordinados. Cada empleado trabaj\\u00f3 diligentemente y en equipo. El rendimiento de la compa\\u00f1\\u00eda mejor\\u00f3 enormemente<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5366,714,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5367,714,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5374,715,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5375,716,'_elementor_template_type','wp-page'),(5376,716,'_elementor_edit_mode','builder'),(5377,716,'_elementor_version','3.12.2'),(5378,716,'_wp_page_template','default'),(5379,716,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5380,716,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Este es un mensaje poderoso para nuestra sociedad moderna. Parece que hemos perdido nuestro rumbo y nuestro sentido de direcci\\u00f3n.<\\/p><p>Una persona joven acad\\u00e9micamente excelente fue a solicitar un puesto directivo en una gran empresa. Pas\\u00f3 la primera entrevista; El director hizo la \\u00faltima entrevista. El director descubri\\u00f3 en el CV que los logros acad\\u00e9micos del joven fueron excelentes hasta el final, desde la escuela secundaria hasta la investigaci\\u00f3n de posgrado, nunca tuvo un a\\u00f1o en el que no puntu\\u00f3.<\\/p><p>El director pregunt\\u00f3: \\\"\\u00bfObtuviste alguna beca en la escuela?\\\"<\\/p><p>El joven respondi\\u00f3: \\\"Ninguno\\\".<\\/p><p>El director pregunt\\u00f3: \\\"\\u00bfFue tu padre quien pag\\u00f3 tus cuotas escolares?\\\"<\\/p><p>El joven respondi\\u00f3: \\\"Mi padre falleci\\u00f3 cuando yo ten\\u00eda un a\\u00f1o, fue mi madre quien pag\\u00f3 mis cuotas escolares\\\".<\\/p><p>El director pregunt\\u00f3: \\\"\\u00bfD\\u00f3nde trabajaba tu madre?\\\"<\\/p><p>El joven respondi\\u00f3: \\\"Mi madre trabajaba como lavandera\\\".<\\/p><p>El director le pidi\\u00f3 al joven que mostrara sus manos. El joven mostr\\u00f3 un par de manos que eran suaves y perfectas.<\\/p><p>El director pregunt\\u00f3: \\\"\\u00bfAlguna vez has ayudado a tu madre a lavar la ropa antes?\\\"<\\/p><p>El joven respondi\\u00f3: \\\"Nunca, mi madre siempre quiso que estudiara y leyera m\\u00e1s libros. Adem\\u00e1s, mi madre puede lavar la ropa m\\u00e1s r\\u00e1pido que yo\\\".<\\/p><p>El director dijo: \\\"Tengo una solicitud. Cuando regreses hoy, ve y limpia las manos de tu madre, y luego m\\u00edrame ma\\u00f1ana por la ma\\u00f1ana\\\".<\\/p><p>El joven sinti\\u00f3 que sus posibilidades de conseguir el trabajo eran altas. Cuando regres\\u00f3, felizmente le pidi\\u00f3 a su madre que le permitiera limpiarse las manos. Su madre se sinti\\u00f3 extra\\u00f1a. Feliz pero con sentimientos encontrados, mostr\\u00f3 sus manos al joven.<\\/p><p>El joven limpi\\u00f3 las manos de su madre lentamente. Su l\\u00e1grima cay\\u00f3 mientras lo hac\\u00eda. Fue la primera vez que not\\u00f3 que las manos de su madre estaban tan arrugadas y hab\\u00eda tantos moretones en sus manos. Algunos moretones eran tan dolorosos que su madre se estremeci\\u00f3 cuando los limpiaron con agua.<\\/p><p>Esta fue la primera vez que el joven se dio cuenta de que era este par de manos las que lavaban la ropa todos los d\\u00edas para permitirle pagar la cuota escolar. Los moretones en las manos de la madre fueron el precio que la madre tuvo que pagar por su graduaci\\u00f3n, excelencia acad\\u00e9mica y su futuro.<\\/p><p>Despu\\u00e9s de terminar la limpieza de las manos de su madre, el joven lav\\u00f3 en silencio toda la ropa restante para su madre.<\\/p><p>Esa noche, madre e hijo hablaron durante mucho tiempo.<\\/p><p>A la ma\\u00f1ana siguiente, el joven fue a la oficina del director.<\\/p><p>El director not\\u00f3 las l\\u00e1grimas en los ojos del joven y pregunt\\u00f3: \\\"\\u00bfPuede decirme qu\\u00e9 ha hecho y aprendido ayer en su casa?\\\"<\\/p><p>El joven respondi\\u00f3: \\\"Limpi\\u00e9 las manos de mi madre y tambi\\u00e9n termin\\u00e9 de limpiar toda la ropa restante\\\".<\\/p><p>El director pregunt\\u00f3: \\\"Por favor, d\\u00edgame sus sentimientos\\\".<\\/p><p>El joven dijo:<\\/p><ol><li>Ahora s\\u00e9 lo que es el aprecio. Sin mi madre, no habr\\u00eda habido el \\u00e9xito de m\\u00ed hoy.<\\/li><li>Al trabajar juntos y ayudar a mi madre, solo ahora me doy cuenta de lo dif\\u00edcil y dif\\u00edcil que es hacer algo.<\\/li><li>He llegado a apreciar la importancia y el valor de las relaciones familiares.<\\/li><\\/ol><p>El director dijo: \\\"Esto es lo que estoy buscando para ser mi gerente. Quiero reclutar a una persona que pueda apreciar la ayuda de los dem\\u00e1s, una persona que conozca los sufrimientos de los dem\\u00e1s para hacer las cosas, y una persona que no ponga el dinero como su \\u00fanico objetivo en la vida. Est\\u00e1s contratado\\\".<\\/p><p>M\\u00e1s tarde, este joven trabaj\\u00f3 muy duro y recibi\\u00f3 el respeto de sus subordinados. Cada empleado trabaj\\u00f3 diligentemente y en equipo. El rendimiento de la compa\\u00f1\\u00eda mejor\\u00f3 enormemente<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5381,716,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5382,717,'_elementor_template_type','wp-page'),(5383,717,'_elementor_edit_mode','builder'),(5384,717,'_elementor_version','3.12.2'),(5385,717,'_wp_page_template','default'),(5386,717,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpjv_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (5387,717,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">This is a powerful message for our modern society. We seem to have lost our bearing and our sense of direction.<\\/p><p style=\\\"text-align: justify;\\\">One young academically excellent person went to apply for a managerial position in a big company. He passed the first interview; the director did the last interview. The director discovered from the CV that the youth\'s academic achievements were excellent all the way, from the secondary school until the postgraduate research, never had a year when he did not score.<\\/p><p style=\\\"text-align: justify;\\\">The director asked, \\\"Did you obtain any scholarships in school?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth answered, \\\"None.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The director asked, \\\"Was it your father who paid for your school fees?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth answered, \\\"My father passed away when I was one year old, it was my mother who paid for my school fees.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The director asked, \\\"Where did your mother work?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth answered, \\\"My mother worked as laundry woman.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The director requested the youth to show his hands. The youth showed a pair of hands that were smooth and perfect.<\\/p><p style=\\\"text-align: justify;\\\">The director asked, \\\"Have you ever helped your mother wash the clothes before?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth answered, \\\"Never, my mother always wanted me to study and read more books. Furthermore, my mother can wash clothes faster than me.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The director said, \\\"I have a request. When you go back today, go and clean your mother\'s hands, and then see me tomorrow morning.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth felt that his chance of landing the job was high. When he went back, he happily requested his mother to let him clean her hands. His mother felt strange. Happy but with mixed feelings, she showed her hands to the young man.<\\/p><p style=\\\"text-align: justify;\\\">The youth cleaned his mother\'s hands slowly. His tear fell as he did that. It was the first time he noticed that his mother\'s hands were so wrinkled, and there were so many bruises in her hands. Some bruises were so painful that his mother shivered when they were cleaned with water.<\\/p><p style=\\\"text-align: justify;\\\">This was the first time the youth realized that it was this pair of hands that washed the clothes everyday to enable him to pay the school fee. The bruises in the mother\'s hands were the price that the mother had to pay for his graduation, academic excellence and his future.<\\/p><p style=\\\"text-align: justify;\\\">After finishing the cleaning of his mother\'s hands, the youth quietly washed all the remaining clothes for his mother.<\\/p><p style=\\\"text-align: justify;\\\">That night, mother and son talked for a very long time.<\\/p><p style=\\\"text-align: justify;\\\">Next morning, the youth went to the director\'s office.<\\/p><p style=\\\"text-align: justify;\\\">The Director noticed the tears in the youth\'s eyes, asked: \\\"Can you tell me what have you done and learned yesterday in your house?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth answered, \\\"I cleaned my mother\'s hands and also finished cleaning all the remaining clothes.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The Director asked, \\\"Please tell me your feelings.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth said:<\\/p><ol style=\\\"text-align: justify;\\\" start=\\\"1\\\"><li>I know now what appreciation is. Without my mother, there would not have been the successful me today.<\\/li><li>By working together and helping my mother, only now I realize how difficult and tough it is to get something done.<\\/li><li>I have come to appreciate the importance and value of family relationships.<\\/li><\\/ol><p style=\\\"text-align: justify;\\\">The director said, \\\"This is what I am looking for to be my manager. I want to recruit a person who can appreciate the help of others, a person who knows the sufferings of others to get things done, and a person who would not put money as his only goal in life. You are hired.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Later on, this young person worked very hard and received the respect of his subordinates. Every employee worked diligently and as a team. The company\'s performance improved tremendously<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5388,717,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8510,1116,'_elementor_template_type','wp-page'),(8511,1116,'_elementor_edit_mode','builder'),(8512,1116,'_elementor_version','3.13.3'),(8513,1116,'_wp_page_template','default'),(8514,1116,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8515,1116,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">This is a powerful message for our modern society. We seem to have lost our bearing and our sense of direction.<\\/p><p style=\\\"text-align: justify;\\\">One young academically excellent person went to apply for a managerial position in a big company. He passed the first interview; the director did the last interview. The director discovered from the CV that the youth\'s academic achievements were excellent all the way, from the secondary school until the postgraduate research, never had a year when he did not score.<\\/p><p style=\\\"text-align: justify;\\\">The director asked, \\\"Did you obtain any scholarships in school?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth answered, \\\"None.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The director asked, \\\"Was it your father who paid for your school fees?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth answered, \\\"My father passed away when I was one year old, it was my mother who paid for my school fees.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The director asked, \\\"Where did your mother work?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth answered, \\\"My mother worked as laundry woman.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The director requested the youth to show his hands. The youth showed a pair of hands that were smooth and perfect.<\\/p><p style=\\\"text-align: justify;\\\">The director asked, \\\"Have you ever helped your mother wash the clothes before?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth answered, \\\"Never, my mother always wanted me to study and read more books. Furthermore, my mother can wash clothes faster than me.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The director said, \\\"I have a request. When you go back today, go and clean your mother\'s hands, and then see me tomorrow morning.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth felt that his chance of landing the job was high. When he went back, he happily requested his mother to let him clean her hands. His mother felt strange. Happy but with mixed feelings, she showed her hands to the young man.<\\/p><p style=\\\"text-align: justify;\\\">The youth cleaned his mother\'s hands slowly. His tear fell as he did that. It was the first time he noticed that his mother\'s hands were so wrinkled, and there were so many bruises in her hands. Some bruises were so painful that his mother shivered when they were cleaned with water.<\\/p><p style=\\\"text-align: justify;\\\">This was the first time the youth realized that it was this pair of hands that washed the clothes everyday to enable him to pay the school fee. The bruises in the mother\'s hands were the price that the mother had to pay for his graduation, academic excellence and his future.<\\/p><p style=\\\"text-align: justify;\\\">After finishing the cleaning of his mother\'s hands, the youth quietly washed all the remaining clothes for his mother.<\\/p><p style=\\\"text-align: justify;\\\">That night, mother and son talked for a very long time.<\\/p><p style=\\\"text-align: justify;\\\">Next morning, the youth went to the director\'s office.<\\/p><p style=\\\"text-align: justify;\\\">The Director noticed the tears in the youth\'s eyes, asked: \\\"Can you tell me what have you done and learned yesterday in your house?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth answered, \\\"I cleaned my mother\'s hands and also finished cleaning all the remaining clothes.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The Director asked, \\\"Please tell me your feelings.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth said:<\\/p><ol style=\\\"text-align: justify;\\\" start=\\\"1\\\"><li>I know now what appreciation is. Without my mother, there would not have been the successful me today.<\\/li><li>By working together and helping my mother, only now I realize how difficult and tough it is to get something done.<\\/li><li>I have come to appreciate the importance and value of family relationships.<\\/li><\\/ol><p style=\\\"text-align: justify;\\\">The director said, \\\"This is what I am looking for to be my manager. I want to recruit a person who can appreciate the help of others, a person who knows the sufferings of others to get things done, and a person who would not put money as his only goal in life. You are hired.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Later on, this young person worked very hard and received the respect of his subordinates. Every employee worked diligently and as a team. The company\'s performance improved tremendously<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5390,718,'_elementor_template_type','wp-page'),(5391,718,'_elementor_edit_mode','builder'),(5392,718,'_elementor_version','3.12.2'),(5393,718,'_wp_page_template','default'),(5394,718,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5395,718,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un disc\\u00edpulo y su maestro caminaban por el bosque. El disc\\u00edpulo estaba perturbado por el hecho de que su mente estaba en constante inquietud.<\\/p><p>Le pregunt\\u00f3 a su maestro: \\\"\\u00bfPor qu\\u00e9 la mente de la mayor\\u00eda de las personas est\\u00e1n inquietas y solo unos pocos poseen una mente tranquila? \\u00bfQu\\u00e9 puede uno hacer para calmar la mente?\\\"<\\/p><p>El maestro mir\\u00f3 al disc\\u00edpulo, sonri\\u00f3 y dijo:<br \\/>\\\"Te contar\\u00e9 una historia. Un elefante estaba de pie y recogiendo hojas de un \\u00e1rbol. Lleg\\u00f3 una peque\\u00f1a mosca, volando y zumbando cerca de su o\\u00eddo. El elefante lo agit\\u00f3 con sus largas orejas. Entonces la mosca volvi\\u00f3 y el elefante la despidi\\u00f3 una vez m\\u00e1s\\\".<\\/p><p>Esto se repiti\\u00f3 varias veces. Entonces el elefante le pregunt\\u00f3 a la mosca:<br \\/>\\\"\\u00bfPor qu\\u00e9 est\\u00e1s tan inquieta y ruidosa? \\u00bfPor qu\\u00e9 no puedes quedarte un rato en un solo lugar?\\\"<\\/p><p>La mosca respondi\\u00f3: \\\"Me atrae todo lo que veo, oigo u huelo. Mis cinco sentidos, y todo lo que sucede a mi alrededor, me tiran constantemente en todas direcciones, y no puedo resistirme a ellos. \\u00bfCu\\u00e1l es tu secreto? \\u00bfC\\u00f3mo puedes mantenerte tan tranquilo y quieto?\\\"<\\/p><p>El elefante dej\\u00f3 de comer y dijo:<br \\/>\\\"Mis cinco sentidos no gobiernan mi atenci\\u00f3n. Tengo el control de mi atenci\\u00f3n y puedo dirigirla a donde quiera. Esto me ayuda a sumergirme en todo lo que hago y, por lo tanto, mantener mi mente enfocada y tranquila. Ahora que estoy comiendo, estoy completamente inmerso en comer. De esta manera, puedo disfrutar de mi comida y masticarla mejor. Controlo mi atenci\\u00f3n, y no al rev\\u00e9s, y esto me ayuda a mantenerme en paz\\\".<\\/p><p>Al escuchar estas palabras, los ojos del disc\\u00edpulo se abrieron de par en par y una sonrisa apareci\\u00f3 en su rostro. Mir\\u00f3 a su maestro y dijo:<br \\/>\\\"\\u00a1Entiendo! Mi mente estar\\u00e1 en constante inquietud, si mis cinco sentidos, y lo que sea que est\\u00e9 sucediendo en el mundo que me rodea est\\u00e1n en control de ella. Por otro lado, si estoy al mando de mis cinco sentidos, capaz de ignorar las impresiones sensoriales, mi mente se calmar\\u00eda y podr\\u00e9 ignorar su inquietud\\\".<\\/p><p>\\\"S\\u00ed, es cierto\\\", respondi\\u00f3 el maestro, \\\"La mente est\\u00e1 inquieta y va a donde est\\u00e9 la atenci\\u00f3n. Controla tu atenci\\u00f3n y controlas tu mente\\\".<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5396,718,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5397,718,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5404,719,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5405,720,'_elementor_template_type','wp-page'),(5406,720,'_elementor_edit_mode','builder'),(5407,720,'_elementor_version','3.12.2'),(5408,720,'_wp_page_template','default'),(5409,720,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5410,720,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un disc\\u00edpulo y su maestro caminaban por el bosque. El disc\\u00edpulo estaba perturbado por el hecho de que su mente estaba en constante inquietud.<\\/p><p>Le pregunt\\u00f3 a su maestro: \\\"\\u00bfPor qu\\u00e9 la mente de la mayor\\u00eda de las personas est\\u00e1n inquietas y solo unos pocos poseen una mente tranquila? \\u00bfQu\\u00e9 puede uno hacer para calmar la mente?\\\"<\\/p><p>El maestro mir\\u00f3 al disc\\u00edpulo, sonri\\u00f3 y dijo:<br \\/>\\\"Te contar\\u00e9 una historia. Un elefante estaba de pie y recogiendo hojas de un \\u00e1rbol. Lleg\\u00f3 una peque\\u00f1a mosca, volando y zumbando cerca de su o\\u00eddo. El elefante lo agit\\u00f3 con sus largas orejas. Entonces la mosca volvi\\u00f3 y el elefante la despidi\\u00f3 una vez m\\u00e1s\\\".<\\/p><p>Esto se repiti\\u00f3 varias veces. Entonces el elefante le pregunt\\u00f3 a la mosca:<br \\/>\\\"\\u00bfPor qu\\u00e9 est\\u00e1s tan inquieta y ruidosa? \\u00bfPor qu\\u00e9 no puedes quedarte un rato en un solo lugar?\\\"<\\/p><p>La mosca respondi\\u00f3: \\\"Me atrae todo lo que veo, oigo u huelo. Mis cinco sentidos, y todo lo que sucede a mi alrededor, me tiran constantemente en todas direcciones, y no puedo resistirme a ellos. \\u00bfCu\\u00e1l es tu secreto? \\u00bfC\\u00f3mo puedes mantenerte tan tranquilo y quieto?\\\"<\\/p><p>El elefante dej\\u00f3 de comer y dijo:<br \\/>\\\"Mis cinco sentidos no gobiernan mi atenci\\u00f3n. Tengo el control de mi atenci\\u00f3n y puedo dirigirla a donde quiera. Esto me ayuda a sumergirme en todo lo que hago y, por lo tanto, mantener mi mente enfocada y tranquila. Ahora que estoy comiendo, estoy completamente inmerso en comer. De esta manera, puedo disfrutar de mi comida y masticarla mejor. Controlo mi atenci\\u00f3n, y no al rev\\u00e9s, y esto me ayuda a mantenerme en paz\\\".<\\/p><p>Al escuchar estas palabras, los ojos del disc\\u00edpulo se abrieron de par en par y una sonrisa apareci\\u00f3 en su rostro. Mir\\u00f3 a su maestro y dijo:<br \\/>\\\"\\u00a1Entiendo! Mi mente estar\\u00e1 en constante inquietud, si mis cinco sentidos, y lo que sea que est\\u00e9 sucediendo en el mundo que me rodea est\\u00e1n en control de ella. Por otro lado, si estoy al mando de mis cinco sentidos, capaz de ignorar las impresiones sensoriales, mi mente se calmar\\u00eda y podr\\u00e9 ignorar su inquietud\\\".<\\/p><p>\\\"S\\u00ed, es cierto\\\", respondi\\u00f3 el maestro, \\\"La mente est\\u00e1 inquieta y va a donde est\\u00e9 la atenci\\u00f3n. Controla tu atenci\\u00f3n y controlas tu mente\\\".<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5411,720,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5417,721,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A disciple and his teacher were walking through the forest. The disciple was disturbed by the fact that his mind was in constant unrest.<\\/p><p>He asked his teacher: \\\"Why most people\'s minds are restless, and only a few possess a calm mind? What can one do to still the mind?\\\"<\\/p><p>The teacher looked at the disciple, smiled and said:<br \\/>\\\"I will tell you a story. An elephant was standing and picking leaves from a tree. A small fly came, flying and buzzing near his ear. The elephant waved it away with his long ears. Then the fly came again, and the elephant waved it away once more.\\\"<\\/p><p>This was repeated several times. Then the elephant asked the fly:<br \\/>\\\"Why are you so restless and noisy? Why can\'t you stay for a while in one place?\\\"<\\/p><p>The fly answered: \\\"I am attracted to whatever I see, hear or smell. My five senses, and everything that happens around me, pull me constantly in all directions, and I cannot resist them. What is your secret? How can you stay so calm and still?\\\"<\\/p><p>The elephant stopped eating and said:<br \\/>\\\"My five senses do not rule my attention. I am in control of my attention, and I can direct it wherever I want. This helps me to get immersed in whatever I do, and therefore, keep my mind focused and calm. Now that I am eating, I am completely immersed in eating. In this way, I can enjoy my food and chew it better. I control my attention, and not the other way around, and this helps me stay peaceful.\\\"<\\/p><p>Upon hearing these words, the disciple\'s eyes opened wide, and a smile appeared on his face. He looked at his teacher and said:<br \\/>\\\"I understand! My mind will be in constant unrest, if my five senses, and whatever is happening in the world around me are in control of it. On the other hand, if I am in command of my five senses, able to disregard sense impressions, my mind would become calm, and I will be able to disregard its restlessness.\\\"<\\/p><p>\\\"Yes, that\'s right,\\\" answered the teacher,\\\" The mind is restless and goes wherever the attention is. Control your attention, and you control your mind.\\\"<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5418,721,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8535,1119,'_elementor_template_type','wp-page'),(8536,1119,'_elementor_edit_mode','builder'),(8537,1119,'_elementor_version','3.13.3'),(8538,1119,'_wp_page_template','default'),(8539,1119,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8540,1119,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A disciple and his teacher were walking through the forest. The disciple was disturbed by the fact that his mind was in constant unrest.<\\/p><p>He asked his teacher: \\\"Why most people\'s minds are restless, and only a few possess a calm mind? What can one do to still the mind?\\\"<\\/p><p>The teacher looked at the disciple, smiled and said:<br \\/>\\\"I will tell you a story. An elephant was standing and picking leaves from a tree. A small fly came, flying and buzzing near his ear. The elephant waved it away with his long ears. Then the fly came again, and the elephant waved it away once more.\\\"<\\/p><p>This was repeated several times. Then the elephant asked the fly:<br \\/>\\\"Why are you so restless and noisy? Why can\'t you stay for a while in one place?\\\"<\\/p><p>The fly answered: \\\"I am attracted to whatever I see, hear or smell. My five senses, and everything that happens around me, pull me constantly in all directions, and I cannot resist them. What is your secret? How can you stay so calm and still?\\\"<\\/p><p>The elephant stopped eating and said:<br \\/>\\\"My five senses do not rule my attention. I am in control of my attention, and I can direct it wherever I want. This helps me to get immersed in whatever I do, and therefore, keep my mind focused and calm. Now that I am eating, I am completely immersed in eating. In this way, I can enjoy my food and chew it better. I control my attention, and not the other way around, and this helps me stay peaceful.\\\"<\\/p><p>Upon hearing these words, the disciple\'s eyes opened wide, and a smile appeared on his face. He looked at his teacher and said:<br \\/>\\\"I understand! My mind will be in constant unrest, if my five senses, and whatever is happening in the world around me are in control of it. On the other hand, if I am in command of my five senses, able to disregard sense impressions, my mind would become calm, and I will be able to disregard its restlessness.\\\"<\\/p><p>\\\"Yes, that\'s right,\\\" answered the teacher,\\\" The mind is restless and goes wherever the attention is. Control your attention, and you control your mind.\\\"<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5420,722,'_elementor_template_type','wp-page'),(5421,722,'_elementor_edit_mode','builder'),(5422,722,'_elementor_version','3.12.2'),(5423,722,'_wp_page_template','default'),(5424,722,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5425,722,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hab\\u00eda una vez un ni\\u00f1o peque\\u00f1o que ten\\u00eda mal genio. Su padre le dio una bolsa de clavos y le dijo que cada vez que perdiera los estribos, deb\\u00eda clavar un clavo en la cerca. El primer d\\u00eda el ni\\u00f1o hab\\u00eda clavado 37 clavos en la cerca. Durante las siguientes semanas, a medida que aprendi\\u00f3 a controlar su ira, el n\\u00famero de clavos martillados diariamente, disminuy\\u00f3 gradualmente. Descubri\\u00f3 que era m\\u00e1s f\\u00e1cil mantener el temperamento que clavar esos clavos en la cerca.<\\/p><p>Finalmente lleg\\u00f3 el d\\u00eda en que el ni\\u00f1o no perdi\\u00f3 los estribos en absoluto. Se lo cont\\u00f3 a su padre y el padre sugiri\\u00f3 que el ni\\u00f1o ahora sacara un clavo por cada d\\u00eda que pudiera mantener su temperamento. Los d\\u00edas pasaron y el ni\\u00f1o finalmente pudo decirle a su padre que todas las u\\u00f1as hab\\u00edan desaparecido.<\\/p><p>El padre tom\\u00f3 a su hijo de la mano y lo llev\\u00f3 a la cerca. \\u00c9l dijo: \\\"Lo has hecho bien, hijo m\\u00edo, pero mira los agujeros en la cerca. La valla nunca ser\\u00e1 la misma. Cuando dices cosas con ira, dejan una cicatriz como esta\\\". Puedes poner un cuchillo en un hombre y sacarlo. No importar\\u00e1 cu\\u00e1ntas veces digas que lo siento, la herida todav\\u00eda est\\u00e1 all\\u00ed. Aseg\\u00farate de controlar tu temperamento la pr\\u00f3xima vez que te sientas tentado a decir algo de lo que te arrepentir\\u00e1s m\\u00e1s tarde.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5426,722,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5427,722,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5434,723,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5435,724,'_elementor_template_type','wp-page'),(5436,724,'_elementor_edit_mode','builder'),(5437,724,'_elementor_version','3.12.2'),(5438,724,'_wp_page_template','default'),(5439,724,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5440,724,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hab\\u00eda una vez un ni\\u00f1o peque\\u00f1o que ten\\u00eda mal genio. Su padre le dio una bolsa de clavos y le dijo que cada vez que perdiera los estribos, deb\\u00eda clavar un clavo en la cerca. El primer d\\u00eda el ni\\u00f1o hab\\u00eda clavado 37 clavos en la cerca. Durante las siguientes semanas, a medida que aprendi\\u00f3 a controlar su ira, el n\\u00famero de clavos martillados diariamente, disminuy\\u00f3 gradualmente. Descubri\\u00f3 que era m\\u00e1s f\\u00e1cil mantener el temperamento que clavar esos clavos en la cerca.<\\/p><p>Finalmente lleg\\u00f3 el d\\u00eda en que el ni\\u00f1o no perdi\\u00f3 los estribos en absoluto. Se lo cont\\u00f3 a su padre y el padre sugiri\\u00f3 que el ni\\u00f1o ahora sacara un clavo por cada d\\u00eda que pudiera mantener su temperamento. Los d\\u00edas pasaron y el ni\\u00f1o finalmente pudo decirle a su padre que todas las u\\u00f1as hab\\u00edan desaparecido.<\\/p><p>El padre tom\\u00f3 a su hijo de la mano y lo llev\\u00f3 a la cerca. \\u00c9l dijo: \\\"Lo has hecho bien, hijo m\\u00edo, pero mira los agujeros en la cerca. La valla nunca ser\\u00e1 la misma. Cuando dices cosas con ira, dejan una cicatriz como esta\\\". Puedes poner un cuchillo en un hombre y sacarlo. No importar\\u00e1 cu\\u00e1ntas veces digas que lo siento, la herida todav\\u00eda est\\u00e1 all\\u00ed. Aseg\\u00farate de controlar tu temperamento la pr\\u00f3xima vez que te sientas tentado a decir algo de lo que te arrepentir\\u00e1s m\\u00e1s tarde.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5441,724,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5444,725,'_elementor_version','3.12.2'),(5445,725,'_wp_page_template','default'),(5446,725,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5447,725,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">There once was a little boy who had a bad temper. His father gave him a bag of nails and told him that every time he lost his temper, he must hammer a nail into the fence. The first day the boy had driven 37 nails into the fence. Over the next few weeks as he learned to control his anger, the number of nails hammered daily, gradually dwindled down. He discovered it was easier to hold his temper than to drive those nails into the fence.<\\/p><p style=\\\"text-align: justify;\\\">Finally the day came when the boy didn\'t lose his temper at all. He told his father about it and the father suggested that the boy now pull out one nail for each day that he was able to hold his temper. The days passed and the young boy was finally able to tell his father that all the nails were gone.<\\/p><p style=\\\"text-align: justify;\\\">The father took his son by the hand and led him to the fence. He said \\\"you have done well, my son, but look at the holes in the fence. The fence will never be the same. When you say things in anger, they leave a scar just like this one.\\\" You can put a knife in a man and draw it out. It won\'t matter how many times you say I\'m sorry, the wound is still there. Make sure you control your temper the next time you are tempted to say something you will regret later.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5448,725,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8560,1122,'_elementor_template_type','wp-page'),(8561,1122,'_elementor_edit_mode','builder'),(8562,1122,'_elementor_version','3.13.3'),(8563,1122,'_wp_page_template','default'),(8564,1122,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8565,1122,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">There once was a little boy who had a bad temper. His father gave him a bag of nails and told him that every time he lost his temper, he must hammer a nail into the fence. The first day the boy had driven 37 nails into the fence. Over the next few weeks as he learned to control his anger, the number of nails hammered daily, gradually dwindled down. He discovered it was easier to hold his temper than to drive those nails into the fence.<\\/p><p style=\\\"text-align: justify;\\\">Finally the day came when the boy didn\'t lose his temper at all. He told his father about it and the father suggested that the boy now pull out one nail for each day that he was able to hold his temper. The days passed and the young boy was finally able to tell his father that all the nails were gone.<\\/p><p style=\\\"text-align: justify;\\\">The father took his son by the hand and led him to the fence. He said \\\"you have done well, my son, but look at the holes in the fence. The fence will never be the same. When you say things in anger, they leave a scar just like this one.\\\" You can put a knife in a man and draw it out. It won\'t matter how many times you say I\'m sorry, the wound is still there. Make sure you control your temper the next time you are tempted to say something you will regret later.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5450,726,'_elementor_template_type','wp-page'),(5451,726,'_elementor_edit_mode','builder'),(5452,726,'_elementor_version','3.12.2'),(5453,726,'_wp_page_template','default'),(5454,726,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5455,726,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cuando ten\\u00eda 5 a\\u00f1os, mi madre siempre me dec\\u00eda que la felicidad era la clave de la vida. Cuando fui a la escuela, me preguntaron qu\\u00e9 quer\\u00eda ser cuando creciera.<\\/p><p>Escrib\\u00ed \'feliz\'. Me dijeron que no entend\\u00eda la tarea, y les dije que no entend\\u00edan la vida.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5456,726,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5457,726,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5464,727,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5465,728,'_elementor_template_type','wp-page'),(5466,728,'_elementor_edit_mode','builder'),(5467,728,'_elementor_version','3.12.2'),(5468,728,'_wp_page_template','default'),(5469,728,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5470,728,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Cuando ten\\u00eda 5 a\\u00f1os, mi madre siempre me dec\\u00eda que la felicidad era la clave de la vida. Cuando fui a la escuela, me preguntaron qu\\u00e9 quer\\u00eda ser cuando creciera.<\\/p><p>Escrib\\u00ed \'feliz\'. Me dijeron que no entend\\u00eda la tarea, y les dije que no entend\\u00edan la vida.<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5471,728,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5473,729,'_elementor_edit_mode','builder'),(5474,729,'_elementor_version','3.12.2'),(5475,729,'_wp_page_template','default'),(5476,729,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5477,729,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">When I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up.<\\/p><p style=\\\"text-align: justify;\\\">I wrote down<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5478,729,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8586,1125,'_elementor_template_type','wp-page'),(8587,1125,'_elementor_edit_mode','builder'),(8588,1125,'_elementor_version','3.13.3'),(8589,1125,'_wp_page_template','default'),(8590,1125,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8591,1125,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">When I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up.<\\/p><p style=\\\"text-align: justify;\\\">I wrote down<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5480,730,'_elementor_template_type','wp-page'),(5481,730,'_elementor_edit_mode','builder'),(5482,730,'_elementor_version','3.12.2'),(5483,730,'_wp_page_template','default'),(5484,730,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5485,730,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Dos hombres, ambos gravemente enfermos, ocuparon la misma habitaci\\u00f3n del hospital. A un hombre se le permiti\\u00f3 sentarse en su cama durante una hora cada tarde para ayudar a drenar el l\\u00edquido de sus pulmones. Su cama estaba al lado de la \\u00fanica ventana de la habitaci\\u00f3n. El otro hombre ten\\u00eda que pasar todo su tiempo boca arriba.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Los hombres hablaron durante horas y horas. Hablaron de sus esposas y familias, sus hogares, sus trabajos, su participaci\\u00f3n en el servicio militar, donde hab\\u00edan estado de vacaciones.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Y todas las tardes, cuando el hombre en la cama junto a la ventana pod\\u00eda sentarse, pasaba el tiempo describiendo a su compa\\u00f1ero de cuarto todas las cosas que pod\\u00eda ver fuera de la ventana. El hombre en la otra cama comenz\\u00f3 a vivir durante esos per\\u00edodos de una hora en los que su mundo se ampliar\\u00eda y animar\\u00eda por toda la actividad y el color del mundo exterior.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">La ventana daba a un parque con un hermoso lago. Patos y cisnes jugaban en el agua mientras los ni\\u00f1os navegaban en sus modelos de barcos. Los j\\u00f3venes amantes caminaron del brazo en medio de flores de todos los colores del arco iris. Grandes \\u00e1rboles viejos adornaban el paisaje, y una hermosa vista del horizonte de la ciudad se pod\\u00eda ver en la distancia.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Mientras el hombre junto a la ventana describ\\u00eda todo esto con exquisito detalle, el hombre al otro lado de la habitaci\\u00f3n cerraba los ojos e imaginaba la pintoresca escena.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Una c\\u00e1lida tarde, el hombre junto a la ventana describi\\u00f3 un desfile que pasaba. Aunque el otro hombre no pod\\u00eda escuchar a la banda, pod\\u00eda verla en su mente mientras el caballero junto a la ventana la retrataba con palabras descriptivas.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Pasaron d\\u00edas y semanas. Una ma\\u00f1ana, la enfermera de d\\u00eda lleg\\u00f3 para traer agua para sus ba\\u00f1os solo para encontrar el cuerpo sin vida del hombre junto a la ventana, que hab\\u00eda muerto pac\\u00edficamente mientras dorm\\u00eda. Se entristeci\\u00f3 y llam\\u00f3 a los asistentes del hospital para que se llevaran el cuerpo.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Tan pronto como pareci\\u00f3 apropiado, el otro hombre pregunt\\u00f3 si pod\\u00eda ser movido al lado de la ventana. La enfermera estaba feliz de hacer el cambio, y despu\\u00e9s de asegurarse de que estaba c\\u00f3modo, lo dej\\u00f3 solo. Lentamente, dolorosamente, se apoy\\u00f3 en un codo para echar un primer vistazo al mundo exterior. Finalmente, tendr\\u00eda la alegr\\u00eda de verlo por s\\u00ed mismo.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Se esforz\\u00f3 por girar lentamente para mirar por la ventana al lado de la cama. Se enfrentaba a una pared en blanco. El hombre le pregunt\\u00f3 a la enfermera qu\\u00e9 podr\\u00eda haber obligado a su compa\\u00f1ero de cuarto fallecido que hab\\u00eda descrito cosas tan maravillosas fuera de esta ventana. La enfermera respondi\\u00f3 que el hombre era ciego y ni siquiera pod\\u00eda ver la pared. Ella dijo: \\\"Tal vez \\u00e9l solo quer\\u00eda animarte\\\".<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5486,730,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5487,730,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5494,731,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5495,732,'_elementor_template_type','wp-page'),(5496,732,'_elementor_edit_mode','builder'),(5497,732,'_elementor_version','3.12.2'),(5498,732,'_wp_page_template','default'),(5499,732,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5500,732,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Dos hombres, ambos gravemente enfermos, ocuparon la misma habitaci\\u00f3n del hospital. A un hombre se le permiti\\u00f3 sentarse en su cama durante una hora cada tarde para ayudar a drenar el l\\u00edquido de sus pulmones. Su cama estaba al lado de la \\u00fanica ventana de la habitaci\\u00f3n. El otro hombre ten\\u00eda que pasar todo su tiempo boca arriba.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Los hombres hablaron durante horas y horas. Hablaron de sus esposas y familias, sus hogares, sus trabajos, su participaci\\u00f3n en el servicio militar, donde hab\\u00edan estado de vacaciones.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Y todas las tardes, cuando el hombre en la cama junto a la ventana pod\\u00eda sentarse, pasaba el tiempo describiendo a su compa\\u00f1ero de cuarto todas las cosas que pod\\u00eda ver fuera de la ventana. El hombre en la otra cama comenz\\u00f3 a vivir durante esos per\\u00edodos de una hora en los que su mundo se ampliar\\u00eda y animar\\u00eda por toda la actividad y el color del mundo exterior.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">La ventana daba a un parque con un hermoso lago. Patos y cisnes jugaban en el agua mientras los ni\\u00f1os navegaban en sus modelos de barcos. Los j\\u00f3venes amantes caminaron del brazo en medio de flores de todos los colores del arco iris. Grandes \\u00e1rboles viejos adornaban el paisaje, y una hermosa vista del horizonte de la ciudad se pod\\u00eda ver en la distancia.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Mientras el hombre junto a la ventana describ\\u00eda todo esto con exquisito detalle, el hombre al otro lado de la habitaci\\u00f3n cerraba los ojos e imaginaba la pintoresca escena.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Una c\\u00e1lida tarde, el hombre junto a la ventana describi\\u00f3 un desfile que pasaba. Aunque el otro hombre no pod\\u00eda escuchar a la banda, pod\\u00eda verla en su mente mientras el caballero junto a la ventana la retrataba con palabras descriptivas.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Pasaron d\\u00edas y semanas. Una ma\\u00f1ana, la enfermera de d\\u00eda lleg\\u00f3 para traer agua para sus ba\\u00f1os solo para encontrar el cuerpo sin vida del hombre junto a la ventana, que hab\\u00eda muerto pac\\u00edficamente mientras dorm\\u00eda. Se entristeci\\u00f3 y llam\\u00f3 a los asistentes del hospital para que se llevaran el cuerpo.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Tan pronto como pareci\\u00f3 apropiado, el otro hombre pregunt\\u00f3 si pod\\u00eda ser movido al lado de la ventana. La enfermera estaba feliz de hacer el cambio, y despu\\u00e9s de asegurarse de que estaba c\\u00f3modo, lo dej\\u00f3 solo. Lentamente, dolorosamente, se apoy\\u00f3 en un codo para echar un primer vistazo al mundo exterior. Finalmente, tendr\\u00eda la alegr\\u00eda de verlo por s\\u00ed mismo.<\\/span><\\/p><p style=\\\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\\\"><span style=\\\"font-size: 11.5pt; font-family: \'Helvetica\',sans-serif; color: #373737;\\\">Se esforz\\u00f3 por girar lentamente para mirar por la ventana al lado de la cama. Se enfrentaba a una pared en blanco. El hombre le pregunt\\u00f3 a la enfermera qu\\u00e9 podr\\u00eda haber obligado a su compa\\u00f1ero de cuarto fallecido que hab\\u00eda descrito cosas tan maravillosas fuera de esta ventana. La enfermera respondi\\u00f3 que el hombre era ciego y ni siquiera pod\\u00eda ver la pared. Ella dijo: \\\"Tal vez \\u00e9l solo quer\\u00eda animarte\\\".<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5501,732,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5508,733,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8612,1128,'_elementor_template_type','wp-page'),(8613,1128,'_elementor_edit_mode','builder'),(8614,1128,'_elementor_version','3.13.3'),(8615,1128,'_wp_page_template','default'),(8616,1128,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8617,1128,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Two men, both seriously ill, occupied the same hospital room. One man was allowed to sit up in his bed for an hour each afternoon to help drain the fluid from his lungs. His bed was next to the room\'s only window. The other man had to spend all his time flat on his back.<\\/p><p style=\\\"text-align: justify;\\\">The men talked for hours on end. They spoke of their wives and families, their homes, their jobs, their involvement in the military service, where they had been on vacation.<\\/p><p style=\\\"text-align: justify;\\\">And every afternoon when the man in the bed by the window could sit up, he would pass the time by describing to his roommate all the things he could see outside the window. The man in the other bed began to live for those one-hour periods where his world would be broadened and enlivened by all the activity and color of the world outside.<\\/p><p style=\\\"text-align: justify;\\\">The window overlooked a park with a lovely lake. Ducks and swans played on the water while children sailed their model boats. Young lovers walked arm in arm amidst flowers of every color of the rainbow. Grand old trees graced the landscape, and a fine view of the city skyline could be seen in the distance.<\\/p><p style=\\\"text-align: justify;\\\">As the man by the window described all this in exquisite detail, the man on the other side of the room would close his eyes and imagine the picturesque scene.<\\/p><p style=\\\"text-align: justify;\\\">One warm afternoon the man by the window described a parade passing by. Although the other man couldn\'t hear the band - he could see it in his mind\'s eye as the gentleman by the window portrayed it with descriptive words.<\\/p><p style=\\\"text-align: justify;\\\">Days and weeks passed. One morning, the day nurse arrived to bring water for their baths only to find the lifeless body of the man by the window, who had died peacefully in his sleep. She was saddened and called the hospital attendants to take the body away.<\\/p><p style=\\\"text-align: justify;\\\">As soon as it seemed appropriate, the other man asked if he could be moved next to the window. The nurse was happy to make the switch, and after making sure he was comfortable, she left him alone. Slowly, painfully, he propped himself up on one elbow to take his first look at the world outside. Finally, he would have the joy of seeing it for himself.<\\/p><p style=\\\"text-align: justify;\\\">He strained to slowly turn to look out the window beside the bed. It faced a blank wall. The man asked the nurse what could have compelled his deceased roommate who had described such wonderful things outside this window. The nurse responded that the man was blind and could not even see the wall. She said, \\\"Perhaps he just wanted to encourage you.\\\"<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5510,734,'_elementor_template_type','wp-page'),(5511,734,'_elementor_edit_mode','builder'),(5512,734,'_elementor_version','3.12.2'),(5513,734,'_wp_page_template','default'),(5514,734,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5515,734,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hab\\u00eda una vez un rey rico que ten\\u00eda cuatro esposas. Amaba m\\u00e1s a la cuarta esposa y la adornaba con ricas t\\u00fanicas y la trataba con las mejores delicias. \\u00c9l no le dio nada m\\u00e1s que lo mejor.<\\/p><p>Tambi\\u00e9n amaba mucho a la tercera esposa y la mostr\\u00f3 a los reinos vecinos. Sin embargo, tem\\u00eda que un d\\u00eda ella lo dejara por otro.<\\/p><p>Tambi\\u00e9n amaba a su segunda esposa. Ella era su confidente y siempre fue amable, considerada y paciente con \\u00e9l. Cada vez que el rey enfrentaba un problema, pod\\u00eda confiar en ella para ayudarlo a superar los tiempos dif\\u00edciles.<\\/p><p>La primera esposa del rey era una compa\\u00f1era muy leal y hab\\u00eda hecho grandes contribuciones en el mantenimiento de su riqueza y reino. Sin embargo, \\u00e9l no amaba a la primera esposa, pero aunque ella lo amaba profundamente, apenas se fijaba en ella.<\\/p><p>Un d\\u00eda, el rey cay\\u00f3 enfermo y supo que su tiempo era corto. Por lo tanto, le pregunt\\u00f3 a la 4\\u00aa esposa: \\\"Te he amado m\\u00e1s bien con la mejor ropa y he derramado gran cuidado sobre ti. Ahora que me estoy muriendo, \\u00bfme seguir\\u00e1s y me har\\u00e1s compa\\u00f1\\u00eda?\\\"<\\/p><p>\\\"\\u00a1De ninguna manera!\\\", respondi\\u00f3 la 4\\u00aa esposa y ella se alej\\u00f3 sin decir otra palabra.<\\/p><p>Su respuesta cort\\u00f3 como un cuchillo afilado directamente en su coraz\\u00f3n.<\\/p><p>\\u00a0<\\/p><p>El triste rey le pregunt\\u00f3 a la tercera esposa: \\\"Te he amado toda mi vida. Ahora que me estoy muriendo, \\u00bfme seguir\\u00e1s y me har\\u00e1s compa\\u00f1\\u00eda?\\\"<\\/p><p>\\\"\\u00a1No!\\\", Respondi\\u00f3 la 3\\u00aa esposa. \\\"\\u00a1La vida es demasiado buena! \\u00a1Cuando mueras, me voy a volver a casar!\\\"<\\/p><p>Su coraz\\u00f3n se hundi\\u00f3 y se enfri\\u00f3.<\\/p><p>Luego le pregunt\\u00f3 a la 2\\u00aa esposa: \\\"Siempre he recurrido a ti en busca de ayuda y siempre has estado ah\\u00ed para m\\u00ed. Cuando muera, \\u00bfme seguir\\u00e1s y me har\\u00e1s compa\\u00f1\\u00eda?\\\"<\\/p><p>\\\"\\u00a1Lo siento, no puedo ayudarte a salir de este tiempo!\\\", Respondi\\u00f3 la 2\\u00aa esposa. \\\"Lo m\\u00e1s, solo puedo enviarte a tu tumba\\\".<\\/p><p>Su respuesta lleg\\u00f3 como un trueno y el rey qued\\u00f3 devastado.<\\/p><p>Entonces una voz grit\\u00f3: \\\"Me ir\\u00e9 contigo y te seguir\\u00e9 sin importar a d\\u00f3nde vayas\\\".<\\/p><p>El rey levant\\u00f3 la vista y all\\u00ed estaba su primera esposa. Estaba tan delgada, porque sufr\\u00eda de desnutrici\\u00f3n. Muy afligido, el rey dijo: \\\"\\u00a1Deber\\u00eda haberte cuidado mejor cuando tuve la oportunidad!\\\"<\\/p><p>Nuestra 4\\u00aa esposa es nuestro CUERPO. No importa cu\\u00e1nto tiempo y esfuerzo prodigemos para que se vea genial, nos dejar\\u00e1 cuando muramos.<\\/p><p>Nuestra 3\\u00aa esposa es nuestras POSESIONES, ESTATUS y RIQUEZA. Cuando morimos, todo ir\\u00e1 a otros.<\\/p><p>Nuestra 2\\u00aa esposa es nuestra FAMILIA y amigos. No importa cu\\u00e1nto hayan estado all\\u00ed para nosotros, lo m\\u00e1s lejos que pueden quedarse con nosotros es hasta la tumba.<\\/p><p>Nuestra 1\\u00aa esposa es nuestra ALMA, a menudo descuidada en la b\\u00fasqueda de riqueza, poder y placeres del ego. Sin embargo, nuestra Alma es lo \\u00fanico que nos seguir\\u00e1 dondequiera que vayamos. \\u00a1As\\u00ed que cultiva, fortalece y aprecia ahora! Es tu mayor regalo ofrecer al mundo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5516,734,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5517,734,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5524,735,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5525,736,'_elementor_template_type','wp-page'),(5526,736,'_elementor_edit_mode','builder'),(5527,736,'_elementor_version','3.12.2'),(5528,736,'_wp_page_template','default'),(5529,736,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5530,736,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hab\\u00eda una vez un rey rico que ten\\u00eda cuatro esposas. Amaba m\\u00e1s a la cuarta esposa y la adornaba con ricas t\\u00fanicas y la trataba con las mejores delicias. \\u00c9l no le dio nada m\\u00e1s que lo mejor.<\\/p><p>Tambi\\u00e9n amaba mucho a la tercera esposa y la mostr\\u00f3 a los reinos vecinos. Sin embargo, tem\\u00eda que un d\\u00eda ella lo dejara por otro.<\\/p><p>Tambi\\u00e9n amaba a su segunda esposa. Ella era su confidente y siempre fue amable, considerada y paciente con \\u00e9l. Cada vez que el rey enfrentaba un problema, pod\\u00eda confiar en ella para ayudarlo a superar los tiempos dif\\u00edciles.<\\/p><p>La primera esposa del rey era una compa\\u00f1era muy leal y hab\\u00eda hecho grandes contribuciones en el mantenimiento de su riqueza y reino. Sin embargo, \\u00e9l no amaba a la primera esposa, pero aunque ella lo amaba profundamente, apenas se fijaba en ella.<\\/p><p>Un d\\u00eda, el rey cay\\u00f3 enfermo y supo que su tiempo era corto. Por lo tanto, le pregunt\\u00f3 a la 4\\u00aa esposa: \\\"Te he amado m\\u00e1s bien con la mejor ropa y he derramado gran cuidado sobre ti. Ahora que me estoy muriendo, \\u00bfme seguir\\u00e1s y me har\\u00e1s compa\\u00f1\\u00eda?\\\"<\\/p><p>\\\"\\u00a1De ninguna manera!\\\", respondi\\u00f3 la 4\\u00aa esposa y ella se alej\\u00f3 sin decir otra palabra.<\\/p><p>Su respuesta cort\\u00f3 como un cuchillo afilado directamente en su coraz\\u00f3n.<\\/p><p>\\u00a0<\\/p><p>El triste rey le pregunt\\u00f3 a la tercera esposa: \\\"Te he amado toda mi vida. Ahora que me estoy muriendo, \\u00bfme seguir\\u00e1s y me har\\u00e1s compa\\u00f1\\u00eda?\\\"<\\/p><p>\\\"\\u00a1No!\\\", Respondi\\u00f3 la 3\\u00aa esposa. \\\"\\u00a1La vida es demasiado buena! \\u00a1Cuando mueras, me voy a volver a casar!\\\"<\\/p><p>Su coraz\\u00f3n se hundi\\u00f3 y se enfri\\u00f3.<\\/p><p>Luego le pregunt\\u00f3 a la 2\\u00aa esposa: \\\"Siempre he recurrido a ti en busca de ayuda y siempre has estado ah\\u00ed para m\\u00ed. Cuando muera, \\u00bfme seguir\\u00e1s y me har\\u00e1s compa\\u00f1\\u00eda?\\\"<\\/p><p>\\\"\\u00a1Lo siento, no puedo ayudarte a salir de este tiempo!\\\", Respondi\\u00f3 la 2\\u00aa esposa. \\\"Lo m\\u00e1s, solo puedo enviarte a tu tumba\\\".<\\/p><p>Su respuesta lleg\\u00f3 como un trueno y el rey qued\\u00f3 devastado.<\\/p><p>Entonces una voz grit\\u00f3: \\\"Me ir\\u00e9 contigo y te seguir\\u00e9 sin importar a d\\u00f3nde vayas\\\".<\\/p><p>El rey levant\\u00f3 la vista y all\\u00ed estaba su primera esposa. Estaba tan delgada, porque sufr\\u00eda de desnutrici\\u00f3n. Muy afligido, el rey dijo: \\\"\\u00a1Deber\\u00eda haberte cuidado mejor cuando tuve la oportunidad!\\\"<\\/p><p>Nuestra 4\\u00aa esposa es nuestro CUERPO. No importa cu\\u00e1nto tiempo y esfuerzo prodigemos para que se vea genial, nos dejar\\u00e1 cuando muramos.<\\/p><p>Nuestra 3\\u00aa esposa es nuestras POSESIONES, ESTATUS y RIQUEZA. Cuando morimos, todo ir\\u00e1 a otros.<\\/p><p>Nuestra 2\\u00aa esposa es nuestra FAMILIA y amigos. No importa cu\\u00e1nto hayan estado all\\u00ed para nosotros, lo m\\u00e1s lejos que pueden quedarse con nosotros es hasta la tumba.<\\/p><p>Nuestra 1\\u00aa esposa es nuestra ALMA, a menudo descuidada en la b\\u00fasqueda de riqueza, poder y placeres del ego. Sin embargo, nuestra Alma es lo \\u00fanico que nos seguir\\u00e1 dondequiera que vayamos. \\u00a1As\\u00ed que cultiva, fortalece y aprecia ahora! Es tu mayor regalo ofrecer al mundo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5531,736,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5538,737,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8638,1131,'_elementor_template_type','wp-page'),(8639,1131,'_elementor_edit_mode','builder'),(8640,1131,'_elementor_version','3.13.3'),(8641,1131,'_wp_page_template','default'),(8642,1131,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8643,1131,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Once upon a time there was a rich king who had four wives. He loved the fourth wife the most and adorned her with rich robes and treated her to the finest delicacies. He gave her nothing but the best.<\\/p><p>He also loved the third wife very much and showed her off to neighboring kingdoms. However, he feared that one day she would leave him for another.<\\/p><p>He also loved his second wife. She was his confidante and she was always kind, considerate and patient with him. Whenever the king faced a problem, he could confide in her to help him get through the difficult times.<\\/p><p>The king\'s first wife was a very loyal partner and had made great contributions in maintaining his wealth and kingdom. However, he did not love the first wife but although she loved him deeply, he hardly took notice of her.<\\/p><p>One day, the King fell ill and he knew that his time was short. Thus, he asked the 4th wife, \\\"I have loved you the most endowed you with the finest clothing and showered great care over you. Now that I\'m dying, will you follow me and keep me company?\\\"<\\/p><p>\\\"No way!\\\" replied the 4th wife and she walked away without another word.<\\/p><p>Her answer cut like a sharp knife right into his heart.<\\/p><p>\\u00a0<\\/p><p>The sad king asked the third wife, \\\"I have loved you all my life. Now that I\'m dying, will you follow me and keep me company?\\\"<\\/p><p>\\\"No!\\\" replied the 3rd wife. \\\"Life is too good! When you die, I am going to remarry!\\\"<\\/p><p>His heart sank and turned cold.<\\/p><p>He then asked the 2nd wife, \\\"I have always turned to you for help and you\'ve always been there for me. When I die, will you follow me and keep me company?\\\"<\\/p><p>\\\"I\'m sorry, I can\'t help you out of this time!\\\" replied the 2nd wife. \\\"The very most, I can only send you to your grave.\\\"<\\/p><p>Her answer came like a bolt of thunder and the King was devastated.<\\/p><p>Then a voice called out: \\\"I\'ll leave with you and follow you no matter where you go.\\\"<\\/p><p>The king looked up and there was his first wife. She was so skinny, because she suffered from malnutrition. Greatly grieved the King said, \\\"I should have taken better care of you when I had a chance!\\\"<\\/p><p>Our 4th wife is our BODY. No matter how much time and effort we lavish in making it look great, it\'ll leave us when we die.<\\/p><p>Our 3rd wife is our POSSESSIONS, STATUS and WEALTH. When we die, it will all go to others.<\\/p><p>Our 2nd wife is our FAMILY and friends. No matter how much they have been there for us, the furthest they can stay by us is up to the grave.<\\/p><p>Our 1st wife is our SOUL, often neglected in pursuit of wealth, power and pleasures of the ego. However, our Soul is the only thing that will follow us wherever we go. So cultivate, strengthen and cherish it now! It is your greatest gift to offer the world.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5540,738,'_elementor_template_type','wp-page'),(5541,738,'_elementor_edit_mode','builder'),(5542,738,'_elementor_version','3.12.2'),(5543,738,'_wp_page_template','default'),(5544,738,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5545,738,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Por Remez Sasson<\\/p><p>Un d\\u00eda, un yogui y su disc\\u00edpulo llegaron a la gran ciudad. No ten\\u00edan dinero con ellos, pero necesitaban comida y un lugar para quedarse. El disc\\u00edpulo estaba seguro de que iban a mendigar por su comida y dormir en el parque por la noche.<\\/p><p>\\\"Hay un gran parque no muy lejos de aqu\\u00ed. Podemos dormir all\\u00ed por la noche\\\", dijo el disc\\u00edpulo.<br \\/>\\\"\\u00bfAl aire libre?\\\" Pregunt\\u00f3 el yogui.<br \\/>\\\"S\\u00ed\\\", respondi\\u00f3 el estudiante.<\\/p><p>El yogui sonri\\u00f3 y dijo: \\\"No, esta noche vamos a dormir en un hotel y comer all\\u00ed tambi\\u00e9n\\\".<\\/p><p>El estudiante se sorprendi\\u00f3 y exclam\\u00f3: \\\"\\u00a1No podemos permitirnos eso!\\\"<br \\/>\\\"Ven y si\\u00e9ntate\\\", dijo el yogui.<\\/p><p>Ambos se sentaron en el suelo, y el yogui dijo:<br \\/>\\\"Cuando enfocas tu mente intensamente en cualquier tema, sucede todo\\\".<\\/p><p>El yogui cerr\\u00f3 los ojos y comenz\\u00f3 a meditar con plena concentraci\\u00f3n. Despu\\u00e9s de unos diez minutos se levant\\u00f3 y comenz\\u00f3 a caminar, con su disc\\u00edpulo sigui\\u00e9ndole. Caminaron por varias calles y callejones, hasta que llegaron a un hotel.<\\/p><p>\\\"Ven, entremos dentro\\\", le dijo el yogui a su disc\\u00edpulo.<\\/p><p>Acaban de poner un pie en la entrada, cuando un hombre bien vestido se les acerc\\u00f3.<\\/p><p>\\\"Soy el gerente de este hotel. Pareces swamis viajeros, y creo que no tienes dinero. \\u00bfTe gustar\\u00eda trabajar en la cocina y, a cambio, te dar\\u00e9 comida y un lugar para quedarte?\\\"<\\/p><p>\\\"Bien\\\", respondi\\u00f3 el yogui.<\\/p><p>El disc\\u00edpulo estaba perplejo y le pregunt\\u00f3 al yogui: \\\"\\u00bfUsaste alguna magia? \\u00bfC\\u00f3mo hiciste eso?\\\"<\\/p><p>El yogui sonri\\u00f3 y dijo: \\\"Quer\\u00eda mostrarte c\\u00f3mo funciona el poder de los pensamientos. Cuando piensas con plena y fuerte concentraci\\u00f3n sobre algo que quieres que suceda, y tu mente no se resiste al tema de tu pensamiento, tu pensamiento se materializa.<\\/p><p>\\\"El secreto es concentrarse, visualizar, ver detalles, tener fe y proyectar energ\\u00eda mental y emocional en la escena mental. Estos son los requisitos previos generales. Cuando tu mente est\\u00e1 vac\\u00eda de pensamientos, y solo un pensamiento puede entrar, gana un poder muy grande. Uno debe tener mucho cuidado con lo que piensa. Un pensamiento concentrado es poderoso y ejerce una influencia muy fuerte\\\".<\\/p><p>El disc\\u00edpulo mir\\u00f3 a su maestro y dijo: \\\"Veo que tengo que agudizar mi concentraci\\u00f3n para poder usar este poder\\\".<\\/p><p>\\\"S\\u00ed, este es el primer paso\\\", respondi\\u00f3 el yogui.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5546,738,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5547,738,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5554,739,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5555,740,'_elementor_template_type','wp-page'),(5556,740,'_elementor_edit_mode','builder'),(5557,740,'_elementor_version','3.12.2'),(5558,740,'_wp_page_template','default'),(5559,740,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5560,740,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Por Remez Sasson<\\/p><p>Un d\\u00eda, un yogui y su disc\\u00edpulo llegaron a la gran ciudad. No ten\\u00edan dinero con ellos, pero necesitaban comida y un lugar para quedarse. El disc\\u00edpulo estaba seguro de que iban a mendigar por su comida y dormir en el parque por la noche.<\\/p><p>\\\"Hay un gran parque no muy lejos de aqu\\u00ed. Podemos dormir all\\u00ed por la noche\\\", dijo el disc\\u00edpulo.<br \\/>\\\"\\u00bfAl aire libre?\\\" Pregunt\\u00f3 el yogui.<br \\/>\\\"S\\u00ed\\\", respondi\\u00f3 el estudiante.<\\/p><p>El yogui sonri\\u00f3 y dijo: \\\"No, esta noche vamos a dormir en un hotel y comer all\\u00ed tambi\\u00e9n\\\".<\\/p><p>El estudiante se sorprendi\\u00f3 y exclam\\u00f3: \\\"\\u00a1No podemos permitirnos eso!\\\"<br \\/>\\\"Ven y si\\u00e9ntate\\\", dijo el yogui.<\\/p><p>Ambos se sentaron en el suelo, y el yogui dijo:<br \\/>\\\"Cuando enfocas tu mente intensamente en cualquier tema, sucede todo\\\".<\\/p><p>El yogui cerr\\u00f3 los ojos y comenz\\u00f3 a meditar con plena concentraci\\u00f3n. Despu\\u00e9s de unos diez minutos se levant\\u00f3 y comenz\\u00f3 a caminar, con su disc\\u00edpulo sigui\\u00e9ndole. Caminaron por varias calles y callejones, hasta que llegaron a un hotel.<\\/p><p>\\\"Ven, entremos dentro\\\", le dijo el yogui a su disc\\u00edpulo.<\\/p><p>Acaban de poner un pie en la entrada, cuando un hombre bien vestido se les acerc\\u00f3.<\\/p><p>\\\"Soy el gerente de este hotel. Pareces swamis viajeros, y creo que no tienes dinero. \\u00bfTe gustar\\u00eda trabajar en la cocina y, a cambio, te dar\\u00e9 comida y un lugar para quedarte?\\\"<\\/p><p>\\\"Bien\\\", respondi\\u00f3 el yogui.<\\/p><p>El disc\\u00edpulo estaba perplejo y le pregunt\\u00f3 al yogui: \\\"\\u00bfUsaste alguna magia? \\u00bfC\\u00f3mo hiciste eso?\\\"<\\/p><p>El yogui sonri\\u00f3 y dijo: \\\"Quer\\u00eda mostrarte c\\u00f3mo funciona el poder de los pensamientos. Cuando piensas con plena y fuerte concentraci\\u00f3n sobre algo que quieres que suceda, y tu mente no se resiste al tema de tu pensamiento, tu pensamiento se materializa.<\\/p><p>\\\"El secreto es concentrarse, visualizar, ver detalles, tener fe y proyectar energ\\u00eda mental y emocional en la escena mental. Estos son los requisitos previos generales. Cuando tu mente est\\u00e1 vac\\u00eda de pensamientos, y solo un pensamiento puede entrar, gana un poder muy grande. Uno debe tener mucho cuidado con lo que piensa. Un pensamiento concentrado es poderoso y ejerce una influencia muy fuerte\\\".<\\/p><p>El disc\\u00edpulo mir\\u00f3 a su maestro y dijo: \\\"Veo que tengo que agudizar mi concentraci\\u00f3n para poder usar este poder\\\".<\\/p><p>\\\"S\\u00ed, este es el primer paso\\\", respondi\\u00f3 el yogui.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5561,740,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5565,741,'_wp_page_template','default'),(5566,741,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5567,741,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>By Remez Sasson<\\/p><p>One day, a yogi and his disciple arrived in the big city. They had no money with them, but they needed food and a place to stay. The disciple was sure that they were going to beg for their food, and sleep in the park at night.<\\/p><p>\\\"There is a big park not far from here. We can sleep there at night\\\", said the disciple.<br \\/>\\\"In the open air?\\\" Asked the yogi.<br \\/>\\\"Yes\\\", responded the student.<\\/p><p>The yogi smiled and said: \\\"No, tonight we are going to sleep in a hotel and eat there too\\\".<\\/p><p>The student was amazed and exclaimed, \\\"We cannot afford that!\\\"<br \\/>\\\"Come and sit down\\\", said the yogi.<\\/p><p>They both sat down on the ground, and the yogi said:<br \\/>\\\"When you focus your mind intently on any subject, it comes to pass.\\\"<\\/p><p>The yogi closed his eyes and started to meditate with full concentration. After about ten minutes he got up and started to walk, with his disciple following him. They walked through several streets and alleys, until they arrived at a hotel.<\\/p><p>\\\"Come, let\'s enter inside\\\", the yogi said to his disciple.<\\/p><p>They just set foot in the entrance, when a well-dressed man approached them.<\\/p><p>\\\"I am the manager of this hotel. You look like traveling swamis, and I believe you have no money. Would you like to work in the kitchen, and in return I\'ll give you food and a place to stay?\\\"<\\/p><p>\\\"Fine\\\", the yogi responded.<\\/p><p>The disciple was perplexed and asked the yogi: \\\"Did you use any magic? How did you do that?\\\"<\\/p><p>The yogi smiled and said, \\\"I wanted to show you how the power of thoughts works. When you think with full and strong concentration about something that you want to happen, and your mind does not resist the subject of your thought, your thought materializes.\\\"<\\/p><p>\\\"The secret is concentrating, visualizing, seeing details, having faith and projecting mental and emotional energy into the mental scene. These are the general prerequisites. When your mind is empty from thoughts, and only one single thought is allowed to enter, it gains a very great power. One should be very careful with what he thinks. A concentrated thought is powerful, and exerts a very strong influence.\\\"<\\/p><p>The disciple looked at his teacher and said: \\\"I see that I have to sharpen my concentration in order to be able to use this power.\\\"<\\/p><p>\\\"Yes, this is the first step\\\", the yogi replied.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5568,741,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8664,1134,'_elementor_template_type','wp-page'),(8665,1134,'_elementor_edit_mode','builder'),(8666,1134,'_elementor_version','3.13.3'),(8667,1134,'_wp_page_template','default'),(8668,1134,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8669,1134,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>By Remez Sasson<\\/p><p>One day, a yogi and his disciple arrived in the big city. They had no money with them, but they needed food and a place to stay. The disciple was sure that they were going to beg for their food, and sleep in the park at night.<\\/p><p>\\\"There is a big park not far from here. We can sleep there at night\\\", said the disciple.<br \\/>\\\"In the open air?\\\" Asked the yogi.<br \\/>\\\"Yes\\\", responded the student.<\\/p><p>The yogi smiled and said: \\\"No, tonight we are going to sleep in a hotel and eat there too\\\".<\\/p><p>The student was amazed and exclaimed, \\\"We cannot afford that!\\\"<br \\/>\\\"Come and sit down\\\", said the yogi.<\\/p><p>They both sat down on the ground, and the yogi said:<br \\/>\\\"When you focus your mind intently on any subject, it comes to pass.\\\"<\\/p><p>The yogi closed his eyes and started to meditate with full concentration. After about ten minutes he got up and started to walk, with his disciple following him. They walked through several streets and alleys, until they arrived at a hotel.<\\/p><p>\\\"Come, let\'s enter inside\\\", the yogi said to his disciple.<\\/p><p>They just set foot in the entrance, when a well-dressed man approached them.<\\/p><p>\\\"I am the manager of this hotel. You look like traveling swamis, and I believe you have no money. Would you like to work in the kitchen, and in return I\'ll give you food and a place to stay?\\\"<\\/p><p>\\\"Fine\\\", the yogi responded.<\\/p><p>The disciple was perplexed and asked the yogi: \\\"Did you use any magic? How did you do that?\\\"<\\/p><p>The yogi smiled and said, \\\"I wanted to show you how the power of thoughts works. When you think with full and strong concentration about something that you want to happen, and your mind does not resist the subject of your thought, your thought materializes.\\\"<\\/p><p>\\\"The secret is concentrating, visualizing, seeing details, having faith and projecting mental and emotional energy into the mental scene. These are the general prerequisites. When your mind is empty from thoughts, and only one single thought is allowed to enter, it gains a very great power. One should be very careful with what he thinks. A concentrated thought is powerful, and exerts a very strong influence.\\\"<\\/p><p>The disciple looked at his teacher and said: \\\"I see that I have to sharpen my concentration in order to be able to use this power.\\\"<\\/p><p>\\\"Yes, this is the first step\\\", the yogi replied.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5570,742,'_elementor_template_type','wp-page'),(5571,742,'_elementor_edit_mode','builder'),(5572,742,'_elementor_version','3.12.2'),(5573,742,'_wp_page_template','default'),(5574,742,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5575,742,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00bfRecuerdas la famosa raza Conejo-Tortuga (Tortuga y Liebre)? Todos sabemos que al final de la historia el Conejo no fue capaz de ganar la carrera contra la Tortuga.<\\/p><p>Bueno, este no es realmente el final de la historia. Despu\\u00e9s de una vergonzosa derrota ante la Tortuga, el Conejo decidi\\u00f3 tener una carrera nuevamente. Esta vez, decidi\\u00f3, no tomar\\u00eda una siesta.<\\/p><p>La carrera comenz\\u00f3 y pronto el Conejo estaba lejos de la vista de la Tortuga y todos los espectadores. Esta vez no se detuvo y derrot\\u00f3 a la Tortuga por un gran margen.<\\/p><p>La Tortuga perdi\\u00f3 la carrera esta vez; Sin embargo, no se rindi\\u00f3. Desafi\\u00f3 al Conejo de nuevo en una pista de carreras diferente. El Conejo, lleno de confianza, lo acept\\u00f3. Sab\\u00eda la raz\\u00f3n por la que perdi\\u00f3 antes: su pereza durante la primera carrera. Pudo ganar la segunda carrera porque pudo trabajar en ella.<\\/p><p>La Tercera Carrera comenz\\u00f3. El Conejo, como siempre, pronto desapareci\\u00f3. Todos se re\\u00edan de la tortuga, pero el conejo no quer\\u00eda detenerse para ver por qu\\u00e9 y sigui\\u00f3 corriendo tan r\\u00e1pido como pudo. Quer\\u00eda derrotar a la Tortuga por un margen mucho mayor que la raza anterior. De repente, lleg\\u00f3 a un r\\u00edo. No pudo distinguir c\\u00f3mo cruzarlo y se vio obligado a detenerse.<\\/p><p>Despu\\u00e9s de alg\\u00fan tiempo, la tortuga lleg\\u00f3 al r\\u00edo y entr\\u00f3 con mucha confianza en \\u00e9l. Nad\\u00f3 mucho m\\u00e1s r\\u00e1pido de lo que podr\\u00eda correr. En poco tiempo cruz\\u00f3 el r\\u00edo y se dirigi\\u00f3 hacia el punto final mientras el Conejo miraba impotente mientras la Tortuga ganaba la carrera.<\\/p><p>La historia no termina aqu\\u00ed.<\\/p><p>Despu\\u00e9s de la primera carrera, el Conejo se enter\\u00f3 de que lo perdi\\u00f3 debido a su pereza.<\\/p><p>Despu\\u00e9s de la segunda carrera, la Tortuga se enter\\u00f3 de que perdi\\u00f3 la carrera porque su oponente era realmente bueno corriendo.<\\/p><p>Despu\\u00e9s de la tercera carrera, el Conejo aprendi\\u00f3 que ser m\\u00e1s r\\u00e1pido no es suficiente; Uno tambi\\u00e9n debe tener cerebro para completar la tarea.<\\/p><p>El Conejo y la Tortuga decidieron correr de nuevo. Esta vez fue solo correr y no una carrera.<\\/p><p>Mientras corr\\u00edan, hasta que llegaron al r\\u00edo, el Conejo puso a la Tortuga en su espalda. Una vez que tuvieron que cruzar el r\\u00edo, la Tortuga puso al Conejo en su espalda. Despu\\u00e9s de cruzar el r\\u00edo, el Conejo volvi\\u00f3 a poner a la Tortuga en su espalda y ambos llegaron al punto final en menos tiempo que nunca.<\\/p><p><strong>\\u00bfQu\\u00e9 aprendieron?<\\/strong><\\/p><p>Ambos aprendieron que con el trabajo en equipo pueden terminar la misma tarea m\\u00e1s r\\u00e1pido y ambos pueden disfrutar de la recompensa. Durante el tiempo que estuvieron compitiendo entre s\\u00ed, solo uno de ellos pudo ganar despu\\u00e9s de perder mucho tiempo y energ\\u00eda.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5576,742,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5577,742,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5584,743,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5585,744,'_elementor_template_type','wp-page'),(5586,744,'_elementor_edit_mode','builder'),(5587,744,'_elementor_version','3.12.2'),(5588,744,'_wp_page_template','default'),(5589,744,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5590,744,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00bfRecuerdas la famosa raza Conejo-Tortuga (Tortuga y Liebre)? Todos sabemos que al final de la historia el Conejo no fue capaz de ganar la carrera contra la Tortuga.<\\/p><p>Bueno, este no es realmente el final de la historia. Despu\\u00e9s de una vergonzosa derrota ante la Tortuga, el Conejo decidi\\u00f3 tener una carrera nuevamente. Esta vez, decidi\\u00f3, no tomar\\u00eda una siesta.<\\/p><p>La carrera comenz\\u00f3 y pronto el Conejo estaba lejos de la vista de la Tortuga y todos los espectadores. Esta vez no se detuvo y derrot\\u00f3 a la Tortuga por un gran margen.<\\/p><p>La Tortuga perdi\\u00f3 la carrera esta vez; Sin embargo, no se rindi\\u00f3. Desafi\\u00f3 al Conejo de nuevo en una pista de carreras diferente. El Conejo, lleno de confianza, lo acept\\u00f3. Sab\\u00eda la raz\\u00f3n por la que perdi\\u00f3 antes: su pereza durante la primera carrera. Pudo ganar la segunda carrera porque pudo trabajar en ella.<\\/p><p>La Tercera Carrera comenz\\u00f3. El Conejo, como siempre, pronto desapareci\\u00f3. Todos se re\\u00edan de la tortuga, pero el conejo no quer\\u00eda detenerse para ver por qu\\u00e9 y sigui\\u00f3 corriendo tan r\\u00e1pido como pudo. Quer\\u00eda derrotar a la Tortuga por un margen mucho mayor que la raza anterior. De repente, lleg\\u00f3 a un r\\u00edo. No pudo distinguir c\\u00f3mo cruzarlo y se vio obligado a detenerse.<\\/p><p>Despu\\u00e9s de alg\\u00fan tiempo, la tortuga lleg\\u00f3 al r\\u00edo y entr\\u00f3 con mucha confianza en \\u00e9l. Nad\\u00f3 mucho m\\u00e1s r\\u00e1pido de lo que podr\\u00eda correr. En poco tiempo cruz\\u00f3 el r\\u00edo y se dirigi\\u00f3 hacia el punto final mientras el Conejo miraba impotente mientras la Tortuga ganaba la carrera.<\\/p><p>La historia no termina aqu\\u00ed.<\\/p><p>Despu\\u00e9s de la primera carrera, el Conejo se enter\\u00f3 de que lo perdi\\u00f3 debido a su pereza.<\\/p><p>Despu\\u00e9s de la segunda carrera, la Tortuga se enter\\u00f3 de que perdi\\u00f3 la carrera porque su oponente era realmente bueno corriendo.<\\/p><p>Despu\\u00e9s de la tercera carrera, el Conejo aprendi\\u00f3 que ser m\\u00e1s r\\u00e1pido no es suficiente; Uno tambi\\u00e9n debe tener cerebro para completar la tarea.<\\/p><p>El Conejo y la Tortuga decidieron correr de nuevo. Esta vez fue solo correr y no una carrera.<\\/p><p>Mientras corr\\u00edan, hasta que llegaron al r\\u00edo, el Conejo puso a la Tortuga en su espalda. Una vez que tuvieron que cruzar el r\\u00edo, la Tortuga puso al Conejo en su espalda. Despu\\u00e9s de cruzar el r\\u00edo, el Conejo volvi\\u00f3 a poner a la Tortuga en su espalda y ambos llegaron al punto final en menos tiempo que nunca.<\\/p><p><strong>\\u00bfQu\\u00e9 aprendieron?<\\/strong><\\/p><p>Ambos aprendieron que con el trabajo en equipo pueden terminar la misma tarea m\\u00e1s r\\u00e1pido y ambos pueden disfrutar de la recompensa. Durante el tiempo que estuvieron compitiendo entre s\\u00ed, solo uno de ellos pudo ganar despu\\u00e9s de perder mucho tiempo y energ\\u00eda.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5591,744,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5592,745,'_elementor_template_type','wp-page'),(5593,745,'_elementor_edit_mode','builder'),(5594,745,'_elementor_version','3.12.2'),(5595,745,'_wp_page_template','default'),(5596,745,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5597,745,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Remember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.<\\/p><p style=\\\"text-align: justify;\\\">Well, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.<\\/p><p style=\\\"text-align: justify;\\\">The race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.<\\/p><p style=\\\"text-align: justify;\\\">The Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.<\\/p><p style=\\\"text-align: justify;\\\">The Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.<\\/p><p style=\\\"text-align: justify;\\\">After some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.<\\/p><p style=\\\"text-align: justify;\\\">The story does not end here.<\\/p><p style=\\\"text-align: justify;\\\">After the first race, the Rabbit learned that he lost it because of his laziness.<\\/p><p style=\\\"text-align: justify;\\\">After second race, the Turtle learned that he lost the race because his opponent was actually good at running.<\\/p><p style=\\\"text-align: justify;\\\">After the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.<\\/p><p style=\\\"text-align: justify;\\\">The Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.<\\/p><p style=\\\"text-align: justify;\\\">While running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.<\\/p><p style=\\\"text-align: justify;\\\"><b>What did they learn?<\\/b><\\/p><p style=\\\"text-align: justify;\\\">They both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5598,745,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8690,1137,'_elementor_template_type','wp-page'),(8691,1137,'_elementor_edit_mode','builder'),(8692,1137,'_elementor_version','3.13.3'),(8693,1137,'_wp_page_template','default'),(8694,1137,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8695,1137,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Remember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.<\\/p><p style=\\\"text-align: justify;\\\">Well, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.<\\/p><p style=\\\"text-align: justify;\\\">The race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.<\\/p><p style=\\\"text-align: justify;\\\">The Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.<\\/p><p style=\\\"text-align: justify;\\\">The Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.<\\/p><p style=\\\"text-align: justify;\\\">After some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.<\\/p><p style=\\\"text-align: justify;\\\">The story does not end here.<\\/p><p style=\\\"text-align: justify;\\\">After the first race, the Rabbit learned that he lost it because of his laziness.<\\/p><p style=\\\"text-align: justify;\\\">After second race, the Turtle learned that he lost the race because his opponent was actually good at running.<\\/p><p style=\\\"text-align: justify;\\\">After the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.<\\/p><p style=\\\"text-align: justify;\\\">The Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.<\\/p><p style=\\\"text-align: justify;\\\">While running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.<\\/p><p style=\\\"text-align: justify;\\\"><b>What did they learn?<\\/b><\\/p><p style=\\\"text-align: justify;\\\">They both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5600,746,'_elementor_template_type','wp-page'),(5601,746,'_elementor_edit_mode','builder'),(5602,746,'_elementor_version','3.12.2'),(5603,746,'_wp_page_template','default'),(5604,746,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5605,746,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un viejo granjero hab\\u00eda arado alrededor de una gran roca en uno de sus campos durante a\\u00f1os. Hab\\u00eda roto varias rejas de arado y un cultivador en \\u00e9l y se hab\\u00eda vuelto bastante morboso sobre la roca.<\\/p><p>Despu\\u00e9s de romper otra reja de arado un d\\u00eda, y recordando todos los problemas que la roca le hab\\u00eda causado a trav\\u00e9s de los a\\u00f1os, finalmente decidi\\u00f3 hacer algo al respecto.<\\/p><p>Cuando puso la palanca debajo de la roca, se sorprendi\\u00f3 al descubrir que solo ten\\u00eda unas seis pulgadas de grosor y que pod\\u00eda romperla f\\u00e1cilmente con un mazo. Mientras se llevaba las piezas, tuvo que sonre\\u00edr, recordando todos los problemas que la roca le hab\\u00eda causado a lo largo de los a\\u00f1os y lo f\\u00e1cil que habr\\u00eda sido deshacerse de ella antes.<\\/p><p>.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5606,746,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5607,746,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5614,747,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5615,748,'_elementor_template_type','wp-page'),(5616,748,'_elementor_edit_mode','builder'),(5617,748,'_elementor_version','3.12.2'),(5618,748,'_wp_page_template','default'),(5619,748,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5620,748,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un viejo granjero hab\\u00eda arado alrededor de una gran roca en uno de sus campos durante a\\u00f1os. Hab\\u00eda roto varias rejas de arado y un cultivador en \\u00e9l y se hab\\u00eda vuelto bastante morboso sobre la roca.<\\/p><p>Despu\\u00e9s de romper otra reja de arado un d\\u00eda, y recordando todos los problemas que la roca le hab\\u00eda causado a trav\\u00e9s de los a\\u00f1os, finalmente decidi\\u00f3 hacer algo al respecto.<\\/p><p>Cuando puso la palanca debajo de la roca, se sorprendi\\u00f3 al descubrir que solo ten\\u00eda unas seis pulgadas de grosor y que pod\\u00eda romperla f\\u00e1cilmente con un mazo. Mientras se llevaba las piezas, tuvo que sonre\\u00edr, recordando todos los problemas que la roca le hab\\u00eda causado a lo largo de los a\\u00f1os y lo f\\u00e1cil que habr\\u00eda sido deshacerse de ella antes.<\\/p><p>.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5621,748,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5623,749,'_elementor_edit_mode','builder'),(5624,749,'_elementor_version','3.12.2'),(5625,749,'_wp_page_template','default'),(5626,749,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5627,749,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">An old farmer had plowed around a large rock in one of his fields for years. He had broken several plowshares and a cultivator on it and had grown rather morbid about the rock.<\\/p><p style=\\\"text-align: justify;\\\">After breaking another plowshare one day, and remembering all the trouble the rock had caused him through the years, he finally decided to do something about it.<\\/p><p style=\\\"text-align: justify;\\\">When he put the crowbar under the rock, he was surprised to discover that it was only about six inches thick and that he could break it up easily with a sledgehammer. As he was carting the pieces away he had to smile, remembering all the trouble that the rock had caused him over the years and how easy it would have been to get rid of it sooner.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5628,749,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8738,1143,'_elementor_template_type','wp-page'),(8739,1143,'_elementor_edit_mode','builder'),(8740,1143,'_elementor_version','3.13.3'),(8741,1143,'_wp_page_template','default'),(8742,1143,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8743,1143,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">An old farmer had plowed around a large rock in one of his fields for years. He had broken several plowshares and a cultivator on it and had grown rather morbid about the rock.<\\/p><p style=\\\"text-align: justify;\\\">After breaking another plowshare one day, and remembering all the trouble the rock had caused him through the years, he finally decided to do something about it.<\\/p><p style=\\\"text-align: justify;\\\">When he put the crowbar under the rock, he was surprised to discover that it was only about six inches thick and that he could break it up easily with a sledgehammer. As he was carting the pieces away he had to smile, remembering all the trouble that the rock had caused him over the years and how easy it would have been to get rid of it sooner.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5630,750,'_elementor_template_type','wp-page'),(5631,750,'_elementor_edit_mode','builder'),(5632,750,'_elementor_version','3.12.2'),(5633,750,'_wp_page_template','default'),(5634,750,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5635,750,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sobre la naturaleza oculta de Atman [Alma]:<\\/p><p>\\\"Somos como un rey, que siendo v\\u00edctima de la amnesia, vaga por su reino hecho jirones, sin saber qui\\u00e9n es realmente. Somos como un cachorro de le\\u00f3n que, habi\\u00e9ndose perdido de su madre al nacer, crece por accidente entre ovejas y se dedica a pastar y balar como ellas, asumiendo que \\u00e9l es como ellos\\\".<\\/p><p>Una leona era grande con cr\\u00edas y andaba en busca de presas cuando vio un reba\\u00f1o de ovejas. Ella salt\\u00f3 sobre ellos y muri\\u00f3 en ese esfuerzo. Pero su peque\\u00f1o le\\u00f3n naci\\u00f3, sin madre. Las ovejas lo cuidaron y las ovejas lo criaron. Creci\\u00f3 con ellos, com\\u00eda hierba y balaba como las ovejas. Con el tiempo se convirti\\u00f3 en un le\\u00f3n grande y adulto, y todav\\u00eda balaba como una oveja y pensaba que era una oveja.<\\/p><p>Un d\\u00eda otro le\\u00f3n vino en busca de presas, y se sorprendi\\u00f3 al descubrir que en medio de este reba\\u00f1o de ovejas hab\\u00eda un le\\u00f3n que hu\\u00eda como las ovejas al acercarse el peligro. Trat\\u00f3 de acercarse al le\\u00f3n-oveja, para decirle que no era una oveja sino un le\\u00f3n, pero el pobre animal huy\\u00f3 al acercarse.<\\/p><p>Sin embargo, vio su oportunidad, y un d\\u00eda encontr\\u00f3 al le\\u00f3n oveja durmiendo. Se acerc\\u00f3 y dijo: \\\"Eres un le\\u00f3n\\\".<\\/p><p>\\\"Yo soy la oveja\\\" grit\\u00f3 y bal\\u00f3 el otro le\\u00f3n, y no pod\\u00eda creer lo contrario.<\\/p><p>El le\\u00f3n lo arrastr\\u00f3 hacia un lago y dijo: \\\"Mira aqu\\u00ed, ah\\u00ed est\\u00e1 mi reflejo y el tuyo\\\".<\\/p><p>Luego vino la comparaci\\u00f3n. El le\\u00f3n balando mir\\u00f3 al le\\u00f3n y luego a su propio reflejo, y en un momento surgi\\u00f3 la idea de que era un le\\u00f3n. El le\\u00f3n rugi\\u00f3, el balido se hab\\u00eda ido. [Adaptado de un cuento de Vivekananda en la conferencia \\\"La verdadera naturaleza del hombre\\\", dada en Londres, 1899 o cerca]<\\/p><p>\\u2756 \\\"Ustedes son leones... y perfecto.\\\" \\u2013 Swami Vivekananda<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5636,750,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5637,750,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5644,751,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5645,752,'_elementor_template_type','wp-page'),(5646,752,'_elementor_edit_mode','builder'),(5647,752,'_elementor_version','3.12.2'),(5648,752,'_wp_page_template','default'),(5649,752,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5650,752,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sobre la naturaleza oculta de Atman [Alma]:<\\/p><p>\\\"Somos como un rey, que siendo v\\u00edctima de la amnesia, vaga por su reino hecho jirones, sin saber qui\\u00e9n es realmente. Somos como un cachorro de le\\u00f3n que, habi\\u00e9ndose perdido de su madre al nacer, crece por accidente entre ovejas y se dedica a pastar y balar como ellas, asumiendo que \\u00e9l es como ellos\\\".<\\/p><p>Una leona era grande con cr\\u00edas y andaba en busca de presas cuando vio un reba\\u00f1o de ovejas. Ella salt\\u00f3 sobre ellos y muri\\u00f3 en ese esfuerzo. Pero su peque\\u00f1o le\\u00f3n naci\\u00f3, sin madre. Las ovejas lo cuidaron y las ovejas lo criaron. Creci\\u00f3 con ellos, com\\u00eda hierba y balaba como las ovejas. Con el tiempo se convirti\\u00f3 en un le\\u00f3n grande y adulto, y todav\\u00eda balaba como una oveja y pensaba que era una oveja.<\\/p><p>Un d\\u00eda otro le\\u00f3n vino en busca de presas, y se sorprendi\\u00f3 al descubrir que en medio de este reba\\u00f1o de ovejas hab\\u00eda un le\\u00f3n que hu\\u00eda como las ovejas al acercarse el peligro. Trat\\u00f3 de acercarse al le\\u00f3n-oveja, para decirle que no era una oveja sino un le\\u00f3n, pero el pobre animal huy\\u00f3 al acercarse.<\\/p><p>Sin embargo, vio su oportunidad, y un d\\u00eda encontr\\u00f3 al le\\u00f3n oveja durmiendo. Se acerc\\u00f3 y dijo: \\\"Eres un le\\u00f3n\\\".<\\/p><p>\\\"Yo soy la oveja\\\" grit\\u00f3 y bal\\u00f3 el otro le\\u00f3n, y no pod\\u00eda creer lo contrario.<\\/p><p>El le\\u00f3n lo arrastr\\u00f3 hacia un lago y dijo: \\\"Mira aqu\\u00ed, ah\\u00ed est\\u00e1 mi reflejo y el tuyo\\\".<\\/p><p>Luego vino la comparaci\\u00f3n. El le\\u00f3n balando mir\\u00f3 al le\\u00f3n y luego a su propio reflejo, y en un momento surgi\\u00f3 la idea de que era un le\\u00f3n. El le\\u00f3n rugi\\u00f3, el balido se hab\\u00eda ido. [Adaptado de un cuento de Vivekananda en la conferencia \\\"La verdadera naturaleza del hombre\\\", dada en Londres, 1899 o cerca]<\\/p><p>\\u2756 \\\"Ustedes son leones... y perfecto.\\\" \\u2013 Swami Vivekananda<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5651,752,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5652,753,'_elementor_template_type','wp-page'),(5653,753,'_elementor_edit_mode','builder'),(5654,753,'_elementor_version','3.12.2'),(5655,753,'_wp_page_template','default'),(5656,753,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5657,753,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">About the hidden nature of Atman [Soul]:<\\/p><p style=\\\"text-align: justify;\\\">\\\"We are like a king, who falling victim to amnesia, wanders his kingdom in tatters, not knowing who he really is. We are like a lion cub who, having become lost from his mother at birth, grows up by accident among sheep and takes to grazing and bleating like them, assuming that he is like them.\\\" - Themes from Hindu literature.<\\/p><p style=\\\"text-align: justify;\\\">A LIONESS was big with young and going about in search of prey when she saw a flock of sheep. She jumped upon them and died in that effort. But her little baby lion was born, motherless. The sheep took care of it, and the sheep brought it up. It grew up with them, ate grass, and bleated like the sheep. In time it became a big, full-grown lion, and still it bleated like a sheep and thought it was a sheep.<\\/p><p style=\\\"text-align: justify;\\\">One day another lion came in search of prey, and was astonished to find that in the middle of this flock of sheep was a lion who fled like the sheep at the approach of danger. He tried to get near the sheep-lion, to tell it that it was not a sheep but a lion, but the poor animal fled at his approach.<\\/p><p style=\\\"text-align: justify;\\\">However, he watched his opportunity, and one day found the sheep-lion sleeping. He approached it and said, \\\"You are a lion.\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"I am the sheep\\\" cried and bleated the other lion, and could not believe otherwise.<\\/p><p style=\\\"text-align: justify;\\\">The lion dragged him towards a lake and said, \\\"Look here, there is my reflection and yours.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Then came the comparison. The bleating lion looked at the lion and then at its own reflection, and in a moment came the idea that it was a lion. The lion roared, the bleating was gone. [Adapted from a tale by Vivekananda in the lecture \\\"The real nature of man\\\", given in London, 1899 or near by]<\\/p><p style=\\\"text-align: justify;\\\">\\u2756 \\\"You are lions . . . and perfect.\\\" - Swami Vivekananda<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5658,753,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8764,1146,'_elementor_template_type','wp-page'),(8765,1146,'_elementor_edit_mode','builder'),(8766,1146,'_elementor_version','3.13.3'),(8767,1146,'_wp_page_template','default'),(8768,1146,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8769,1146,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">About the hidden nature of Atman [Soul]:<\\/p><p style=\\\"text-align: justify;\\\">\\\"We are like a king, who falling victim to amnesia, wanders his kingdom in tatters, not knowing who he really is. We are like a lion cub who, having become lost from his mother at birth, grows up by accident among sheep and takes to grazing and bleating like them, assuming that he is like them.\\\" - Themes from Hindu literature.<\\/p><p style=\\\"text-align: justify;\\\">A LIONESS was big with young and going about in search of prey when she saw a flock of sheep. She jumped upon them and died in that effort. But her little baby lion was born, motherless. The sheep took care of it, and the sheep brought it up. It grew up with them, ate grass, and bleated like the sheep. In time it became a big, full-grown lion, and still it bleated like a sheep and thought it was a sheep.<\\/p><p style=\\\"text-align: justify;\\\">One day another lion came in search of prey, and was astonished to find that in the middle of this flock of sheep was a lion who fled like the sheep at the approach of danger. He tried to get near the sheep-lion, to tell it that it was not a sheep but a lion, but the poor animal fled at his approach.<\\/p><p style=\\\"text-align: justify;\\\">However, he watched his opportunity, and one day found the sheep-lion sleeping. He approached it and said, \\\"You are a lion.\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"I am the sheep\\\" cried and bleated the other lion, and could not believe otherwise.<\\/p><p style=\\\"text-align: justify;\\\">The lion dragged him towards a lake and said, \\\"Look here, there is my reflection and yours.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Then came the comparison. The bleating lion looked at the lion and then at its own reflection, and in a moment came the idea that it was a lion. The lion roared, the bleating was gone. [Adapted from a tale by Vivekananda in the lecture \\\"The real nature of man\\\", given in London, 1899 or near by]<\\/p><p style=\\\"text-align: justify;\\\">\\u2756 \\\"You are lions . . . and perfect.\\\" - Swami Vivekananda<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5660,754,'_elementor_template_type','wp-page'),(5661,754,'_elementor_edit_mode','builder'),(5662,754,'_elementor_version','3.12.2'),(5663,754,'_wp_page_template','default'),(5664,754,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5665,754,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un hombre encontr\\u00f3 un capullo de una mariposa.<br \\/>Un d\\u00eda apareci\\u00f3 una peque\\u00f1a abertura.<br \\/>Se sent\\u00f3 y observ\\u00f3 a la mariposa durante varias horas<br \\/>mientras luchaba por apretar su cuerpo a trav\\u00e9s del peque\\u00f1o agujero.<br \\/>Luego se detuvo, como si no pudiera ir m\\u00e1s all\\u00e1.<\\/p><p>Entonces el hombre decidi\\u00f3 ayudar a la mariposa.<br \\/>Tom\\u00f3 un par de tijeras y<br \\/>cort\\u00f3 los trozos restantes de capullo.<br \\/>La mariposa emergi\\u00f3 f\\u00e1cilmente, pero<br \\/>ten\\u00eda un cuerpo hinchado y alas arrugadas.<\\/p><p>El hombre continu\\u00f3 observ\\u00e1ndolo, esperando que en cualquier momento las alas se agrandaran<br \\/>y expandieran lo suficiente como para sostener el cuerpo,<br \\/><br \\/>\\u00a1Ninguno de los dos sucedi\\u00f3!<br \\/>De hecho, la mariposa pas\\u00f3 el resto de su vida<br \\/>arrastr\\u00e1ndose.<br \\/>Nunca fue capaz de volar.<\\/p><p>Lo que el hombre en su amabilidad y prisa no entendi\\u00f3:<br \\/>El capullo restrictivo<br \\/>y la lucha<br \\/>requerida por la mariposa para atravesar la abertura era una forma de forzar el fluido del cuerpo<br \\/>hacia las alas<br \\/>para que estuviera listo<br \\/>para volar una vez que se lograra.<\\/p><p>A veces las luchas son exactamente<br \\/>lo que necesitamos en nuestras vidas.<br \\/>Ir por la vida sin obst\\u00e1culos nos paralizar\\u00eda.<br \\/>No seremos tan fuertes como podr\\u00edamos haber sido<br \\/>y nunca volar\\u00edamos.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5666,754,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5667,754,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5675,755,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5677,756,'_elementor_template_type','wp-page'),(5678,756,'_elementor_edit_mode','builder'),(5679,756,'_elementor_version','3.12.2'),(5680,756,'_wp_page_template','default'),(5681,756,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5682,756,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Un hombre encontr\\u00f3 un capullo de una mariposa.<br \\/>Un d\\u00eda apareci\\u00f3 una peque\\u00f1a abertura.<br \\/>Se sent\\u00f3 y observ\\u00f3 a la mariposa durante varias horas<br \\/>mientras luchaba por apretar su cuerpo a trav\\u00e9s del peque\\u00f1o agujero.<br \\/>Luego se detuvo, como si no pudiera ir m\\u00e1s all\\u00e1.<\\/p><p>Entonces el hombre decidi\\u00f3 ayudar a la mariposa.<br \\/>Tom\\u00f3 un par de tijeras y<br \\/>cort\\u00f3 los trozos restantes de capullo.<br \\/>La mariposa emergi\\u00f3 f\\u00e1cilmente, pero<br \\/>ten\\u00eda un cuerpo hinchado y alas arrugadas.<\\/p><p>El hombre continu\\u00f3 observ\\u00e1ndolo, esperando que en cualquier momento las alas se agrandaran<br \\/>y expandieran lo suficiente como para sostener el cuerpo,<br \\/><br \\/>\\u00a1Ninguno de los dos sucedi\\u00f3!<br \\/>De hecho, la mariposa pas\\u00f3 el resto de su vida<br \\/>arrastr\\u00e1ndose.<br \\/>Nunca fue capaz de volar.<\\/p><p>Lo que el hombre en su amabilidad y prisa no entendi\\u00f3:<br \\/>El capullo restrictivo<br \\/>y la lucha<br \\/>requerida por la mariposa para atravesar la abertura era una forma de forzar el fluido del cuerpo<br \\/>hacia las alas<br \\/>para que estuviera listo<br \\/>para volar una vez que se lograra.<\\/p><p>A veces las luchas son exactamente<br \\/>lo que necesitamos en nuestras vidas.<br \\/>Ir por la vida sin obst\\u00e1culos nos paralizar\\u00eda.<br \\/>No seremos tan fuertes como podr\\u00edamos haber sido<br \\/>y nunca volar\\u00edamos.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5683,756,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5688,757,'_wp_page_template','default'),(5689,757,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5690,757,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A man found a cocoon of a butterfly.<br \\/>One day a small opening appeared.<br \\/>He sat and watched the butterfly for several hours<br \\/>as it struggled to squeeze its body through the tiny hole.<br \\/>Then it stopped, as if it couldn\'t go further.<\\/p><p>So the man decided to help the butterfly.<br \\/>He took a pair of scissors and<br \\/>snipped off the remaining bits of cocoon.<br \\/>The butterfly emerged easily but<br \\/>it had a swollen body and shriveled wings.<\\/p><p>The man continued to watch it,<br \\/>expecting that any minute the wings would enlarge<br \\/>and expand enough to support the body,<br \\/>Neither happened!<br \\/>In fact the butterfly spent the rest of its life<br \\/>crawling around.<br \\/>It was never able to fly.<\\/p><p>What the man in his kindness<br \\/>and haste did not understand:<br \\/>The restricting cocoon and the struggle<br \\/>required by the butterfly to get through the opening<br \\/>was a way of forcing the fluid from the body<br \\/>into the wings so that it would be ready<br \\/>for flight once that was achieved.<\\/p><p>Sometimes struggles are exactly<br \\/>what we need in our lives.<br \\/>Going through life with no obstacles would cripple us.<br \\/>We will not be as strong as we could have been<br \\/>and we would never fly.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5691,757,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5694,758,'_elementor_template_type','wp-page'),(5695,758,'_elementor_edit_mode','builder'),(5696,758,'_elementor_version','3.12.2'),(5697,758,'_wp_page_template','default'),(5698,758,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5699,758,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>DOS RANAS, una grande y otra peque\\u00f1a, saltaron a un cubo de leche. Los lados del cubo eran brillantes y lisos. Las ranas nadaban dando vueltas y vueltas sin poder volver a salir del cubo, y cada vez que levantaban la boca para coger un poco de aire para respirar, bajaban. Siguieron nadando y jadeando as\\u00ed hasta que la gran rana se rindi\\u00f3 y se ahog\\u00f3. Entonces la ranita se dijo a s\\u00ed misma:<\\/p><p>\\\"Bueno, bueno. Yo tambi\\u00e9n aguantar\\u00e9 todo el tiempo que pueda\\\".<\\/p><p>Continu\\u00f3 durante horas, cuando de repente encontr\\u00f3 algo s\\u00f3lido bajo sus pies: \\u00a1la leche se bati\\u00f3 en mantequilla! \\u00a1Sali\\u00f3 la ranita!<\\/p><p>\\u2756\\u00a0<em>Dijo Yogananda: \\\"S\\u00e9 como la ranita. Por supuesto, sigue luchando\\\".<\\/em><\\/p><p>\\u2756\\u00a0<em>Agite bien su dificultad o puede ser para su p\\u00e9rdida.<\\/em><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5700,758,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5701,758,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5708,759,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5709,760,'_elementor_template_type','wp-page'),(5710,760,'_elementor_edit_mode','builder'),(5711,760,'_elementor_version','3.12.2'),(5712,760,'_wp_page_template','default'),(5713,760,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5714,760,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>DOS RANAS, una grande y otra peque\\u00f1a, saltaron a un cubo de leche. Los lados del cubo eran brillantes y lisos. Las ranas nadaban dando vueltas y vueltas sin poder volver a salir del cubo, y cada vez que levantaban la boca para coger un poco de aire para respirar, bajaban. Siguieron nadando y jadeando as\\u00ed hasta que la gran rana se rindi\\u00f3 y se ahog\\u00f3. Entonces la ranita se dijo a s\\u00ed misma:<\\/p><p>\\\"Bueno, bueno. Yo tambi\\u00e9n aguantar\\u00e9 todo el tiempo que pueda\\\".<\\/p><p>Continu\\u00f3 durante horas, cuando de repente encontr\\u00f3 algo s\\u00f3lido bajo sus pies: \\u00a1la leche se bati\\u00f3 en mantequilla! \\u00a1Sali\\u00f3 la ranita!<\\/p><p>\\u2756\\u00a0<em>Dijo Yogananda: \\\"S\\u00e9 como la ranita. Por supuesto, sigue luchando\\\".<\\/em><\\/p><p>\\u2756\\u00a0<em>Agite bien su dificultad o puede ser para su p\\u00e9rdida.<\\/em><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5715,760,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5716,761,'_elementor_template_type','wp-page'),(5717,761,'_elementor_edit_mode','builder'),(5718,761,'_elementor_version','3.12.2'),(5719,761,'_wp_page_template','default'),(5720,761,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5721,761,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">TWO FROGS - a big one and a small one - hopped into a pail of milk. The sides of the pail were shiny and smooth. The frogs were swimming round and round without being able to get out of the pail again, and every time they lifted their mouths to catch a little air to breathe, down they went. They kept on swimming and gasping like this till the big frog gave up and drowned. Then the little frog said to himself,<\\/p><p style=\\\"text-align: justify;\\\">\\\"Well, well. I will hang on as long as I can, too.\\\"<\\/p><p style=\\\"text-align: justify;\\\">It kept on for hours, when suddenly it found something solid under its feet - milk was churned to butter! Out jumped the little frog!<\\/p><p style=\\\"text-align: justify;\\\">\\u2756 <i>Said Yogananda: \\\"Be like the little frog. By all means keep battling.\\\" <\\/i><\\/p><p style=\\\"text-align: justify;\\\">\\u2756 <i>Churn your difficulty well or it may be to your loss.<\\/i><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5722,761,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8891,1161,'_elementor_template_type','wp-page'),(8892,1161,'_elementor_edit_mode','builder'),(8893,1161,'_elementor_version','3.13.3'),(8894,1161,'_wp_page_template','default'),(8895,1161,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8896,1161,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">TWO FROGS - a big one and a small one - hopped into a pail of milk. The sides of the pail were shiny and smooth. The frogs were swimming round and round without being able to get out of the pail again, and every time they lifted their mouths to catch a little air to breathe, down they went. They kept on swimming and gasping like this till the big frog gave up and drowned. Then the little frog said to himself,<\\/p><p style=\\\"text-align: justify;\\\">\\\"Well, well. I will hang on as long as I can, too.\\\"<\\/p><p style=\\\"text-align: justify;\\\">It kept on for hours, when suddenly it found something solid under its feet - milk was churned to butter! Out jumped the little frog!<\\/p><p style=\\\"text-align: justify;\\\">\\u2756 <i>Said Yogananda: \\\"Be like the little frog. By all means keep battling.\\\" <\\/i><\\/p><p style=\\\"text-align: justify;\\\">\\u2756 <i>Churn your difficulty well or it may be to your loss.<\\/i><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5724,762,'_elementor_template_type','wp-page'),(5725,762,'_elementor_edit_mode','builder'),(5726,762,'_elementor_version','3.12.2'),(5727,762,'_wp_page_template','default'),(5728,762,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5729,762,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Se cuenta una vieja historia de un rey en \\u00c1frica que ten\\u00eda un amigo cercano con quien creci\\u00f3. El amigo ten\\u00eda la costumbre de mirar cada situaci\\u00f3n que ocurr\\u00eda en su vida (positiva o negativa) y comentar: \\\"\\u00a1Esto es bueno!\\\"<\\/p><p>Un d\\u00eda, el rey y su amigo estaban en una expedici\\u00f3n de caza. El amigo cargar\\u00eda y preparar\\u00eda las armas para el rey. El amigo aparentemente hab\\u00eda hecho algo mal al preparar una de las armas, porque despu\\u00e9s de quitarle el arma a su amigo, el rey la dispar\\u00f3 y le volaron el pulgar. Al examinar la situaci\\u00f3n, el amigo coment\\u00f3 como de costumbre: \\\"\\u00a1Esto es bueno!\\\" A lo que el rey respondi\\u00f3: \\\"\\u00a1No, esto NO es bueno!\\\" y procedi\\u00f3 a enviar a su amigo a la c\\u00e1rcel.<\\/p><p>Aproximadamente un a\\u00f1o despu\\u00e9s, el rey estaba cazando en un \\u00e1rea de la que deber\\u00eda haber sabido mantenerse alejado. Los can\\u00edbales lo capturaron y lo llevaron a su aldea. Le ataron las manos, apilaron madera, colocaron una estaca y lo ataron a la estaca. Cuando se acercaron para prender fuego a la madera, notaron que al rey le faltaba un pulgar. Siendo supersticiosos, nunca comieron a nadie que fuera menos que completo. As\\u00ed que desatando al rey, lo enviaron en su camino.<\\/p><p>Cuando regres\\u00f3 a casa, record\\u00f3 el evento que le hab\\u00eda quitado el pulgar y sinti\\u00f3 remordimiento por el trato que hab\\u00eda dado a su amigo. Fue inmediatamente a la c\\u00e1rcel para hablar con su amigo. \\\"Ten\\u00edas raz\\u00f3n\\\", dijo, \\\"fue bueno que me volaran el pulgar\\\". Y procedi\\u00f3 a contarle al amigo todo lo que acababa de suceder. \\\"Y por eso lamento mucho haberte enviado a la c\\u00e1rcel durante tanto tiempo. Fue malo para m\\u00ed hacer esto\\\".<\\/p><p>\\\"No\\\", respondi\\u00f3 su amigo, \\\"\\u00a1Esto es bueno!\\\" \\\"\\u00bfQu\\u00e9 quieres decir, \'Esto es bueno\'? \\u00bfC\\u00f3mo podr\\u00eda ser bueno que enviara a mi amigo a la c\\u00e1rcel por un a\\u00f1o?\\\" \\\"Si NO hubiera estado en la c\\u00e1rcel, habr\\u00eda estado contigo\\\".<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5730,762,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5731,762,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5739,763,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5741,764,'_elementor_template_type','wp-page'),(5742,764,'_elementor_edit_mode','builder'),(5743,764,'_elementor_version','3.12.2'),(5744,764,'_wp_page_template','default'),(5745,764,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5746,764,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Se cuenta una vieja historia de un rey en \\u00c1frica que ten\\u00eda un amigo cercano con quien creci\\u00f3. El amigo ten\\u00eda la costumbre de mirar cada situaci\\u00f3n que ocurr\\u00eda en su vida (positiva o negativa) y comentar: \\\"\\u00a1Esto es bueno!\\\"<\\/p><p>Un d\\u00eda, el rey y su amigo estaban en una expedici\\u00f3n de caza. El amigo cargar\\u00eda y preparar\\u00eda las armas para el rey. El amigo aparentemente hab\\u00eda hecho algo mal al preparar una de las armas, porque despu\\u00e9s de quitarle el arma a su amigo, el rey la dispar\\u00f3 y le volaron el pulgar. Al examinar la situaci\\u00f3n, el amigo coment\\u00f3 como de costumbre: \\\"\\u00a1Esto es bueno!\\\" A lo que el rey respondi\\u00f3: \\\"\\u00a1No, esto NO es bueno!\\\" y procedi\\u00f3 a enviar a su amigo a la c\\u00e1rcel.<\\/p><p>Aproximadamente un a\\u00f1o despu\\u00e9s, el rey estaba cazando en un \\u00e1rea de la que deber\\u00eda haber sabido mantenerse alejado. Los can\\u00edbales lo capturaron y lo llevaron a su aldea. Le ataron las manos, apilaron madera, colocaron una estaca y lo ataron a la estaca. Cuando se acercaron para prender fuego a la madera, notaron que al rey le faltaba un pulgar. Siendo supersticiosos, nunca comieron a nadie que fuera menos que completo. As\\u00ed que desatando al rey, lo enviaron en su camino.<\\/p><p>Cuando regres\\u00f3 a casa, record\\u00f3 el evento que le hab\\u00eda quitado el pulgar y sinti\\u00f3 remordimiento por el trato que hab\\u00eda dado a su amigo. Fue inmediatamente a la c\\u00e1rcel para hablar con su amigo. \\\"Ten\\u00edas raz\\u00f3n\\\", dijo, \\\"fue bueno que me volaran el pulgar\\\". Y procedi\\u00f3 a contarle al amigo todo lo que acababa de suceder. \\\"Y por eso lamento mucho haberte enviado a la c\\u00e1rcel durante tanto tiempo. Fue malo para m\\u00ed hacer esto\\\".<\\/p><p>\\\"No\\\", respondi\\u00f3 su amigo, \\\"\\u00a1Esto es bueno!\\\" \\\"\\u00bfQu\\u00e9 quieres decir, \'Esto es bueno\'? \\u00bfC\\u00f3mo podr\\u00eda ser bueno que enviara a mi amigo a la c\\u00e1rcel por un a\\u00f1o?\\\" \\\"Si NO hubiera estado en la c\\u00e1rcel, habr\\u00eda estado contigo\\\".<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5747,764,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5751,765,'_elementor_version','3.12.2'),(5752,765,'_wp_page_template','default'),(5753,765,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5754,765,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">An old story is told of a king in Africa who had a close friend with whom he grew up. The friend had a habit of looking at every situation that ever occurred in his life (positive or negative) and remarking, \\\"This is good!\\\"<\\/p><p style=\\\"text-align: justify;\\\">One day the king and his friend were out on a hunting expedition. The friend would load and prepare the guns for the king. The friend had apparently done something wrong in preparing one of the guns, for after taking the gun from his friend, the king fired it and his thumb was blown off. Examining the situation the friend remarked as usual, \\\"This is good!\\\" To which the king replied, \\\"No, this is NOT good!\\\" and proceeded to send his friend to jail.<\\/p><p style=\\\"text-align: justify;\\\">About a year later, the king was hunting in an area that he should have known to stay clear of. Cannibals captured him and took him to their village. They tied his hands, stacked some wood, set up a stake and bound him to the stake. As they came near to set fire to the wood, they noticed that the king was missing a thumb. Being superstitious, they never ate anyone that was less than whole. So untying the king, they sent him on his way.<\\/p><p style=\\\"text-align: justify;\\\">As he returned home, he was reminded of the event that had taken his thumb and felt remorse for his treatment of his friend. He went immediately to the jail to speak with his friend. \\\"You were right,\\\" he said, \\\"it was good that my thumb was blown off.\\\" And he proceeded to tell the friend all that had just happened. \\\"And so I am very sorry for sending you to jail for so long. It was bad for me to do this.\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"No,\\\" his friend replied, \\\"This is good!\\\" \\\"What do you mean,\'This is good\'? How could it be good that I sent my friend to jail for a year?\\\" \\\"If I had NOT been in jail, I would have been with you.\\\"<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5755,765,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5758,766,'_elementor_template_type','wp-page'),(5759,766,'_elementor_edit_mode','builder'),(5760,766,'_elementor_version','3.12.2'),(5761,766,'_wp_page_template','default'),(5762,766,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5763,766,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a1Por favor, no te pares demasiado cerca de los \\u00e1rboles! No podr\\u00e1s disfrutar del bosque...<\\/p><p>Unos a\\u00f1os antes de que el hurac\\u00e1n Katrina azotara Nueva Orleans, un autom\\u00f3vil nuevo y caro se detuvo en la parte superior del puente del r\\u00edo Mississippi y un caballero sali\\u00f3 del autom\\u00f3vil con ropa muy cara.<\\/p><p>Se subi\\u00f3 por encima de la barandilla y debajo del puente a una plataforma debajo de la carretera prepar\\u00e1ndose para saltar. Los autos comenzaron a detenerse y el tr\\u00e1fico retrocedi\\u00f3 por millas. La polic\\u00eda lleg\\u00f3 con el departamento de bomberos, ministros y profesionales de la salud mental.<\\/p><p>Comenzaron a hablar con el hombre y le dijeron que no saltara. Le dijeron que no pod\\u00eda morir; Puede romperse todos los huesos y quedar paralizado de por vida. Alrededor de media milla atr\\u00e1s en el tr\\u00e1fico hab\\u00eda un viejo cami\\u00f3n con cortadoras de c\\u00e9sped, rastrillos y palas. Un jardinero anciano sali\\u00f3 de su camioneta y camin\\u00f3 hasta donde estaba reunida la multitud.<\\/p><p>Se abri\\u00f3 paso entre la gente, mir\\u00f3 a un lado y grit\\u00f3 al hombre en la cornisa: \\\"Oye, tengo que ir a trabajar. Salta o b\\u00e1jate del puente. \\u00a1Si decides no saltar, ma\\u00f1ana va a ser mejor!\\\"<\\/p><p>Con eso el hombre subi\\u00f3 al puente. La polic\\u00eda lo espos\\u00f3 y lo coloc\\u00f3 en el asiento trasero del coche de polic\\u00eda. El jardinero regres\\u00f3 a su camioneta esperando que el tr\\u00e1fico se moviera.<\\/p><p>El ministro le pregunt\\u00f3 al bombero: \\\"\\u00bfQui\\u00e9n era ese?\\\" El bombero dijo: \\\"\\u00a1Dijo que tiene que ir a trabajar!\\\"<\\/p><p>La polic\\u00eda inform\\u00f3 a la prensa que durante todo el camino hasta el hospital el hombre segu\\u00eda diciendo una y otra vez: \\\"Ma\\u00f1ana va a ser mejor\\\".<\\/p><p>Uno debe ver un futuro, tener un futuro<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5764,766,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5765,766,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5772,767,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5773,768,'_elementor_template_type','wp-page'),(5774,768,'_elementor_edit_mode','builder'),(5775,768,'_elementor_version','3.12.2'),(5776,768,'_wp_page_template','default'),(5777,768,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5778,768,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a1Por favor, no te pares demasiado cerca de los \\u00e1rboles! No podr\\u00e1s disfrutar del bosque...<\\/p><p>Unos a\\u00f1os antes de que el hurac\\u00e1n Katrina azotara Nueva Orleans, un autom\\u00f3vil nuevo y caro se detuvo en la parte superior del puente del r\\u00edo Mississippi y un caballero sali\\u00f3 del autom\\u00f3vil con ropa muy cara.<\\/p><p>Se subi\\u00f3 por encima de la barandilla y debajo del puente a una plataforma debajo de la carretera prepar\\u00e1ndose para saltar. Los autos comenzaron a detenerse y el tr\\u00e1fico retrocedi\\u00f3 por millas. La polic\\u00eda lleg\\u00f3 con el departamento de bomberos, ministros y profesionales de la salud mental.<\\/p><p>Comenzaron a hablar con el hombre y le dijeron que no saltara. Le dijeron que no pod\\u00eda morir; Puede romperse todos los huesos y quedar paralizado de por vida. Alrededor de media milla atr\\u00e1s en el tr\\u00e1fico hab\\u00eda un viejo cami\\u00f3n con cortadoras de c\\u00e9sped, rastrillos y palas. Un jardinero anciano sali\\u00f3 de su camioneta y camin\\u00f3 hasta donde estaba reunida la multitud.<\\/p><p>Se abri\\u00f3 paso entre la gente, mir\\u00f3 a un lado y grit\\u00f3 al hombre en la cornisa: \\\"Oye, tengo que ir a trabajar. Salta o b\\u00e1jate del puente. \\u00a1Si decides no saltar, ma\\u00f1ana va a ser mejor!\\\"<\\/p><p>Con eso el hombre subi\\u00f3 al puente. La polic\\u00eda lo espos\\u00f3 y lo coloc\\u00f3 en el asiento trasero del coche de polic\\u00eda. El jardinero regres\\u00f3 a su camioneta esperando que el tr\\u00e1fico se moviera.<\\/p><p>El ministro le pregunt\\u00f3 al bombero: \\\"\\u00bfQui\\u00e9n era ese?\\\" El bombero dijo: \\\"\\u00a1Dijo que tiene que ir a trabajar!\\\"<\\/p><p>La polic\\u00eda inform\\u00f3 a la prensa que durante todo el camino hasta el hospital el hombre segu\\u00eda diciendo una y otra vez: \\\"Ma\\u00f1ana va a ser mejor\\\".<\\/p><p>Uno debe ver un futuro, tener un futuro<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5779,768,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5780,769,'_elementor_template_type','wp-page'),(5781,769,'_elementor_edit_mode','builder'),(5782,769,'_elementor_version','3.12.2'),(5783,769,'_wp_page_template','default'),(5784,769,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5785,769,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Please do not stand too close to the trees! You will not be able to enjoy the forest...<\\/p><p style=\\\"text-align: justify;\\\">A few years before hurricane Katrina hit New Orleans, a new expensive automobile stopped at the top of the Mississippi River Bridge and a gentleman stepped out of the car wearing very expensive clothing.<\\/p><p style=\\\"text-align: justify;\\\">He climbed over the rail and under the bridge onto a platform below the roadway preparing to jump. Cars started stopping and the traffic backed up for miles. The police arrived with the fire department, ministers and mental health professionals.<\\/p><p style=\\\"text-align: justify;\\\">They began talking to the man and telling him not to jump. They told him that he may not die; he may break all of his bones and be paralyzed for life. About half mile back in traffic was an old truck with lawn mowers, rakes, and shovels. An elderly gardener got out of his truck and walked up to where the crowd was gathered.<\\/p><p style=\\\"text-align: justify;\\\">He made his way through the people, looked over the side and hollered down to the man on the ledge, \\\"Hey, I got to go to work. Either jump or get off the bridge. If you decide not to jump, tomorrow is going to be better!\\\"<\\/p><p style=\\\"text-align: justify;\\\">With that the man climbed up onto the bridge. The police handcuffed him and placed him in the back seat of the police car. The gardener walked back to his truck waiting for the traffic to move.<\\/p><p style=\\\"text-align: justify;\\\">The minister asked the fireman, \\\"Who was that?\\\" The fireman said, \\\"He said he has to go to work!\\\"<\\/p><p style=\\\"text-align: justify;\\\">The police reported to the press that all the way to the hospital the man kept saying over and over, \\\"Tomorrow is going to be better.\\\"<\\/p><p style=\\\"text-align: justify;\\\">One must see a future, to have a future<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5786,769,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8939,1167,'_elementor_template_type','wp-page'),(8940,1167,'_elementor_edit_mode','builder'),(8941,1167,'_elementor_version','3.13.3'),(8942,1167,'_wp_page_template','default'),(8943,1167,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8944,1167,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Please do not stand too close to the trees! You will not be able to enjoy the forest...<\\/p><p style=\\\"text-align: justify;\\\">A few years before hurricane Katrina hit New Orleans, a new expensive automobile stopped at the top of the Mississippi River Bridge and a gentleman stepped out of the car wearing very expensive clothing.<\\/p><p style=\\\"text-align: justify;\\\">He climbed over the rail and under the bridge onto a platform below the roadway preparing to jump. Cars started stopping and the traffic backed up for miles. The police arrived with the fire department, ministers and mental health professionals.<\\/p><p style=\\\"text-align: justify;\\\">They began talking to the man and telling him not to jump. They told him that he may not die; he may break all of his bones and be paralyzed for life. About half mile back in traffic was an old truck with lawn mowers, rakes, and shovels. An elderly gardener got out of his truck and walked up to where the crowd was gathered.<\\/p><p style=\\\"text-align: justify;\\\">He made his way through the people, looked over the side and hollered down to the man on the ledge, \\\"Hey, I got to go to work. Either jump or get off the bridge. If you decide not to jump, tomorrow is going to be better!\\\"<\\/p><p style=\\\"text-align: justify;\\\">With that the man climbed up onto the bridge. The police handcuffed him and placed him in the back seat of the police car. The gardener walked back to his truck waiting for the traffic to move.<\\/p><p style=\\\"text-align: justify;\\\">The minister asked the fireman, \\\"Who was that?\\\" The fireman said, \\\"He said he has to go to work!\\\"<\\/p><p style=\\\"text-align: justify;\\\">The police reported to the press that all the way to the hospital the man kept saying over and over, \\\"Tomorrow is going to be better.\\\"<\\/p><p style=\\\"text-align: justify;\\\">One must see a future, to have a future<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5788,770,'_elementor_template_type','wp-page'),(5789,770,'_elementor_edit_mode','builder'),(5790,770,'_elementor_version','3.12.2'),(5791,770,'_wp_page_template','default'),(5792,770,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5793,770,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A veces suena tonto o frustrante pensar en positivo cuando los tiempos son realmente malos y algunas personas lo empeoran para ti, \\u00bfno es as\\u00ed?<\\/p><p>Pero solo dime, si te llamo ma\\u00f1ana por la ma\\u00f1ana, mientras todav\\u00eda est\\u00e1s en la cama y te digo: \\\"Eres un \\u00e1ngel para m\\u00ed y tengo la bendici\\u00f3n de tener una persona tan buena en mi vida. Que Dios los bendiga\\\".<\\/p><p><strong>\\u00bfC\\u00f3mo te sentir\\u00edas?<\\/strong><\\/p><p>\\u00bfNo ser\\u00e1 una gran sensaci\\u00f3n y una gran manera de comenzar un d\\u00eda fant\\u00e1stico?<\\/p><p>A la ma\\u00f1ana siguiente te llamo de nuevo, pero esta vez te digo: \\\"\\u00a1T\\u00fa sinverg\\u00fcenza! Eres la persona m\\u00e1s tonta y tonta de la tierra que he conocido. Me jodiste y ser\\u00e1s... etc\\\".<\\/p><p><strong>\\u00bfC\\u00f3mo te sentir\\u00edas ahora?<\\/strong><\\/p><p>\\u00a1Por supuesto que ser\\u00eda un d\\u00eda frustrante, con un sentimiento triste, porque escuchaste toda la mierda en la ma\\u00f1ana mientras a\\u00fan estabas en la cama!<\\/p><p>Ahora responde a mi pregunta:\\u00a0<strong>\\\"\\u00bfQui\\u00e9n est\\u00e1 controlando \'tu\' vida?\\\"<\\/strong><\\/p><p><strong>\\u00bfSe supone que debo controlar TU vida? \\u00bfEs eso correcto?<\\/strong><\\/p><p><strong>Cuando digo algo bueno sobre ti, \\u00bfte convierte en una buena persona y viceversa?<\\/strong><\\/p><p><strong>\\u00a1NO, ERES EL DUE\\u00d1O DE TU PROPIA VIDA!<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5794,770,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5795,770,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5802,771,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5803,772,'_elementor_template_type','wp-page'),(5804,772,'_elementor_edit_mode','builder'),(5805,772,'_elementor_version','3.12.2'),(5806,772,'_wp_page_template','default'),(5807,772,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5808,772,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A veces suena tonto o frustrante pensar en positivo cuando los tiempos son realmente malos y algunas personas lo empeoran para ti, \\u00bfno es as\\u00ed?<\\/p><p>Pero solo dime, si te llamo ma\\u00f1ana por la ma\\u00f1ana, mientras todav\\u00eda est\\u00e1s en la cama y te digo: \\\"Eres un \\u00e1ngel para m\\u00ed y tengo la bendici\\u00f3n de tener una persona tan buena en mi vida. Que Dios los bendiga\\\".<\\/p><p><strong>\\u00bfC\\u00f3mo te sentir\\u00edas?<\\/strong><\\/p><p>\\u00bfNo ser\\u00e1 una gran sensaci\\u00f3n y una gran manera de comenzar un d\\u00eda fant\\u00e1stico?<\\/p><p>A la ma\\u00f1ana siguiente te llamo de nuevo, pero esta vez te digo: \\\"\\u00a1T\\u00fa sinverg\\u00fcenza! Eres la persona m\\u00e1s tonta y tonta de la tierra que he conocido. Me jodiste y ser\\u00e1s... etc\\\".<\\/p><p><strong>\\u00bfC\\u00f3mo te sentir\\u00edas ahora?<\\/strong><\\/p><p>\\u00a1Por supuesto que ser\\u00eda un d\\u00eda frustrante, con un sentimiento triste, porque escuchaste toda la mierda en la ma\\u00f1ana mientras a\\u00fan estabas en la cama!<\\/p><p>Ahora responde a mi pregunta:\\u00a0<strong>\\\"\\u00bfQui\\u00e9n est\\u00e1 controlando \'tu\' vida?\\\"<\\/strong><\\/p><p><strong>\\u00bfSe supone que debo controlar TU vida? \\u00bfEs eso correcto?<\\/strong><\\/p><p><strong>Cuando digo algo bueno sobre ti, \\u00bfte convierte en una buena persona y viceversa?<\\/strong><\\/p><p><strong>\\u00a1NO, ERES EL DUE\\u00d1O DE TU PROPIA VIDA!<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5809,772,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5815,773,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes it sounds foolish or frustrating to think positive when times are really bad and a few people make it worse for you, doesn\'t it?<\\/p><p>But just tell me, if I call you tomorrow morning, while you are still in bed and say, \\\"You are an Angel for me and I\'m blessed to have such a good person in my life. May God bless you\\\".<\\/p><p><b>How would you feel?<\\/b><\\/p><p>Won\'t it be a great feeling and a great way to start a fantastic day?<\\/p><p>Next morning I again call you but this time I say, \\\"You Rascal! You are the dumbest and most foolish person on the earth I\'ve ever met. You screwed me and you will be screwed...etc\\\".<\\/p><p><b>How would you feel now?<\\/b><\\/p><p>Of course it would be a frustrating day, with a sad feeling, because you heard all the crap in the morning while you were still in bed!<\\/p><p>Now answer my question - <b>\\\"Who is controlling \'your\' life?\\\" <\\/b><\\/p><p><b>Am I supposed to control YOUR life? Is that right?<\\/b><\\/p><p><b>When I say something good about you, does it makes you a good person and vice versa?<\\/b><\\/p><p><b>NO, YOU ARE THE MASTER OF YOUR OWN LIFE!<\\/b><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5816,773,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8965,1170,'_elementor_template_type','wp-page'),(8966,1170,'_elementor_edit_mode','builder'),(8967,1170,'_elementor_version','3.13.3'),(8968,1170,'_wp_page_template','default'),(8969,1170,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8970,1170,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes it sounds foolish or frustrating to think positive when times are really bad and a few people make it worse for you, doesn\'t it?<\\/p><p>But just tell me, if I call you tomorrow morning, while you are still in bed and say, \\\"You are an Angel for me and I\'m blessed to have such a good person in my life. May God bless you\\\".<\\/p><p><b>How would you feel?<\\/b><\\/p><p>Won\'t it be a great feeling and a great way to start a fantastic day?<\\/p><p>Next morning I again call you but this time I say, \\\"You Rascal! You are the dumbest and most foolish person on the earth I\'ve ever met. You screwed me and you will be screwed...etc\\\".<\\/p><p><b>How would you feel now?<\\/b><\\/p><p>Of course it would be a frustrating day, with a sad feeling, because you heard all the crap in the morning while you were still in bed!<\\/p><p>Now answer my question - <b>\\\"Who is controlling \'your\' life?\\\" <\\/b><\\/p><p><b>Am I supposed to control YOUR life? Is that right?<\\/b><\\/p><p><b>When I say something good about you, does it makes you a good person and vice versa?<\\/b><\\/p><p><b>NO, YOU ARE THE MASTER OF YOUR OWN LIFE!<\\/b><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5818,774,'_elementor_template_type','wp-page'),(5819,774,'_elementor_edit_mode','builder'),(5820,774,'_elementor_version','3.13.3'),(5821,774,'_wp_page_template','default'),(5822,774,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5823,774,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR THOUGHTS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">Keep your thoughts positive,<\\/p><p align=\\\"center\\\">because thoughts become your words.<\\/p><p align=\\\"center\\\">Keep your words positive<\\/p><p align=\\\"center\\\">because words become your action.<\\/p><p align=\\\"center\\\">Keep your action positive<\\/p><p align=\\\"center\\\">Because your action becomes your habit.<\\/p><p align=\\\"center\\\">Keep your habit positive,<\\/p><p align=\\\"center\\\">because your habit becomes your lifestyle.<\\/p><p align=\\\"center\\\">Keep your life style positive,<\\/p><p align=\\\"center\\\">because your life style becomes your destiny.<\\/p><p>.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-4.jpeg\",\"id\":211,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5824,774,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5825,774,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:9:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5826,775,'_elementor_template_type','wp-page'),(5827,775,'_elementor_edit_mode','builder'),(5828,775,'_elementor_version','3.12.2'),(5829,775,'_wp_page_template','default'),(5830,775,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5831,775,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hab\\u00eda una vez un sabio sabio que vagaba por el campo. Un d\\u00eda, cuando pasaba cerca de un pueblo, se le acerc\\u00f3 una mujer que le habl\\u00f3 de un ni\\u00f1o enfermo cerca. Ella le suplic\\u00f3 que ayudara a este ni\\u00f1o.<\\/p><p>Entonces el sabio lleg\\u00f3 a la aldea, y una multitud se reuni\\u00f3 a su alrededor, porque un hombre as\\u00ed era una vista rara. Una mujer le trajo al ni\\u00f1o enfermo y \\u00e9l dijo una oraci\\u00f3n por ella.<\\/p><p>\\\"\\u00bfDe verdad crees que tu oraci\\u00f3n la ayudar\\u00e1, cuando la medicina ha fallado?\\\", Grit\\u00f3 un hombre de la multitud.<\\/p><p>\\\"\\u00a1No sabes nada de tales cosas! \\u00a1Eres un tonto est\\u00fapido!\\\", le dijo el sabio al hombre.<\\/p><p>El hombre se enoj\\u00f3 mucho con estas palabras y su rostro se puso caliente y rojo. Estaba a punto de decir algo, o tal vez atacar, cuando el sabio se acerc\\u00f3 a \\u00e9l y le dijo: \\\"Si una palabra tiene tal poder como para hacerte enojar y ardiente tanto, \\u00bfno puede otra tener el poder de sanar?\\\"<\\/p><p>Y as\\u00ed, el sabio san\\u00f3 a dos personas ese d\\u00eda.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5832,775,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5833,775,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5840,776,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5841,777,'_elementor_template_type','wp-page'),(5842,777,'_elementor_edit_mode','builder'),(5843,777,'_elementor_version','3.12.2'),(5844,777,'_wp_page_template','default'),(5845,777,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5846,777,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hab\\u00eda una vez un sabio sabio que vagaba por el campo. Un d\\u00eda, cuando pasaba cerca de un pueblo, se le acerc\\u00f3 una mujer que le habl\\u00f3 de un ni\\u00f1o enfermo cerca. Ella le suplic\\u00f3 que ayudara a este ni\\u00f1o.<\\/p><p>Entonces el sabio lleg\\u00f3 a la aldea, y una multitud se reuni\\u00f3 a su alrededor, porque un hombre as\\u00ed era una vista rara. Una mujer le trajo al ni\\u00f1o enfermo y \\u00e9l dijo una oraci\\u00f3n por ella.<\\/p><p>\\\"\\u00bfDe verdad crees que tu oraci\\u00f3n la ayudar\\u00e1, cuando la medicina ha fallado?\\\", Grit\\u00f3 un hombre de la multitud.<\\/p><p>\\\"\\u00a1No sabes nada de tales cosas! \\u00a1Eres un tonto est\\u00fapido!\\\", le dijo el sabio al hombre.<\\/p><p>El hombre se enoj\\u00f3 mucho con estas palabras y su rostro se puso caliente y rojo. Estaba a punto de decir algo, o tal vez atacar, cuando el sabio se acerc\\u00f3 a \\u00e9l y le dijo: \\\"Si una palabra tiene tal poder como para hacerte enojar y ardiente tanto, \\u00bfno puede otra tener el poder de sanar?\\\"<\\/p><p>Y as\\u00ed, el sabio san\\u00f3 a dos personas ese d\\u00eda.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5847,777,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(5848,778,'_elementor_template_type','wp-page'),(5849,778,'_elementor_edit_mode','builder'),(5850,778,'_elementor_version','3.12.2'),(5851,778,'_wp_page_template','default'),(5852,778,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5853,778,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">There once was a wise sage who wandered the countryside. One day, as he passed near a village, he was approached by a woman who told him of a sick child nearby. She beseeched him to help this child.<\\/p><p style=\\\"text-align: justify;\\\">So the sage came to the village, and a crowd gathered around him, for such a man was a rare sight. One woman brought the sick child to him, and he said a prayer over her.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Do you really think your prayer will help her, when medicine has failed?\\\" yelled a man from the crowd.<\\/p><p style=\\\"text-align: justify;\\\">\\\"You know nothing of such things! You are a stupid fool!\\\" said the sage to the man.<\\/p><p style=\\\"text-align: justify;\\\">The man became very angry with these words and his face grew hot and red. He was about to say something, or perhaps strike out, when the sage walked over to him and said: \\\"If one word has such power as to make you so angry and hot, may not another have the power to heal?\\\"<\\/p><p style=\\\"text-align: justify;\\\">And thus, the sage healed two people that day.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5854,778,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8865,1158,'_elementor_template_type','wp-page'),(8866,1158,'_elementor_edit_mode','builder'),(8867,1158,'_elementor_version','3.13.3'),(8868,1158,'_wp_page_template','default'),(8869,1158,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8870,1158,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">There once was a wise sage who wandered the countryside. One day, as he passed near a village, he was approached by a woman who told him of a sick child nearby. She beseeched him to help this child.<\\/p><p style=\\\"text-align: justify;\\\">So the sage came to the village, and a crowd gathered around him, for such a man was a rare sight. One woman brought the sick child to him, and he said a prayer over her.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Do you really think your prayer will help her, when medicine has failed?\\\" yelled a man from the crowd.<\\/p><p style=\\\"text-align: justify;\\\">\\\"You know nothing of such things! You are a stupid fool!\\\" said the sage to the man.<\\/p><p style=\\\"text-align: justify;\\\">The man became very angry with these words and his face grew hot and red. He was about to say something, or perhaps strike out, when the sage walked over to him and said: \\\"If one word has such power as to make you so angry and hot, may not another have the power to heal?\\\"<\\/p><p style=\\\"text-align: justify;\\\">And thus, the sage healed two people that day.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5863,779,'_elementor_page_assets','a:0:{}'),(5865,780,'_elementor_template_type','wp-page'),(5866,780,'_elementor_edit_mode','builder'),(5867,780,'_elementor_version','3.13.3'),(5868,780,'_wp_page_template','default'),(5869,780,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5870,780,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivar\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un valor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un funeral interesante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5871,780,'_elementor_page_assets','a:0:{}'),(8584,435,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5873,781,'_elementor_template_type','wp-page'),(5874,781,'_elementor_edit_mode','builder'),(5875,781,'_elementor_version','3.13.3'),(5876,781,'_wp_page_template','default'),(5877,781,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5878,781,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5879,781,'_elementor_page_assets','a:0:{}'),(8333,359,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(5882,782,'_elementor_template_type','wp-page'),(5883,782,'_elementor_edit_mode','builder'),(5884,782,'_elementor_version','3.13.3'),(5885,782,'_wp_page_template','default'),(5886,782,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5887,782,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5888,782,'_elementor_page_assets','a:0:{}'),(5889,783,'_elementor_template_type','wp-page'),(5890,783,'_elementor_edit_mode','builder'),(5891,783,'_elementor_version','3.13.3'),(5892,783,'_wp_page_template','default'),(5893,783,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5894,783,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Comenzando un nuevo a\\u00f1o\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Jirafa-madre y beb\\u00e9\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Nunca te rindas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5895,783,'_elementor_page_assets','a:0:{}'),(5896,784,'_elementor_template_type','wp-page'),(5897,784,'_elementor_edit_mode','builder'),(5898,784,'_elementor_version','3.13.3'),(5899,784,'_wp_page_template','default'),(5900,784,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5901,784,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5902,784,'_elementor_page_assets','a:0:{}'),(5904,785,'_elementor_template_type','wp-page'),(5905,785,'_elementor_edit_mode','builder'),(5906,785,'_elementor_version','3.13.3'),(5907,785,'_wp_page_template','default'),(5908,785,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5909,785,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5910,785,'_elementor_page_assets','a:0:{}'),(5911,786,'_elementor_template_type','wp-page'),(5912,786,'_elementor_edit_mode','builder'),(5913,786,'_elementor_version','3.13.3'),(5914,786,'_wp_page_template','default'),(5915,786,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5916,786,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sacude y da un paso adelante\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A veces nos olvidamos... Recuerda ser amable\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5917,786,'_elementor_page_assets','a:0:{}'),(5918,787,'_elementor_template_type','wp-page'),(5919,787,'_elementor_edit_mode','builder'),(5920,787,'_elementor_version','3.13.3'),(5921,787,'_wp_page_template','default'),(5922,787,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5923,787,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5924,787,'_elementor_page_assets','a:0:{}'),(5926,788,'_elementor_template_type','wp-page'),(5927,788,'_elementor_edit_mode','builder'),(5928,788,'_elementor_version','3.13.3'),(5929,788,'_wp_page_template','default'),(5930,788,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5931,788,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5932,788,'_elementor_page_assets','a:0:{}'),(5933,789,'_elementor_template_type','wp-page'),(5934,789,'_elementor_edit_mode','builder'),(5935,789,'_elementor_version','3.13.3'),(5936,789,'_wp_page_template','default'),(5937,789,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5938,789,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El pescador mexicano conoce al MBA de Harvard \\u00bfQu\\u00e9 es lo que realmente importa en la vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La apreciaci\\u00f3n\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El elefante y la mosca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La valla\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La felicidad\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La ventana del hospital\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5939,789,'_elementor_page_assets','a:0:{}'),(5941,790,'_elementor_edit_mode','builder'),(5942,790,'_elementor_version','3.13.3'),(5943,790,'_wp_page_template','default'),(5944,790,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5945,790,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5946,790,'_elementor_page_assets','a:0:{}'),(5948,791,'_elementor_template_type','wp-page'),(5949,791,'_elementor_edit_mode','builder'),(5950,791,'_elementor_version','3.13.3'),(5951,791,'_wp_page_template','default'),(5952,791,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5953,791,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5954,791,'_elementor_page_assets','a:0:{}'),(5955,792,'_elementor_template_type','wp-page'),(5956,792,'_elementor_edit_mode','builder'),(5957,792,'_elementor_version','3.13.3'),(5958,792,'_wp_page_template','default'),(5959,792,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5960,792,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El rey con cuatro esposas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El poder de los pensamientos\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El conejo y la carrera de las tortugas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La Roca\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5961,792,'_elementor_page_assets','a:0:{}'),(5962,793,'_elementor_template_type','wp-page'),(5963,793,'_elementor_edit_mode','builder'),(5964,793,'_elementor_version','3.13.3'),(5965,793,'_wp_page_template','default'),(5966,793,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5967,793,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5968,793,'_elementor_page_assets','a:0:{}'),(5970,794,'_elementor_template_type','wp-page'),(5971,794,'_elementor_edit_mode','builder'),(5972,794,'_elementor_version','3.13.3'),(5973,794,'_wp_page_template','default'),(5974,794,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5975,794,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5976,794,'_elementor_page_assets','a:0:{}'),(5977,795,'_elementor_template_type','wp-page'),(5978,795,'_elementor_edit_mode','builder'),(5979,795,'_elementor_version','3.13.3'),(5980,795,'_wp_page_template','default'),(5981,795,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5982,795,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"El le\\u00f3n oveja\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"La historia de la mariposa\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Las dos ranas en problemas\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5983,795,'_elementor_page_assets','a:0:{}'),(6223,827,'_elementor_template_type','wp-page'),(5984,796,'_elementor_template_type','wp-page'),(5985,796,'_elementor_edit_mode','builder'),(5986,796,'_elementor_version','3.13.3'),(5987,796,'_wp_page_template','default'),(5988,796,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5989,796,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5990,796,'_elementor_page_assets','a:0:{}'),(5992,797,'_elementor_template_type','wp-page'),(5993,797,'_elementor_edit_mode','builder'),(5994,797,'_elementor_version','3.13.3'),(5995,797,'_wp_page_template','default'),(5996,797,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5997,797,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5998,797,'_elementor_page_assets','a:0:{}'),(5999,798,'_elementor_template_type','wp-page'),(6000,798,'_elementor_edit_mode','builder'),(6001,798,'_elementor_version','3.13.3'),(6002,798,'_wp_page_template','default'),(6003,798,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6004,798,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Est\\u00e1 bueno\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Santo Sabio\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Ma\\u00f1ana va a ser mejor\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"\\u00bfQui\\u00e9n est\\u00e1 a cargo de tu vida?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6005,798,'_elementor_page_assets','a:0:{}'),(6006,799,'_elementor_template_type','wp-page'),(6007,799,'_elementor_edit_mode','builder'),(6008,799,'_elementor_version','3.13.3'),(6009,799,'_wp_page_template','default'),(6010,799,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6011,799,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6012,799,'_elementor_page_assets','a:0:{}'),(6025,801,'_elementor_template_type','wp-page'),(6026,801,'_elementor_edit_mode','builder'),(6027,801,'_elementor_version','3.13.3'),(6028,801,'_wp_page_template','default'),(6029,801,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6030,801,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6049,804,'_elementor_edit_mode','builder'),(6050,804,'_elementor_version','3.13.3'),(6051,804,'_wp_page_template','default'),(6052,804,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6045,803,'_elementor_page_assets','a:0:{}'),(6053,804,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6042,803,'_wp_page_template','default'),(6043,803,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6044,803,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6039,803,'_elementor_template_type','wp-page'),(6040,803,'_elementor_edit_mode','builder'),(6041,803,'_elementor_version','3.13.3'),(6031,801,'_elementor_page_assets','a:0:{}'),(6032,802,'_elementor_template_type','wp-page'),(6033,802,'_elementor_edit_mode','builder'),(6034,802,'_elementor_version','3.13.3'),(6035,802,'_wp_page_template','default'),(6036,802,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6037,802,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivar\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Un problema puede ser yo, no otro\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6038,802,'_elementor_page_assets','a:0:{}'),(6048,804,'_elementor_template_type','wp-page'),(6054,804,'_elementor_page_assets','a:0:{}'),(6055,805,'_elementor_template_type','wp-page'),(6056,805,'_elementor_edit_mode','builder'),(6057,805,'_elementor_version','3.13.3'),(6058,805,'_wp_page_template','default'),(6059,805,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6060,805,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-problema-puede-ser-yo-no-otro\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6061,805,'_elementor_page_assets','a:0:{}'),(6062,806,'_elementor_template_type','wp-page'),(6063,806,'_elementor_edit_mode','builder'),(6064,806,'_elementor_version','3.13.3'),(6065,806,'_wp_page_template','default'),(6066,806,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6067,806,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6068,806,'_elementor_page_assets','a:0:{}'),(6071,807,'_elementor_template_type','wp-page'),(6072,807,'_elementor_edit_mode','builder'),(6073,807,'_elementor_version','3.13.3'),(6074,807,'_wp_page_template','default'),(6075,807,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6076,807,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8307,354,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(6077,807,'_elementor_page_assets','a:0:{}'),(6078,808,'_elementor_template_type','wp-page'),(6079,808,'_elementor_edit_mode','builder'),(6080,808,'_elementor_version','3.13.3'),(6081,808,'_wp_page_template','default'),(6082,808,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6083,808,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-valor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6084,808,'_elementor_page_assets','a:0:{}'),(6085,809,'_elementor_template_type','wp-page'),(6086,809,'_elementor_edit_mode','builder'),(6087,809,'_elementor_version','3.13.3'),(6088,809,'_wp_page_template','default'),(6089,809,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6090,809,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6091,809,'_elementor_page_assets','a:0:{}'),(6094,810,'_elementor_template_type','wp-page'),(6095,810,'_elementor_edit_mode','builder'),(6096,810,'_elementor_version','3.13.3'),(6097,810,'_wp_page_template','default'),(6098,810,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6099,810,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8309,1092,'_elementor_template_type','wp-page'),(6100,810,'_elementor_page_assets','a:0:{}'),(6101,811,'_elementor_template_type','wp-page'),(6102,811,'_elementor_edit_mode','builder'),(6103,811,'_elementor_version','3.13.3'),(6104,811,'_wp_page_template','default'),(6105,811,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6106,811,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/comenzando-un-nuevo-ano\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6107,811,'_elementor_page_assets','a:0:{}'),(6108,812,'_elementor_template_type','wp-page'),(6109,812,'_elementor_edit_mode','builder'),(6110,812,'_elementor_version','3.13.3'),(6111,812,'_wp_page_template','default'),(6112,812,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6113,812,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6114,812,'_elementor_page_assets','a:0:{}'),(6117,813,'_elementor_template_type','wp-page'),(6118,813,'_elementor_edit_mode','builder'),(6119,813,'_elementor_version','3.13.3'),(6120,813,'_wp_page_template','default'),(6121,813,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6122,813,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8310,1092,'_elementor_edit_mode','builder'),(8311,1092,'_elementor_version','3.13.4'),(6123,813,'_elementor_page_assets','a:0:{}'),(6124,814,'_elementor_template_type','wp-page'),(6125,814,'_elementor_edit_mode','builder'),(6126,814,'_elementor_version','3.13.3'),(6127,814,'_wp_page_template','default'),(6128,814,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6129,814,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/jirafa-madre-y-bebe\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6130,814,'_elementor_page_assets','a:0:{}'),(6131,815,'_elementor_template_type','wp-page'),(6132,815,'_elementor_edit_mode','builder'),(6133,815,'_elementor_version','3.13.3'),(6134,815,'_wp_page_template','default'),(6135,815,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6136,815,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6137,815,'_elementor_page_assets','a:0:{}'),(6140,816,'_elementor_template_type','wp-page'),(6141,816,'_elementor_edit_mode','builder'),(6142,816,'_elementor_version','3.13.3'),(6143,816,'_wp_page_template','default'),(6144,816,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpjv_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (6145,816,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8312,1092,'_wp_page_template','default'),(8313,1092,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6146,816,'_elementor_page_assets','a:0:{}'),(6147,817,'_elementor_template_type','wp-page'),(6148,817,'_elementor_edit_mode','builder'),(6149,817,'_elementor_version','3.13.3'),(6150,817,'_wp_page_template','default'),(6151,817,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6152,817,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/nunca-te-rindas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6153,817,'_elementor_page_assets','a:0:{}'),(6154,818,'_elementor_template_type','wp-page'),(6155,818,'_elementor_edit_mode','builder'),(6156,818,'_elementor_version','3.13.3'),(6157,818,'_wp_page_template','default'),(6158,818,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6159,818,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6160,818,'_elementor_page_assets','a:0:{}'),(6163,819,'_elementor_template_type','wp-page'),(6164,819,'_elementor_edit_mode','builder'),(6165,819,'_elementor_version','3.13.3'),(6166,819,'_wp_page_template','default'),(6167,819,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6168,819,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8314,1092,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.<\\/h3><h3>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.<\\/h3><h3>Here\'s what you do,\\\" said the Doctor, \\\"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\\\"<\\/h3><h3>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \\\"I\'m about 40 feet away, let\'s see what happens.\\\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\\\"<\\/h3><h3>No response.<\\/h3><h3>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>Still no response.<\\/h3><h3>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\\\"<\\/h3><h3>Again he gets no response.<\\/h3><h3>So he walks up to the kitchen door, about 10 feet away. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>Again there is no response.<\\/h3><h3>So he walks right up behind her. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>\\\"James, for the FIFTH time I\'ve said, Lima Beans!\\\"<\\/h3><h3>The problem may not be with the other person as we always think, could be very much within us!<\\/h3>\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6169,819,'_elementor_page_assets','a:0:{}'),(6170,820,'_elementor_template_type','wp-page'),(6171,820,'_elementor_edit_mode','builder'),(6172,820,'_elementor_version','3.13.3'),(6173,820,'_wp_page_template','default'),(6174,820,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6175,820,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sacude-y-da-un-paso-adelante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6176,820,'_elementor_page_assets','a:0:{}'),(6177,821,'_elementor_template_type','wp-page'),(6178,821,'_elementor_edit_mode','builder'),(6179,821,'_elementor_version','3.13.3'),(6180,821,'_wp_page_template','default'),(6181,821,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6182,821,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6183,821,'_elementor_page_assets','a:0:{}'),(6186,822,'_elementor_template_type','wp-page'),(6187,822,'_elementor_edit_mode','builder'),(6188,822,'_elementor_version','3.13.3'),(6189,822,'_wp_page_template','default'),(6190,822,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6191,822,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6192,822,'_elementor_page_assets','a:0:{}'),(6193,823,'_elementor_template_type','wp-page'),(6194,823,'_elementor_edit_mode','builder'),(6195,823,'_elementor_version','3.13.3'),(6196,823,'_wp_page_template','default'),(6197,823,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6198,823,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-veces-nos-olvidamos-recuerda-ser-amable\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6199,823,'_elementor_page_assets','a:0:{}'),(6200,824,'_elementor_template_type','wp-page'),(6201,824,'_elementor_edit_mode','builder'),(6202,824,'_elementor_version','3.13.3'),(6203,824,'_wp_page_template','default'),(6204,824,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6205,824,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6206,824,'_elementor_page_assets','a:0:{}'),(6209,825,'_elementor_template_type','wp-page'),(6210,825,'_elementor_edit_mode','builder'),(6211,825,'_elementor_version','3.13.3'),(6212,825,'_wp_page_template','default'),(6213,825,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6214,825,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6215,825,'_elementor_page_assets','a:0:{}'),(6216,826,'_elementor_template_type','wp-page'),(6217,826,'_elementor_edit_mode','builder'),(6218,826,'_elementor_version','3.13.3'),(6219,826,'_wp_page_template','default'),(6220,826,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6221,826,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6222,826,'_elementor_page_assets','a:0:{}'),(6224,827,'_elementor_edit_mode','builder'),(6225,827,'_elementor_version','3.13.3'),(6226,827,'_wp_page_template','default'),(6227,827,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6228,827,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6229,827,'_elementor_page_assets','a:0:{}'),(6232,828,'_elementor_template_type','wp-page'),(6233,828,'_elementor_edit_mode','builder'),(6234,828,'_elementor_version','3.13.3'),(6235,828,'_wp_page_template','default'),(6236,828,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6237,828,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7428,992,'_elementor_css','a:6:{s:4:\"time\";i:1686273687;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:\"\";}'),(6238,828,'_elementor_page_assets','a:0:{}'),(6239,829,'_elementor_template_type','wp-page'),(6240,829,'_elementor_edit_mode','builder'),(6241,829,'_elementor_version','3.13.3'),(6242,829,'_wp_page_template','default'),(6243,829,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6244,829,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-apreciacion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6245,829,'_elementor_page_assets','a:0:{}'),(6246,830,'_elementor_template_type','wp-page'),(6247,830,'_elementor_edit_mode','builder'),(6248,830,'_elementor_version','3.13.3'),(6249,830,'_wp_page_template','default'),(6250,830,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6251,830,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6252,830,'_elementor_page_assets','a:0:{}'),(6256,831,'_elementor_template_type','wp-page'),(6257,831,'_elementor_edit_mode','builder'),(6258,831,'_elementor_version','3.13.3'),(6259,831,'_wp_page_template','default'),(6260,831,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6261,831,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7427,992,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(6262,831,'_elementor_page_assets','a:0:{}'),(6264,832,'_elementor_template_type','wp-page'),(6265,832,'_elementor_edit_mode','builder'),(6266,832,'_elementor_version','3.13.3'),(6267,832,'_wp_page_template','default'),(6268,832,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6269,832,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-elefante-y-la-mosca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6270,832,'_elementor_page_assets','a:0:{}'),(6272,833,'_elementor_template_type','wp-page'),(6273,833,'_elementor_edit_mode','builder'),(6274,833,'_elementor_version','3.13.3'),(6275,833,'_wp_page_template','default'),(6276,833,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6277,833,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6278,833,'_elementor_page_assets','a:0:{}'),(6282,834,'_elementor_template_type','wp-page'),(6283,834,'_elementor_edit_mode','builder'),(6284,834,'_elementor_version','3.13.3'),(6285,834,'_wp_page_template','default'),(6286,834,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6287,834,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6288,834,'_elementor_page_assets','a:0:{}'),(6289,835,'_elementor_template_type','wp-page'),(6290,835,'_elementor_edit_mode','builder'),(6291,835,'_elementor_version','3.13.3'),(6292,835,'_wp_page_template','default'),(6293,835,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6294,835,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-valla\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6295,835,'_elementor_page_assets','a:0:{}'),(6296,836,'_elementor_template_type','wp-page'),(6297,836,'_elementor_edit_mode','builder'),(6298,836,'_elementor_version','3.13.3'),(6299,836,'_wp_page_template','default'),(6300,836,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6301,836,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6302,836,'_elementor_page_assets','a:0:{}'),(6305,837,'_elementor_template_type','wp-page'),(6306,837,'_elementor_edit_mode','builder'),(6307,837,'_elementor_version','3.13.3'),(6308,837,'_wp_page_template','default'),(6309,837,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6310,837,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6311,837,'_elementor_page_assets','a:0:{}'),(6312,838,'_elementor_template_type','wp-page'),(6313,838,'_elementor_edit_mode','builder'),(6314,838,'_elementor_version','3.13.3'),(6315,838,'_wp_page_template','default'),(6316,838,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6317,838,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-felicidad\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6318,838,'_elementor_page_assets','a:0:{}'),(6319,839,'_elementor_template_type','wp-page'),(6320,839,'_elementor_edit_mode','builder'),(6321,839,'_elementor_version','3.13.3'),(6322,839,'_wp_page_template','default'),(6323,839,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6324,839,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6325,839,'_elementor_page_assets','a:0:{}'),(6328,840,'_elementor_template_type','wp-page'),(6329,840,'_elementor_edit_mode','builder'),(6330,840,'_elementor_version','3.13.3'),(6331,840,'_wp_page_template','default'),(6332,840,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6333,840,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6334,840,'_elementor_page_assets','a:0:{}'),(6335,841,'_elementor_template_type','wp-page'),(6336,841,'_elementor_edit_mode','builder'),(6337,841,'_elementor_version','3.13.3'),(6338,841,'_wp_page_template','default'),(6339,841,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6340,841,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-ventana-del-hospital\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6341,841,'_elementor_page_assets','a:0:{}'),(6342,842,'_elementor_template_type','wp-page'),(6343,842,'_elementor_edit_mode','builder'),(6344,842,'_elementor_version','3.13.3'),(6345,842,'_wp_page_template','default'),(6346,842,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6347,842,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6348,842,'_elementor_page_assets','a:0:{}'),(6351,843,'_elementor_template_type','wp-page'),(6352,843,'_elementor_edit_mode','builder'),(6353,843,'_elementor_version','3.13.3'),(6354,843,'_wp_page_template','default'),(6355,843,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6356,843,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6357,843,'_elementor_page_assets','a:0:{}'),(6358,844,'_elementor_template_type','wp-page'),(6359,844,'_elementor_edit_mode','builder'),(6360,844,'_elementor_version','3.13.3'),(6361,844,'_wp_page_template','default'),(6362,844,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6363,844,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-rey-con-cuatro-esposas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6364,844,'_elementor_page_assets','a:0:{}'),(6365,845,'_elementor_template_type','wp-page'),(6366,845,'_elementor_edit_mode','builder'),(6367,845,'_elementor_version','3.13.3'),(6368,845,'_wp_page_template','default'),(6369,845,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6370,845,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6371,845,'_elementor_page_assets','a:0:{}'),(6374,846,'_elementor_template_type','wp-page'),(6375,846,'_elementor_edit_mode','builder'),(6376,846,'_elementor_version','3.13.3'),(6377,846,'_wp_page_template','default'),(6378,846,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6379,846,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6380,846,'_elementor_page_assets','a:0:{}'),(6381,847,'_elementor_template_type','wp-page'),(6382,847,'_elementor_edit_mode','builder'),(6383,847,'_elementor_version','3.13.3'),(6384,847,'_wp_page_template','default'),(6385,847,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6386,847,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-poder-de-los-pensamientos\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6387,847,'_elementor_page_assets','a:0:{}'),(6388,848,'_elementor_template_type','wp-page'),(6389,848,'_elementor_edit_mode','builder'),(6390,848,'_elementor_version','3.13.3'),(6391,848,'_wp_page_template','default'),(6392,848,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6393,848,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6394,848,'_elementor_page_assets','a:0:{}'),(6397,849,'_elementor_template_type','wp-page'),(6398,849,'_elementor_edit_mode','builder'),(6399,849,'_elementor_version','3.13.3'),(6400,849,'_wp_page_template','default'),(6401,849,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6402,849,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6403,849,'_elementor_page_assets','a:0:{}'),(6404,850,'_elementor_template_type','wp-page'),(6405,850,'_elementor_edit_mode','builder'),(6406,850,'_elementor_version','3.13.3'),(6407,850,'_wp_page_template','default'),(6408,850,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6409,850,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-conejo-y-la-carrera-de-las-tortugas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6410,850,'_elementor_page_assets','a:0:{}'),(6411,851,'_elementor_template_type','wp-page'),(6412,851,'_elementor_edit_mode','builder'),(6413,851,'_elementor_version','3.13.3'),(6414,851,'_wp_page_template','default'),(6415,851,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6416,851,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6417,851,'_elementor_page_assets','a:0:{}'),(6420,852,'_elementor_template_type','wp-page'),(6421,852,'_elementor_edit_mode','builder'),(6422,852,'_elementor_version','3.13.3'),(6423,852,'_wp_page_template','default'),(6424,852,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6425,852,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6426,852,'_elementor_page_assets','a:0:{}'),(6427,853,'_elementor_template_type','wp-page'),(6428,853,'_elementor_edit_mode','builder'),(6429,853,'_elementor_version','3.13.3'),(6430,853,'_wp_page_template','default'),(6431,853,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6432,853,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-roca\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6433,853,'_elementor_page_assets','a:0:{}'),(6434,854,'_elementor_template_type','wp-page'),(6435,854,'_elementor_edit_mode','builder'),(6436,854,'_elementor_version','3.13.3'),(6437,854,'_wp_page_template','default'),(6438,854,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6439,854,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6440,854,'_elementor_page_assets','a:0:{}'),(6443,855,'_elementor_template_type','wp-page'),(6444,855,'_elementor_edit_mode','builder'),(6445,855,'_elementor_version','3.13.3'),(6446,855,'_wp_page_template','default'),(6447,855,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6448,855,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6449,855,'_elementor_page_assets','a:0:{}'),(6450,856,'_elementor_template_type','wp-page'),(6451,856,'_elementor_edit_mode','builder'),(6452,856,'_elementor_version','3.13.3'),(6453,856,'_wp_page_template','default'),(6454,856,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6455,856,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/el-leon-oveja\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6456,856,'_elementor_page_assets','a:0:{}'),(6457,857,'_elementor_template_type','wp-page'),(6458,857,'_elementor_edit_mode','builder'),(6459,857,'_elementor_version','3.13.3'),(6460,857,'_wp_page_template','default'),(6461,857,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6462,857,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-sheep-lion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6463,857,'_elementor_page_assets','a:0:{}'),(6466,858,'_elementor_template_type','wp-page'),(6467,858,'_elementor_edit_mode','builder'),(6468,858,'_elementor_version','3.13.3'),(6469,858,'_wp_page_template','default'),(6470,858,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6471,858,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-sheep-lion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6472,858,'_elementor_page_assets','a:0:{}'),(6473,859,'_elementor_template_type','wp-page'),(6474,859,'_elementor_edit_mode','builder'),(6475,859,'_elementor_version','3.13.3'),(6476,859,'_wp_page_template','default'),(6477,859,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6478,859,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-sheep-lion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/la-historia-de-la-mariposa\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6479,859,'_elementor_page_assets','a:0:{}'),(6480,860,'_elementor_template_type','wp-page'),(6481,860,'_elementor_edit_mode','builder'),(6482,860,'_elementor_version','3.13.3'),(6483,860,'_wp_page_template','default'),(6484,860,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6485,860,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-sheep-lion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-story-of-the-butterfly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6486,860,'_elementor_page_assets','a:0:{}'),(6489,861,'_elementor_template_type','wp-page'),(6490,861,'_elementor_edit_mode','builder'),(6491,861,'_elementor_version','3.13.3'),(6492,861,'_wp_page_template','default'),(6493,861,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6494,861,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-sheep-lion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-story-of-the-butterfly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6495,861,'_elementor_page_assets','a:0:{}'),(6496,862,'_elementor_template_type','wp-page'),(6497,862,'_elementor_edit_mode','builder'),(6498,862,'_elementor_version','3.13.3'),(6499,862,'_wp_page_template','default'),(6500,862,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6501,862,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-sheep-lion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-story-of-the-butterfly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/esta-bueno\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6502,862,'_elementor_page_assets','a:0:{}'),(6503,863,'_elementor_template_type','wp-page'),(6504,863,'_elementor_edit_mode','builder'),(6505,863,'_elementor_version','3.13.3'),(6506,863,'_wp_page_template','default'),(6507,863,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6508,863,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-sheep-lion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-story-of-the-butterfly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/this-is-good\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6509,863,'_elementor_page_assets','a:0:{}'),(6512,864,'_elementor_template_type','wp-page'),(6513,864,'_elementor_edit_mode','builder'),(6514,864,'_elementor_version','3.13.3'),(6515,864,'_wp_page_template','default'),(6516,864,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wpjv_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (6517,864,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-sheep-lion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-story-of-the-butterfly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/this-is-good\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6518,864,'_elementor_page_assets','a:0:{}'),(6519,865,'_elementor_template_type','wp-page'),(6520,865,'_elementor_edit_mode','builder'),(6521,865,'_elementor_version','3.13.3'),(6522,865,'_wp_page_template','default'),(6523,865,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6524,865,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-sheep-lion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-story-of-the-butterfly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/this-is-good\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/santo-sabio\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6525,865,'_elementor_page_assets','a:0:{}'),(6526,866,'_elementor_template_type','wp-page'),(6527,866,'_elementor_edit_mode','builder'),(6528,866,'_elementor_version','3.13.3'),(6529,866,'_wp_page_template','default'),(6530,866,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6531,866,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-sheep-lion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-story-of-the-butterfly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/this-is-good\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wise-saint\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6532,866,'_elementor_page_assets','a:0:{}'),(6535,867,'_elementor_template_type','wp-page'),(6536,867,'_elementor_edit_mode','builder'),(6537,867,'_elementor_version','3.13.3'),(6538,867,'_wp_page_template','default'),(6539,867,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6540,867,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-sheep-lion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-story-of-the-butterfly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/this-is-good\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wise-saint\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6541,867,'_elementor_page_assets','a:0:{}'),(6542,868,'_elementor_template_type','wp-page'),(6543,868,'_elementor_edit_mode','builder'),(6544,868,'_elementor_version','3.13.3'),(6545,868,'_wp_page_template','default'),(6546,868,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6547,868,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-sheep-lion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-story-of-the-butterfly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/this-is-good\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wise-saint\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/las-dos-ranas-en-problemas\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6548,868,'_elementor_page_assets','a:0:{}'),(6549,869,'_elementor_template_type','wp-page'),(6550,869,'_elementor_edit_mode','builder'),(6551,869,'_elementor_version','3.13.3'),(6552,869,'_wp_page_template','default'),(6553,869,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6554,869,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-sheep-lion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-story-of-the-butterfly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/this-is-good\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wise-saint\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-two-frogs-in-trouble\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6555,869,'_elementor_page_assets','a:0:{}'),(6558,870,'_elementor_template_type','wp-page'),(6559,870,'_elementor_edit_mode','builder'),(6560,870,'_elementor_version','3.13.3'),(6561,870,'_wp_page_template','default'),(6562,870,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6563,870,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-sheep-lion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-story-of-the-butterfly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/this-is-good\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wise-saint\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-two-frogs-in-trouble\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6564,870,'_elementor_page_assets','a:0:{}'),(6565,871,'_elementor_template_type','wp-page'),(6566,871,'_elementor_edit_mode','builder'),(6567,871,'_elementor_version','3.13.3'),(6568,871,'_wp_page_template','default'),(6569,871,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6570,871,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-sheep-lion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-story-of-the-butterfly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/this-is-good\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wise-saint\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-two-frogs-in-trouble\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/manana-va-a-ser-mejor\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6571,871,'_elementor_page_assets','a:0:{}'),(6572,872,'_elementor_template_type','wp-page'),(6573,872,'_elementor_edit_mode','builder'),(6574,872,'_elementor_version','3.13.3'),(6575,872,'_wp_page_template','default'),(6576,872,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6577,872,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-sheep-lion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-story-of-the-butterfly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/this-is-good\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wise-saint\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-two-frogs-in-trouble\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/tomorrow-is-going-to-be-better\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6578,872,'_elementor_page_assets','a:0:{}'),(6581,873,'_elementor_template_type','wp-page'),(6582,873,'_elementor_edit_mode','builder'),(6583,873,'_elementor_version','3.13.3'),(6584,873,'_wp_page_template','default'),(6585,873,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6586,873,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-sheep-lion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-story-of-the-butterfly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/this-is-good\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wise-saint\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-two-frogs-in-trouble\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/tomorrow-is-going-to-be-better\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6587,873,'_elementor_page_assets','a:0:{}'),(6588,874,'_elementor_template_type','wp-page'),(6589,874,'_elementor_edit_mode','builder'),(6590,874,'_elementor_version','3.13.3'),(6591,874,'_wp_page_template','default'),(6592,874,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6593,874,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-sheep-lion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-story-of-the-butterfly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/this-is-good\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wise-saint\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-two-frogs-in-trouble\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/tomorrow-is-going-to-be-better\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/quien-esta-a-cargo-de-tu-vida\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6594,874,'_elementor_page_assets','a:0:{}'),(6595,875,'_elementor_template_type','wp-page'),(6596,875,'_elementor_edit_mode','builder'),(6597,875,'_elementor_version','3.13.3'),(6598,875,'_wp_page_template','default'),(6599,875,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6600,875,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-sheep-lion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-story-of-the-butterfly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/this-is-good\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wise-saint\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-two-frogs-in-trouble\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/tomorrow-is-going-to-be-better\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/whos-in-charge-of-your-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6601,875,'_elementor_page_assets','a:0:{}'),(6604,876,'_elementor_template_type','wp-page'),(6605,876,'_elementor_edit_mode','builder'),(6606,876,'_elementor_version','3.13.3'),(6607,876,'_wp_page_template','default'),(6608,876,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6609,876,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-sheep-lion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-story-of-the-butterfly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/this-is-good\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wise-saint\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-two-frogs-in-trouble\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/tomorrow-is-going-to-be-better\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/whos-in-charge-of-your-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6610,876,'_elementor_page_assets','a:0:{}'),(6611,877,'_elementor_template_type','wp-page'),(6612,877,'_elementor_edit_mode','builder'),(6613,877,'_elementor_version','3.13.3'),(6614,877,'_wp_page_template','default'),(6615,877,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6616,877,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-sheep-lion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-story-of-the-butterfly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/this-is-good\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wise-saint\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-two-frogs-in-trouble\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/tomorrow-is-going-to-be-better\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/whos-in-charge-of-your-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/un-funeral-interesante\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6617,877,'_elementor_page_assets','a:0:{}'),(6618,878,'_elementor_template_type','wp-page'),(6619,878,'_elementor_edit_mode','builder'),(6620,878,'_elementor_version','3.13.3'),(6621,878,'_wp_page_template','default'),(6622,878,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6623,878,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"015e716\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6097719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"242f243\",\"elType\":\"widget\",\"settings\":{\"title\":\"STORIES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07e0559\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"532467d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"e05ec3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-5.jpeg\",\"id\":279,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Motivate\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/motivate\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3c575ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2c8a154\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-6.jpeg\",\"id\":290,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A problem may be me not other\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-problem-may-be-me-not-other\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2a0828d\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"30170d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-10.jpeg\",\"id\":294,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"A value\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/a-value\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a829d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"f8800ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-11.jpeg\",\"id\":296,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Beginning A New Year\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/beginning-a-new-year\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"091bae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"125ed82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-7.jpeg\",\"id\":297,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Giraffe-mother and baby\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/giraffe-mother-and-baby\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c236e3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"de5e1da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e8c3e55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-12.jpeg\",\"id\":302,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Never give up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/never-give-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5d6695f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b426e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/da-un-paso-adelante.png\",\"id\":303,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Shake it off and step up\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/shake-it-off-and-step-up\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e53bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54d2cc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-8.jpeg\",\"id\":308,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Sometimes We Forget... Remember To Be Kind\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/sometimes-we-forget-remember-to-be-kind\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37bf47e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d01b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3806a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-9.jpeg\",\"id\":313,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df80120\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c92f6f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-10.jpeg\",\"id\":314,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The appriciation\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-appriciation\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9baad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f0047ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-11.jpeg\",\"id\":315,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Elephant and the Fly\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-elephant-and-the-fly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a4830d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6033959\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\",\"id\":316,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The fence\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-fence\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"913dc86\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9642c20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9976d53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-12.jpeg\",\"id\":320,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Happiness\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-happiness\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9d4ed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36365e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/ventana.png\",\"id\":321,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The hospital window\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-hospital-window\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46825bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3fea129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/El-rey-con-cuatro-esposas.jpg\",\"id\":323,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The king with four wives\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-king-with-four-wives\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5eeeda4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"303032a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/pensamientos-1.jpg\",\"id\":324,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The power of thoughts\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-power-of-thoughts\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b240db7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"97d32ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"45955ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-13.jpeg\",\"id\":329,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rabbit and The Turtle Race\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rabbit-and-the-turtle-race\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a02088e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4902c0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-13.jpeg\",\"id\":330,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The Rock\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-rock\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"894e399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"24b4029\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/el-leon-que-se-creia-cordero.jpg\",\"id\":331,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The sheep lion\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-sheep-lion\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6865abe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0aa594\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c44d9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/sddefault.jpg\",\"id\":336,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The story of the butterfly.\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-story-of-the-butterfly\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"939b2b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de4000b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-14.jpeg\",\"id\":337,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"This is good\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/this-is-good\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d5e023\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b9dd6f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fd8fa6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-15.jpeg\",\"id\":341,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Wise Saint\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wise-saint\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8b2acc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00cda88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-16.jpeg\",\"id\":343,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"The two Frogs in Trouble\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/the-two-frogs-in-trouble\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100.404}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2c05803\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ade5184\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\",\"id\":344,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Tomorrow is going to be better\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/tomorrow-is-going-to-be-better\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":184,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"650fdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8daef32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-18.jpeg\",\"id\":345,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"Who\'s In Charge Of Your Life?\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/whos-in-charge-of-your-life\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":124,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e864f6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c51fd7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e761a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-19.jpeg\",\"id\":350,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"center\",\"caption_source\":\"custom\",\"caption\":\"An Interesting Funeral\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/an-interesting-funeral\\/\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6624,878,'_elementor_page_assets','a:0:{}'),(6625,276,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:28;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:7:{s:5:\"image\";i:28;s:5:\"align\";i:26;s:14:\"caption_source\";i:26;s:7:\"caption\";i:26;s:7:\"link_to\";i:26;s:4:\"link\";i:26;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"space\";i:6;s:6:\"height\";i:6;s:5:\"width\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;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:29;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:7;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}}'),(6627,1,'_edit_last','1'),(6628,1,'_wp_page_template','default'),(6629,1,'_edit_lock','1684944574:1'),(7426,992,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.<\\/h3><h3>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.<\\/h3><h3>Here\'s what you do,\\\" said the Doctor, \\\"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\\\"<\\/h3><h3>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \\\"I\'m about 40 feet away, let\'s see what happens.\\\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\\\"<\\/h3><h3>No response.<\\/h3><h3>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>Still no response.<\\/h3><h3>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\\\"<\\/h3><h3>Again he gets no response.<\\/h3><h3>So he walks up to the kitchen door, about 10 feet away. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>Again there is no response.<\\/h3><h3>So he walks right up behind her. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>\\\"James, for the FIFTH time I\'ve said, Lima Beans!\\\"<\\/h3><h3>The problem may not be with the other person as we always think, could be very much within us!<\\/h3>\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6680,888,'_elementor_page_assets','a:0:{}'),(6681,888,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6673,887,'_wp_attached_file','2023/05/yoga-copia.jpg'),(6674,887,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:22:\"2023/05/yoga-copia.jpg\";s:8:\"filesize\";i:79565;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"yoga-copia-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9113;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"yoga-copia-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8762;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"yoga-copia-768x221.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37322;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6668,885,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6667,885,'_elementor_page_assets','a:0:{}'),(6662,885,'_elementor_edit_mode','builder'),(6663,885,'_elementor_template_type','wp-page'),(6664,885,'_elementor_version','3.13.3'),(6665,885,'_wp_page_template','default'),(6666,885,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/cropped-banner111.jpg\",\"id\":654,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge.<\\/p><p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>\\u00a0<\\/i><\\/b>exercise<b>s<i>,\\u00a0<\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p><p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p><p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p><p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p><ol><li><b>Workout<\\/b>\\u00a0\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li><li><b>Sun Salutation<\\/b>\\u00a0\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li><li><b>Motivational discourse<\\/b>\\u00a0\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li><li><b>Acupressure<\\/b>\\u00a0(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,\\u00a0 middle of your palm for kidney problems and\\u00a0 under the thumb for the well being of thyroid.<\\/li><li><b>Eyes and neck exercises<\\/b>\\u00a0\\u2013 we take care of every part of the body.<br \\/>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>\\u00a0\\u00a0\\u00a0\\u00a0<\\/b><br \\/>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li><li><b>Seven Pranayamas (<\\/b>\\u00a0breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li><li><b>6 mudras\\u00a0<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li><li><b>100 postures, exercises and asanas<\\/b>\\u00a0\\u2013 with these we increase flexibility from head to toe. We are also doing\\u00a0<b>stretching<\\/b>\\u00a0exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br \\/>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li><li><b>Laughter yoga\\u00a0<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br \\/>We also do\\u00a0<b>Super Brain yoga<\\/b>\\u00a0to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li><li><b>Shavasana\\u00a0<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li><li><b>Motivational poem<\\/b>\\u00a0\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li><li><b>Mantra<\\/b>\\u00a0\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li><\\/ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00\\u00a0<\\/strong><br \\/><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6653,883,'_elementor_page_assets','a:0:{}'),(6654,883,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6655,884,'_elementor_edit_mode','builder'),(6656,884,'_elementor_template_type','wp-page'),(6657,884,'_elementor_version','3.13.3'),(6658,884,'_wp_page_template','default'),(6659,884,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/cropped-banner111.jpg\",\"id\":654,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Making the basic practice of yoga easily accessible to everyone at no charge.<br>Divya Yoga founder Swami Ram Dev says, \\\"Good health is a birthright of humanity.\\\" By performing yoga poses,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \\/ asanas, exercises, mudras, pranayamas, meditation and by providing practical motivational speech they help to develop a stress free mind and disease free body. It helps to take care of the body, mind and soul and live a happy, healthy and fulfilling life. Emphasize that the key to a healthy physical body and a healthy state of mind is in one\'s control. By getting in touch with the inner being we can experience a state of \\\"Bliss and Anand\\\".<br>This Divya yoga is for people of all ages. We start with warm-up exercises (12-15), salutation to the sun and motivational speech. Then we practice 90-100 combination of asanas, postures and exercises. We also do some acupressure, 6 mudras, 7 pranayamas and micro exercises for eyes, fingers, toes, face and neck. Laughter yoga and super brain yoga are also included. We finish with \'Shav Asana\', motivational poem, mantra and prayer,<br>After yoga, super food i.e. grapes and banana are available for yogis.<br>Yoga is a wonderful means of exercising, stretching and relaxing the body\\/mind so that it can be healthy and lasting. Helps in the coordination of the body, mind and soul. We also create an environment where people can interact for their betterment and the good of society.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><br \\/>Every Saturday morning from 9:00 a.m. to 11:00 a.m. we participate in the session, a series of physical and breathing exercises to make the body more flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poems, prayers and our mantra. Yoga is a complete lifestyle<br \\/>Every last Saturday of the month we have a guest speaker from 11:00 to 11:45 and after that we eat together. The food is provided by the Vinesh Saxena Family foundation, Meera is preparing amazing vegetarian Indian food for us, and if you want to share a small plate with us, you are welcome.<br \\/>If it\'s your first day, please come before 8.30am to take the time to fill out an information sheet. Mihaela is happy to meet you.<br \\/>Afterwards please come 10-15 minutes early to give yourself time to arrange your mat etc so we can start at 9.00am.<br \\/>See below a brief description of the exercises we practice every Saturday.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>1. Workout: A series of 12-15 exercises to warm up your body: i.e. knee bend, forward bend, back bend, right bend, left bend, shoulder stretch, jump, hand swing , bend right knee, bend left knee, jump cat, body shake, downward\\/upward dog, etc.<\\/p>\\n<p>2. Salutation to the Sun \\u2013 Surya Namaskar, a flowing series of 12 postures that helps improve strength and flexibility of the muscles and spine. These poses also warm up the body and tone the abdominal muscles.<\\/p>\\n<p>3. Motivational Speech - Our teacher Vinesh Saxena shares with us wise stories and practical tips for a happy, healthy, motivated and fulfilling life.<\\/p>\\n<p><br>4. Acupressure (an alternative medicine technique derived from acupuncture): Rotating pressure on the pads of the fingers to relieve sinus problems, the middle of the palm of the hand for kidney problems, and under the thumb for thyroid wellness .<\\/p>\\n<p><br>5. Exercises for the eyes and neck: we take care of each part of the body.Eyes: move the pupil to the right, left, up and down; Turn clockwise, then counterclockwise. Reach your right arm in front, thumb up, focus on your thumb as you bring your hand up to your nose, and then take it away. Extend both arms inward, look at the center of the thumb. Spread arms apart until you can still see, stay in this position for 30 seconds, move arms back Neck: bend left, right, forward and back, turn clockwise, then counterclockwise clockwise, look to the right and look up the left.<\\/p>\\n<p>6. Seven Pranayamas (breathing exercises) When we do yoga, 75% of the benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya (Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/p><p>7. 6 mudras (finger positioning): Used in conjunction with pranayama, usually while seated, to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/p><p>8. 100 postures, exercises and asanas: with them we increase flexibility from head to toe. We are also doing stretching exercises to help our bodies stimulate the lymphatic system, targeting key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees, and feet. We do exercises to relieve arthritis, diabetes, heart disease, cholesterol, back pain, insomnia, etc.<\\/p><p>9. Laughter Yoga \\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a doctor from Mumbai. Today, it has become a global phenomenon with more than 6,000 laughter social clubs in some 60 countries. We combine unconditional laughter with Pranayama. The Laughter Yoga concept is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<\\/p><p>We also do Super Brain yoga to stimulate brain cells and improve memory. This form of yoga was invented by a Virginia doctor and is very popular in the medical community.<\\/p><p>10. Shavasana \\u2013 After your yoga session, lie on your back on the mat \\u2013 Shavasana allows the body a chance to regroup and reset. After a balanced practice, the entire body has been stretched, contracted, twisted, and inverted. The body, mind and soul get complete rest, power, motivation and happiness.<\\/p><p>11. Motivational poem: read at the end of the session to keep us motivated, focused and to recharge our batteries.<\\/p><p>12. Mantra \\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT WILL BE DEPENDS ON ME<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6660,884,'_elementor_page_assets','a:0:{}'),(6661,884,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6675,888,'_elementor_edit_mode','builder'),(6676,888,'_elementor_template_type','wp-page'),(6677,888,'_elementor_version','3.13.3'),(6678,888,'_wp_page_template','default'),(6679,888,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/cropped-banner111.jpg\",\"id\":654,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge.<\\/p><p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>\\u00a0<\\/i><\\/b>exercise<b>s<i>,\\u00a0<\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p><p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p><p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p><p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p><ol><li><b>Workout<\\/b>\\u00a0\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li><li><b>Sun Salutation<\\/b>\\u00a0\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li><li><b>Motivational discourse<\\/b>\\u00a0\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li><li><b>Acupressure<\\/b>\\u00a0(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,\\u00a0 middle of your palm for kidney problems and\\u00a0 under the thumb for the well being of thyroid.<\\/li><li><b>Eyes and neck exercises<\\/b>\\u00a0\\u2013 we take care of every part of the body.<br \\/>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>\\u00a0\\u00a0\\u00a0\\u00a0<\\/b><br \\/>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li><li><b>Seven Pranayamas (<\\/b>\\u00a0breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li><li><b>6 mudras\\u00a0<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li><li><b>100 postures, exercises and asanas<\\/b>\\u00a0\\u2013 with these we increase flexibility from head to toe. We are also doing\\u00a0<b>stretching<\\/b>\\u00a0exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br \\/>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li><li><b>Laughter yoga\\u00a0<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br \\/>We also do\\u00a0<b>Super Brain yoga<\\/b>\\u00a0to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li><li><b>Shavasana\\u00a0<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li><li><b>Motivational poem<\\/b>\\u00a0\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li><li><b>Mantra<\\/b>\\u00a0\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li><\\/ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00\\u00a0<\\/strong><br \\/><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6683,889,'_elementor_edit_mode','builder'),(6684,889,'_elementor_template_type','wp-page'),(6685,889,'_elementor_version','3.13.3'),(6686,889,'_wp_page_template','default'),(6687,889,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/cropped-banner111.jpg\",\"id\":654,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge.<\\/p><p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>\\u00a0<\\/i><\\/b>exercise<b>s<i>,\\u00a0<\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p><p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p><p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p><p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p><ol><li><b>Workout<\\/b>\\u00a0\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li><li><b>Sun Salutation<\\/b>\\u00a0\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li><li><b>Motivational discourse<\\/b>\\u00a0\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li><li><b>Acupressure<\\/b>\\u00a0(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,\\u00a0 middle of your palm for kidney problems and\\u00a0 under the thumb for the well being of thyroid.<\\/li><li><b>Eyes and neck exercises<\\/b>\\u00a0\\u2013 we take care of every part of the body.<br \\/>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>\\u00a0\\u00a0\\u00a0\\u00a0<\\/b><br \\/>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li><li><b>Seven Pranayamas (<\\/b>\\u00a0breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li><li><b>6 mudras\\u00a0<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li><li><b>100 postures, exercises and asanas<\\/b>\\u00a0\\u2013 with these we increase flexibility from head to toe. We are also doing\\u00a0<b>stretching<\\/b>\\u00a0exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br \\/>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li><li><b>Laughter yoga\\u00a0<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br \\/>We also do\\u00a0<b>Super Brain yoga<\\/b>\\u00a0to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li><li><b>Shavasana\\u00a0<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li><li><b>Motivational poem<\\/b>\\u00a0\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li><li><b>Mantra<\\/b>\\u00a0\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li><\\/ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00\\u00a0<\\/strong><br \\/><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6688,889,'_elementor_page_assets','a:0:{}'),(6689,889,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7424,992,'_wp_page_template','default'),(7425,992,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6691,890,'_elementor_edit_mode','builder'),(6692,890,'_elementor_template_type','wp-page'),(6693,890,'_elementor_version','3.13.3'),(6694,890,'_wp_page_template','default'),(6695,890,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-copia.jpg\",\"id\":887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge.<\\/p><p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>\\u00a0<\\/i><\\/b>exercise<b>s<i>,\\u00a0<\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p><p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p><p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p><p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p><ol><li><b>Workout<\\/b>\\u00a0\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li><li><b>Sun Salutation<\\/b>\\u00a0\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li><li><b>Motivational discourse<\\/b>\\u00a0\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li><li><b>Acupressure<\\/b>\\u00a0(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,\\u00a0 middle of your palm for kidney problems and\\u00a0 under the thumb for the well being of thyroid.<\\/li><li><b>Eyes and neck exercises<\\/b>\\u00a0\\u2013 we take care of every part of the body.<br \\/>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>\\u00a0\\u00a0\\u00a0\\u00a0<\\/b><br \\/>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li><li><b>Seven Pranayamas (<\\/b>\\u00a0breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li><li><b>6 mudras\\u00a0<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li><li><b>100 postures, exercises and asanas<\\/b>\\u00a0\\u2013 with these we increase flexibility from head to toe. We are also doing\\u00a0<b>stretching<\\/b>\\u00a0exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br \\/>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li><li><b>Laughter yoga\\u00a0<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br \\/>We also do\\u00a0<b>Super Brain yoga<\\/b>\\u00a0to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li><li><b>Shavasana\\u00a0<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li><li><b>Motivational poem<\\/b>\\u00a0\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li><li><b>Mantra<\\/b>\\u00a0\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li><\\/ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00\\u00a0<\\/strong><br \\/><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6696,890,'_elementor_page_assets','a:0:{}'),(6697,890,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7422,992,'_elementor_edit_mode','builder'),(7423,992,'_elementor_version','3.13.3'),(6984,936,'_elementor_edit_mode','builder'),(6985,936,'_elementor_template_type','wp-page'),(6986,936,'_elementor_version','3.13.3'),(6987,936,'_wp_page_template','default'),(6988,936,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-copia.jpg\",\"id\":887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge.<\\/p><p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>\\u00a0<\\/i><\\/b>exercise<b>s<i>,\\u00a0<\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p><p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p><p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p><p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p><ol><li><b>Workout<\\/b>\\u00a0\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li><li><b>Sun Salutation<\\/b>\\u00a0\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li><li><b>Motivational discourse<\\/b>\\u00a0\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li><li><b>Acupressure<\\/b>\\u00a0(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,\\u00a0 middle of your palm for kidney problems and\\u00a0 under the thumb for the well being of thyroid.<\\/li><li><b>Eyes and neck exercises<\\/b>\\u00a0\\u2013 we take care of every part of the body.<br \\/>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>\\u00a0\\u00a0\\u00a0\\u00a0<\\/b><br \\/>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li><li><b>Seven Pranayamas (<\\/b>\\u00a0breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li><li><b>6 mudras\\u00a0<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li><li><b>100 postures, exercises and asanas<\\/b>\\u00a0\\u2013 with these we increase flexibility from head to toe. We are also doing\\u00a0<b>stretching<\\/b>\\u00a0exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br \\/>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li><li><b>Laughter yoga\\u00a0<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br \\/>We also do\\u00a0<b>Super Brain yoga<\\/b>\\u00a0to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li><li><b>Shavasana\\u00a0<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li><li><b>Motivational poem<\\/b>\\u00a0\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li><li><b>Mantra<\\/b>\\u00a0\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li><\\/ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00\\u00a0<\\/strong><br \\/><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6707,891,'_elementor_page_assets','a:0:{}'),(7420,991,'_elementor_css','a:6:{s:4:\"time\";i:1686273687;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:\"\";}'),(6709,892,'_elementor_edit_mode','builder'),(6710,892,'_elementor_template_type','wp-post'),(6711,892,'_elementor_version','3.13.3'),(6712,892,'_wp_page_template','default'),(6713,892,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6714,892,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images.jpeg\",\"id\":102,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6715,892,'_elementor_page_assets','a:0:{}'),(7419,991,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(6717,893,'_elementor_edit_mode','builder'),(6718,893,'_elementor_template_type','wp-post'),(6719,893,'_elementor_version','3.13.3'),(6720,893,'_wp_page_template','default'),(6721,893,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6722,893,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images.jpeg\",\"id\":102,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span lang=\\\"EN\\\">In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">I then undertook two other trainings, totaling 500 hours in Hatha Yoga.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. \\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0For several years, yoga and meditation have been an integral part of my life.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.\\u00a0<\\/span><span lang=\\\"EN-CA\\\">An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community<\\/span><span lang=\\\"EN-CA\\\">. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">With gratitude.<\\/span><span lang=\\\"EN-CA\\\">\\u00a0\\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6723,893,'_elementor_page_assets','a:0:{}'),(6742,899,'_elementor_edit_mode','builder'),(6743,899,'_elementor_template_type','wp-post'),(6744,899,'_elementor_version','3.13.3'),(6745,899,'_wp_page_template','default'),(6746,899,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6747,899,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images.jpeg\",\"id\":102,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span lang=\\\"EN\\\">In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">I then undertook two other trainings, totaling 500 hours in Hatha Yoga.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. \\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0For several years, yoga and meditation have been an integral part of my life.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.\\u00a0<\\/span><span lang=\\\"EN-CA\\\">An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community<\\/span><span lang=\\\"EN-CA\\\">. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">With gratitude.<\\/span><span lang=\\\"EN-CA\\\">\\u00a0\\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6734,895,'_wp_attached_file','2023/05/meditate-g16efcb560_1280.jpg'),(6735,895,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:36:\"2023/05/meditate-g16efcb560_1280.jpg\";s:8:\"filesize\";i:216259;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"meditate-g16efcb560_1280-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9415;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"meditate-g16efcb560_1280-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84350;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"meditate-g16efcb560_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4545;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"meditate-g16efcb560_1280-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50078;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6756,901,'_elementor_edit_mode','builder'),(6757,901,'_elementor_template_type','wp-post'),(6758,901,'_elementor_version','3.13.3'),(6759,901,'_wp_page_template','default'),(6760,901,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6761,901,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span lang=\\\"EN\\\">In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">I then undertook two other trainings, totaling 500 hours in Hatha Yoga.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. \\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0For several years, yoga and meditation have been an integral part of my life.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.\\u00a0<\\/span><span lang=\\\"EN-CA\\\">An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community<\\/span><span lang=\\\"EN-CA\\\">. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">With gratitude.<\\/span><span lang=\\\"EN-CA\\\">\\u00a0\\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6736,896,'_wp_attached_file','2023/05/sunrise-g34a24ef5c_1280.jpg'),(6737,896,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:719;s:4:\"file\";s:35:\"2023/05/sunrise-g34a24ef5c_1280.jpg\";s:8:\"filesize\";i:130566;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"sunrise-g34a24ef5c_1280-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7938;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"sunrise-g34a24ef5c_1280-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52548;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"sunrise-g34a24ef5c_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4755;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"sunrise-g34a24ef5c_1280-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33218;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6738,897,'_wp_attached_file','2023/05/yoga-g4ef99c854_1280.jpg'),(6739,897,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:854;s:4:\"file\";s:32:\"2023/05/yoga-g4ef99c854_1280.jpg\";s:8:\"filesize\";i:114985;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"yoga-g4ef99c854_1280-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7581;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"yoga-g4ef99c854_1280-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46050;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"yoga-g4ef99c854_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4007;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"yoga-g4ef99c854_1280-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29083;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6740,898,'_wp_attached_file','2023/05/peaceful-g5ada3643f_1280.jpg'),(6741,898,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:36:\"2023/05/peaceful-g5ada3643f_1280.jpg\";s:8:\"filesize\";i:335381;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"peaceful-g5ada3643f_1280-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16833;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"peaceful-g5ada3643f_1280-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136785;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"peaceful-g5ada3643f_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6890;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"peaceful-g5ada3643f_1280-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85301;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6748,899,'_elementor_page_assets','a:0:{}'),(6749,900,'_elementor_edit_mode','builder'),(6750,900,'_elementor_template_type','wp-post'),(6751,900,'_elementor_version','3.13.3'),(6752,900,'_wp_page_template','default'),(6753,900,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6754,900,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images.jpeg\",\"id\":102,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-4.jpeg\",\"id\":137,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":82,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span lang=\\\"EN\\\">In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">I then undertook two other trainings, totaling 500 hours in Hatha Yoga.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. \\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0For several years, yoga and meditation have been an integral part of my life.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.\\u00a0<\\/span><span lang=\\\"EN-CA\\\">An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community<\\/span><span lang=\\\"EN-CA\\\">. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">With gratitude.<\\/span><span lang=\\\"EN-CA\\\">\\u00a0\\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6755,900,'_elementor_page_assets','a:0:{}'),(6762,901,'_elementor_page_assets','a:0:{}'),(7084,948,'_elementor_edit_mode','builder'),(7085,948,'_elementor_template_type','wp-post'),(7086,948,'_elementor_version','3.13.3'),(7087,948,'_wp_page_template','default'),(7088,948,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7089,948,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span lang=\\\"EN\\\">In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">I then undertook two other trainings, totaling 500 hours in Hatha Yoga.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. \\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0For several years, yoga and meditation have been an integral part of my life.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.\\u00a0<\\/span><span lang=\\\"EN-CA\\\">An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community<\\/span><span lang=\\\"EN-CA\\\">. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">With gratitude.<\\/span><span lang=\\\"EN-CA\\\">\\u00a0\\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6765,902,'_wp_attached_file','2023/05/yoga-g12cf06d74_1280.jpg'),(6766,902,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:32:\"2023/05/yoga-g12cf06d74_1280.jpg\";s:8:\"filesize\";i:127256;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"yoga-g12cf06d74_1280-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8656;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"yoga-g12cf06d74_1280-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52976;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"yoga-g12cf06d74_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4657;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"yoga-g12cf06d74_1280-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34183;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7013,939,'_wp_page_template','default'),(7014,939,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7015,939,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":902,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g12cf06d74_1280.jpg\"},{\"id\":898,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\"},{\"id\":897,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\"},{\"id\":896,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\"},{\"id\":895,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">To make basic yoga practice easily accessible to everyone without charge.<\\/p><p style=\\\"text-align: justify;\\\">Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i> <\\/i><\\/b>exercise<b>s<i>, <\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p><p style=\\\"text-align: justify;\\\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p><p style=\\\"text-align: justify;\\\">After yoga super food i. e. grapes and banana are available for Yogies.<\\/p><p style=\\\"text-align: justify;\\\">Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6796,906,'_elementor_page_assets','a:0:{}'),(6793,906,'_wp_page_template','default'),(6794,906,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6795,906,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":902,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g12cf06d74_1280.jpg\"},{\"id\":898,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\"},{\"id\":897,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\"},{\"id\":896,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\"},{\"id\":895,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">To make basic yoga practice easily accessible to everyone without charge.<\\/p><p style=\\\"text-align: justify;\\\">Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i> <\\/i><\\/b>exercise<b>s<i>, <\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p><p style=\\\"text-align: justify;\\\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p><p style=\\\"text-align: justify;\\\">After yoga super food i. e. grapes and banana are available for Yogies.<\\/p><p style=\\\"text-align: justify;\\\">Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6790,906,'_elementor_edit_mode','builder'),(6791,906,'_elementor_template_type','wp-page'),(6792,906,'_elementor_version','3.13.3'),(6782,904,'_elementor_page_assets','a:0:{}'),(6783,905,'_elementor_edit_mode','builder'),(6784,905,'_elementor_template_type','wp-page'),(6785,905,'_elementor_version','3.13.3'),(6786,905,'_wp_page_template','default'),(6787,905,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6788,905,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">To make basic yoga practice easily accessible to everyone without charge.<\\/p><p style=\\\"text-align: justify;\\\">Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i> <\\/i><\\/b>exercise<b>s<i>, <\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p><p style=\\\"text-align: justify;\\\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p><p style=\\\"text-align: justify;\\\">After yoga super food i. e. grapes and banana are available for Yogies.<\\/p><p style=\\\"text-align: justify;\\\">Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6789,905,'_elementor_page_assets','a:0:{}'),(7010,939,'_elementor_edit_mode','builder'),(7011,939,'_elementor_template_type','wp-page'),(7012,939,'_elementor_version','3.13.3'),(6845,919,'_elementor_page_assets','a:0:{}'),(6846,128,'_elementor_controls_usage','a:4:{s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:2:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;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:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:6;s:10:\"image_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:2;s:5:\"space\";i:2;s:6:\"height\";i:1;}}}}}'),(6841,919,'_elementor_version','3.12.2'),(6842,919,'_wp_page_template','default'),(6843,919,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6844,919,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":344,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-17.jpeg\"},{\"id\":897,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\"},{\"id\":896,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\"},{\"id\":898,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\"},{\"id\":902,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g12cf06d74_1280.jpg\"},{\"id\":895,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3242cf9\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"1155c00\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"cecc2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"237929a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"de47540\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/pexels-lucas-pezeta-2035018.jpg\",\"id\":916,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"width\":{\"unit\":\"%\",\"size\":91,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":133,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"48113ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"035f315\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"340bd1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"8779274\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-ga0015b20f_1280.jpg\",\"id\":908,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72996c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"454ca25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/religion-g51748518d_1280.jpg\",\"id\":910,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6839,919,'_elementor_edit_mode','builder'),(6840,919,'_elementor_template_type','wp-page'),(6809,909,'_wp_attached_file','2023/05/peaceful-g5ada3643f_1280-1.jpg'),(6810,909,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:38:\"2023/05/peaceful-g5ada3643f_1280-1.jpg\";s:8:\"filesize\";i:335381;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"peaceful-g5ada3643f_1280-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16833;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"peaceful-g5ada3643f_1280-1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136785;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"peaceful-g5ada3643f_1280-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6890;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"peaceful-g5ada3643f_1280-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85301;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6811,910,'_wp_attached_file','2023/05/religion-g51748518d_1280.jpg'),(6812,910,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:36:\"2023/05/religion-g51748518d_1280.jpg\";s:8:\"filesize\";i:275788;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"religion-g51748518d_1280-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14309;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"religion-g51748518d_1280-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105675;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"religion-g51748518d_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6488;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"religion-g51748518d_1280-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63746;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6813,911,'_wp_attached_file','2023/05/sunrise-g34a24ef5c_1280-1.jpg'),(6814,911,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:719;s:4:\"file\";s:37:\"2023/05/sunrise-g34a24ef5c_1280-1.jpg\";s:8:\"filesize\";i:130566;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"sunrise-g34a24ef5c_1280-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7938;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"sunrise-g34a24ef5c_1280-1-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52548;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"sunrise-g34a24ef5c_1280-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4755;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"sunrise-g34a24ef5c_1280-1-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33218;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6815,912,'_wp_attached_file','2023/05/yoga-g4ef99c854_1280-1.jpg'),(6816,912,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:854;s:4:\"file\";s:34:\"2023/05/yoga-g4ef99c854_1280-1.jpg\";s:8:\"filesize\";i:114985;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"yoga-g4ef99c854_1280-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7581;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"yoga-g4ef99c854_1280-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46050;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"yoga-g4ef99c854_1280-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4007;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"yoga-g4ef99c854_1280-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29083;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6817,913,'_wp_attached_file','2023/05/yoga-g12cf06d74_1280-1.jpg'),(6818,913,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:34:\"2023/05/yoga-g12cf06d74_1280-1.jpg\";s:8:\"filesize\";i:127256;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"yoga-g12cf06d74_1280-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8656;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"yoga-g12cf06d74_1280-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52976;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"yoga-g12cf06d74_1280-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4657;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"yoga-g12cf06d74_1280-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34183;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6819,914,'_wp_attached_file','2023/05/yoga-g49e4dc349_1280.jpg'),(6820,914,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:973;s:4:\"file\";s:32:\"2023/05/yoga-g49e4dc349_1280.jpg\";s:8:\"filesize\";i:160491;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"yoga-g49e4dc349_1280-300x228.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8639;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"yoga-g49e4dc349_1280-1024x778.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:778;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56821;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"yoga-g49e4dc349_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4195;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"yoga-g49e4dc349_1280-768x584.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:584;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33828;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6821,915,'_wp_attached_file','2023/05/zen-gbd57af398_1280.jpg'),(6822,915,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:31:\"2023/05/zen-gbd57af398_1280.jpg\";s:8:\"filesize\";i:94217;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"zen-gbd57af398_1280-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5843;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"zen-gbd57af398_1280-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39627;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"zen-gbd57af398_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3556;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"zen-gbd57af398_1280-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24362;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6823,916,'_wp_attached_file','2023/05/pexels-lucas-pezeta-2035018.jpg'),(6824,916,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:1920;s:4:\"file\";s:39:\"2023/05/pexels-lucas-pezeta-2035018.jpg\";s:8:\"filesize\";i:284347;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"pexels-lucas-pezeta-2035018-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12104;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"pexels-lucas-pezeta-2035018-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78167;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"pexels-lucas-pezeta-2035018-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6055;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"pexels-lucas-pezeta-2035018-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94091;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:41:\"pexels-lucas-pezeta-2035018-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148564;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6831,917,'_elementor_page_assets','a:0:{}'),(6832,918,'_elementor_edit_mode','builder'),(6833,918,'_elementor_template_type','wp-page'),(6834,918,'_elementor_version','3.12.2'),(6835,918,'_wp_page_template','default'),(6836,918,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(6837,918,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":71,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga.jpeg\"},{\"id\":70,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-3.jpeg\"},{\"id\":72,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-1.jpeg\"},{\"id\":73,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-2.jpeg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3242cf9\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"1155c00\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"cecc2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"237929a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"de47540\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"1536x1536\",\"width\":{\"unit\":\"%\",\"size\":91,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":133,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"48113ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"035f315\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"340bd1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"8779274\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-5.jpeg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"72996c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"454ca25\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-1.jpeg\",\"id\":106,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6838,918,'_elementor_page_assets','a:0:{}'),(6864,921,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(6866,922,'_elementor_template_type','wp-page'),(6867,922,'_elementor_edit_mode','builder'),(6868,922,'_elementor_version','3.13.3'),(6869,922,'_wp_page_template','default'),(6870,922,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6871,922,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\"><b><br \\/><\\/b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.<\\/p><p style=\\\"text-align: justify;\\\">The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.<\\/p><p style=\\\"text-align: justify;\\\">Here\'s what you do,\\\" said the Doctor, \\\"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\\\"<\\/p><p style=\\\"text-align: justify;\\\">That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \\\"I\'m about 40 feet away, let\'s see what happens.\\\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">No response.<\\/p><p style=\\\"text-align: justify;\\\">So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \\\"Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Still no response.<\\/p><p style=\\\"text-align: justify;\\\">Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Again he gets no response.<\\/p><p style=\\\"text-align: justify;\\\">So he walks up to the kitchen door, about 10 feet away. \\\"Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Again there is no response.<\\/p><p style=\\\"text-align: justify;\\\">So he walks right up behind her. \\\"Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"James, for the FIFTH time I\'ve said, Lima Beans!\\\"<\\/p><p style=\\\"text-align: justify;\\\"><b>The problem may not be with the other person as we always think, could be very much within us!<\\/b><\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6872,922,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(6875,923,'_elementor_edit_mode','builder'),(6876,923,'_elementor_version','3.13.3'),(6877,923,'_wp_page_template','default'),(6878,923,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6879,923,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: justify;\\\"><b><br \\/><\\/b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.<\\/h2><p style=\\\"text-align: justify;\\\">The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.<\\/p><p style=\\\"text-align: justify;\\\">Here\'s what you do,\\\" said the Doctor, \\\"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\\\"<\\/p><p style=\\\"text-align: justify;\\\">That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \\\"I\'m about 40 feet away, let\'s see what happens.\\\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">No response.<\\/p><p style=\\\"text-align: justify;\\\">So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \\\"Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Still no response.<\\/p><p style=\\\"text-align: justify;\\\">Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Again he gets no response.<\\/p><p style=\\\"text-align: justify;\\\">So he walks up to the kitchen door, about 10 feet away. \\\"Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Again there is no response.<\\/p><p style=\\\"text-align: justify;\\\">So he walks right up behind her. \\\"Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"James, for the FIFTH time I\'ve said, Lima Beans!\\\"<\\/p><p style=\\\"text-align: justify;\\\"><b>The problem may not be with the other person as we always think, could be very much within us!<\\/b><\\/p>\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6880,923,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(6884,924,'_elementor_template_type','wp-page'),(6885,924,'_elementor_edit_mode','builder'),(6886,924,'_elementor_version','3.13.3'),(6887,924,'_wp_page_template','default'),(6888,924,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6889,924,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: justify;\\\"><b><br \\/><\\/b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.<\\/h2><p style=\\\"text-align: justify;\\\">The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.<\\/p><p style=\\\"text-align: justify;\\\">Here\'s what you do,\\\" said the Doctor, \\\"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\\\"<\\/p><p style=\\\"text-align: justify;\\\">That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \\\"I\'m about 40 feet away, let\'s see what happens.\\\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">No response.<\\/p><p style=\\\"text-align: justify;\\\">So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \\\"Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Still no response.<\\/p><p style=\\\"text-align: justify;\\\">Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Again he gets no response.<\\/p><p style=\\\"text-align: justify;\\\">So he walks up to the kitchen door, about 10 feet away. \\\"Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Again there is no response.<\\/p><p style=\\\"text-align: justify;\\\">So he walks right up behind her. \\\"Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"James, for the FIFTH time I\'ve said, Lima Beans!\\\"<\\/p><p style=\\\"text-align: justify;\\\"><b>The problem may not be with the other person as we always think, could be very much within us!<\\/b><\\/p>\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6890,924,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(6892,925,'_elementor_template_type','wp-page'),(6893,925,'_elementor_edit_mode','builder'),(6894,925,'_elementor_version','3.13.3'),(6895,925,'_wp_page_template','default'),(6896,925,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6897,925,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: justify;\\\"><b><br \\/><\\/b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.<\\/h2><p style=\\\"text-align: justify;\\\">The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.<\\/p><p style=\\\"text-align: justify;\\\">Here\'s what you do,\\\" said the Doctor, \\\"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\\\"<\\/p><p style=\\\"text-align: justify;\\\">That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \\\"I\'m about 40 feet away, let\'s see what happens.\\\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">No response.<\\/p><p style=\\\"text-align: justify;\\\">So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \\\"Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Still no response.<\\/p><p style=\\\"text-align: justify;\\\">Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Again he gets no response.<\\/p><p style=\\\"text-align: justify;\\\">So he walks up to the kitchen door, about 10 feet away. \\\"Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Again there is no response.<\\/p><p style=\\\"text-align: justify;\\\">So he walks right up behind her. \\\"Honey, what\'s for dinner?\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"James, for the FIFTH time I\'ve said, Lima Beans!\\\"<\\/p><p style=\\\"text-align: justify;\\\"><b>The problem may not be with the other person as we always think, could be very much within us!<\\/b><\\/p>\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6898,925,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(6900,926,'_elementor_template_type','wp-page'),(6901,926,'_elementor_edit_mode','builder'),(6902,926,'_elementor_version','3.13.3'),(6903,926,'_wp_page_template','default'),(6904,926,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6905,926,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><b><br \\/><\\/b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.<\\/h3><h3 style=\\\"text-align: justify;\\\">The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.<\\/h3><h3 style=\\\"text-align: justify;\\\">Here\'s what you do,\\\" said the Doctor, \\\"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\\\"<\\/h3><h3 style=\\\"text-align: justify;\\\">That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \\\"I\'m about 40 feet away, let\'s see what happens.\\\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\\\"<\\/h3><h3 style=\\\"text-align: justify;\\\">No response.<\\/h3><h3 style=\\\"text-align: justify;\\\">So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3 style=\\\"text-align: justify;\\\">Still no response.<\\/h3><h3 style=\\\"text-align: justify;\\\">Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\\\"<\\/h3><h3 style=\\\"text-align: justify;\\\">Again he gets no response.<\\/h3><h3 style=\\\"text-align: justify;\\\">So he walks up to the kitchen door, about 10 feet away. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3 style=\\\"text-align: justify;\\\">Again there is no response.<\\/h3><h3 style=\\\"text-align: justify;\\\">So he walks right up behind her. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3 style=\\\"text-align: justify;\\\">\\\"James, for the FIFTH time I\'ve said, Lima Beans!\\\"<\\/h3><h3 style=\\\"text-align: justify;\\\"><b>The problem may not be with the other person as we always think, could be very much within us!<\\/b><\\/h3>\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6906,926,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(6910,927,'_elementor_template_type','wp-page'),(6911,927,'_elementor_edit_mode','builder'),(6912,927,'_elementor_version','3.13.3'),(6913,927,'_wp_page_template','default'),(6914,927,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6915,927,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><b><br \\/><\\/b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.<\\/h3><h3 style=\\\"text-align: justify;\\\">The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.<\\/h3><h3 style=\\\"text-align: justify;\\\">Here\'s what you do,\\\" said the Doctor, \\\"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\\\"<\\/h3><h3 style=\\\"text-align: justify;\\\">That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \\\"I\'m about 40 feet away, let\'s see what happens.\\\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\\\"<\\/h3><h3 style=\\\"text-align: justify;\\\">No response.<\\/h3><h3 style=\\\"text-align: justify;\\\">So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3 style=\\\"text-align: justify;\\\">Still no response.<\\/h3><h3 style=\\\"text-align: justify;\\\">Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\\\"<\\/h3><h3 style=\\\"text-align: justify;\\\">Again he gets no response.<\\/h3><h3 style=\\\"text-align: justify;\\\">So he walks up to the kitchen door, about 10 feet away. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3 style=\\\"text-align: justify;\\\">Again there is no response.<\\/h3><h3 style=\\\"text-align: justify;\\\">So he walks right up behind her. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3 style=\\\"text-align: justify;\\\">\\\"James, for the FIFTH time I\'ve said, Lima Beans!\\\"<\\/h3><h3 style=\\\"text-align: justify;\\\"><b>The problem may not be with the other person as we always think, could be very much within us!<\\/b><\\/h3>\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6916,927,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(6918,928,'_elementor_template_type','wp-page'),(6919,928,'_elementor_edit_mode','builder'),(6920,928,'_elementor_version','3.13.3'),(6921,928,'_wp_page_template','default'),(6922,928,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6923,928,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><b><br \\/><\\/b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.<\\/h3><h3 style=\\\"text-align: justify;\\\">The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.<\\/h3><h3 style=\\\"text-align: justify;\\\">Here\'s what you do,\\\" said the Doctor, \\\"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\\\"<\\/h3><h3 style=\\\"text-align: justify;\\\">That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \\\"I\'m about 40 feet away, let\'s see what happens.\\\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\\\"<\\/h3><h3 style=\\\"text-align: justify;\\\">No response.<\\/h3><h3 style=\\\"text-align: justify;\\\">So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3 style=\\\"text-align: justify;\\\">Still no response.<\\/h3><h3 style=\\\"text-align: justify;\\\">Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\\\"<\\/h3><h3 style=\\\"text-align: justify;\\\">Again he gets no response.<\\/h3><h3 style=\\\"text-align: justify;\\\">So he walks up to the kitchen door, about 10 feet away. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3 style=\\\"text-align: justify;\\\">Again there is no response.<\\/h3><h3 style=\\\"text-align: justify;\\\">So he walks right up behind her. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3 style=\\\"text-align: justify;\\\">\\\"James, for the FIFTH time I\'ve said, Lima Beans!\\\"<\\/h3><h3 style=\\\"text-align: justify;\\\"><b>The problem may not be with the other person as we always think, could be very much within us!<\\/b><\\/h3>\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6924,928,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(6931,929,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b><br \\/><\\/b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.<\\/p><p>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.<\\/p><p>Here\'s what you do,\\\" said the Doctor, \\\"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\\\"<\\/p><p>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \\\"I\'m about 40 feet away, let\'s see what happens.\\\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\\\"<\\/p><p>No response.<\\/p><p>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \\\"Honey, what\'s for dinner?\\\"<\\/p><p>Still no response.<\\/p><p>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\\\"<\\/p><p>Again he gets no response.<\\/p><p>So he walks up to the kitchen door, about 10 feet away. \\\"Honey, what\'s for dinner?\\\"<\\/p><p>Again there is no response.<\\/p><p>So he walks right up behind her. \\\"Honey, what\'s for dinner?\\\"<\\/p><p>\\\"James, for the FIFTH time I\'ve said, Lima Beans!\\\"<\\/p><p><b>The problem may not be with the other person as we always think, could be very much within us!<\\/b><\\/p>\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6932,929,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(6936,930,'_elementor_template_type','wp-page'),(6937,930,'_elementor_edit_mode','builder'),(6938,930,'_elementor_version','3.13.3'),(6939,930,'_wp_page_template','default'),(6940,930,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6941,930,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b><br \\/><\\/b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.<\\/p><p>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.<\\/p><p>Here\'s what you do,\\\" said the Doctor, \\\"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\\\"<\\/p><p>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \\\"I\'m about 40 feet away, let\'s see what happens.\\\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\\\"<\\/p><p>No response.<\\/p><p>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \\\"Honey, what\'s for dinner?\\\"<\\/p><p>Still no response.<\\/p><p>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\\\"<\\/p><p>Again he gets no response.<\\/p><p>So he walks up to the kitchen door, about 10 feet away. \\\"Honey, what\'s for dinner?\\\"<\\/p><p>Again there is no response.<\\/p><p>So he walks right up behind her. \\\"Honey, what\'s for dinner?\\\"<\\/p><p>\\\"James, for the FIFTH time I\'ve said, Lima Beans!\\\"<\\/p><p><b>The problem may not be with the other person as we always think, could be very much within us!<\\/b><\\/p>\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6942,930,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7418,991,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><b><br \\/><\\/b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.<\\/h3><h3>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.<\\/h3><h3>Here\'s what you do,\\\" said the Doctor, \\\"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\\\"<\\/h3><h3>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \\\"I\'m about 40 feet away, let\'s see what happens.\\\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\\\"<\\/h3><h3>No response.<\\/h3><h3>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>Still no response.<\\/h3><h3>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\\\"<\\/h3><h3>Again he gets no response.<\\/h3><h3>So he walks up to the kitchen door, about 10 feet away. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>Again there is no response.<\\/h3><h3>So he walks right up behind her. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>\\\"James, for the FIFTH time I\'ve said, Lima Beans!\\\"<\\/h3><h3>The problem may not be with the other person as we always think, could be very much within us!<\\/h3>\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6944,931,'_elementor_template_type','wp-page'),(6945,931,'_elementor_edit_mode','builder'),(6946,931,'_elementor_version','3.13.3'),(6947,931,'_wp_page_template','default'),(6948,931,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6949,931,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b><br \\/><\\/b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.<\\/p><p>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.<\\/p><p>Here\'s what you do,\\\" said the Doctor, \\\"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\\\"<\\/p><p>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \\\"I\'m about 40 feet away, let\'s see what happens.\\\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\\\"<\\/p><p>No response.<\\/p><p>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \\\"Honey, what\'s for dinner?\\\"<\\/p><p>Still no response.<\\/p><p>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\\\"<\\/p><p>Again he gets no response.<\\/p><p>So he walks up to the kitchen door, about 10 feet away. \\\"Honey, what\'s for dinner?\\\"<\\/p><p>Again there is no response.<\\/p><p>So he walks right up behind her. \\\"Honey, what\'s for dinner?\\\"<\\/p><p>\\\"James, for the FIFTH time I\'ve said, Lima Beans!\\\"<\\/p><p><b>The problem may not be with the other person as we always think, could be very much within us!<\\/b><\\/p>\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6950,931,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7416,991,'_wp_page_template','default'),(7417,991,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7421,992,'_elementor_template_type','wp-page'),(6952,932,'_elementor_template_type','wp-page'),(6953,932,'_elementor_edit_mode','builder'),(6954,932,'_elementor_version','3.13.3'),(6955,932,'_wp_page_template','default'),(6956,932,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6957,932,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><b><br \\/><\\/b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.<\\/h3><h3>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.<\\/h3><h3>Here\'s what you do,\\\" said the Doctor, \\\"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\\\"<\\/h3><h3>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \\\"I\'m about 40 feet away, let\'s see what happens.\\\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\\\"<\\/h3><h3>No response.<\\/h3><h3>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>Still no response.<\\/h3><h3>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\\\"<\\/h3><h3>Again he gets no response.<\\/h3><h3>So he walks up to the kitchen door, about 10 feet away. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>Again there is no response.<\\/h3><h3>So he walks right up behind her. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>\\\"James, for the FIFTH time I\'ve said, Lima Beans!\\\"<\\/h3><h3><b>The problem may not be with the other person as we always think, could be very much within us!<\\/b><\\/h3>\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6958,932,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7413,991,'_elementor_template_type','wp-page'),(7414,991,'_elementor_edit_mode','builder'),(7415,991,'_elementor_version','3.13.3'),(6961,933,'_elementor_template_type','wp-page'),(6962,933,'_elementor_edit_mode','builder'),(6963,933,'_elementor_version','3.13.3'),(6964,933,'_wp_page_template','default'),(6965,933,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6966,933,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><b><br \\/><\\/b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.<\\/h3><h3>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.<\\/h3><h3>Here\'s what you do,\\\" said the Doctor, \\\"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\\\"<\\/h3><h3>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \\\"I\'m about 40 feet away, let\'s see what happens.\\\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\\\"<\\/h3><h3>No response.<\\/h3><h3>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>Still no response.<\\/h3><h3>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\\\"<\\/h3><h3>Again he gets no response.<\\/h3><h3>So he walks up to the kitchen door, about 10 feet away. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>Again there is no response.<\\/h3><h3>So he walks right up behind her. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>\\\"James, for the FIFTH time I\'ve said, Lima Beans!\\\"<\\/h3><h3><b>The problem may not be with the other person as we always think, could be very much within us!<\\/b><\\/h3>\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6967,933,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(6968,934,'_elementor_template_type','wp-page'),(6969,934,'_elementor_edit_mode','builder'),(6970,934,'_elementor_version','3.13.3'),(6971,934,'_wp_page_template','default'),(6972,934,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6973,934,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><b><br \\/><\\/b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.<\\/h3><h3>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.<\\/h3><h3>Here\'s what you do,\\\" said the Doctor, \\\"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\\\"<\\/h3><h3>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \\\"I\'m about 40 feet away, let\'s see what happens.\\\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\\\"<\\/h3><h3>No response.<\\/h3><h3>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>Still no response.<\\/h3><h3>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\\\"<\\/h3><h3>Again he gets no response.<\\/h3><h3>So he walks up to the kitchen door, about 10 feet away. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>Again there is no response.<\\/h3><h3>So he walks right up behind her. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>\\\"James, for the FIFTH time I\'ve said, Lima Beans!\\\"<\\/h3><h3><b>The problem may not be with the other person as we always think, could be very much within us!<\\/b><\\/h3>\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6974,934,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(6975,935,'_elementor_template_type','wp-page'),(6976,935,'_elementor_edit_mode','builder'),(6977,935,'_elementor_version','3.13.3'),(6978,935,'_wp_page_template','default'),(6979,935,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(6980,935,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><b><br \\/><\\/b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.<\\/h3><h3>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.<\\/h3><h3>Here\'s what you do,\\\" said the Doctor, \\\"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\\\"<\\/h3><h3>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \\\"I\'m about 40 feet away, let\'s see what happens.\\\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\\\"<\\/h3><h3>No response.<\\/h3><h3>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>Still no response.<\\/h3><h3>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\\\"<\\/h3><h3>Again he gets no response.<\\/h3><h3>So he walks up to the kitchen door, about 10 feet away. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>Again there is no response.<\\/h3><h3>So he walks right up behind her. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>\\\"James, for the FIFTH time I\'ve said, Lima Beans!\\\"<\\/h3><h3>The problem may not be with the other person as we always think, could be very much within us!<\\/h3>\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6981,935,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7405,990,'_elementor_template_type','wp-page'),(7406,990,'_elementor_edit_mode','builder'),(7407,990,'_elementor_version','3.13.3'),(7408,990,'_wp_page_template','default'),(7409,990,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7410,990,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><b><br \\/><\\/b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.<\\/h3><h3>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.<\\/h3><h3>Here\'s what you do,\\\" said the Doctor, \\\"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\\\"<\\/h3><h3>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \\\"I\'m about 40 feet away, let\'s see what happens.\\\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\\\"<\\/h3><h3>No response.<\\/h3><h3>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>Still no response.<\\/h3><h3>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\\\"<\\/h3><h3>Again he gets no response.<\\/h3><h3>So he walks up to the kitchen door, about 10 feet away. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>Again there is no response.<\\/h3><h3>So he walks right up behind her. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>\\\"James, for the FIFTH time I\'ve said, Lima Beans!\\\"<\\/h3><h3>The problem may not be with the other person as we always think, could be very much within us!<\\/h3>\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(6989,936,'_elementor_page_assets','a:0:{}'),(6990,936,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7412,990,'_elementor_css','a:6:{s:4:\"time\";i:1686273687;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:\"\";}'),(6992,937,'_elementor_edit_mode','builder'),(6993,937,'_elementor_template_type','wp-page'),(6994,937,'_elementor_version','3.13.3'),(6995,937,'_wp_page_template','default'),(6996,937,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-copia.jpg\",\"id\":887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge.<\\/p><p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>\\u00a0<\\/i><\\/b>exercise<b>s<i>,\\u00a0<\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p><p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p><p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p><p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p><ol><li><b>Workout<\\/b>\\u00a0\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li><li><b>Sun Salutation<\\/b>\\u00a0\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li><li><b>Motivational discourse<\\/b>\\u00a0\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li><li><b>Acupressure<\\/b>\\u00a0(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,\\u00a0 middle of your palm for kidney problems and\\u00a0 under the thumb for the well being of thyroid.<\\/li><li><b>Eyes and neck exercises<\\/b>\\u00a0\\u2013 we take care of every part of the body.<br \\/>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>\\u00a0\\u00a0\\u00a0\\u00a0<\\/b><br \\/>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li><li><b>Seven Pranayamas (<\\/b>\\u00a0breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li><li><b>6 mudras\\u00a0<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li><li><b>100 postures, exercises and asanas<\\/b>\\u00a0\\u2013 with these we increase flexibility from head to toe. We are also doing\\u00a0<b>stretching<\\/b>\\u00a0exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br \\/>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li><li><b>Laughter yoga\\u00a0<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br \\/>We also do\\u00a0<b>Super Brain yoga<\\/b>\\u00a0to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li><li><b>Shavasana\\u00a0<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li><li><b>Motivational poem<\\/b>\\u00a0\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li><li><b>Mantra<\\/b>\\u00a0\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li><\\/ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00\\u00a0<\\/strong><br \\/><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6997,937,'_elementor_page_assets','a:0:{}'),(6998,937,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7411,990,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7000,938,'_elementor_edit_mode','builder'),(7001,938,'_elementor_template_type','wp-page'),(7002,938,'_elementor_version','3.13.3'),(7003,938,'_wp_page_template','default'),(7004,938,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-copia.jpg\",\"id\":887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge.<\\/p><p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>\\u00a0<\\/i><\\/b>exercise<b>s<i>,\\u00a0<\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p><p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p><p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p><p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p><ol><li><b>Workout<\\/b>\\u00a0\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li><li><b>Sun Salutation<\\/b>\\u00a0\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li><li><b>Motivational discourse<\\/b>\\u00a0\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li><li><b>Acupressure<\\/b>\\u00a0(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,\\u00a0 middle of your palm for kidney problems and\\u00a0 under the thumb for the well being of thyroid.<\\/li><li><b>Eyes and neck exercises<\\/b>\\u00a0\\u2013 we take care of every part of the body.<br \\/>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>\\u00a0\\u00a0\\u00a0\\u00a0<\\/b><br \\/>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li><li><b>Seven Pranayamas (<\\/b>\\u00a0breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li><li><b>6 mudras\\u00a0<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li><li><b>100 postures, exercises and asanas<\\/b>\\u00a0\\u2013 with these we increase flexibility from head to toe. We are also doing\\u00a0<b>stretching<\\/b>\\u00a0exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br \\/>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li><li><b>Laughter yoga\\u00a0<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br \\/>We also do\\u00a0<b>Super Brain yoga<\\/b>\\u00a0to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li><li><b>Shavasana\\u00a0<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li><li><b>Motivational poem<\\/b>\\u00a0\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li><li><b>Mantra<\\/b>\\u00a0\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li><\\/ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00\\u00a0<\\/strong><br \\/><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7005,938,'_elementor_page_assets','a:0:{}'),(7006,938,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7924,1047,'_elementor_edit_mode','builder'),(7925,1047,'_elementor_template_type','wp-page'),(7926,1047,'_elementor_version','3.13.3'),(7927,1047,'_wp_page_template','default'),(7928,1047,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-copia.jpg\",\"id\":887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge.<\\/p><p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>\\u00a0<\\/i><\\/b>exercise<b>s<i>,\\u00a0<\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p><p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p><p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p><p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p><ol><li><b>Workout<\\/b>\\u00a0\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li><li><b>Sun Salutation<\\/b>\\u00a0\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li><li><b>Motivational discourse<\\/b>\\u00a0\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li><li><b>Acupressure<\\/b>\\u00a0(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,\\u00a0 middle of your palm for kidney problems and\\u00a0 under the thumb for the well being of thyroid.<\\/li><li><b>Eyes and neck exercises<\\/b>\\u00a0\\u2013 we take care of every part of the body.<br \\/>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>\\u00a0\\u00a0\\u00a0\\u00a0<\\/b><br \\/>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li><li><b>Seven Pranayamas (<\\/b>\\u00a0breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li><li><b>6 mudras\\u00a0<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li><li><b>100 postures, exercises and asanas<\\/b>\\u00a0\\u2013 with these we increase flexibility from head to toe. We are also doing\\u00a0<b>stretching<\\/b>\\u00a0exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br \\/>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li><li><b>Laughter yoga\\u00a0<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br \\/>We also do\\u00a0<b>Super Brain yoga<\\/b>\\u00a0to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li><li><b>Shavasana\\u00a0<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li><li><b>Motivational poem<\\/b>\\u00a0\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li><li><b>Mantra<\\/b>\\u00a0\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li><\\/ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00\\u00a0<\\/strong><br \\/><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7016,939,'_elementor_page_assets','a:0:{}'),(7018,940,'_elementor_edit_mode','builder'),(7019,940,'_elementor_template_type','wp-page'),(7020,940,'_elementor_version','3.13.3'),(7021,940,'_wp_page_template','default'),(7022,940,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7023,940,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":902,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g12cf06d74_1280.jpg\"},{\"id\":898,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\"},{\"id\":897,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\"},{\"id\":896,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\"},{\"id\":895,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">To make basic yoga practice easily accessible to everyone without charge.<\\/p><p style=\\\"text-align: justify;\\\">Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i> <\\/i><\\/b>exercise<b>s<i>, <\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p><p style=\\\"text-align: justify;\\\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p><p style=\\\"text-align: justify;\\\">After yoga super food i. e. grapes and banana are available for Yogies.<\\/p><p style=\\\"text-align: justify;\\\">Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7024,940,'_elementor_page_assets','a:0:{}'),(7074,947,'_elementor_edit_mode','builder'),(7026,941,'_elementor_edit_mode','builder'),(7027,941,'_elementor_template_type','wp-page'),(7028,941,'_elementor_version','3.13.3'),(7029,941,'_wp_page_template','default'),(7030,941,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7031,941,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":902,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g12cf06d74_1280.jpg\"},{\"id\":898,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\"},{\"id\":897,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\"},{\"id\":896,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\"},{\"id\":895,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">\\u00a0<\\/p><h5 style=\\\"text-align: justify;\\\">To make basic yoga practice easily accessible to everyone without charge.<\\/h5><h5 style=\\\"text-align: justify;\\\">Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i> <\\/i><\\/b>exercise<b>s<i>, <\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/h5><h5 style=\\\"text-align: justify;\\\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/h5><h5 style=\\\"text-align: justify;\\\">After yoga super food i. e. grapes and banana are available for Yogies.<\\/h5><h5 style=\\\"text-align: justify;\\\">Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/h5>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7032,941,'_elementor_page_assets','a:0:{}'),(7035,942,'_elementor_edit_mode','builder'),(7036,942,'_elementor_template_type','wp-page'),(7037,942,'_elementor_version','3.13.3'),(7038,942,'_wp_page_template','default'),(7039,942,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7040,942,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":902,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g12cf06d74_1280.jpg\"},{\"id\":898,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\"},{\"id\":897,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\"},{\"id\":896,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\"},{\"id\":895,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">\\u00a0<\\/p><h5 style=\\\"text-align: justify;\\\">To make basic yoga practice easily accessible to everyone without charge.<\\/h5><h5 style=\\\"text-align: justify;\\\">Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i> <\\/i><\\/b>exercise<b>s<i>, <\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/h5><h5 style=\\\"text-align: justify;\\\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/h5><h5 style=\\\"text-align: justify;\\\">After yoga super food i. e. grapes and banana are available for Yogies.<\\/h5><h5 style=\\\"text-align: justify;\\\">Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/h5>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7041,942,'_elementor_page_assets','a:0:{}'),(7042,943,'_elementor_edit_mode','builder'),(7043,943,'_elementor_template_type','wp-page'),(7044,943,'_elementor_version','3.13.3'),(7045,943,'_wp_page_template','default'),(7046,943,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7047,943,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":902,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g12cf06d74_1280.jpg\"},{\"id\":898,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\"},{\"id\":897,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\"},{\"id\":896,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\"},{\"id\":895,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">\\u00a0<\\/p><h5 style=\\\"text-align: justify;\\\">To make basic yoga practice easily accessible to everyone without charge.<\\/h5><h5 style=\\\"text-align: justify;\\\">Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i> <\\/i><\\/b>exercise<b>s<i>, <\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/h5><h5 style=\\\"text-align: justify;\\\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/h5><h5 style=\\\"text-align: justify;\\\">After yoga super food i. e. grapes and banana are available for Yogies.<\\/h5><h5 style=\\\"text-align: justify;\\\">Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/h5>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7048,943,'_elementor_page_assets','a:0:{}'),(7049,944,'_elementor_edit_mode','builder'),(7050,944,'_elementor_template_type','wp-page'),(7051,944,'_elementor_version','3.13.3'),(7052,944,'_wp_page_template','default'),(7053,944,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7054,944,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":902,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g12cf06d74_1280.jpg\"},{\"id\":898,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\"},{\"id\":897,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\"},{\"id\":896,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\"},{\"id\":895,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">\\u00a0<\\/p><h5 style=\\\"text-align: justify;\\\">To make basic yoga practice easily accessible to everyone without charge.<\\/h5><h5 style=\\\"text-align: justify;\\\">Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i> <\\/i><\\/b>exercise<b>s<i>, <\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/h5><h5 style=\\\"text-align: justify;\\\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/h5><h5 style=\\\"text-align: justify;\\\">After yoga super food i. e. grapes and banana are available for Yogies.<\\/h5><h5 style=\\\"text-align: justify;\\\">Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/h5>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7055,944,'_elementor_page_assets','a:0:{}'),(7058,945,'_elementor_edit_mode','builder'),(7059,945,'_elementor_template_type','wp-page'),(7060,945,'_elementor_version','3.13.3'),(7061,945,'_wp_page_template','default'),(7062,945,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7063,945,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":902,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g12cf06d74_1280.jpg\"},{\"id\":898,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\"},{\"id\":897,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\"},{\"id\":896,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\"},{\"id\":895,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">\\u00a0<\\/p><h5 style=\\\"text-align: justify;\\\">To make basic yoga practice easily accessible to everyone without charge.<\\/h5><h5 style=\\\"text-align: justify;\\\">Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i> <\\/i><\\/b>exercise<b>s<i>, <\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/h5><h5 style=\\\"text-align: justify;\\\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/h5><h5 style=\\\"text-align: justify;\\\">After yoga super food i. e. grapes and banana are available for Yogies.<\\/h5><h5 style=\\\"text-align: justify;\\\">Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/h5>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7064,945,'_elementor_page_assets','a:0:{}'),(7066,946,'_elementor_edit_mode','builder'),(7067,946,'_elementor_template_type','wp-page'),(7068,946,'_elementor_version','3.13.3'),(7069,946,'_wp_page_template','default'),(7070,946,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7071,946,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":902,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g12cf06d74_1280.jpg\"},{\"id\":898,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\"},{\"id\":897,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\"},{\"id\":896,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\"},{\"id\":895,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">\\u00a0<\\/p><h5 style=\\\"text-align: justify;\\\">To make basic yoga practice easily accessible to everyone without charge.<\\/h5><h5 style=\\\"text-align: justify;\\\">Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i> <\\/i><\\/b>exercise<b>s<i>, <\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/h5><h5 style=\\\"text-align: justify;\\\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/h5><h5 style=\\\"text-align: justify;\\\">After yoga super food i. e. grapes and banana are available for Yogies.<\\/h5><h5 style=\\\"text-align: justify;\\\">Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/h5>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7072,946,'_elementor_page_assets','a:0:{}'),(7075,947,'_elementor_template_type','wp-page'),(7076,947,'_elementor_version','3.13.3'),(7077,947,'_wp_page_template','default'),(7078,947,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7079,947,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":902,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g12cf06d74_1280.jpg\"},{\"id\":898,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\"},{\"id\":897,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\"},{\"id\":896,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\"},{\"id\":895,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">To make basic yoga practice easily accessible to everyone without charge.<\\/p><p style=\\\"text-align: justify;\\\">Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i> <\\/i><\\/b>exercise<b>s<i>, <\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p><p style=\\\"text-align: justify;\\\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p><p style=\\\"text-align: justify;\\\">After yoga super food i. e. grapes and banana are available for Yogies.<\\/p><p style=\\\"text-align: justify;\\\">Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7080,947,'_elementor_page_assets','a:0:{}'),(8231,1083,'_elementor_edit_mode','builder'),(8232,1083,'_elementor_template_type','wp-page'),(8233,1083,'_elementor_version','3.13.3'),(8234,1083,'_wp_page_template','default'),(8235,1083,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8236,1083,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":902,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g12cf06d74_1280.jpg\"},{\"id\":898,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\"},{\"id\":897,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\"},{\"id\":896,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\"},{\"id\":895,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">To make basic yoga practice easily accessible to everyone without charge.<\\/p><p style=\\\"text-align: justify;\\\">Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i> <\\/i><\\/b>exercise<b>s<i>, <\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p><p style=\\\"text-align: justify;\\\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p><p style=\\\"text-align: justify;\\\">After yoga super food i. e. grapes and banana are available for Yogies.<\\/p><p style=\\\"text-align: justify;\\\">Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7090,948,'_elementor_page_assets','a:0:{}'),(7092,949,'_elementor_edit_mode','builder'),(7093,949,'_elementor_template_type','wp-post'),(7094,949,'_elementor_version','3.13.3'),(7095,949,'_wp_page_template','default'),(7096,949,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7097,949,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span lang=\\\"EN\\\">In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">I then undertook two other trainings, totaling 500 hours in Hatha Yoga.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. \\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0For several years, yoga and meditation have been an integral part of my life.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.\\u00a0<\\/span><span lang=\\\"EN-CA\\\">An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community<\\/span><span lang=\\\"EN-CA\\\">. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">With gratitude.<\\/span><span lang=\\\"EN-CA\\\">\\u00a0\\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7098,949,'_elementor_page_assets','a:0:{}'),(7100,950,'_elementor_edit_mode','builder'),(7101,950,'_elementor_template_type','wp-post'),(7102,950,'_elementor_version','3.13.3'),(7103,950,'_wp_page_template','default'),(7104,950,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7105,950,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span lang=\\\"EN\\\">In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">I then undertook two other trainings, totaling 500 hours in Hatha Yoga.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. \\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0For several years, yoga and meditation have been an integral part of my life.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.\\u00a0<\\/span><span lang=\\\"EN-CA\\\">An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community<\\/span><span lang=\\\"EN-CA\\\">. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">With gratitude.<\\/span><span lang=\\\"EN-CA\\\">\\u00a0\\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7106,950,'_elementor_page_assets','a:0:{}'),(7110,951,'_elementor_edit_mode','builder'),(7111,951,'_elementor_template_type','wp-post'),(7112,951,'_elementor_version','3.13.3'),(7113,951,'_wp_page_template','default'),(7114,951,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7115,951,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span lang=\\\"EN\\\">In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">I then undertook two other trainings, totaling 500 hours in Hatha Yoga.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. \\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0For several years, yoga and meditation have been an integral part of my life.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.\\u00a0<\\/span><span lang=\\\"EN-CA\\\">An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community<\\/span><span lang=\\\"EN-CA\\\">. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">With gratitude.<\\/span><span lang=\\\"EN-CA\\\">\\u00a0\\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7116,951,'_elementor_page_assets','a:0:{}'),(7118,952,'_elementor_edit_mode','builder'),(7119,952,'_elementor_template_type','wp-post'),(7120,952,'_elementor_version','3.13.3'),(7121,952,'_wp_page_template','default'),(7122,952,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7123,952,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span lang=\\\"EN\\\">In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">I then undertook two other trainings, totaling 500 hours in Hatha Yoga.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. \\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0For several years, yoga and meditation have been an integral part of my life.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.\\u00a0<\\/span><span lang=\\\"EN-CA\\\">An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community<\\/span><span lang=\\\"EN-CA\\\">. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">With gratitude.<\\/span><span lang=\\\"EN-CA\\\">\\u00a0\\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7124,952,'_elementor_page_assets','a:0:{}'),(7126,953,'_elementor_edit_mode','builder'),(7127,953,'_elementor_template_type','wp-post'),(7128,953,'_elementor_version','3.13.3'),(7129,953,'_wp_page_template','default'),(7130,953,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7131,953,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mihaela Bostan Frandes\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>\\u00a0<\\/div><div>\\u00a0<\\/div><div>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/div><div>\\u00a0<\\/div><div>\\u00a0<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span lang=\\\"EN\\\">In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">I then undertook two other trainings, totaling 500 hours in Hatha Yoga.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. \\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0For several years, yoga and meditation have been an integral part of my life.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.\\u00a0<\\/span><span lang=\\\"EN-CA\\\">An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community<\\/span><span lang=\\\"EN-CA\\\">. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">With gratitude.<\\/span><span lang=\\\"EN-CA\\\">\\u00a0\\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7132,953,'_elementor_page_assets','a:0:{}'),(7404,276,'_elementor_css','a:6:{s:4:\"time\";i:1686273739;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:\"\";}'),(7143,955,'_elementor_edit_mode','builder'),(7144,955,'_elementor_template_type','wp-post'),(7145,955,'_elementor_version','3.13.3'),(7146,955,'_wp_page_template','default'),(7147,955,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7148,955,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mihaela Bostan Frandes\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>\\u00a0<\\/div><div>\\u00a0<\\/div><div>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/div><div>\\u00a0<\\/div><div>\\u00a0<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span lang=\\\"EN\\\">In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">I then undertook two other trainings, totaling 500 hours in Hatha Yoga.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. \\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0For several years, yoga and meditation have been an integral part of my life.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.\\u00a0<\\/span><span lang=\\\"EN-CA\\\">An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community<\\/span><span lang=\\\"EN-CA\\\">. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">With gratitude.<\\/span><span lang=\\\"EN-CA\\\">\\u00a0\\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7170,958,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mihaela Bostan Frandes\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>\\u00a0<\\/div><div>\\u00a0<\\/div><div>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/div><div>\\u00a0<\\/div><div>\\u00a0<\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span lang=\\\"EN\\\">In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">I then undertook two other trainings, totaling 500 hours in Hatha Yoga.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. \\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0For several years, yoga and meditation have been an integral part of my life.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.\\u00a0<\\/span><span lang=\\\"EN-CA\\\">An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community<\\/span><span lang=\\\"EN-CA\\\">. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">With gratitude.<\\/span><span lang=\\\"EN-CA\\\">\\u00a0\\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7163,957,'_elementor_page_assets','a:0:{}'),(7253,970,'_elementor_edit_mode','builder'),(7157,957,'_elementor_edit_mode','builder'),(7158,957,'_elementor_template_type','wp-post'),(7159,957,'_elementor_version','3.13.3'),(7160,957,'_wp_page_template','default'),(7161,957,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7162,957,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mihaela Bostan Frandes\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>\\u00a0<\\/div><div>\\u00a0<\\/div><div>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/div><div>\\u00a0<\\/div><div>\\u00a0<\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span lang=\\\"EN\\\">In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">I then undertook two other trainings, totaling 500 hours in Hatha Yoga.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. \\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0For several years, yoga and meditation have been an integral part of my life.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.\\u00a0<\\/span><span lang=\\\"EN-CA\\\">An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community<\\/span><span lang=\\\"EN-CA\\\">. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">With gratitude.<\\/span><span lang=\\\"EN-CA\\\">\\u00a0\\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7149,955,'_elementor_page_assets','a:0:{}'),(7150,956,'_elementor_edit_mode','builder'),(7151,956,'_elementor_template_type','wp-post'),(7152,956,'_elementor_version','3.13.3'),(7153,956,'_wp_page_template','default'),(7154,956,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7155,956,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mihaela Bostan Frandes\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>\\u00a0<\\/div><div>\\u00a0<\\/div><div>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/div><div>\\u00a0<\\/div><div>\\u00a0<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span lang=\\\"EN\\\">In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">I then undertook two other trainings, totaling 500 hours in Hatha Yoga.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. \\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0For several years, yoga and meditation have been an integral part of my life.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.\\u00a0<\\/span><span lang=\\\"EN-CA\\\">An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community<\\/span><span lang=\\\"EN-CA\\\">. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">With gratitude.<\\/span><span lang=\\\"EN-CA\\\">\\u00a0\\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7156,956,'_elementor_page_assets','a:0:{}'),(7165,958,'_elementor_edit_mode','builder'),(7166,958,'_elementor_template_type','wp-post'),(7167,958,'_elementor_version','3.13.3'),(7168,958,'_wp_page_template','default'),(7169,958,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7171,958,'_elementor_page_assets','a:0:{}'),(7172,959,'_elementor_edit_mode','builder'),(7173,959,'_elementor_template_type','wp-post'),(7174,959,'_elementor_version','3.13.3'),(7175,959,'_wp_page_template','default'),(7176,959,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7177,959,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mihaela Bostan Frandes\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>\\u00a0<\\/div><div>\\u00a0<\\/div><div>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/div><div>\\u00a0<\\/div><div>\\u00a0<\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span lang=\\\"EN\\\">In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">I then undertook two other trainings, totaling 500 hours in Hatha Yoga.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. \\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0For several years, yoga and meditation have been an integral part of my life.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.\\u00a0<\\/span><span lang=\\\"EN-CA\\\">An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community<\\/span><span lang=\\\"EN-CA\\\">. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">With gratitude.<\\/span><span lang=\\\"EN-CA\\\">\\u00a0\\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7178,959,'_elementor_page_assets','a:0:{}'),(7179,960,'_elementor_edit_mode','builder'),(7180,960,'_elementor_template_type','wp-post'),(7181,960,'_elementor_version','3.13.3'),(7182,960,'_wp_page_template','default'),(7183,960,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7184,960,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mihaela Bostan Frandes\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>\\u00a0<\\/div><div>\\u00a0<\\/div><div>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/div><div>\\u00a0<\\/div><div>\\u00a0<\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span lang=\\\"EN\\\">In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">I then undertook two other trainings, totaling 500 hours in Hatha Yoga.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. \\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0For several years, yoga and meditation have been an integral part of my life.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.\\u00a0<\\/span><span lang=\\\"EN-CA\\\">An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community<\\/span><span lang=\\\"EN-CA\\\">. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">With gratitude.<\\/span><span lang=\\\"EN-CA\\\">\\u00a0\\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7185,960,'_elementor_page_assets','a:0:{}'),(7195,962,'_elementor_edit_mode','builder'),(7196,962,'_elementor_template_type','wp-post'),(7197,962,'_elementor_version','3.13.3'),(7198,962,'_wp_page_template','default'),(7199,962,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7200,962,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mihaela Bostan Frandes\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>\\u00a0<\\/div><div>\\u00a0<\\/div><div>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/div><div>\\u00a0<\\/div><div>\\u00a0<\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span lang=\\\"EN\\\">In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">I then undertook two other trainings, totaling 500 hours in Hatha Yoga.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. \\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0For several years, yoga and meditation have been an integral part of my life.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.\\u00a0<\\/span><span lang=\\\"EN-CA\\\">An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community<\\/span><span lang=\\\"EN-CA\\\">. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">With gratitude.<\\/span><span lang=\\\"EN-CA\\\">\\u00a0\\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7231,967,'_elementor_edit_mode','builder'),(7232,967,'_elementor_template_type','wp-post'),(7233,967,'_elementor_version','3.13.3'),(7234,967,'_wp_page_template','default'),(7235,967,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7236,967,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>\\u00a0<\\/p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.\\u00a0Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.\\u00a0Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.\\u00a0\\u00a0<\\/p><p>\\u00a0<\\/p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga.\\u00a0In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0For several years, yoga and meditation have been an integral part of my life.\\u00a0In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/p><\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7209,964,'_elementor_edit_mode','builder'),(7210,964,'_elementor_template_type','wp-post'),(7211,964,'_elementor_version','3.13.3'),(7212,964,'_wp_page_template','default'),(7213,964,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7214,964,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><span class=\\\"im\\\" style=\\\"color: rgb(80, 0, 80); font-family: Calibri, Helvetica, sans-serif;\\\"><p class=\\\"MsoNormal\\\" style=\\\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\\\"><span style=\\\"font-size: 14pt;\\\">&nbsp;<u><\\/u><\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">In 2011, I started practicing yoga with Meera and Mr. Saxena&nbsp;&nbsp;at the International School of St-Lambert.<\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">&nbsp;<\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.<\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">&nbsp;<\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.<\\/span>&nbsp;<u><\\/u>&nbsp;<u><\\/u><\\/p><\\/span><span style=\\\"color: rgb(0, 0, 0); font-family: Calibri, Helvetica, sans-serif;\\\"><span class=\\\"im\\\" style=\\\"color: rgb(80, 0, 80);\\\"><p class=\\\"MsoNormal\\\" style=\\\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\\\"><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\"><u><\\/u>&nbsp;<u><\\/u><\\/span><\\/p><p class=\\\"MsoNormal\\\" style=\\\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\\\"><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">I then undertook two other trainings, totaling 500 hours in Hatha Yoga.<\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">&nbsp;<\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.<\\/span><u><\\/u>&nbsp;<u><\\/u><\\/p><\\/span><span class=\\\"im\\\" style=\\\"color: rgb(80, 0, 80);\\\"><p class=\\\"MsoNormal\\\" style=\\\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\\\"><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\"><u><\\/u>&nbsp;<u><\\/u><\\/span><\\/p><p class=\\\"MsoNormal\\\" style=\\\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\\\"><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">&nbsp;<\\/span><span style=\\\"font-size: 16pt;\\\">For several years, yoga and meditation have been an integral part of my life.<\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 16pt;\\\">&nbsp;<\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\"><\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 16pt;\\\">In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.<\\/span><u><\\/u><span style=\\\"font-size: 16pt;\\\">&nbsp;<\\/span><u><\\/u><\\/p><\\/span><span class=\\\"im\\\" style=\\\"color: rgb(80, 0, 80);\\\"><p class=\\\"MsoNormal\\\" style=\\\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\\\"><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\"><u><\\/u><span style=\\\"font-size: 16pt;\\\">&nbsp;<\\/span><u><\\/u><\\/span><\\/p><p class=\\\"MsoNormal\\\" style=\\\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\\\"><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\"><span style=\\\"font-size: 16pt;\\\">&nbsp;<\\/span><\\/span><span style=\\\"font-size: 16pt;\\\">I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/span><\\/p><\\/span><\\/span><\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7201,962,'_elementor_page_assets','a:0:{}'),(7202,963,'_elementor_edit_mode','builder'),(7203,963,'_elementor_template_type','wp-post'),(7204,963,'_elementor_version','3.13.3'),(7205,963,'_wp_page_template','default'),(7206,963,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7207,963,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mihaela Bostan Frandes\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>\\u00a0<\\/div><div>\\u00a0<\\/div><div>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/div><div>\\u00a0<\\/div><div>\\u00a0<\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span lang=\\\"EN\\\">In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">I then undertook two other trainings, totaling 500 hours in Hatha Yoga.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. \\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0For several years, yoga and meditation have been an integral part of my life.<\\/span><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">\\u00a0<\\/span><span lang=\\\"EN\\\">\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.\\u00a0<\\/span><span lang=\\\"EN-CA\\\">An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community<\\/span><span lang=\\\"EN-CA\\\">. \\u00a0<\\/span><\\/p><p><span lang=\\\"EN\\\">With gratitude.<\\/span><span lang=\\\"EN-CA\\\">\\u00a0\\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7208,963,'_elementor_page_assets','a:0:{}'),(7215,964,'_elementor_page_assets','a:0:{}'),(7217,965,'_elementor_edit_mode','builder'),(7218,965,'_elementor_template_type','wp-post'),(7219,965,'_elementor_version','3.13.3'),(7220,965,'_wp_page_template','default'),(7221,965,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7222,965,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><span class=\\\"im\\\" style=\\\"color: rgb(80, 0, 80); font-family: Calibri, Helvetica, sans-serif;\\\"><p class=\\\"MsoNormal\\\" style=\\\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\\\"><span style=\\\"font-size: 14pt;\\\">&nbsp;<u><\\/u><\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">In 2011, I started practicing yoga with Meera and Mr. Saxena&nbsp;&nbsp;at the International School of St-Lambert.<\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">&nbsp;<\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.<\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">&nbsp;<\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.<\\/span>&nbsp;<u><\\/u>&nbsp;<u><\\/u><\\/p><\\/span><span style=\\\"color: rgb(0, 0, 0); font-family: Calibri, Helvetica, sans-serif;\\\"><span class=\\\"im\\\" style=\\\"color: rgb(80, 0, 80);\\\"><p class=\\\"MsoNormal\\\" style=\\\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\\\"><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\"><u><\\/u>&nbsp;<u><\\/u><\\/span><\\/p><p class=\\\"MsoNormal\\\" style=\\\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\\\"><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">I then undertook two other trainings, totaling 500 hours in Hatha Yoga.<\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">&nbsp;<\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.<\\/span><u><\\/u>&nbsp;<u><\\/u><\\/p><\\/span><span class=\\\"im\\\" style=\\\"color: rgb(80, 0, 80);\\\"><p class=\\\"MsoNormal\\\" style=\\\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\\\"><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\"><u><\\/u>&nbsp;<u><\\/u><\\/span><\\/p><p class=\\\"MsoNormal\\\" style=\\\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\\\"><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">&nbsp;<\\/span><span style=\\\"font-size: 16pt;\\\">For several years, yoga and meditation have been an integral part of my life.<\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 16pt;\\\">&nbsp;<\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\"><\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 16pt;\\\">In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.<\\/span><u><\\/u><span style=\\\"font-size: 16pt;\\\">&nbsp;<\\/span><u><\\/u><\\/p><\\/span><span class=\\\"im\\\" style=\\\"color: rgb(80, 0, 80);\\\"><p class=\\\"MsoNormal\\\" style=\\\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\\\"><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\"><u><\\/u><span style=\\\"font-size: 16pt;\\\">&nbsp;<\\/span><u><\\/u><\\/span><\\/p><p class=\\\"MsoNormal\\\" style=\\\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\\\"><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\"><span style=\\\"font-size: 16pt;\\\">&nbsp;<\\/span><\\/span><span style=\\\"font-size: 16pt;\\\">I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/span><\\/p><\\/span><\\/span><\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7223,965,'_elementor_page_assets','a:0:{}'),(7224,966,'_elementor_edit_mode','builder'),(7225,966,'_elementor_template_type','wp-post'),(7226,966,'_elementor_version','3.13.3'),(7227,966,'_wp_page_template','default'),(7228,966,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7229,966,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><span class=\\\"im\\\" style=\\\"color: rgb(80, 0, 80); font-family: Calibri, Helvetica, sans-serif;\\\"><p class=\\\"MsoNormal\\\" style=\\\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\\\"><span style=\\\"font-size: 14pt;\\\">&nbsp;<u><\\/u><\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">In 2011, I started practicing yoga with Meera and Mr. Saxena&nbsp;&nbsp;at the International School of St-Lambert.<\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">&nbsp;<\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.<\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">&nbsp;<\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.<\\/span>&nbsp;<u><\\/u>&nbsp;<u><\\/u><\\/p><\\/span><span style=\\\"color: rgb(0, 0, 0); font-family: Calibri, Helvetica, sans-serif;\\\"><span class=\\\"im\\\" style=\\\"color: rgb(80, 0, 80);\\\"><p class=\\\"MsoNormal\\\" style=\\\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\\\"><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\"><u><\\/u>&nbsp;<u><\\/u><\\/span><\\/p><p class=\\\"MsoNormal\\\" style=\\\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\\\"><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">I then undertook two other trainings, totaling 500 hours in Hatha Yoga.<\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">&nbsp;<\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.<\\/span><u><\\/u>&nbsp;<u><\\/u><\\/p><\\/span><span class=\\\"im\\\" style=\\\"color: rgb(80, 0, 80);\\\"><p class=\\\"MsoNormal\\\" style=\\\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\\\"><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\"><u><\\/u>&nbsp;<u><\\/u><\\/span><\\/p><p class=\\\"MsoNormal\\\" style=\\\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\\\"><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\">&nbsp;<\\/span><span style=\\\"font-size: 16pt;\\\">For several years, yoga and meditation have been an integral part of my life.<\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 16pt;\\\">&nbsp;<\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\"><\\/span><span lang=\\\"EN\\\" style=\\\"font-size: 16pt;\\\">In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.<\\/span><u><\\/u><span style=\\\"font-size: 16pt;\\\">&nbsp;<\\/span><u><\\/u><\\/p><\\/span><span class=\\\"im\\\" style=\\\"color: rgb(80, 0, 80);\\\"><p class=\\\"MsoNormal\\\" style=\\\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\\\"><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\"><u><\\/u><span style=\\\"font-size: 16pt;\\\">&nbsp;<\\/span><u><\\/u><\\/span><\\/p><p class=\\\"MsoNormal\\\" style=\\\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\\\"><span lang=\\\"EN\\\" style=\\\"font-size: 14pt;\\\"><span style=\\\"font-size: 16pt;\\\">&nbsp;<\\/span><\\/span><span style=\\\"font-size: 16pt;\\\">I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/span><\\/p><\\/span><\\/span><\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7230,966,'_elementor_page_assets','a:0:{}'),(7237,967,'_elementor_page_assets','a:0:{}'),(7239,968,'_elementor_edit_mode','builder'),(7240,968,'_elementor_template_type','wp-post'),(7241,968,'_elementor_version','3.13.3'),(7242,968,'_wp_page_template','default'),(7243,968,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7244,968,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>\\u00a0<\\/p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.\\u00a0Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.\\u00a0Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.\\u00a0\\u00a0<\\/p><p>\\u00a0<\\/p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga.\\u00a0In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0For several years, yoga and meditation have been an integral part of my life.\\u00a0In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/p><\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7245,968,'_elementor_page_assets','a:0:{}'),(7246,969,'_elementor_edit_mode','builder'),(7247,969,'_elementor_template_type','wp-post'),(7248,969,'_elementor_version','3.13.3'),(7249,969,'_wp_page_template','default'),(7250,969,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7251,969,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>\\u00a0<\\/p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.\\u00a0Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.\\u00a0Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.\\u00a0\\u00a0<\\/p><p>\\u00a0<\\/p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga.\\u00a0In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0For several years, yoga and meditation have been an integral part of my life.\\u00a0In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/p><\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7252,969,'_elementor_page_assets','a:0:{}'),(7254,970,'_elementor_template_type','wp-post'),(7255,970,'_elementor_version','3.13.3'),(7256,970,'_wp_page_template','default'),(7257,970,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7258,970,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>\\u00a0<\\/p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.\\u00a0Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.\\u00a0Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.\\u00a0\\u00a0<\\/p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga.\\u00a0In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.\\u00a0<\\/p><p>ears, yoga and meditation have been an integral part of my life.\\u00a0In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.\\u00a0<\\/p><p>\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/p><\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7259,970,'_elementor_page_assets','a:0:{}'),(7261,971,'_elementor_edit_mode','builder'),(7262,971,'_elementor_template_type','wp-post'),(7263,971,'_elementor_version','3.13.3'),(7264,971,'_wp_page_template','default'),(7265,971,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7266,971,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>\\u00a0<\\/p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.\\u00a0Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.\\u00a0Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.\\u00a0\\u00a0<\\/p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga.\\u00a0In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.\\u00a0<\\/p><p>ears, yoga and meditation have been an integral part of my life.\\u00a0In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.\\u00a0<\\/p><p>\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/p><\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7267,971,'_elementor_page_assets','a:0:{}'),(7268,972,'_elementor_edit_mode','builder'),(7269,972,'_elementor_template_type','wp-post'),(7270,972,'_elementor_version','3.13.3'),(7271,972,'_wp_page_template','default'),(7272,972,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7273,972,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>\\u00a0<\\/p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.\\u00a0Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.\\u00a0Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.\\u00a0\\u00a0<\\/p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga.\\u00a0In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.\\u00a0<\\/p><p>ears, yoga and meditation have been an integral part of my life.\\u00a0In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.\\u00a0<\\/p><p>\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/p><\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7274,972,'_elementor_page_assets','a:0:{}'),(7275,973,'_elementor_edit_mode','builder'),(7276,973,'_elementor_template_type','wp-post'),(7277,973,'_elementor_version','3.13.3'),(7278,973,'_wp_page_template','default'),(7279,973,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7280,973,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>\\u00a0<\\/p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.\\u00a0Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.\\u00a0Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.\\u00a0\\u00a0<\\/p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga.\\u00a0In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.\\u00a0<\\/p><p>ears, yoga and meditation have been an integral part of my life.\\u00a0In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.\\u00a0<\\/p><p>\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/p><\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35c11b3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b3d00d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7281,973,'_elementor_page_assets','a:0:{}'),(7285,975,'_elementor_edit_mode','builder'),(7286,975,'_elementor_template_type','wp-post'),(7287,975,'_elementor_version','3.13.3'),(7288,975,'_wp_page_template','default'),(7289,975,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7290,975,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>\\u00a0<\\/p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.\\u00a0Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.\\u00a0Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.\\u00a0\\u00a0<\\/p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga.\\u00a0In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.\\u00a0<\\/p><p>ears, yoga and meditation have been an integral part of my life.\\u00a0In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.\\u00a0<\\/p><p>\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/p><\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35c11b3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b3d00d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7283,974,'_wp_attached_file','2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg'),(7284,974,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:962;s:6:\"height\";i:1280;s:4:\"file\";s:56:\"2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg\";s:8:\"filesize\";i:314968;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20505;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-770x1024.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154983;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7652;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:57:\"Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1022;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154349;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7291,975,'_elementor_page_assets','a:0:{}'),(7292,976,'_elementor_edit_mode','builder'),(7293,976,'_elementor_template_type','wp-post'),(7294,976,'_elementor_version','3.13.3'),(7295,976,'_wp_page_template','default'),(7296,976,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7297,976,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>\\u00a0<\\/p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.\\u00a0Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.\\u00a0Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.\\u00a0\\u00a0<\\/p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga.\\u00a0In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.\\u00a0<\\/p><p>ears, yoga and meditation have been an integral part of my life.\\u00a0In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.\\u00a0<\\/p><p>\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/p><\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35c11b3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b3d00d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\",\"id\":895,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7298,976,'_elementor_page_assets','a:0:{}'),(7299,977,'_elementor_edit_mode','builder'),(7300,977,'_elementor_template_type','wp-post'),(7301,977,'_elementor_version','3.13.3'),(7302,977,'_wp_page_template','default'),(7303,977,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7304,977,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>\\u00a0<\\/p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.\\u00a0Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.\\u00a0Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.\\u00a0\\u00a0<\\/p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga.\\u00a0In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.\\u00a0<\\/p><p>ears, yoga and meditation have been an integral part of my life.\\u00a0In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.\\u00a0<\\/p><p>\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/p><\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35c11b3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b3d00d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/06\\/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg\",\"id\":974,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7305,977,'_elementor_page_assets','a:0:{}'),(7307,978,'_elementor_edit_mode','builder'),(7308,978,'_elementor_template_type','wp-post'),(7309,978,'_elementor_version','3.13.3'),(7310,978,'_wp_page_template','default'),(7311,978,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7312,978,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>\\u00a0<\\/p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.\\u00a0Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.\\u00a0Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.\\u00a0\\u00a0<\\/p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga.\\u00a0In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.\\u00a0<\\/p><p>ears, yoga and meditation have been an integral part of my life.\\u00a0In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.\\u00a0<\\/p><p>\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/p><\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35c11b3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b3d00d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/06\\/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg\",\"id\":974,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7313,978,'_elementor_page_assets','a:0:{}'),(7314,979,'_elementor_edit_mode','builder'),(7315,979,'_elementor_template_type','wp-post'),(7316,979,'_elementor_version','3.13.3'),(7317,979,'_wp_page_template','default'),(7318,979,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7319,979,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>\\u00a0<\\/p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.\\u00a0Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.\\u00a0Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.\\u00a0\\u00a0<\\/p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga.\\u00a0In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.\\u00a0<\\/p><p>ears, yoga and meditation have been an integral part of my life.\\u00a0In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.\\u00a0<\\/p><p>\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/p><\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35c11b3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b3d00d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/06\\/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg\",\"id\":974,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7320,979,'_elementor_page_assets','a:0:{}'),(7321,980,'_elementor_edit_mode','builder'),(7322,980,'_elementor_template_type','wp-post'),(7323,980,'_elementor_version','3.13.3'),(7324,980,'_wp_page_template','default'),(7325,980,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7326,980,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>\\u00a0<\\/p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.\\u00a0Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.\\u00a0Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.\\u00a0\\u00a0<\\/p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga.\\u00a0In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.\\u00a0<\\/p><p>ears, yoga and meditation have been an integral part of my life.\\u00a0In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.\\u00a0<\\/p><p>\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/p><\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35c11b3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b3d00d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/06\\/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg\",\"id\":974,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7327,980,'_elementor_page_assets','a:0:{}'),(7329,981,'_elementor_edit_mode','builder'),(7330,981,'_elementor_template_type','wp-post'),(7331,981,'_elementor_version','3.13.3'),(7332,981,'_wp_page_template','default'),(7333,981,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7334,981,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>\\u00a0<\\/p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.\\u00a0Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.\\u00a0Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.\\u00a0\\u00a0<\\/p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga.\\u00a0In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.\\u00a0<\\/p><p>ears, yoga and meditation have been an integral part of my life.\\u00a0In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.\\u00a0<\\/p><p>\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/p><\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35c11b3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b3d00d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/06\\/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg\",\"id\":974,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7335,981,'_elementor_page_assets','a:0:{}'),(7336,982,'_elementor_edit_mode','builder'),(7337,982,'_elementor_template_type','wp-post'),(7338,982,'_elementor_version','3.13.3'),(7339,982,'_wp_page_template','default'),(7340,982,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7341,982,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>\\u00a0<\\/p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.\\u00a0Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.\\u00a0Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.\\u00a0\\u00a0<\\/p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga.\\u00a0In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.\\u00a0<\\/p><p>ears, yoga and meditation have been an integral part of my life.\\u00a0In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.\\u00a0<\\/p><p>\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/p><\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35c11b3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b3d00d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/06\\/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg\",\"id\":974,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7342,982,'_elementor_page_assets','a:0:{}'),(7343,983,'_elementor_edit_mode','builder'),(7344,983,'_elementor_template_type','wp-post'),(7345,983,'_elementor_version','3.13.3'),(7346,983,'_wp_page_template','default'),(7347,983,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7348,983,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2135575\",\"elType\":\"widget\",\"settings\":{\"title\":\"Present instructor\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>\\u00a0<\\/p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.\\u00a0Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.\\u00a0Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.\\u00a0\\u00a0<\\/p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga.\\u00a0In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.\\u00a0<\\/p><p>ears, yoga and meditation have been an integral part of my life.\\u00a0In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.\\u00a0<\\/p><p>\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/p><\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35c11b3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b3d00d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c3fede7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Past instructor\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/06\\/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg\",\"id\":974,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7349,983,'_elementor_page_assets','a:0:{}'),(7351,984,'_elementor_edit_mode','builder'),(7352,984,'_elementor_template_type','wp-post'),(7353,984,'_elementor_version','3.13.3'),(7354,984,'_wp_page_template','default'),(7355,984,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7356,984,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2135575\",\"elType\":\"widget\",\"settings\":{\"title\":\"Present instructor\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>\\u00a0<\\/p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.\\u00a0Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.\\u00a0Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.\\u00a0\\u00a0<\\/p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga.\\u00a0In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.\\u00a0<\\/p><p>ears, yoga and meditation have been an integral part of my life.\\u00a0In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.\\u00a0<\\/p><p>\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/p><\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35c11b3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b3d00d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c3fede7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Past instructor\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/06\\/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg\",\"id\":974,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7357,984,'_elementor_page_assets','a:0:{}'),(7358,985,'_elementor_edit_mode','builder'),(7359,985,'_elementor_template_type','wp-post'),(7360,985,'_elementor_version','3.13.3'),(7361,985,'_wp_page_template','default'),(7362,985,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7363,985,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2135575\",\"elType\":\"widget\",\"settings\":{\"title\":\"Present instructor\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>\\u00a0<\\/p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.\\u00a0Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.\\u00a0Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.\\u00a0\\u00a0<\\/p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga.\\u00a0In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.\\u00a0<\\/p><p>ears, yoga and meditation have been an integral part of my life.\\u00a0In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.\\u00a0<\\/p><p>\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/p><\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35c11b3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b3d00d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c3fede7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Past instructor\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/06\\/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg\",\"id\":974,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7364,985,'_elementor_page_assets','a:0:{}'),(7365,986,'_elementor_edit_mode','builder'),(7366,986,'_elementor_template_type','wp-post'),(7367,986,'_elementor_version','3.13.3'),(7368,986,'_wp_page_template','default'),(7369,986,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7370,986,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2135575\",\"elType\":\"widget\",\"settings\":{\"title\":\"Present instructors\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>\\u00a0<\\/p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.\\u00a0Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.\\u00a0Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.\\u00a0\\u00a0<\\/p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga.\\u00a0In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.\\u00a0<\\/p><p>ears, yoga and meditation have been an integral part of my life.\\u00a0In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.\\u00a0<\\/p><p>\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/p><\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35c11b3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b3d00d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c3fede7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Past instructor\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/06\\/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg\",\"id\":974,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7371,986,'_elementor_page_assets','a:0:{}'),(8257,1086,'_elementor_edit_mode','builder'),(8258,1086,'_elementor_template_type','wp-post'),(8259,1086,'_elementor_version','3.13.3'),(8260,1086,'_wp_page_template','default'),(8261,1086,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8262,1086,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2135575\",\"elType\":\"widget\",\"settings\":{\"title\":\"Present instructors\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>\\u00a0<\\/p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.\\u00a0Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.\\u00a0Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.\\u00a0\\u00a0<\\/p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga.\\u00a0In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.\\u00a0<\\/p><p>ears, yoga and meditation have been an integral part of my life.\\u00a0In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.\\u00a0<\\/p><p>\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/p><\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35c11b3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b3d00d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c3fede7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Past instructor\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/06\\/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg\",\"id\":974,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7380,987,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7382,988,'_elementor_template_type','wp-page'),(7383,988,'_elementor_edit_mode','builder'),(7384,988,'_elementor_version','3.13.3'),(7385,988,'_wp_page_template','default'),(7386,988,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7387,988,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">There is this story about a famous research scientist who had made several very important medical breakthroughs. He was being interviewed by a newspaper reporter who asked him why he thought he was able to be so much more creative than the average person. What set him so far apart from others?<\\/p><p style=\\\"text-align: justify;\\\">He responded that, in his opinion, it all came from an experience with his mother that occurred when he was about two years old. He had been trying to remove a bottle of milk from the refrigerator when he lost his grip on the slippery bottle and it fell, spilling its contents all over the kitchen floor - a veritable sea of milk!<\\/p><p style=\\\"text-align: justify;\\\">When his mother came into the kitchen, instead of yelling at him, giving him a lecture, or punishing him, she said, \\\"Robert, what a great and wonderful mess you have made! I have rarely seen such a huge puddle of milk. Well, the damage has already been done. Would you like to get down and play in the milk for a few minutes before we clean it up?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Indeed, he did. After a few minutes, his mother said, \\\"You know, Robert, whenever you make a mess like this, eventually you have to clean it up and restore everything to its proper order. So, how would you like to do that? We could use a sponge, a towel, or a mop. Which do you prefer?\\\"<\\/p><p style=\\\"text-align: justify;\\\">He chose the sponge and together they cleaned up the spilled milk.<\\/p><p style=\\\"text-align: justify;\\\">His mother then said, \\\"You know, what we have here is a failed experiment in how to effectively carry a big milk bottle with two tiny hands. Let\'s go out in the back yard and fill the bottle with water and see if you can discover a way to carry it without dropping it.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The little boy learned that if he grasped the bottle at the top near the lip with both hands, he could carry it without dropping it. This renowned scientist then remarked that it was at that moment that he knew he didn\'t need to be afraid to make mistakes. Instead, he learned that mistakes were just opportunities for learning something new, which is, after all, what scientific experiments are all about. Even if the experiment \\\"doesn\'t work,\\\" we usually learn something valuable from it.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7388,988,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7402,128,'_elementor_css','a:6:{s:4:\"time\";i:1686273704;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(7390,989,'_elementor_template_type','wp-page'),(7391,989,'_elementor_edit_mode','builder'),(7392,989,'_elementor_version','3.13.3'),(7393,989,'_wp_page_template','default'),(7394,989,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7395,989,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">There is this story about a famous research scientist who had made several very important medical breakthroughs. He was being interviewed by a newspaper reporter who asked him why he thought he was able to be so much more creative than the average person. What set him so far apart from others?<\\/p><p style=\\\"text-align: justify;\\\">He responded that, in his opinion, it all came from an experience with his mother that occurred when he was about two years old. He had been trying to remove a bottle of milk from the refrigerator when he lost his grip on the slippery bottle and it fell, spilling its contents all over the kitchen floor - a veritable sea of milk!<\\/p><p style=\\\"text-align: justify;\\\">When his mother came into the kitchen, instead of yelling at him, giving him a lecture, or punishing him, she said, \\\"Robert, what a great and wonderful mess you have made! I have rarely seen such a huge puddle of milk. Well, the damage has already been done. Would you like to get down and play in the milk for a few minutes before we clean it up?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Indeed, he did. After a few minutes, his mother said, \\\"You know, Robert, whenever you make a mess like this, eventually you have to clean it up and restore everything to its proper order. So, how would you like to do that? We could use a sponge, a towel, or a mop. Which do you prefer?\\\"<\\/p><p style=\\\"text-align: justify;\\\">He chose the sponge and together they cleaned up the spilled milk.<\\/p><p style=\\\"text-align: justify;\\\">His mother then said, \\\"You know, what we have here is a failed experiment in how to effectively carry a big milk bottle with two tiny hands. Let\'s go out in the back yard and fill the bottle with water and see if you can discover a way to carry it without dropping it.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The little boy learned that if he grasped the bottle at the top near the lip with both hands, he could carry it without dropping it. This renowned scientist then remarked that it was at that moment that he knew he didn\'t need to be afraid to make mistakes. Instead, he learned that mistakes were just opportunities for learning something new, which is, after all, what scientific experiments are all about. Even if the experiment \\\"doesn\'t work,\\\" we usually learn something valuable from it.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7396,989,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8283,1089,'_elementor_template_type','wp-page'),(8284,1089,'_elementor_edit_mode','builder'),(8285,1089,'_elementor_version','3.13.3'),(8286,1089,'_wp_page_template','default'),(8287,1089,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8288,1089,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">There is this story about a famous research scientist who had made several very important medical breakthroughs. He was being interviewed by a newspaper reporter who asked him why he thought he was able to be so much more creative than the average person. What set him so far apart from others?<\\/p><p style=\\\"text-align: justify;\\\">He responded that, in his opinion, it all came from an experience with his mother that occurred when he was about two years old. He had been trying to remove a bottle of milk from the refrigerator when he lost his grip on the slippery bottle and it fell, spilling its contents all over the kitchen floor - a veritable sea of milk!<\\/p><p style=\\\"text-align: justify;\\\">When his mother came into the kitchen, instead of yelling at him, giving him a lecture, or punishing him, she said, \\\"Robert, what a great and wonderful mess you have made! I have rarely seen such a huge puddle of milk. Well, the damage has already been done. Would you like to get down and play in the milk for a few minutes before we clean it up?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Indeed, he did. After a few minutes, his mother said, \\\"You know, Robert, whenever you make a mess like this, eventually you have to clean it up and restore everything to its proper order. So, how would you like to do that? We could use a sponge, a towel, or a mop. Which do you prefer?\\\"<\\/p><p style=\\\"text-align: justify;\\\">He chose the sponge and together they cleaned up the spilled milk.<\\/p><p style=\\\"text-align: justify;\\\">His mother then said, \\\"You know, what we have here is a failed experiment in how to effectively carry a big milk bottle with two tiny hands. Let\'s go out in the back yard and fill the bottle with water and see if you can discover a way to carry it without dropping it.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The little boy learned that if he grasped the bottle at the top near the lip with both hands, he could carry it without dropping it. This renowned scientist then remarked that it was at that moment that he knew he didn\'t need to be afraid to make mistakes. Instead, he learned that mistakes were just opportunities for learning something new, which is, after all, what scientific experiments are all about. Even if the experiment \\\"doesn\'t work,\\\" we usually learn something valuable from it.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7400,20,'_elementor_css','a:6:{s:4:\"time\";i:1686273687;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:\"\";}'),(7455,995,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7456,995,'_elementor_css','a:6:{s:4:\"time\";i:1686273709;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:\"\";}'),(7467,997,'_elementor_template_type','wp-page'),(7468,997,'_elementor_edit_mode','builder'),(7469,997,'_elementor_version','3.13.4'),(7470,997,'_wp_page_template','default'),(7471,997,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7472,997,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \\\"Who would like this $20 bill?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Hands started going up.<\\/p><p style=\\\"text-align: justify;\\\">He said, \\\"I am going to give this $20 to one of you but first, let me do this.\\\" He proceeded to crumple the dollar bill up.<\\/p><p style=\\\"text-align: justify;\\\">He then asked, \\\"Who still wants it?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Still the hands were up in the air.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Well,\\\" he replied, \\\"What if I do this?\\\" And he dropped it on the ground and started to grind it into the floor with his shoe.<\\/p><p style=\\\"text-align: justify;\\\">He picked it up, now all crumpled and dirty. \\\"Now who still wants it?\\\" Still the hands went into the air.<\\/p><p style=\\\"text-align: justify;\\\">\\\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.<\\/p><p style=\\\"text-align: justify;\\\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.<\\/p><p style=\\\"text-align: justify;\\\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8337,1095,'_wp_page_template','default'),(8338,1095,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8339,1095,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \\\"Who would like this $20 bill?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Hands started going up.<\\/p><p style=\\\"text-align: justify;\\\">He said, \\\"I am going to give this $20 to one of you but first, let me do this.\\\" He proceeded to crumple the dollar bill up.<\\/p><p style=\\\"text-align: justify;\\\">He then asked, \\\"Who still wants it?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Still the hands were up in the air.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Well,\\\" he replied, \\\"What if I do this?\\\" And he dropped it on the ground and started to grind it into the floor with his shoe.<\\/p><p style=\\\"text-align: justify;\\\">He picked it up, now all crumpled and dirty. \\\"Now who still wants it?\\\" Still the hands went into the air.<\\/p><p style=\\\"text-align: justify;\\\">\\\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.<\\/p><p style=\\\"text-align: justify;\\\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.<\\/p><p style=\\\"text-align: justify;\\\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7487,999,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7481,999,'_elementor_template_type','wp-page'),(7482,999,'_elementor_edit_mode','builder'),(7483,999,'_elementor_version','3.13.4'),(7484,999,'_wp_page_template','default'),(7485,999,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7486,999,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \\\"Who would like this $20 bill?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Hands started going up.<\\/p><p style=\\\"text-align: justify;\\\">He said, \\\"I am going to give this $20 to one of you but first, let me do this.\\\" He proceeded to crumple the dollar bill up.<\\/p><p style=\\\"text-align: justify;\\\">He then asked, \\\"Who still wants it?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Still the hands were up in the air.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Well,\\\" he replied, \\\"What if I do this?\\\" And he dropped it on the ground and started to grind it into the floor with his shoe.<\\/p><p style=\\\"text-align: justify;\\\">He picked it up, now all crumpled and dirty. \\\"Now who still wants it?\\\" Still the hands went into the air.<\\/p><p style=\\\"text-align: justify;\\\">\\\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.<\\/p><p style=\\\"text-align: justify;\\\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.<\\/p><p style=\\\"text-align: justify;\\\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7473,997,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7474,998,'_elementor_template_type','wp-page'),(7475,998,'_elementor_edit_mode','builder'),(7476,998,'_elementor_version','3.13.4'),(7477,998,'_wp_page_template','default'),(7478,998,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7479,998,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \\\"Who would like this $20 bill?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Hands started going up.<\\/p><p style=\\\"text-align: justify;\\\">He said, \\\"I am going to give this $20 to one of you but first, let me do this.\\\" He proceeded to crumple the dollar bill up.<\\/p><p style=\\\"text-align: justify;\\\">He then asked, \\\"Who still wants it?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Still the hands were up in the air.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Well,\\\" he replied, \\\"What if I do this?\\\" And he dropped it on the ground and started to grind it into the floor with his shoe.<\\/p><p style=\\\"text-align: justify;\\\">He picked it up, now all crumpled and dirty. \\\"Now who still wants it?\\\" Still the hands went into the air.<\\/p><p style=\\\"text-align: justify;\\\">\\\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.<\\/p><p style=\\\"text-align: justify;\\\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.<\\/p><p style=\\\"text-align: justify;\\\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7480,998,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8334,1095,'_elementor_template_type','wp-page'),(8335,1095,'_elementor_edit_mode','builder'),(8336,1095,'_elementor_version','3.13.4'),(8358,364,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8356,1097,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8357,1097,'_elementor_css','a:6:{s:4:\"time\";i:1686274688;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:\"\";}'),(8351,1097,'_elementor_edit_mode','builder'),(8352,1097,'_elementor_version','3.13.4'),(8353,1097,'_wp_page_template','default'),(8354,1097,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8355,1097,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \\\"Who would like this $20 bill?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Hands started going up.<\\/p><p style=\\\"text-align: justify;\\\">He said, \\\"I am going to give this $20 to one of you but first, let me do this.\\\" He proceeded to crumple the dollar bill up.<\\/p><p style=\\\"text-align: justify;\\\">He then asked, \\\"Who still wants it?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Still the hands were up in the air.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Well,\\\" he replied, \\\"What if I do this?\\\" And he dropped it on the ground and started to grind it into the floor with his shoe.<\\/p><p style=\\\"text-align: justify;\\\">He picked it up, now all crumpled and dirty. \\\"Now who still wants it?\\\" Still the hands went into the air.<\\/p><p style=\\\"text-align: justify;\\\">\\\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.<\\/p><p style=\\\"text-align: justify;\\\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.<\\/p><p style=\\\"text-align: justify;\\\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8350,1097,'_elementor_template_type','wp-page'),(9030,1179,'_elementor_version','3.13.4'),(9031,1179,'_wp_page_template','default');
INSERT INTO `wpjv_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (9032,1179,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-copia.jpg\",\"id\":887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge.<\\/p>\\n<p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>&nbsp;<\\/i><\\/b>exercise<b>s<i>,&nbsp;<\\/i><\\/b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p>\\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p>\\n<p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p>\\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p><ol><li><b>Workout<\\/b>\\u00a0\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li><li><b>Sun Salutation<\\/b>\\u00a0\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li><li><b>Motivational discourse<\\/b>\\u00a0\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li><li><b>Acupressure<\\/b>\\u00a0(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,\\u00a0 middle of your palm for kidney problems and\\u00a0 under the thumb for the well being of thyroid.<\\/li><li><b>Eyes and neck exercises<\\/b>\\u00a0\\u2013 we take care of every part of the body.<br \\/>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>\\u00a0\\u00a0\\u00a0\\u00a0<\\/b><br \\/>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li><li><b>Seven Pranayamas (<\\/b>\\u00a0breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li><li><b>6 mudras\\u00a0<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li><li><b>100 postures, exercises and asanas<\\/b>\\u00a0\\u2013 with these we increase flexibility from head to toe. We are also doing\\u00a0<b>stretching<\\/b>\\u00a0exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br \\/>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li><li><b>Laughter yoga\\u00a0<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br \\/>We also do\\u00a0<b>Super Brain yoga<\\/b>\\u00a0to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li><li><b>Shavasana\\u00a0<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li><li><b>Motivational poem<\\/b>\\u00a0\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li><li><b>Mantra<\\/b>\\u00a0\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li><\\/ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00\\u00a0<\\/strong><br \\/><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7945,1049,'_elementor_page_assets','a:0:{}'),(7946,1049,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7947,1049,'_elementor_css','a:6:{s:4:\"time\";i:1686279326;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(7943,1049,'_wp_page_template','default'),(7944,1049,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-copia.jpg\",\"id\":887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge.<\\/p>\\n<p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>&nbsp;<\\/i><\\/b>exercise<b>s<i>,&nbsp;<\\/i><\\/b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p>\\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p>\\n<p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p>\\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p><ol><li><b>Workout<\\/b>\\u00a0\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li><li><b>Sun Salutation<\\/b>\\u00a0\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li><li><b>Motivational discourse<\\/b>\\u00a0\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li><li><b>Acupressure<\\/b>\\u00a0(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,\\u00a0 middle of your palm for kidney problems and\\u00a0 under the thumb for the well being of thyroid.<\\/li><li><b>Eyes and neck exercises<\\/b>\\u00a0\\u2013 we take care of every part of the body.<br \\/>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>\\u00a0\\u00a0\\u00a0\\u00a0<\\/b><br \\/>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li><li><b>Seven Pranayamas (<\\/b>\\u00a0breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li><li><b>6 mudras\\u00a0<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li><li><b>100 postures, exercises and asanas<\\/b>\\u00a0\\u2013 with these we increase flexibility from head to toe. We are also doing\\u00a0<b>stretching<\\/b>\\u00a0exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br \\/>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li><li><b>Laughter yoga\\u00a0<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br \\/>We also do\\u00a0<b>Super Brain yoga<\\/b>\\u00a0to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li><li><b>Shavasana\\u00a0<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li><li><b>Motivational poem<\\/b>\\u00a0\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li><li><b>Mantra<\\/b>\\u00a0\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li><\\/ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00\\u00a0<\\/strong><br \\/><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7940,1049,'_elementor_edit_mode','builder'),(7941,1049,'_elementor_template_type','wp-page'),(7942,1049,'_elementor_version','3.13.3'),(8255,43,'_elementor_controls_usage','a:4:{s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:2:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}}}}'),(8688,455,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8229,262,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(7909,202,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8047,215,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8073,223,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8099,228,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8203,257,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8281,21,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:5;s:10:\"image_size\";i:3;s:22:\"image_custom_dimension\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"width\";i:3;s:5:\"space\";i:3;s:6:\"height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:2;s:21:\"_element_custom_width\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:6;s:5:\"align\";i:2;s:11:\"header_size\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;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:10;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}}}}}'),(8433,389,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(7973,166,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:1;s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}}}}'),(8125,235,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8151,241,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8177,246,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8408,384,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8484,399,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8814,475,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8788,470,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8610,440,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8559,430,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8383,378,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8459,394,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8662,450,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8762,465,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8989,500,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8509,420,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8963,495,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8534,425,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(7574,1005,'_elementor_page_assets','a:0:{}'),(7577,1006,'_elementor_template_type','wp-page'),(7578,1006,'_elementor_edit_mode','builder'),(7579,1006,'_elementor_version','3.13.4'),(7580,1006,'_wp_page_template','default'),(7581,1006,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7582,1006,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"EANYTHING IS POSSIBLE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong><em>Believe in Yourself,and Remember that Anything Is Possible<\\/em><\\/strong><\\/h2><p>Believe in what makes you feel good.<br \\/>Believe in what makes you happy.<br \\/>Believe in the dreams you\'ve always wanted to come true,<br \\/>and give them every chance to.<\\/p><p>Life holds no promises to what will come your way.<br \\/>You must search for your own ideals<br \\/>and work towards reaching them.<\\/p><p>Life makes no guarantees as to what you\'ll have.<br \\/>It just gives you time to make choices<br \\/>and to take chances<br \\/>and to discover whatever secrets might come your way.<\\/p><p>If you are willing to take the opportunities you are given<br \\/>and utilize the abilities you have,<br \\/>you will constantly fill your life<br \\/>with special moments and unforgettable times.<\\/p><p>No one knows the mysteries of life or its ultimate meaning,<br \\/>but for those who are willing<br \\/>to believe in their dreams and in themselves,<br \\/>life is a precious gift in which anything is possible.<\\/p><p>~ Dena DiIaconi ~<\\/p>\",\"text_color\":\"#202A36\",\"__globals__\":{\"text_color\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7560,1003,'_elementor_page_assets','a:0:{}'),(7561,1004,'_elementor_template_type','wp-page'),(7562,1004,'_elementor_edit_mode','builder'),(7563,1004,'_elementor_version','3.13.3'),(7564,1004,'_wp_page_template','default'),(7565,1004,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7566,1004,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODO ES POSIBLE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\"><em><strong>Believe in Yourself,and Remember that Anything Is Possible<\\/strong><\\/em><\\/span><\\/h2><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">Believe in what makes you feel good.<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> Believe in what makes you happy.<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> Believe in the dreams you\'ve always wanted to come true,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> and give them every chance to.<\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">Life holds no promises to what will come your way.<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> You must search for your own ideals<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> and work towards reaching them.<\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">Life makes no guarantees as to what you\'ll have.<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> It just gives you time to make choices<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> and to take chances<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> and to discover whatever secrets might come your way.<\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">If you are willing to take the opportunities you are given<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> and utilize the abilities you have,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> you will constantly fill your life<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> with special moments and unforgettable times.<\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">No one knows the mysteries of life or its ultimate meaning,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> but for those who are willing<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> to believe in their dreams and in themselves,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> life is a precious gift in which anything is possible.<\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">~ Dena DiIaconi ~<\\/span><\\/p>\",\"text_color\":\"#202A36\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7567,1004,'_elementor_page_assets','a:0:{}'),(7583,1006,'_elementor_page_assets','a:0:{}'),(7584,1006,'_elementor_css','a:6:{s:4:\"time\";i:1686682389;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:\"\";}'),(7585,1007,'_elementor_template_type','wp-page'),(7586,1007,'_elementor_edit_mode','builder'),(7587,1007,'_elementor_version','3.13.4'),(7588,1007,'_wp_page_template','default'),(7589,1007,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7590,1007,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"EANYTHING IS POSSIBLE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong><em>Believe in Yourself,and Remember that Anything Is Possible<\\/em><\\/strong><\\/h2><p>Believe in what makes you feel good.<br \\/>Believe in what makes you happy.<br \\/>Believe in the dreams you\'ve always wanted to come true,<br \\/>and give them every chance to.<\\/p><p>Life holds no promises to what will come your way.<br \\/>You must search for your own ideals<br \\/>and work towards reaching them.<\\/p><p>Life makes no guarantees as to what you\'ll have.<br \\/>It just gives you time to make choices<br \\/>and to take chances<br \\/>and to discover whatever secrets might come your way.<\\/p><p>If you are willing to take the opportunities you are given<br \\/>and utilize the abilities you have,<br \\/>you will constantly fill your life<br \\/>with special moments and unforgettable times.<\\/p><p>No one knows the mysteries of life or its ultimate meaning,<br \\/>but for those who are willing<br \\/>to believe in their dreams and in themselves,<br \\/>life is a precious gift in which anything is possible.<\\/p><p>~ Dena DiIaconi ~<\\/p>\",\"text_color\":\"#202A36\",\"__globals__\":{\"text_color\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7591,1007,'_elementor_page_assets','a:0:{}'),(7592,1007,'_elementor_css','a:6:{s:4:\"time\";i:1686682389;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:\"\";}'),(7593,1008,'_elementor_template_type','wp-page'),(7594,1008,'_elementor_edit_mode','builder'),(7595,1008,'_elementor_version','3.13.4'),(7596,1008,'_wp_page_template','default'),(7597,1008,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7598,1008,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"EANYTHING IS POSSIBLE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong><em>Believe in Yourself,and Remember that Anything Is Possible<\\/em><\\/strong><\\/h2><p>Believe in what makes you feel good.<br \\/>Believe in what makes you happy.<br \\/>Believe in the dreams you\'ve always wanted to come true,<br \\/>and give them every chance to.<\\/p><p>Life holds no promises to what will come your way.<br \\/>You must search for your own ideals<br \\/>and work towards reaching them.<\\/p><p>Life makes no guarantees as to what you\'ll have.<br \\/>It just gives you time to make choices<br \\/>and to take chances<br \\/>and to discover whatever secrets might come your way.<\\/p><p>If you are willing to take the opportunities you are given<br \\/>and utilize the abilities you have,<br \\/>you will constantly fill your life<br \\/>with special moments and unforgettable times.<\\/p><p>No one knows the mysteries of life or its ultimate meaning,<br \\/>but for those who are willing<br \\/>to believe in their dreams and in themselves,<br \\/>life is a precious gift in which anything is possible.<\\/p><p>~ Dena DiIaconi ~<\\/p>\",\"text_color\":\"#202A36\",\"__globals__\":{\"text_color\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7599,1008,'_elementor_page_assets','a:0:{}'),(7600,1008,'_elementor_css','a:6:{s:4:\"time\";i:1686682389;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:\"\";}'),(7754,1027,'_elementor_template_type','wp-page'),(7755,1027,'_elementor_edit_mode','builder'),(7756,1027,'_elementor_version','3.13.4'),(7757,1027,'_wp_page_template','default'),(7758,1027,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7759,1027,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"EANYTHING IS POSSIBLE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong><em>Believe in Yourself,and Remember that Anything Is Possible<\\/em><\\/strong><\\/h2><p>Believe in what makes you feel good.<br \\/>Believe in what makes you happy.<br \\/>Believe in the dreams you\'ve always wanted to come true,<br \\/>and give them every chance to.<\\/p><p>Life holds no promises to what will come your way.<br \\/>You must search for your own ideals<br \\/>and work towards reaching them.<\\/p><p>Life makes no guarantees as to what you\'ll have.<br \\/>It just gives you time to make choices<br \\/>and to take chances<br \\/>and to discover whatever secrets might come your way.<\\/p><p>If you are willing to take the opportunities you are given<br \\/>and utilize the abilities you have,<br \\/>you will constantly fill your life<br \\/>with special moments and unforgettable times.<\\/p><p>No one knows the mysteries of life or its ultimate meaning,<br \\/>but for those who are willing<br \\/>to believe in their dreams and in themselves,<br \\/>life is a precious gift in which anything is possible.<\\/p><p>~ Dena DiIaconi ~<\\/p>\",\"text_color\":\"#202A36\",\"__globals__\":{\"text_color\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7608,1009,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7609,1009,'_elementor_css','a:6:{s:4:\"time\";i:1686275756;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:\"\";}'),(7610,1010,'_elementor_template_type','wp-page'),(7611,1010,'_elementor_edit_mode','builder'),(7612,1010,'_elementor_version','3.13.3'),(7613,1010,'_wp_page_template','default'),(7614,1010,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7615,1010,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Be Whatever  You Want To Be !\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\"><strong>You Can Be Whatever <\\/strong><\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> <strong> You Want To Be!<\\/strong><\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">There is inside you<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> all of the potential<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> to be whatever you want to be,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> all of the energy<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> to do whatever you want to do.<\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">Imagine yourself as you would like to be,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> doing what you want to do,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> and each day, take one step<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> towards your dream.<\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">And though at times it may seem too<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> difficult to continue,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> hold on to your dream.<\\/span><\\/p><p align=\\\"center\\\"><span style=\\\"color: #0000ff;\\\">One morning you will awake to find<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> that you are the person you dreamed of,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> doing what you wanted to do,<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> simply because you had the courage<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> to believe in your potential<\\/span><br \\/><span style=\\\"color: #0000ff;\\\"> and to hold on to your dream<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#000000EB\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7616,1010,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7617,1010,'_elementor_css','a:6:{s:4:\"time\";i:1686275756;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:\"\";}'),(7624,1011,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7625,1011,'_elementor_css','a:6:{s:4:\"time\";i:1686275756;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:\"\";}'),(7628,1012,'_elementor_template_type','wp-page'),(7629,1012,'_elementor_edit_mode','builder'),(7630,1012,'_elementor_version','3.13.4'),(7631,1012,'_wp_page_template','default'),(7632,1012,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7633,1012,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Be Whatever  You Want To Be !\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>You Can Be Whatever<\\/strong><strong><br \\/><\\/strong><strong>You Want To Be!<\\/strong><\\/p><p>There is inside you<br \\/>all of the potential<br \\/>to be whatever you want to be,<br \\/>all of the energy<br \\/>to do whatever you want to do.<\\/p><p>Imagine yourself as you would like to be,<br \\/>doing what you want to do,<br \\/>and each day, take one step<br \\/>towards your dream.<\\/p><p>And though at times it may seem too<br \\/>difficult to continue,<br \\/>hold on to your dream.<\\/p><p>One morning you will awake to find<br \\/>that you are the person you dreamed of,<br \\/>doing what you wanted to do,<br \\/>simply because you had the courage<br \\/>to believe in your potential<br \\/>and to hold on to your dream<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000EB\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7634,1012,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7635,1012,'_elementor_css','a:6:{s:4:\"time\";i:1686682644;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:\"\";}'),(7636,1013,'_elementor_template_type','wp-page'),(7637,1013,'_elementor_edit_mode','builder'),(7638,1013,'_elementor_version','3.13.4'),(7639,1013,'_wp_page_template','default'),(7640,1013,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7641,1013,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Be Whatever  You Want To Be !\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>You Can Be Whatever<\\/strong><strong><br \\/><\\/strong><strong>You Want To Be!<\\/strong><\\/p><p>There is inside you<br \\/>all of the potential<br \\/>to be whatever you want to be,<br \\/>all of the energy<br \\/>to do whatever you want to do.<\\/p><p>Imagine yourself as you would like to be,<br \\/>doing what you want to do,<br \\/>and each day, take one step<br \\/>towards your dream.<\\/p><p>And though at times it may seem too<br \\/>difficult to continue,<br \\/>hold on to your dream.<\\/p><p>One morning you will awake to find<br \\/>that you are the person you dreamed of,<br \\/>doing what you wanted to do,<br \\/>simply because you had the courage<br \\/>to believe in your potential<br \\/>and to hold on to your dream<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000EB\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7642,1013,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7643,1013,'_elementor_css','a:6:{s:4:\"time\";i:1686682644;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:\"\";}'),(7644,1014,'_elementor_template_type','wp-page'),(7645,1014,'_elementor_edit_mode','builder'),(7646,1014,'_elementor_version','3.13.4'),(7647,1014,'_wp_page_template','default'),(7648,1014,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7649,1014,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>You Can Be Whatever<\\/strong><strong><br \\/><\\/strong><strong>You Want To Be!<\\/strong><\\/p><p>There is inside you<br \\/>all of the potential<br \\/>to be whatever you want to be,<br \\/>all of the energy<br \\/>to do whatever you want to do.<\\/p><p>Imagine yourself as you would like to be,<br \\/>doing what you want to do,<br \\/>and each day, take one step<br \\/>towards your dream.<\\/p><p>And though at times it may seem too<br \\/>difficult to continue,<br \\/>hold on to your dream.<\\/p><p>One morning you will awake to find<br \\/>that you are the person you dreamed of,<br \\/>doing what you wanted to do,<br \\/>simply because you had the courage<br \\/>to believe in your potential<br \\/>and to hold on to your dream<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000EB\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7650,1014,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7651,1014,'_elementor_css','a:6:{s:4:\"time\";i:1686682644;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:\"\";}'),(7654,1015,'_elementor_template_type','wp-page'),(7655,1015,'_elementor_edit_mode','builder'),(7656,1015,'_elementor_version','3.13.4'),(7657,1015,'_wp_page_template','default'),(7658,1015,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7659,1015,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>You Can Be Whatever<\\/strong><strong><br \\/><\\/strong><strong>You Want To Be!<\\/strong><\\/p><p>There is inside you<br \\/>all of the potential<br \\/>to be whatever you want to be,<br \\/>all of the energy<br \\/>to do whatever you want to do.<\\/p><p>Imagine yourself as you would like to be,<br \\/>doing what you want to do,<br \\/>and each day, take one step<br \\/>towards your dream.<\\/p><p>And though at times it may seem too<br \\/>difficult to continue,<br \\/>hold on to your dream.<\\/p><p>One morning you will awake to find<br \\/>that you are the person you dreamed of,<br \\/>doing what you wanted to do,<br \\/>simply because you had the courage<br \\/>to believe in your potential<br \\/>and to hold on to your dream<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000EB\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7660,1015,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7661,1015,'_elementor_css','a:6:{s:4:\"time\";i:1686682721;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:\"\";}'),(7662,1016,'_elementor_template_type','wp-page'),(7663,1016,'_elementor_edit_mode','builder'),(7664,1016,'_elementor_version','3.13.4'),(7665,1016,'_wp_page_template','default'),(7666,1016,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7667,1016,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>You Can Be Whatever<\\/strong><strong><br \\/><\\/strong><strong>You Want To Be!<\\/strong><\\/p><p>There is inside you<br \\/>all of the potential<br \\/>to be whatever you want to be,<br \\/>all of the energy<br \\/>to do whatever you want to do.<\\/p><p>Imagine yourself as you would like to be,<br \\/>doing what you want to do,<br \\/>and each day, take one step<br \\/>towards your dream.<\\/p><p>And though at times it may seem too<br \\/>difficult to continue,<br \\/>hold on to your dream.<\\/p><p>One morning you will awake to find<br \\/>that you are the person you dreamed of,<br \\/>doing what you wanted to do,<br \\/>simply because you had the courage<br \\/>to believe in your potential<br \\/>and to hold on to your dream<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000EB\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7668,1016,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7669,1016,'_elementor_css','a:6:{s:4:\"time\";i:1686682721;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:\"\";}'),(7672,1017,'_elementor_version','3.13.4'),(7673,1017,'_wp_page_template','default'),(7674,1017,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7675,1017,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1><strong>You Can Be Whatever<br><\\/strong><strong>You Want To Be!<br><\\/strong>There is inside you<br>all of the potential<br>to be whatever you want to be,<br>all of the energy<br>to do whatever you want to do.<br>Imagine yourself as you would like to be,<br>doing what you want to do,<br>and each day, take one step<br>towards your dream.<br>And though at times it may seem too<br>difficult to continue,<br>hold on to your dream.<br>One morning you will awake to find<br>that you are the person you dreamed of,<br>doing what you wanted to do,<br>simply because you had the courage<br>to believe in your potential<br>and to hold on to your dream<\\/h1>\\n\\n\\n\\n\\n<p><\\/p>\\n<p><\\/p>\",\"align\":\"center\",\"text_color\":\"#000000EB\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7676,1017,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7677,1017,'_elementor_css','a:6:{s:4:\"time\";i:1686682721;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:\"\";}'),(7680,1018,'_elementor_template_type','wp-page'),(7681,1018,'_elementor_edit_mode','builder'),(7682,1018,'_elementor_version','3.13.4'),(7683,1018,'_wp_page_template','default'),(7684,1018,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7685,1018,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1><strong>You Can Be Whatever<br><\\/strong><strong>You Want To Be!<br><\\/strong>There is inside you<br>all of the potential<br>to be whatever you want to be,<br>all of the energy<br>to do whatever you want to do.<br>Imagine yourself as you would like to be,<br>doing what you want to do,<br>and each day, take one step<br>towards your dream.<br>And though at times it may seem too<br>difficult to continue,<br>hold on to your dream.<br>One morning you will awake to find<br>that you are the person you dreamed of,<br>doing what you wanted to do,<br>simply because you had the courage<br>to believe in your potential<br>and to hold on to your dream<\\/h1>\\n\\n\\n\\n\\n<p><\\/p>\\n<p><\\/p>\",\"align\":\"center\",\"text_color\":\"#000000EB\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7686,1018,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7687,1018,'_elementor_css','a:6:{s:4:\"time\";i:1686682753;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:\"\";}'),(7688,1019,'_elementor_template_type','wp-page'),(7689,1019,'_elementor_edit_mode','builder'),(7690,1019,'_elementor_version','3.13.4'),(7691,1019,'_wp_page_template','default'),(7692,1019,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7693,1019,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1><strong>You Can Be Whatever<br><\\/strong><strong>You Want To Be!<br><\\/strong>There is inside you<br>all of the potential<br>to be whatever you want to be,<br>all of the energy<br>to do whatever you want to do.<br>Imagine yourself as you would like to be,<br>doing what you want to do,<br>and each day, take one step<br>towards your dream.<br>And though at times it may seem too<br>difficult to continue,<br>hold on to your dream.<br>One morning you will awake to find<br>that you are the person you dreamed of,<br>doing what you wanted to do,<br>simply because you had the courage<br>to believe in your potential<br>and to hold on to your dream<\\/h1>\\n\\n\\n\\n\\n<p><\\/p>\\n<p><\\/p>\",\"align\":\"center\",\"text_color\":\"#000000EB\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7694,1019,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7695,1019,'_elementor_css','a:6:{s:4:\"time\";i:1686682753;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:\"\";}'),(7696,1020,'_elementor_template_type','wp-page'),(7697,1020,'_elementor_edit_mode','builder'),(7698,1020,'_elementor_version','3.13.4'),(7699,1020,'_wp_page_template','default'),(7700,1020,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7701,1020,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1><h3><strong>You Can Be Whatever<br><\\/strong><h3><strong>You Want To Be!<br><\\/strong>There is inside you<br>all of the potential<br>to be whatever you want to be,<br>all of the energy<br>to do whatever you want to do.<br>Imagine yourself as you would like to be,<br>doing what you want to do,<br>and each day, take one step<br>towards your dream.<br>And though at times it may seem too<br>difficult to continue,<br>hold on to your dream.<br>One morning you will awake to find<br>that you are the person you dreamed of,<br>doing what you wanted to do,<br>simply because you had the courage<br>to believe in your potential<br>and to hold on to your dream<\\/h3><\\/h3><\\/h1>\\n<p><\\/p>\",\"align\":\"center\",\"text_color\":\"#000000EB\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7702,1020,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7703,1020,'_elementor_css','a:6:{s:4:\"time\";i:1686682753;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:\"\";}'),(7705,1021,'_elementor_template_type','wp-page'),(7706,1021,'_elementor_edit_mode','builder'),(7707,1021,'_elementor_version','3.13.4'),(7708,1021,'_wp_page_template','default'),(7709,1021,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7710,1021,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1><h3><strong>You Can Be Whatever<br><\\/strong><h3><strong>You Want To Be!<br><\\/strong>There is inside you<br>all of the potential<br>to be whatever you want to be,<br>all of the energy<br>to do whatever you want to do.<br>Imagine yourself as you would like to be,<br>doing what you want to do,<br>and each day, take one step<br>towards your dream.<br>And though at times it may seem too<br>difficult to continue,<br>hold on to your dream.<br>One morning you will awake to find<br>that you are the person you dreamed of,<br>doing what you wanted to do,<br>simply because you had the courage<br>to believe in your potential<br>and to hold on to your dream<\\/h3><\\/h3><\\/h1>\\n<p><\\/p>\",\"align\":\"center\",\"text_color\":\"#000000EB\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7711,1021,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7712,1022,'_elementor_template_type','wp-page'),(7713,1022,'_elementor_edit_mode','builder'),(7714,1022,'_elementor_version','3.13.4'),(7715,1022,'_wp_page_template','default'),(7716,1022,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7717,1022,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1><h3><strong>You Can Be Whatever<br><\\/strong><h3><strong>You Want To Be!<br><\\/strong>There is inside you<br>all of the potential<br>to be whatever you want to be,<br>all of the energy<br>to do whatever you want to do.<br>Imagine yourself as you would like to be,<br>doing what you want to do,<br>and each day, take one step<br>towards your dream.<br>And though at times it may seem too<br>difficult to continue,<br>hold on to your dream.<br>One morning you will awake to find<br>that you are the person you dreamed of,<br>doing what you wanted to do,<br>simply because you had the courage<br>to believe in your potential<br>and to hold on to your dream<\\/h3><\\/h3><\\/h1>\\n<p><\\/p>\",\"align\":\"center\",\"text_color\":\"#000000EB\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7718,1022,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7744,1026,'_elementor_template_type','wp-page'),(7719,1023,'_elementor_template_type','wp-page'),(7720,1023,'_elementor_edit_mode','builder'),(7721,1023,'_elementor_version','3.13.4'),(7722,1023,'_wp_page_template','default'),(7723,1023,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7724,1023,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><strong>You Can Be Whatever<br \\/><\\/strong><\\/h3><h3><strong>You Want To Be!<br \\/><\\/strong>There is inside you<br \\/>all of the potential<br \\/>to be whatever you want to be,<br \\/>all of the energy<br \\/>to do whatever you want to do.<br \\/>Imagine yourself as you would like to be,<br \\/>doing what you want to do,<br \\/>and each day, take one step<br \\/>towards your dream.<br \\/>And though at times it may seem too<br \\/>difficult to continue,<br \\/>hold on to your dream.<br \\/>One morning you will awake to find<br \\/>that you are the person you dreamed of,<br \\/>doing what you wanted to do,<br \\/>simply because you had the courage<br \\/>to believe in your potential<br \\/>and to hold on to your dream<\\/h3><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000EB\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7725,1023,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7728,1024,'_elementor_template_type','wp-page'),(7729,1024,'_elementor_edit_mode','builder'),(7730,1024,'_elementor_version','3.13.4'),(7731,1024,'_wp_page_template','default'),(7732,1024,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7733,1024,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><strong>You Can Be Whatever<br \\/><\\/strong><\\/h3><h3><strong>You Want To Be!<br \\/><\\/strong>There is inside you<br \\/>all of the potential<br \\/>to be whatever you want to be,<br \\/>all of the energy<br \\/>to do whatever you want to do.<br \\/>Imagine yourself as you would like to be,<br \\/>doing what you want to do,<br \\/>and each day, take one step<br \\/>towards your dream.<br \\/>And though at times it may seem too<br \\/>difficult to continue,<br \\/>hold on to your dream.<br \\/>One morning you will awake to find<br \\/>that you are the person you dreamed of,<br \\/>doing what you wanted to do,<br \\/>simply because you had the courage<br \\/>to believe in your potential<br \\/>and to hold on to your dream<\\/h3><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000EB\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7752,175,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;}}}}}'),(7734,1024,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7735,1024,'_elementor_css','a:6:{s:4:\"time\";i:1686682857;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:\"\";}'),(7736,1025,'_elementor_template_type','wp-page'),(7737,1025,'_elementor_edit_mode','builder'),(7738,1025,'_elementor_version','3.13.4'),(7739,1025,'_wp_page_template','default'),(7740,1025,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7741,1025,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><strong>You Can Be Whatever<br \\/><\\/strong><\\/h3><h3><strong>You Want To Be!<br \\/><\\/strong>There is inside you<br \\/>all of the potential<br \\/>to be whatever you want to be,<br \\/>all of the energy<br \\/>to do whatever you want to do.<br \\/>Imagine yourself as you would like to be,<br \\/>doing what you want to do,<br \\/>and each day, take one step<br \\/>towards your dream.<br \\/>And though at times it may seem too<br \\/>difficult to continue,<br \\/>hold on to your dream.<br \\/>One morning you will awake to find<br \\/>that you are the person you dreamed of,<br \\/>doing what you wanted to do,<br \\/>simply because you had the courage<br \\/>to believe in your potential<br \\/>and to hold on to your dream<\\/h3><p>\\u00a0<\\/p>\",\"align\":\"left\",\"text_color\":\"#000000EB\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7742,1025,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7743,1025,'_elementor_css','a:6:{s:4:\"time\";i:1686682857;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:\"\";}'),(7745,1026,'_elementor_edit_mode','builder'),(7746,1026,'_elementor_version','3.13.4'),(7747,1026,'_wp_page_template','default'),(7748,1026,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7749,1026,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>You Can Be Whatever<br><\\/strong><strong>You Want To Be!<br><\\/strong>There is inside you<br>all of the potential<br>to be whatever you want to be,<br>all of the energy<br>to do whatever you want to do.<br>Imagine yourself as you would like to be,<br>doing what you want to do,<br>and each day, take one step<br>towards your dream.<br>And though at times it may seem too<br>difficult to continue,<br>hold on to your dream.<br>One morning you will awake to find<br>that you are the person you dreamed of,<br>doing what you wanted to do,<br>simply because you had the courage<br>to believe in your potential<br>and to hold on to your dream<\\/h4>\\n\\n<p><\\/p>\",\"align\":\"center\",\"text_color\":\"#000000EB\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7750,1026,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7751,1026,'_elementor_css','a:6:{s:4:\"time\";i:1686682857;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:\"\";}'),(7753,175,'_elementor_css','a:6:{s:4:\"time\";i:1686682891;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:\"\";}'),(7760,1027,'_elementor_page_assets','a:0:{}'),(7761,1028,'_elementor_template_type','wp-page'),(7762,1028,'_elementor_edit_mode','builder'),(7763,1028,'_elementor_version','3.13.4'),(7764,1028,'_wp_page_template','default'),(7765,1028,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7766,1028,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"EANYTHING IS POSSIBLE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong><em>Believe in Yourself,and Remember that Anything Is Possible<\\/em><\\/strong><\\/h2><p>Believe in what makes you feel good.<br \\/>Believe in what makes you happy.<br \\/>Believe in the dreams you\'ve always wanted to come true,<br \\/>and give them every chance to.<\\/p><p>Life holds no promises to what will come your way.<br \\/>You must search for your own ideals<br \\/>and work towards reaching them.<\\/p><p>Life makes no guarantees as to what you\'ll have.<br \\/>It just gives you time to make choices<br \\/>and to take chances<br \\/>and to discover whatever secrets might come your way.<\\/p><p>If you are willing to take the opportunities you are given<br \\/>and utilize the abilities you have,<br \\/>you will constantly fill your life<br \\/>with special moments and unforgettable times.<\\/p><p>No one knows the mysteries of life or its ultimate meaning,<br \\/>but for those who are willing<br \\/>to believe in their dreams and in themselves,<br \\/>life is a precious gift in which anything is possible.<\\/p><p>~ Dena DiIaconi ~<\\/p>\",\"text_color\":\"#202A36\",\"__globals__\":{\"text_color\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7767,1028,'_elementor_page_assets','a:0:{}'),(7769,1029,'_elementor_edit_mode','builder'),(7770,1029,'_elementor_version','3.13.4'),(7771,1029,'_wp_page_template','default'),(7772,1029,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7773,1029,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong><em>Believe in Yourself,and Remember that Anything Is Possible<\\/em><\\/strong><\\/h4><h4><strong><em><br><\\/em><\\/strong>Believe in what makes you feel good.<br>Believe in what makes you happy.<br>Believe in the dreams you\'ve always wanted to come true,<br>and give them every chance to.<br>Life holds no promises to what will come your way.<br>You must search for your own ideals<br>and work towards reaching them.<br>Life makes no guarantees as to what you\'ll have.<br>It just gives you time to make choices<br>and to take chances<br>and to discover whatever secrets might come your way.<br>If you are willing to take the opportunities you are given<br>and utilize the abilities you have,<br>you will constantly fill your life<br>with special moments and unforgettable times.<br>No one knows the mysteries of life or its ultimate meaning,<br>but for those who are willing<br>to believe in their dreams and in themselves,<br>life is a precious gift in which anything is possible.<br>~ Dena DiIaconi ~<\\/h4>\",\"text_color\":\"#202A36\",\"__globals__\":{\"text_color\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7774,1029,'_elementor_page_assets','a:0:{}'),(7777,1030,'_elementor_template_type','wp-page'),(7778,1030,'_elementor_edit_mode','builder'),(7779,1030,'_elementor_version','3.13.4'),(7780,1030,'_wp_page_template','default'),(7781,1030,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7782,1030,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong><em>Believe in Yourself,and Remember that Anything Is Possible<\\/em><\\/strong><\\/h4><h4><strong><em><br><\\/em><\\/strong>Believe in what makes you feel good.<br>Believe in what makes you happy.<br>Believe in the dreams you\'ve always wanted to come true,<br>and give them every chance to.<br>Life holds no promises to what will come your way.<br>You must search for your own ideals<br>and work towards reaching them.<br>Life makes no guarantees as to what you\'ll have.<br>It just gives you time to make choices<br>and to take chances<br>and to discover whatever secrets might come your way.<br>If you are willing to take the opportunities you are given<br>and utilize the abilities you have,<br>you will constantly fill your life<br>with special moments and unforgettable times.<br>No one knows the mysteries of life or its ultimate meaning,<br>but for those who are willing<br>to believe in their dreams and in themselves,<br>life is a precious gift in which anything is possible.<br>~ Dena DiIaconi ~<\\/h4>\",\"text_color\":\"#202A36\",\"__globals__\":{\"text_color\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7783,1030,'_elementor_page_assets','a:0:{}'),(7784,1030,'_elementor_css','a:6:{s:4:\"time\";i:1686683016;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:\"\";}'),(7785,1031,'_elementor_template_type','wp-page'),(7786,1031,'_elementor_edit_mode','builder'),(7787,1031,'_elementor_version','3.13.4'),(7788,1031,'_wp_page_template','default'),(7789,1031,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7790,1031,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong><em>Believe in Yourself,and Remember that Anything Is Possible<\\/em><\\/strong><\\/h4><h4><strong><em><br><\\/em><\\/strong>Believe in what makes you feel good.<br>Believe in what makes you happy.<br>Believe in the dreams you\'ve always wanted to come true,<br>and give them every chance to.<br>Life holds no promises to what will come your way.<br>You must search for your own ideals<br>and work towards reaching them.<br>Life makes no guarantees as to what you\'ll have.<br>It just gives you time to make choices<br>and to take chances<br>and to discover whatever secrets might come your way.<br>If you are willing to take the opportunities you are given<br>and utilize the abilities you have,<br>you will constantly fill your life<br>with special moments and unforgettable times.<br>No one knows the mysteries of life or its ultimate meaning,<br>but for those who are willing<br>to believe in their dreams and in themselves,<br>life is a precious gift in which anything is possible.<br>~ Dena DiIaconi ~<\\/h4>\",\"text_color\":\"#202A36\",\"__globals__\":{\"text_color\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7791,1031,'_elementor_page_assets','a:0:{}'),(7792,1031,'_elementor_css','a:6:{s:4:\"time\";i:1686683016;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:\"\";}'),(7793,1032,'_elementor_template_type','wp-page'),(7794,1032,'_elementor_edit_mode','builder'),(7795,1032,'_elementor_version','3.13.4'),(7796,1032,'_wp_page_template','default'),(7797,1032,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7798,1032,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong><em>Believe in Yourself,and Remember that Anything Is Possible<\\/em><\\/strong><\\/h4><h4><strong><em><br \\/><\\/em><\\/strong>Believe in what makes you feel good.<br \\/>Believe in what makes you happy.<br \\/>Believe in the dreams you\'ve always wanted to come true,<br \\/>and give them every chance to.<br \\/>Life holds no promises to what will come your way.<br \\/>You must search for your own ideals<br \\/>and work towards reaching them.<br \\/>Life makes no guarantees as to what you\'ll have.<br \\/>It just gives you time to make choices<br \\/>and to take chances<br \\/>and to discover whatever secrets might come your way.<br \\/>If you are willing to take the opportunities you are given<br \\/>and utilize the abilities you have,<br \\/>you will constantly fill your life<br \\/>with special moments and unforgettable times.<br \\/>No one knows the mysteries of life or its ultimate meaning,<br \\/>but for those who are willing<br \\/>to believe in their dreams and in themselves,<br \\/>life is a precious gift in which anything is possible.<br \\/>~ Dena DiIaconi ~<\\/h4>\",\"text_color\":\"#202A36\",\"__globals__\":{\"text_color\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7799,1032,'_elementor_page_assets','a:0:{}'),(7800,1032,'_elementor_css','a:6:{s:4:\"time\";i:1686683016;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:\"\";}'),(7949,1050,'_elementor_template_type','wp-page'),(7950,1050,'_elementor_edit_mode','builder'),(7951,1050,'_elementor_version','3.13.4'),(7952,1050,'_wp_page_template','default'),(7953,1050,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7954,1050,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong><em>Believe in Yourself,and Remember that Anything Is Possible<\\/em><\\/strong><\\/h4><h4><strong><em><br \\/><\\/em><\\/strong>Believe in what makes you feel good.<br \\/>Believe in what makes you happy.<br \\/>Believe in the dreams you\'ve always wanted to come true,<br \\/>and give them every chance to.<br \\/>Life holds no promises to what will come your way.<br \\/>You must search for your own ideals<br \\/>and work towards reaching them.<br \\/>Life makes no guarantees as to what you\'ll have.<br \\/>It just gives you time to make choices<br \\/>and to take chances<br \\/>and to discover whatever secrets might come your way.<br \\/>If you are willing to take the opportunities you are given<br \\/>and utilize the abilities you have,<br \\/>you will constantly fill your life<br \\/>with special moments and unforgettable times.<br \\/>No one knows the mysteries of life or its ultimate meaning,<br \\/>but for those who are willing<br \\/>to believe in their dreams and in themselves,<br \\/>life is a precious gift in which anything is possible.<br \\/>~ Dena DiIaconi ~<\\/h4>\",\"text_color\":\"#202A36\",\"__globals__\":{\"text_color\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7808,1033,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7809,1033,'_elementor_css','a:6:{s:4:\"time\";i:1686357669;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:\"\";}'),(7810,1034,'_elementor_template_type','wp-page'),(7811,1034,'_elementor_edit_mode','builder'),(7812,1034,'_elementor_version','3.13.3'),(7813,1034,'_wp_page_template','default'),(7814,1034,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7815,1034,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"IF YOU HAVE A DREAM\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\"><b>If You Have A Dream<\\/b><\\/p><p align=\\\"center\\\">Don\\u2019t wait for some distant day to come,<br \\/>it may be too late before you\\u2019ve even begun.<br \\/>Not everyone will agree with all you decide.<\\/p><p align=\\\"center\\\">Be true to yourself first and foremost.<br \\/>The only important thing in life is what you do<br \\/>with the time you spend here on earth.<\\/p><p align=\\\"center\\\">Don\\u2019t be afraid to follow your desires,<br \\/>they are not silly nor selfish.<br \\/>Take the time and do what makes you feel alive.<\\/p><p align=\\\"center\\\">Leave your fears and regrets in the past,<br \\/>for this is where they belong.<br \\/>Don\\u2019t cloud today with things that can\\u2019t be undone.<\\/p><p align=\\\"center\\\">You have no more control over yesterday or tomorrow,<br \\/>than you do the raging of your passions.<br \\/>Do not quiet these dreams nor quench your desires.<\\/p><p align=\\\"center\\\">For if you do, your journey is ended.<br \\/>You have only today to begin anew and follow your dreams.<br \\/>For in the end all we have are our memories.<\\/p><p align=\\\"center\\\">When the twilight comes to us, let there be,<br \\/>No excuses, no explanations, no regrets!<\\/p>\",\"align\":\"center\",\"text_color\":\"#0A0A0A\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7816,1034,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7817,1034,'_elementor_css','a:6:{s:4:\"time\";i:1686357669;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:\"\";}'),(7821,1035,'_wp_page_template','default'),(7822,1035,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7823,1035,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><b>If You Have A Dream<br><\\/b>Don\\u2019t wait for some distant day to come,<br>it may be too late before you\\u2019ve even begun.<br>Not everyone will agree with all you decide.<br>Be true to yourself first and foremost.<br>The only important thing in life is what you do<br>with the time you spend here on earth.<br>Don\\u2019t be afraid to follow your desires,<br>they are not silly nor selfish.<br>Take the time and do what makes you feel alive.<br>Leave your fears and regrets in the past,<br>for this is where they belong.<br>Don\\u2019t cloud today with things that can\\u2019t be undone.<br>You have no more control over yesterday or tomorrow,<br>than you do the raging of your passions.<br>Do not quiet these dreams nor quench your desires.<br>For if you do, your journey is ended.<br>You have only today to begin anew and follow your dreams.<br>For in the end all we have are our memories.<br>When the twilight comes to us, let there be,<br>No excuses, no explanations, no regrets!<\\/h4>\",\"align\":\"center\",\"text_color\":\"#0A0A0A\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7824,1035,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7825,1035,'_elementor_css','a:6:{s:4:\"time\";i:1686357669;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:\"\";}'),(7828,1036,'_elementor_template_type','wp-page'),(7829,1036,'_elementor_edit_mode','builder'),(7830,1036,'_elementor_version','3.13.4'),(7831,1036,'_wp_page_template','default'),(7832,1036,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7833,1036,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><b>If You Have A Dream<br><\\/b>Don\\u2019t wait for some distant day to come,<br>it may be too late before you\\u2019ve even begun.<br>Not everyone will agree with all you decide.<br>Be true to yourself first and foremost.<br>The only important thing in life is what you do<br>with the time you spend here on earth.<br>Don\\u2019t be afraid to follow your desires,<br>they are not silly nor selfish.<br>Take the time and do what makes you feel alive.<br>Leave your fears and regrets in the past,<br>for this is where they belong.<br>Don\\u2019t cloud today with things that can\\u2019t be undone.<br>You have no more control over yesterday or tomorrow,<br>than you do the raging of your passions.<br>Do not quiet these dreams nor quench your desires.<br>For if you do, your journey is ended.<br>You have only today to begin anew and follow your dreams.<br>For in the end all we have are our memories.<br>When the twilight comes to us, let there be,<br>No excuses, no explanations, no regrets!<\\/h4>\",\"align\":\"center\",\"text_color\":\"#0A0A0A\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7852,183,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;}}}}}'),(7834,1036,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7835,1036,'_elementor_css','a:6:{s:4:\"time\";i:1686683282;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:\"\";}'),(7836,1037,'_elementor_template_type','wp-page'),(7837,1037,'_elementor_edit_mode','builder'),(7838,1037,'_elementor_version','3.13.4'),(7839,1037,'_wp_page_template','default'),(7840,1037,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7841,1037,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><b>If You Have A Dream<br><\\/b>Don\\u2019t wait for some distant day to come,<br>it may be too late before you\\u2019ve even begun.<br>Not everyone will agree with all you decide.<br>Be true to yourself first and foremost.<br>The only important thing in life is what you do<br>with the time you spend here on earth.<br>Don\\u2019t be afraid to follow your desires,<br>they are not silly nor selfish.<br>Take the time and do what makes you feel alive.<br>Leave your fears and regrets in the past,<br>for this is where they belong.<br>Don\\u2019t cloud today with things that can\\u2019t be undone.<br>You have no more control over yesterday or tomorrow,<br>than you do the raging of your passions.<br>Do not quiet these dreams nor quench your desires.<br>For if you do, your journey is ended.<br>You have only today to begin anew and follow your dreams.<br>For in the end all we have are our memories.<br>When the twilight comes to us, let there be,<br>No excuses, no explanations, no regrets!<\\/h4>\",\"align\":\"center\",\"text_color\":\"#0A0A0A\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7842,1037,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7843,1037,'_elementor_css','a:6:{s:4:\"time\";i:1686683282;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:\"\";}'),(7844,1038,'_elementor_template_type','wp-page'),(7845,1038,'_elementor_edit_mode','builder'),(7846,1038,'_elementor_version','3.13.4'),(7847,1038,'_wp_page_template','default'),(7848,1038,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7849,1038,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><b>If You Have A Dream<br \\/><\\/b>Don\\u2019t wait for some distant day to come,<br \\/>it may be too late before you\\u2019ve even begun.<br \\/>Not everyone will agree with all you decide.<br \\/>Be true to yourself first and foremost.<br \\/>The only important thing in life is what you do<br \\/>with the time you spend here on earth.<br \\/>Don\\u2019t be afraid to follow your desires,<br \\/>they are not silly nor selfish.<br \\/>Take the time and do what makes you feel alive.<br \\/>Leave your fears and regrets in the past,<br \\/>for this is where they belong.<br \\/>Don\\u2019t cloud today with things that can\\u2019t be undone.<br \\/>You have no more control over yesterday or tomorrow,<br \\/>than you do the raging of your passions.<br \\/>Do not quiet these dreams nor quench your desires.<br \\/>For if you do, your journey is ended.<br \\/>You have only today to begin anew and follow your dreams.<br \\/>For in the end all we have are our memories.<br \\/>When the twilight comes to us, let there be,<br \\/>No excuses, no explanations, no regrets!<\\/h4>\",\"align\":\"center\",\"text_color\":\"#0A0A0A\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7850,1038,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7851,1038,'_elementor_css','a:6:{s:4:\"time\";i:1686683282;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:\"\";}'),(7884,193,'_elementor_css','a:6:{s:4:\"time\";i:1686683578;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:\"\";}'),(7882,1042,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7883,193,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(7881,1042,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">In life there are people that will hurt us and cause us pain,<br \\/>but we must learn to forgive and forget and not hold grudges.<br \\/>In life there are mistakes we will make,<br \\/>but we must learn from our wrongs and grow from them.<br \\/>In life there are regrets we will have to live with,<br \\/>but we must learn to leave the past behind and realize it is something we can\'t change.<br \\/>In life there are people we will loose forever and can\'t have back,<br \\/>but we must learn to let go &amp; move on.<br \\/>In life there are going to be obstacles that will cause interference,<br \\/>but we must learn to overcome these challenges and grow stronger.<br \\/>In life there are fears that will hold us back from what we want,<br \\/>but we must learn to fight them with the courage from within.<\\/h4>\",\"align\":\"center\",\"text_color\":\"#121311\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7880,1042,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7868,1040,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7869,1041,'_elementor_template_type','wp-page'),(7870,1041,'_elementor_edit_mode','builder'),(7871,1041,'_elementor_version','3.13.3'),(7872,1041,'_wp_page_template','default'),(7873,1041,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7874,1041,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"IN OUR LIFE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\" align=\\\"center\\\">In life there are people that will hurt us and cause us pain,<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">but we must learn to forgive and forget and not hold grudges.<\\/p><p style=\\\"text-align: center;\\\">In life there are mistakes we will make,<br \\/>but we must learn from our wrongs and grow from them.<\\/p><p style=\\\"text-align: center;\\\">In life there are regrets we will have to live with,<br \\/>but we must learn to leave the past behind and realize it is something we can\'t change.<\\/p><p style=\\\"text-align: center;\\\">In life there are people we will loose forever and can\'t have back,<br \\/>but we must learn to let go &amp; move on.<\\/p><p style=\\\"text-align: center;\\\">In life there are going to be obstacles that will cause interference,<br \\/>but we must learn to overcome these challenges and grow stronger.<\\/p><p style=\\\"text-align: center;\\\">In life there are fears that will hold us back from what we want,<br \\/>but we must learn to fight them with the courage from within.<\\/p>\",\"align\":\"center\",\"text_color\":\"#121311\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7875,1041,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7891,1043,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7892,1043,'_elementor_css','a:6:{s:4:\"time\";i:1686296216;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:\"\";}'),(7893,1044,'_elementor_template_type','wp-page'),(7894,1044,'_elementor_edit_mode','builder'),(7895,1044,'_elementor_version','3.13.3'),(7896,1044,'_wp_page_template','default'),(7897,1044,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7898,1044,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"JUST ONE\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">One song can spark a moment,<br \\/>One tree can start a forest,<br \\/>One bird can herald spring.<\\/p><p align=\\\"center\\\">One smile begins a friendship,<br \\/>One handclasp lifts a soul.<br \\/>One star can guide a ship at sea,<br \\/>One vote can change a nation,<br \\/>One sunbeam lights a room<br \\/>One candle wipes out darkness,<br \\/>One laugh will conquer gloom.<\\/p><p align=\\\"center\\\">One step must start each journey.<br \\/>One word must start each prayer.<br \\/>One hope will raise our spirits,<br \\/>One touch can show you care.<\\/p><p align=\\\"center\\\">One voice can speak with wisdom,<br \\/>One heart can know what\'s true,<\\/p><p align=\\\"center\\\">One life can make a difference,<br \\/>You see, it\'s up to you!<\\/p>\",\"align\":\"center\",\"text_color\":\"#141614\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7899,1044,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7900,1044,'_elementor_css','a:6:{s:4:\"time\";i:1686296216;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:\"\";}'),(7903,1045,'_elementor_version','3.13.3'),(7904,1045,'_wp_page_template','default'),(7905,1045,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7906,1045,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>One song can spark a moment,<\\/h4>\\n<h4>One tree can start a forest,<br>One bird can herald spring.<\\/h4><h4><br>One smile begins a friendship,<br>One handclasp lifts a soul.<\\/h4><h4><br>One star can guide a ship at sea,<br>One vote can change a nation,<br>One sunbeam lights a room<br>One candle wipes out darkness,<br>One laugh will conquer gloom.<\\/h4><h4><br>One step must start each journey.<br>One word must start each prayer.<br>One hope will raise our spirits,<br>One touch can show you care.<\\/h4><h4><br>One voice can speak with wisdom,<br>One heart can know what\'s true,<br>One life can make a difference,<br>You see, it\'s up to you!<\\/h4>\",\"align\":\"center\",\"text_color\":\"#141614\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_color\":\"#524F4F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7907,1045,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7908,1045,'_elementor_css','a:6:{s:4:\"time\";i:1686296216;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:\"\";}'),(7910,183,'_elementor_css','a:6:{s:4:\"time\";i:1686684665;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:\"\";}'),(7911,202,'_elementor_css','a:6:{s:4:\"time\";i:1686684675;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:\"\";}'),(7997,1055,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7998,1055,'_elementor_css','a:6:{s:4:\"time\";i:1686702474;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:\"\";}'),(7991,1055,'_elementor_template_type','wp-page'),(7992,1055,'_elementor_edit_mode','builder'),(7993,1055,'_elementor_version','3.13.3'),(7994,1055,'_wp_page_template','default'),(7995,1055,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7996,1055,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">I used to have a comfort zone where I knew I wouldn\'t fail.<br \\/>The same four walls and busywork were really more like jail.<\\/p><p align=\\\"center\\\">I longed so much to do the things I\'d never done before,<br \\/>But stayed inside my comfort zone and paced the same old floor.<\\/p><p align=\\\"center\\\">I claimed to be so busy with the things inside the zone,<br \\/>But deep inside I longed for something special of my own.<\\/p><p align=\\\"center\\\">I couldn\'t let my life go by just watching others win.<br \\/>I held my breath; I stepped outside and let the change begin.<br \\/>I took a step and with new strength I\'d never felt before,<br \\/>I kissed my comfort zone goodbye and closed and locked the door.<\\/p><p align=\\\"center\\\">If you\'re in a comfort zone, afraid to venture out,<br \\/>Remember that all winners were at one time filled with doubt.<br \\/>A step or two and will power can make your dreams come true.<\\/p><p align=\\\"center\\\">Reach for your future with a smile; success is there for you!<\\/p>\",\"align\":\"center\",\"text_color\":\"#080808\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-4.jpeg\",\"id\":211,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8014,1058,'_elementor_template_type','wp-page'),(8015,1058,'_elementor_edit_mode','builder'),(8636,445,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(7929,1047,'_elementor_page_assets','a:0:{}'),(7930,1047,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7931,1047,'_elementor_css','a:6:{s:4:\"time\";i:1686279326;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(7932,1048,'_elementor_edit_mode','builder'),(7933,1048,'_elementor_template_type','wp-page'),(7934,1048,'_elementor_version','3.13.3'),(7935,1048,'_wp_page_template','default'),(7936,1048,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-copia.jpg\",\"id\":887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge.<\\/p><p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>\\u00a0<\\/i><\\/b>exercise<b>s<i>,\\u00a0<\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p><p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p><p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p><p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p><ol><li><b>Workout<\\/b>\\u00a0\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li><li><b>Sun Salutation<\\/b>\\u00a0\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li><li><b>Motivational discourse<\\/b>\\u00a0\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li><li><b>Acupressure<\\/b>\\u00a0(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,\\u00a0 middle of your palm for kidney problems and\\u00a0 under the thumb for the well being of thyroid.<\\/li><li><b>Eyes and neck exercises<\\/b>\\u00a0\\u2013 we take care of every part of the body.<br \\/>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>\\u00a0\\u00a0\\u00a0\\u00a0<\\/b><br \\/>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li><li><b>Seven Pranayamas (<\\/b>\\u00a0breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li><li><b>6 mudras\\u00a0<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li><li><b>100 postures, exercises and asanas<\\/b>\\u00a0\\u2013 with these we increase flexibility from head to toe. We are also doing\\u00a0<b>stretching<\\/b>\\u00a0exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br \\/>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li><li><b>Laughter yoga\\u00a0<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br \\/>We also do\\u00a0<b>Super Brain yoga<\\/b>\\u00a0to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li><li><b>Shavasana\\u00a0<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li><li><b>Motivational poem<\\/b>\\u00a0\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li><li><b>Mantra<\\/b>\\u00a0\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li><\\/ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00\\u00a0<\\/strong><br \\/><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7937,1048,'_elementor_page_assets','a:0:{}'),(7938,1048,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(7939,1048,'_elementor_css','a:6:{s:4:\"time\";i:1686279326;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(9028,1179,'_elementor_edit_mode','builder'),(9029,1179,'_elementor_template_type','wp-page'),(7955,1050,'_elementor_page_assets','a:0:{}'),(7956,1050,'_elementor_css','a:6:{s:4:\"time\";i:1686693119;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:\"\";}'),(7957,1051,'_elementor_template_type','wp-page'),(7958,1051,'_elementor_edit_mode','builder'),(7959,1051,'_elementor_version','3.13.4'),(7960,1051,'_wp_page_template','default'),(7961,1051,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7962,1051,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong><em>Believe in Yourself,and Remember that Anything Is Possible<\\/em><\\/strong><\\/h4><h4><strong><em><br \\/><\\/em><\\/strong>Believe in what makes you feel good.<br \\/>Believe in what makes you happy.<br \\/>Believe in the dreams you\'ve always wanted to come true,<br \\/>and give them every chance to.<br \\/>Life holds no promises to what will come your way.<br \\/>You must search for your own ideals<br \\/>and work towards reaching them.<br \\/>Life makes no guarantees as to what you\'ll have.<br \\/>It just gives you time to make choices<br \\/>and to take chances<br \\/>and to discover whatever secrets might come your way.<br \\/>If you are willing to take the opportunities you are given<br \\/>and utilize the abilities you have,<br \\/>you will constantly fill your life<br \\/>with special moments and unforgettable times.<br \\/>No one knows the mysteries of life or its ultimate meaning,<br \\/>but for those who are willing<br \\/>to believe in their dreams and in themselves,<br \\/>life is a precious gift in which anything is possible.<br \\/>~ Dena DiIaconi ~<\\/h4>\",\"text_color\":\"#202A36\",\"__globals__\":{\"text_color\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7963,1051,'_elementor_page_assets','a:0:{}'),(7964,1051,'_elementor_css','a:6:{s:4:\"time\";i:1686693119;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:\"\";}'),(7965,1052,'_elementor_template_type','wp-page'),(7966,1052,'_elementor_edit_mode','builder'),(7967,1052,'_elementor_version','3.13.4'),(7968,1052,'_wp_page_template','default'),(7969,1052,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7970,1052,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong><em>Believe in Yourself,and Remember that Anything Is Possible<\\/em><\\/strong><\\/h4><h4><strong><em><br \\/><\\/em><\\/strong>Believe in what makes you feel good.<br \\/>Believe in what makes you happy.<br \\/>Believe in the dreams you\'ve always wanted to come true,<br \\/>and give them every chance to.<br \\/>Life holds no promises to what will come your way.<br \\/>You must search for your own ideals<br \\/>and work towards reaching them.<br \\/>Life makes no guarantees as to what you\'ll have.<br \\/>It just gives you time to make choices<br \\/>and to take chances<br \\/>and to discover whatever secrets might come your way.<br \\/>If you are willing to take the opportunities you are given<br \\/>and utilize the abilities you have,<br \\/>you will constantly fill your life<br \\/>with special moments and unforgettable times.<br \\/>No one knows the mysteries of life or its ultimate meaning,<br \\/>but for those who are willing<br \\/>to believe in their dreams and in themselves,<br \\/>life is a precious gift in which anything is possible.<br \\/>~ Dena DiIaconi ~<\\/h4>\",\"text_color\":\"#202A36\",\"__globals__\":{\"text_color\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7971,1052,'_elementor_page_assets','a:0:{}'),(7972,1052,'_elementor_css','a:6:{s:4:\"time\";i:1686693119;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:\"\";}'),(7974,166,'_elementor_css','a:6:{s:4:\"time\";i:1686767323;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(7981,1053,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7982,1053,'_elementor_css','a:6:{s:4:\"time\";i:1686702474;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:\"\";}'),(7983,1054,'_elementor_template_type','wp-page'),(7984,1054,'_elementor_edit_mode','builder'),(7985,1054,'_elementor_version','3.13.3'),(7986,1054,'_wp_page_template','default'),(7987,1054,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(7988,1054,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"My Comfort Zone\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">I used to have a comfort zone where I knew I wouldn\'t fail.<br \\/>The same four walls and busywork were really more like jail.<\\/p><p align=\\\"center\\\">I longed so much to do the things I\'d never done before,<br \\/>But stayed inside my comfort zone and paced the same old floor.<\\/p><p align=\\\"center\\\">I claimed to be so busy with the things inside the zone,<br \\/>But deep inside I longed for something special of my own.<\\/p><p align=\\\"center\\\">I couldn\'t let my life go by just watching others win.<br \\/>I held my breath; I stepped outside and let the change begin.<br \\/>I took a step and with new strength I\'d never felt before,<br \\/>I kissed my comfort zone goodbye and closed and locked the door.<\\/p><p align=\\\"center\\\">If you\'re in a comfort zone, afraid to venture out,<br \\/>Remember that all winners were at one time filled with doubt.<br \\/>A step or two and will power can make your dreams come true.<\\/p><p align=\\\"center\\\">Reach for your future with a smile; success is there for you!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-4.jpeg\",\"id\":211,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(7989,1054,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(7990,1054,'_elementor_css','a:6:{s:4:\"time\";i:1686702474;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:\"\";}'),(8000,1056,'_elementor_template_type','wp-page'),(8001,1056,'_elementor_edit_mode','builder'),(8002,1056,'_elementor_version','3.13.4'),(8003,1056,'_wp_page_template','default'),(8004,1056,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8005,1056,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">I used to have a comfort zone where I knew I wouldn\'t fail.<br \\/>The same four walls and busywork were really more like jail.<\\/p><p align=\\\"center\\\">I longed so much to do the things I\'d never done before,<br \\/>But stayed inside my comfort zone and paced the same old floor.<\\/p><p align=\\\"center\\\">I claimed to be so busy with the things inside the zone,<br \\/>But deep inside I longed for something special of my own.<\\/p><p align=\\\"center\\\">I couldn\'t let my life go by just watching others win.<br \\/>I held my breath; I stepped outside and let the change begin.<br \\/>I took a step and with new strength I\'d never felt before,<br \\/>I kissed my comfort zone goodbye and closed and locked the door.<\\/p><p align=\\\"center\\\">If you\'re in a comfort zone, afraid to venture out,<br \\/>Remember that all winners were at one time filled with doubt.<br \\/>A step or two and will power can make your dreams come true.<\\/p><p align=\\\"center\\\">Reach for your future with a smile; success is there for you!<\\/p>\",\"align\":\"center\",\"text_color\":\"#080808\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-4.jpeg\",\"id\":211,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8006,1056,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8007,1057,'_elementor_template_type','wp-page'),(8008,1057,'_elementor_edit_mode','builder'),(8009,1057,'_elementor_version','3.13.4'),(8010,1057,'_wp_page_template','default'),(8011,1057,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8012,1057,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">I used to have a comfort zone where I knew I wouldn\'t fail.<br \\/>The same four walls and busywork were really more like jail.<\\/p><p align=\\\"center\\\">I longed so much to do the things I\'d never done before,<br \\/>But stayed inside my comfort zone and paced the same old floor.<\\/p><p align=\\\"center\\\">I claimed to be so busy with the things inside the zone,<br \\/>But deep inside I longed for something special of my own.<\\/p><p align=\\\"center\\\">I couldn\'t let my life go by just watching others win.<br \\/>I held my breath; I stepped outside and let the change begin.<br \\/>I took a step and with new strength I\'d never felt before,<br \\/>I kissed my comfort zone goodbye and closed and locked the door.<\\/p><p align=\\\"center\\\">If you\'re in a comfort zone, afraid to venture out,<br \\/>Remember that all winners were at one time filled with doubt.<br \\/>A step or two and will power can make your dreams come true.<\\/p><p align=\\\"center\\\">Reach for your future with a smile; success is there for you!<\\/p>\",\"align\":\"center\",\"text_color\":\"#080808\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-4.jpeg\",\"id\":211,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8013,1057,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8016,1058,'_elementor_version','3.13.4'),(8017,1058,'_wp_page_template','default'),(8018,1058,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8019,1058,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">I used to have a comfort zone where I knew I wouldn\'t fail.<br \\/>The same four walls and busywork were really more like jail.<\\/p><p align=\\\"center\\\">I longed so much to do the things I\'d never done before,<br \\/>But stayed inside my comfort zone and paced the same old floor.<\\/p><p align=\\\"center\\\">I claimed to be so busy with the things inside the zone,<br \\/>But deep inside I longed for something special of my own.<\\/p><p align=\\\"center\\\">I couldn\'t let my life go by just watching others win.<br \\/>I held my breath; I stepped outside and let the change begin.<br \\/>I took a step and with new strength I\'d never felt before,<br \\/>I kissed my comfort zone goodbye and closed and locked the door.<\\/p><p align=\\\"center\\\">If you\'re in a comfort zone, afraid to venture out,<br \\/>Remember that all winners were at one time filled with doubt.<br \\/>A step or two and will power can make your dreams come true.<\\/p><p align=\\\"center\\\">Reach for your future with a smile; success is there for you!<\\/p>\",\"align\":\"center\",\"text_color\":\"#080808\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8020,1058,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8021,208,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:8:{s:28:\"_background_hover_background\";i:1;s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8022,208,'_elementor_css','a:6:{s:4:\"time\";i:1686767484;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8029,1059,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8030,1059,'_elementor_css','a:6:{s:4:\"time\";i:1686297528;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:\"\";}'),(8031,1060,'_elementor_template_type','wp-page'),(8032,1060,'_elementor_edit_mode','builder'),(8033,1060,'_elementor_version','3.13.3'),(8034,1060,'_wp_page_template','default'),(8035,1060,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8036,1060,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR THOUGHTS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">Keep your thoughts positive,<\\/p><p align=\\\"center\\\">because thoughts become your words.<\\/p><p align=\\\"center\\\">Keep your words positive<\\/p><p align=\\\"center\\\">because words become your action.<\\/p><p align=\\\"center\\\">Keep your action positive<\\/p><p align=\\\"center\\\">Because your action becomes your habit.<\\/p><p align=\\\"center\\\">Keep your habit positive,<\\/p><p align=\\\"center\\\">because your habit becomes your lifestyle.<\\/p><p align=\\\"center\\\">Keep your life style positive,<\\/p><p align=\\\"center\\\">because your life style becomes your destiny.<\\/p><p>.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/descarga-4.jpeg\",\"id\":211,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8037,1060,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8038,1060,'_elementor_css','a:6:{s:4:\"time\";i:1686297528;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:\"\";}'),(8039,1061,'_elementor_template_type','wp-page'),(8040,1061,'_elementor_edit_mode','builder'),(8041,1061,'_elementor_version','3.13.3'),(8042,1061,'_wp_page_template','default'),(8043,1061,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8044,1061,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"OUR THOUGHTS\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">Keep your thoughts positive,<\\/p><p align=\\\"center\\\">because thoughts become your words.<\\/p><p align=\\\"center\\\">Keep your words positive<\\/p><p align=\\\"center\\\">because words become your action.<\\/p><p align=\\\"center\\\">Keep your action positive<\\/p><p align=\\\"center\\\">Because your action becomes your habit.<\\/p><p align=\\\"center\\\">Keep your habit positive,<\\/p><p align=\\\"center\\\">because your habit becomes your lifestyle.<\\/p><p align=\\\"center\\\">Keep your life style positive,<\\/p><p align=\\\"center\\\">because your life style becomes your destiny.<\\/p><p>.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"contain\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8045,1061,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8046,1061,'_elementor_css','a:6:{s:4:\"time\";i:1686297528;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:\"\";}'),(8048,215,'_elementor_css','a:6:{s:4:\"time\";i:1686767585;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8055,1062,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8056,1062,'_elementor_css','a:6:{s:4:\"time\";i:1686297565;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:\"\";}'),(8057,1063,'_elementor_template_type','wp-page'),(8058,1063,'_elementor_edit_mode','builder'),(8059,1063,'_elementor_version','3.13.3'),(8060,1063,'_wp_page_template','default'),(8061,1063,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8062,1063,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMISE YOURSELF\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">(one the most classic motivational poems)<\\/p><p align=\\\"center\\\">Promise yourself to be so strong that nothing can<br \\/>disturb your peace of mind.<\\/p><p align=\\\"center\\\">To talk health, happiness, and prosperity to<br \\/>every person you meet.<\\/p><p align=\\\"center\\\">To make all your friends feel like there is<br \\/>something in them.<\\/p><p align=\\\"center\\\">To look at the sunny side of everything and make your<br \\/>optimism come true.<\\/p><p align=\\\"center\\\">To think only of the best, to work only for the best,<br \\/>and expect only the best.<\\/p><p align=\\\"center\\\">To be just as enthusiastic about the success of others<br \\/>as you are about your own.<\\/p><p align=\\\"center\\\">To forget the mistakes of the past and press on the<br \\/>greater achievements of the future.<\\/p><p align=\\\"center\\\">To wear a cheerful countenance at all times and give<br \\/>every living person you meet a smile.<\\/p><p align=\\\"center\\\">To give so much time to the improvement of yourself<br \\/>that you have no time to criticize others.<\\/p><p align=\\\"center\\\">To be too large for worry, too noble for anger, and too<br \\/>strong for fear, and too happy to permit the<br \\/>presence of trouble.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8063,1063,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8064,1063,'_elementor_css','a:6:{s:4:\"time\";i:1686297565;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:\"\";}'),(8065,1064,'_elementor_template_type','wp-page'),(8066,1064,'_elementor_edit_mode','builder'),(8067,1064,'_elementor_version','3.13.3'),(8068,1064,'_wp_page_template','default'),(8069,1064,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8070,1064,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMISE YOURSELF\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">(one the most classic motivational poems)<\\/p><p align=\\\"center\\\">Promise yourself to be so strong that nothing can<br \\/>disturb your peace of mind.<\\/p><p align=\\\"center\\\">To talk health, happiness, and prosperity to<br \\/>every person you meet.<\\/p><p align=\\\"center\\\">To make all your friends feel like there is<br \\/>something in them.<\\/p><p align=\\\"center\\\">To look at the sunny side of everything and make your<br \\/>optimism come true.<\\/p><p align=\\\"center\\\">To think only of the best, to work only for the best,<br \\/>and expect only the best.<\\/p><p align=\\\"center\\\">To be just as enthusiastic about the success of others<br \\/>as you are about your own.<\\/p><p align=\\\"center\\\">To forget the mistakes of the past and press on the<br \\/>greater achievements of the future.<\\/p><p align=\\\"center\\\">To wear a cheerful countenance at all times and give<br \\/>every living person you meet a smile.<\\/p><p align=\\\"center\\\">To give so much time to the improvement of yourself<br \\/>that you have no time to criticize others.<\\/p><p align=\\\"center\\\">To be too large for worry, too noble for anger, and too<br \\/>strong for fear, and too happy to permit the<br \\/>presence of trouble.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8071,1064,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8072,1064,'_elementor_css','a:6:{s:4:\"time\";i:1686297565;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:\"\";}'),(8074,223,'_elementor_css','a:6:{s:4:\"time\";i:1686767692;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8081,1065,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8082,1065,'_elementor_css','a:6:{s:4:\"time\";i:1686297626;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:\"\";}'),(8083,1066,'_elementor_template_type','wp-page'),(8084,1066,'_elementor_edit_mode','builder'),(8085,1066,'_elementor_version','3.13.3'),(8086,1066,'_wp_page_template','default'),(8087,1066,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8088,1066,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMISE YOURSELF -NOW\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">Of all the things you can do,<\\/p><p align=\\\"center\\\">promise yourself you will try.<\\/p><p align=\\\"center\\\">It doesn\'t even matter if you win,<\\/p><p align=\\\"center\\\">as long as you apply.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">No one can ask anything of you except yourself.<\\/p><p align=\\\"center\\\">If you don\'t want to make a move,<\\/p><p align=\\\"center\\\">it\'s you who\'ll be left out.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">So don\'t allow yourself to miss out on important things.<\\/p><p align=\\\"center\\\">You may not feel that they are worthy,<\\/p><p align=\\\"center\\\">yet they can turn out to be your wings.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">Experiences make us whole,<\\/p><p align=\\\"center\\\">and make life feel fulfilled.<\\/p><p align=\\\"center\\\">And when it\'s time to look back,<\\/p><p align=\\\"center\\\">don\'t let yourself feel unskilled.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">So don\'t allow yourself to stop,<\\/p><p align=\\\"center\\\">for no apparent reason.<\\/p><p align=\\\"center\\\">Promise yourself you will try,<\\/p><p align=\\\"center\\\">and take on any season.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8089,1066,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8090,1066,'_elementor_css','a:6:{s:4:\"time\";i:1686297626;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:\"\";}'),(8091,1067,'_elementor_template_type','wp-page'),(8092,1067,'_elementor_edit_mode','builder'),(8093,1067,'_elementor_version','3.13.3'),(8094,1067,'_wp_page_template','default'),(8095,1067,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8096,1067,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"PROMISE YOURSELF -NOW\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">Of all the things you can do,<\\/p><p align=\\\"center\\\">promise yourself you will try.<\\/p><p align=\\\"center\\\">It doesn\'t even matter if you win,<\\/p><p align=\\\"center\\\">as long as you apply.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">No one can ask anything of you except yourself.<\\/p><p align=\\\"center\\\">If you don\'t want to make a move,<\\/p><p align=\\\"center\\\">it\'s you who\'ll be left out.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">So don\'t allow yourself to miss out on important things.<\\/p><p align=\\\"center\\\">You may not feel that they are worthy,<\\/p><p align=\\\"center\\\">yet they can turn out to be your wings.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">Experiences make us whole,<\\/p><p align=\\\"center\\\">and make life feel fulfilled.<\\/p><p align=\\\"center\\\">And when it\'s time to look back,<\\/p><p align=\\\"center\\\">don\'t let yourself feel unskilled.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">So don\'t allow yourself to stop,<\\/p><p align=\\\"center\\\">for no apparent reason.<\\/p><p align=\\\"center\\\">Promise yourself you will try,<\\/p><p align=\\\"center\\\">and take on any season.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8097,1067,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8098,1067,'_elementor_css','a:6:{s:4:\"time\";i:1686297626;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:\"\";}'),(9064,1184,'_elementor_edit_mode','builder'),(9065,1184,'_elementor_template_type','wp-page'),(9066,1184,'_elementor_version','3.13.4'),(9067,1184,'_wp_page_template','default'),(9068,1184,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-copia.jpg\",\"id\":887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge<\\/p>\\n<p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>&nbsp;<\\/i><\\/b>exercise<b>s<i>,&nbsp;<\\/i><\\/b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p>\\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p>\\n<p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p>\\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p><ol><li><b>Workout<\\/b>\\u00a0\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li><li><b>Sun Salutation<\\/b>\\u00a0\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li><li><b>Motivational discourse<\\/b>\\u00a0\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li><li><b>Acupressure<\\/b>\\u00a0(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,\\u00a0 middle of your palm for kidney problems and\\u00a0 under the thumb for the well being of thyroid.<\\/li><li><b>Eyes and neck exercises<\\/b>\\u00a0\\u2013 we take care of every part of the body.<br \\/>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>\\u00a0\\u00a0\\u00a0\\u00a0<\\/b><br \\/>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li><li><b>Seven Pranayamas (<\\/b>\\u00a0breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li><li><b>6 mudras\\u00a0<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li><li><b>100 postures, exercises and asanas<\\/b>\\u00a0\\u2013 with these we increase flexibility from head to toe. We are also doing\\u00a0<b>stretching<\\/b>\\u00a0exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br \\/>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li><li><b>Laughter yoga\\u00a0<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br \\/>We also do\\u00a0<b>Super Brain yoga<\\/b>\\u00a0to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li><li><b>Shavasana\\u00a0<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li><li><b>Motivational poem<\\/b>\\u00a0\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li><li><b>Mantra<\\/b>\\u00a0\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li><\\/ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00\\u00a0<\\/strong><br \\/><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8107,1068,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8108,1068,'_elementor_css','a:6:{s:4:\"time\";i:1686373369;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:\"\";}'),(8109,1069,'_elementor_template_type','wp-page'),(8110,1069,'_elementor_edit_mode','builder'),(8111,1069,'_elementor_version','3.13.3'),(8112,1069,'_wp_page_template','default'),(8113,1069,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8114,1069,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"START WHERE YOU STAND\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">By Berton Braley<\\/p><p align=\\\"center\\\">Start where you stand and never mind the past,<br \\/>The past won\'t help you in beginning new,<br \\/>If you have left it all behind at last<br \\/>Why, that\'s enough, you\'re done with it, you\'re through;<br \\/>This is another chapter in the book,<br \\/>This is another race that you have planned,<br \\/>Don\'t give the vanished days a backward look,<br \\/>Start where you stand.<\\/p><p align=\\\"center\\\">The world won\'t care about your old defeats<br \\/>If you can start anew and win success;<br \\/>The future is your time, and time is fleet<br \\/>And there is much of work and strain and stress;<br \\/>Forget the buried woes and dead despairs,<br \\/>Here is a brand-new trial right at hand,<br \\/>The future is for him who does and dares,<br \\/>Start where you stand.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8115,1069,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8116,1069,'_elementor_css','a:6:{s:4:\"time\";i:1686373369;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:\"\";}'),(8117,1070,'_elementor_template_type','wp-page'),(8118,1070,'_elementor_edit_mode','builder'),(8119,1070,'_elementor_version','3.13.3'),(8120,1070,'_wp_page_template','default'),(8121,1070,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8122,1070,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"START WHERE YOU STAND\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">By Berton Braley<\\/p><p align=\\\"center\\\">Start where you stand and never mind the past,<br \\/>The past won\'t help you in beginning new,<br \\/>If you have left it all behind at last<br \\/>Why, that\'s enough, you\'re done with it, you\'re through;<br \\/>This is another chapter in the book,<br \\/>This is another race that you have planned,<br \\/>Don\'t give the vanished days a backward look,<br \\/>Start where you stand.<\\/p><p align=\\\"center\\\">The world won\'t care about your old defeats<br \\/>If you can start anew and win success;<br \\/>The future is your time, and time is fleet<br \\/>And there is much of work and strain and stress;<br \\/>Forget the buried woes and dead despairs,<br \\/>Here is a brand-new trial right at hand,<br \\/>The future is for him who does and dares,<br \\/>Start where you stand.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#1A32D7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8123,1070,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8124,1070,'_elementor_css','a:6:{s:4:\"time\";i:1686373369;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:\"\";}'),(8126,235,'_elementor_css','a:6:{s:4:\"time\";i:1686767912;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8133,1071,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8134,1071,'_elementor_css','a:6:{s:4:\"time\";i:1686373372;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:\"\";}'),(8135,1072,'_elementor_template_type','wp-page'),(8136,1072,'_elementor_edit_mode','builder'),(8137,1072,'_elementor_version','3.13.3'),(8138,1072,'_wp_page_template','default'),(8139,1072,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8140,1072,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODAY I\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">Today I have decided,<\\/p><p align=\\\"center\\\">that it\'s time to take control.<\\/p><p align=\\\"center\\\">There won\'t be anymore sitting,<\\/p><p align=\\\"center\\\">and waiting, this is my goal.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">Today I see it so clearly,<\\/p><p align=\\\"center\\\">I am all that I have.<\\/p><p align=\\\"center\\\">If I want to get something done,<\\/p><p align=\\\"center\\\">it\'s up to me to pave my own path.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">Today I will set my goal,<\\/p><p align=\\\"center\\\">and work to see it through.<\\/p><p align=\\\"center\\\">I\'m tired of being afraid,<\\/p><p align=\\\"center\\\">it\'s time for my dreams to come true.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">Today I am quite happy,<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-7.jpeg\",\"id\":140,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8141,1072,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8142,1072,'_elementor_css','a:6:{s:4:\"time\";i:1686373372;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:\"\";}'),(8143,1073,'_elementor_template_type','wp-page'),(8144,1073,'_elementor_edit_mode','builder'),(8145,1073,'_elementor_version','3.13.3'),(8146,1073,'_wp_page_template','default'),(8147,1073,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8148,1073,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODAY I\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">Today I have decided,<\\/p><p align=\\\"center\\\">that it\'s time to take control.<\\/p><p align=\\\"center\\\">There won\'t be anymore sitting,<\\/p><p align=\\\"center\\\">and waiting, this is my goal.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">Today I see it so clearly,<\\/p><p align=\\\"center\\\">I am all that I have.<\\/p><p align=\\\"center\\\">If I want to get something done,<\\/p><p align=\\\"center\\\">it\'s up to me to pave my own path.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">Today I will set my goal,<\\/p><p align=\\\"center\\\">and work to see it through.<\\/p><p align=\\\"center\\\">I\'m tired of being afraid,<\\/p><p align=\\\"center\\\">it\'s time for my dreams to come true.<\\/p><p align=\\\"center\\\">\\u00a0<\\/p><p align=\\\"center\\\">Today I am quite happy,<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#1A32D7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8149,1073,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8150,1073,'_elementor_css','a:6:{s:4:\"time\";i:1686373372;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:\"\";}'),(8152,241,'_elementor_css','a:6:{s:4:\"time\";i:1686768039;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8159,1074,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8160,1074,'_elementor_css','a:6:{s:4:\"time\";i:1686373376;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:\"\";}'),(8161,1075,'_elementor_template_type','wp-page'),(8162,1075,'_elementor_edit_mode','builder'),(8163,1075,'_elementor_version','3.13.3'),(8164,1075,'_wp_page_template','default'),(8165,1075,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8166,1075,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"YOU POSSESS TEHE ENERGY\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\" align=\\\"center\\\">Like attracts like.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">If you feel defeated, you will be.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">If you are weary, you will lose momentum.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">If you are of joyful focus, the negative will have no choice but to recede.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">Decide to laugh in the face of adversity.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">Know you are powerful enough to supersede all difficulty.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">Do not let your thoughts wander.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">Be powerful.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">Know yourself.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">\\u00a0Decide to be in control of your reality.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">There are no victims except those who have given up their power.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">You possess the energy, create and take control of your destiny<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8167,1075,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8168,1075,'_elementor_css','a:6:{s:4:\"time\";i:1686373376;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:\"\";}'),(8169,1076,'_elementor_template_type','wp-page'),(8170,1076,'_elementor_edit_mode','builder'),(8171,1076,'_elementor_version','3.13.3'),(8172,1076,'_wp_page_template','default'),(8173,1076,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8174,1076,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"YOU POSSESS TEHE ENERGY\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\" align=\\\"center\\\">Like attracts like.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">If you feel defeated, you will be.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">If you are weary, you will lose momentum.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">If you are of joyful focus, the negative will have no choice but to recede.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">Decide to laugh in the face of adversity.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">Know you are powerful enough to supersede all difficulty.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">Do not let your thoughts wander.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">Be powerful.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">Know yourself.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">\\u00a0Decide to be in control of your reality.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">There are no victims except those who have given up their power.<\\/p><p style=\\\"text-align: center;\\\" align=\\\"center\\\">You possess the energy, create and take control of your destiny<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#1A32D7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8175,1076,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8176,1076,'_elementor_css','a:6:{s:4:\"time\";i:1686373376;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:\"\";}'),(8178,246,'_elementor_css','a:6:{s:4:\"time\";i:1686768195;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8185,1077,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8186,1077,'_elementor_css','a:6:{s:4:\"time\";i:1686299360;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:\"\";}'),(8187,1078,'_elementor_template_type','wp-page'),(8188,1078,'_elementor_edit_mode','builder'),(8189,1078,'_elementor_version','3.13.3'),(8190,1078,'_wp_page_template','default'),(8191,1078,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8192,1078,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODAY\'S DREAMS ARE TOMORROW\'S SUCCESSES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">Don\'t be afraid of high hopes<br \\/>or plans that seem to be out of reach.<br \\/>Life is meant to be experienced,<br \\/>and every situation allows for<br \\/>learning and growth.<\\/p><p align=\\\"center\\\">Motivation is a positive starting point,<br \\/>and action places you on a forward path.<br \\/>A dream is a blueprint<br \\/>of a goal not yet achieved;<br \\/>the only difference between the two<br \\/>is the effort involved in attaining<br \\/>what you hope to accomplish.<\\/p><p align=\\\"center\\\">Let your mind and heart urge you on;<br \\/>allow the power of your will<br \\/>to lead you to your destination.<\\/p><p align=\\\"center\\\">Don\'t count the steps ahead;<br \\/>just add up the total<br \\/>of steps already covered,<br \\/>and multiply it by<br \\/>faith, confidence, and endurance.<\\/p><p align=\\\"center\\\">Always remember that<br \\/>for those who persist,<br \\/>today\'s dreams are transformed<br \\/>into tomorrow\'s successes.<\\/p><p align=\\\"center\\\">~ Kelly D. Caron ~<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-8.jpeg\",\"id\":251,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8193,1078,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8194,1078,'_elementor_css','a:6:{s:4:\"time\";i:1686299360;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:\"\";}'),(8195,1079,'_elementor_template_type','wp-page'),(8196,1079,'_elementor_edit_mode','builder'),(8197,1079,'_elementor_version','3.13.3'),(8198,1079,'_wp_page_template','default'),(8199,1079,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8200,1079,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TODAY\'S DREAMS ARE TOMORROW\'S SUCCESSES\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">Don\'t be afraid of high hopes<br \\/>or plans that seem to be out of reach.<br \\/>Life is meant to be experienced,<br \\/>and every situation allows for<br \\/>learning and growth.<\\/p><p align=\\\"center\\\">Motivation is a positive starting point,<br \\/>and action places you on a forward path.<br \\/>A dream is a blueprint<br \\/>of a goal not yet achieved;<br \\/>the only difference between the two<br \\/>is the effort involved in attaining<br \\/>what you hope to accomplish.<\\/p><p align=\\\"center\\\">Let your mind and heart urge you on;<br \\/>allow the power of your will<br \\/>to lead you to your destination.<\\/p><p align=\\\"center\\\">Don\'t count the steps ahead;<br \\/>just add up the total<br \\/>of steps already covered,<br \\/>and multiply it by<br \\/>faith, confidence, and endurance.<\\/p><p align=\\\"center\\\">Always remember that<br \\/>for those who persist,<br \\/>today\'s dreams are transformed<br \\/>into tomorrow\'s successes.<\\/p><p align=\\\"center\\\">~ Kelly D. Caron ~<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#1A32D7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8201,1079,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8202,1079,'_elementor_css','a:6:{s:4:\"time\";i:1686299360;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:\"\";}'),(8204,257,'_elementor_css','a:6:{s:4:\"time\";i:1686768329;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8211,1080,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8212,1080,'_elementor_css','a:6:{s:4:\"time\";i:1686285330;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:\"\";}'),(8213,1081,'_elementor_template_type','wp-page'),(8214,1081,'_elementor_edit_mode','builder'),(8215,1081,'_elementor_version','3.13.3'),(8216,1081,'_wp_page_template','default'),(8217,1081,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8218,1081,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WITHIN YOU IS THE STENGHT TO MEET TO MEET LIFE\'S CHALLENGES !\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">You are stronger than you think,<br \\/>remember to stand tall.<\\/p><p align=\\\"center\\\">Every challenge in your life<br \\/>helps you to grow.<\\/p><p align=\\\"center\\\">Every problem you encounter<br \\/>strengthens your mind and your soul.<\\/p><p align=\\\"center\\\">Every trouble you overcome<br \\/>increases your understanding of life.<\\/p><p align=\\\"center\\\">When all your troubles weigh<br \\/>heavily on your shoulders,<br \\/>remember that beneath the burden<br \\/>you can stand tall,<br \\/>because you are never given<br \\/>more than you can handle...<br \\/>and you are stronger than you think<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-9.jpeg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#1A32D7\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8219,1081,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8220,1081,'_elementor_css','a:6:{s:4:\"time\";i:1686285330;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:\"\";}'),(8221,1082,'_elementor_template_type','wp-page'),(8222,1082,'_elementor_edit_mode','builder'),(8223,1082,'_elementor_version','3.13.3'),(8224,1082,'_wp_page_template','default'),(8225,1082,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8226,1082,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7be0c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"942cd7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WITHIN YOU IS THE STENGHT TO MEET TO MEET LIFE\'S CHALLENGES !\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p align=\\\"center\\\">You are stronger than you think,<br \\/>remember to stand tall.<\\/p><p align=\\\"center\\\">Every challenge in your life<br \\/>helps you to grow.<\\/p><p align=\\\"center\\\">Every problem you encounter<br \\/>strengthens your mind and your soul.<\\/p><p align=\\\"center\\\">Every trouble you overcome<br \\/>increases your understanding of life.<\\/p><p align=\\\"center\\\">When all your troubles weigh<br \\/>heavily on your shoulders,<br \\/>remember that beneath the burden<br \\/>you can stand tall,<br \\/>because you are never given<br \\/>more than you can handle...<br \\/>and you are stronger than you think<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#1A32D7\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8227,1082,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8228,1082,'_elementor_css','a:6:{s:4:\"time\";i:1686285330;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:\"\";}'),(8230,262,'_elementor_css','a:6:{s:4:\"time\";i:1686768433;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8237,1083,'_elementor_page_assets','a:0:{}'),(8238,1083,'_elementor_css','a:7:{s:4:\"time\";i:1686284730;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(8239,1084,'_elementor_edit_mode','builder'),(8240,1084,'_elementor_template_type','wp-page'),(8241,1084,'_elementor_version','3.13.3'),(8242,1084,'_wp_page_template','default'),(8243,1084,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8244,1084,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":902,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g12cf06d74_1280.jpg\"},{\"id\":898,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\"},{\"id\":897,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\"},{\"id\":896,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\"},{\"id\":895,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">To make basic yoga practice easily accessible to everyone without charge.<\\/p><p style=\\\"text-align: justify;\\\">Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i> <\\/i><\\/b>exercise<b>s<i>, <\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p><p style=\\\"text-align: justify;\\\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p><p style=\\\"text-align: justify;\\\">After yoga super food i. e. grapes and banana are available for Yogies.<\\/p><p style=\\\"text-align: justify;\\\">Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8245,1084,'_elementor_page_assets','a:0:{}'),(8246,1084,'_elementor_css','a:7:{s:4:\"time\";i:1686284730;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(8247,1085,'_elementor_edit_mode','builder'),(8248,1085,'_elementor_template_type','wp-page'),(8249,1085,'_elementor_version','3.13.3'),(8250,1085,'_wp_page_template','default'),(8251,1085,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8252,1085,'_elementor_data','[{\"id\":\"cfd5ecc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"200d04f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34db542\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":902,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g12cf06d74_1280.jpg\"},{\"id\":898,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\"},{\"id\":897,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\"},{\"id\":896,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\"},{\"id\":895,\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/meditate-g16efcb560_1280.jpg\"}],\"thumbnail_size\":\"1536x1536\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fb4b6f8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"383d4bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7408801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">To make basic yoga practice easily accessible to everyone without charge.<\\/p><p style=\\\"text-align: justify;\\\">Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i> <\\/i><\\/b>exercise<b>s<i>, <\\/i><\\/b>\\u00a0mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p><p style=\\\"text-align: justify;\\\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p><p style=\\\"text-align: justify;\\\">After yoga super food i. e. grapes and banana are available for Yogies.<\\/p><p style=\\\"text-align: justify;\\\">Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8253,1085,'_elementor_page_assets','a:0:{}'),(8254,1085,'_elementor_css','a:7:{s:4:\"time\";i:1686284730;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(8256,43,'_elementor_css','a:6:{s:4:\"time\";i:1686768627;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8263,1086,'_elementor_page_assets','a:0:{}'),(8264,1086,'_elementor_css','a:6:{s:4:\"time\";i:1686323854;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:\"\";}'),(8265,1087,'_elementor_edit_mode','builder'),(8266,1087,'_elementor_template_type','wp-post'),(8267,1087,'_elementor_version','3.13.3'),(8268,1087,'_wp_page_template','default'),(8269,1087,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8270,1087,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2135575\",\"elType\":\"widget\",\"settings\":{\"title\":\"Present instructors\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>\\u00a0<\\/p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.\\u00a0Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.\\u00a0Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.\\u00a0\\u00a0<\\/p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga.\\u00a0In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.\\u00a0<\\/p><p>ears, yoga and meditation have been an integral part of my life.\\u00a0In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.\\u00a0<\\/p><p>\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/p><\\/div>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35c11b3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b3d00d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c3fede7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Past instructor\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/06\\/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg\",\"id\":974,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8271,1087,'_elementor_page_assets','a:0:{}'),(8272,1087,'_elementor_css','a:6:{s:4:\"time\";i:1686323854;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:\"\";}'),(8273,1088,'_elementor_edit_mode','builder'),(8274,1088,'_elementor_template_type','wp-post'),(8275,1088,'_elementor_version','3.13.3'),(8276,1088,'_wp_page_template','default'),(8277,1088,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(8278,1088,'_elementor_data','[{\"id\":\"08aa409\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d3c77eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23592fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5-1.jpg\",\"id\":147,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2135575\",\"elType\":\"widget\",\"settings\":{\"title\":\"Present instructors\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f111ee7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ef08f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"86af2a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/sunrise-g34a24ef5c_1280.jpg\",\"id\":896,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"thumbnail\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2184559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f9e69b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jocelyne Boucher\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c07f133\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><p>\\u00a0<\\/p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena\\u00a0\\u00a0at the International School of St-Lambert.\\u00a0Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.\\u00a0Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.\\u00a0\\u00a0<\\/p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga.\\u00a0In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.\\u00a0<\\/p><p>ears, yoga and meditation have been an integral part of my life.\\u00a0In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.\\u00a0<\\/p><p>\\u00a0I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.<\\/p><\\/div>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cb16fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1bfcbcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15aeae0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meera Trivedi \",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c209439\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is\\u00a0 yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin\\u00a0family, yoga was her everyday ritual as far as she can remember.\\u00a0\\u00a0 She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing\\u00a0 alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.<\\/p><p style=\\\"text-align: justify;\\\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that\\u00a0 for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.\\u00a0 She also tries to follow eight limbs of yoga as much as she can.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47b7912\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7157ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-g4ef99c854_1280.jpg\",\"id\":897,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":103.499}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef2a8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"844d887\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d369b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/peaceful-g5ada3643f_1280.jpg\",\"id\":898,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c7785f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db183c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<h1 data-elementor-setting-key=\\\"title\\\" data-pen-placeholder=\\\"Type Here...\\\" style=\\\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\\\">Mihaela Bostan Frandes<\\/h1>\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"298d469\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.<\\/p>\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":99.806},\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35c11b3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b3d00d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c3fede7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Past instructor\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e94f9a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"09138e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3300ae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vinesh Saxena\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5afdbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is \\u201cself-made person\\u201d. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.<\\/p><p style=\\\"text-align: justify;\\\">He retired around his 50\\u2019s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also \\u201cSeven simple principals of life\\u201d. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.<\\/p><p style=\\\"text-align: justify;\\\">As a second objective the foundation he also challenges to find answers to unanswered questions including \\u201cIs there a soul\\u201d? \\u201cIs there life after death\\u201d\\u00a0 \\u201cDoes God exist\\u201d?<\\/p><p style=\\\"text-align: justify;\\\">With the continuing themes of \\u201c helping the needy\\u201d and spirituality he started \\u201cFree Yoga sessions\\u201d to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6843856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f761b94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/06\\/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg\",\"id\":974,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"image_custom_dimension\":{\"width\":\"500\",\"height\":\"300\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8279,1088,'_elementor_page_assets','a:0:{}'),(8280,1088,'_elementor_css','a:6:{s:4:\"time\";i:1686323854;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:\"\";}'),(8282,21,'_elementor_css','a:6:{s:4:\"time\";i:1686768754;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8289,1089,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8290,1089,'_elementor_css','a:6:{s:4:\"time\";i:1686273820;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:\"\";}'),(8291,1090,'_elementor_template_type','wp-page'),(8292,1090,'_elementor_edit_mode','builder'),(8293,1090,'_elementor_version','3.13.3'),(8294,1090,'_wp_page_template','default'),(8295,1090,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8296,1090,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">There is this story about a famous research scientist who had made several very important medical breakthroughs. He was being interviewed by a newspaper reporter who asked him why he thought he was able to be so much more creative than the average person. What set him so far apart from others?<\\/p><p style=\\\"text-align: justify;\\\">He responded that, in his opinion, it all came from an experience with his mother that occurred when he was about two years old. He had been trying to remove a bottle of milk from the refrigerator when he lost his grip on the slippery bottle and it fell, spilling its contents all over the kitchen floor - a veritable sea of milk!<\\/p><p style=\\\"text-align: justify;\\\">When his mother came into the kitchen, instead of yelling at him, giving him a lecture, or punishing him, she said, \\\"Robert, what a great and wonderful mess you have made! I have rarely seen such a huge puddle of milk. Well, the damage has already been done. Would you like to get down and play in the milk for a few minutes before we clean it up?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Indeed, he did. After a few minutes, his mother said, \\\"You know, Robert, whenever you make a mess like this, eventually you have to clean it up and restore everything to its proper order. So, how would you like to do that? We could use a sponge, a towel, or a mop. Which do you prefer?\\\"<\\/p><p style=\\\"text-align: justify;\\\">He chose the sponge and together they cleaned up the spilled milk.<\\/p><p style=\\\"text-align: justify;\\\">His mother then said, \\\"You know, what we have here is a failed experiment in how to effectively carry a big milk bottle with two tiny hands. Let\'s go out in the back yard and fill the bottle with water and see if you can discover a way to carry it without dropping it.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The little boy learned that if he grasped the bottle at the top near the lip with both hands, he could carry it without dropping it. This renowned scientist then remarked that it was at that moment that he knew he didn\'t need to be afraid to make mistakes. Instead, he learned that mistakes were just opportunities for learning something new, which is, after all, what scientific experiments are all about. Even if the experiment \\\"doesn\'t work,\\\" we usually learn something valuable from it.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8297,1090,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8298,1090,'_elementor_css','a:6:{s:4:\"time\";i:1686273820;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:\"\";}'),(8299,1091,'_elementor_template_type','wp-page'),(8300,1091,'_elementor_edit_mode','builder'),(8301,1091,'_elementor_version','3.13.3'),(8302,1091,'_wp_page_template','default'),(8303,1091,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8304,1091,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">There is this story about a famous research scientist who had made several very important medical breakthroughs. He was being interviewed by a newspaper reporter who asked him why he thought he was able to be so much more creative than the average person. What set him so far apart from others?<\\/p><p style=\\\"text-align: justify;\\\">He responded that, in his opinion, it all came from an experience with his mother that occurred when he was about two years old. He had been trying to remove a bottle of milk from the refrigerator when he lost his grip on the slippery bottle and it fell, spilling its contents all over the kitchen floor - a veritable sea of milk!<\\/p><p style=\\\"text-align: justify;\\\">When his mother came into the kitchen, instead of yelling at him, giving him a lecture, or punishing him, she said, \\\"Robert, what a great and wonderful mess you have made! I have rarely seen such a huge puddle of milk. Well, the damage has already been done. Would you like to get down and play in the milk for a few minutes before we clean it up?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Indeed, he did. After a few minutes, his mother said, \\\"You know, Robert, whenever you make a mess like this, eventually you have to clean it up and restore everything to its proper order. So, how would you like to do that? We could use a sponge, a towel, or a mop. Which do you prefer?\\\"<\\/p><p style=\\\"text-align: justify;\\\">He chose the sponge and together they cleaned up the spilled milk.<\\/p><p style=\\\"text-align: justify;\\\">His mother then said, \\\"You know, what we have here is a failed experiment in how to effectively carry a big milk bottle with two tiny hands. Let\'s go out in the back yard and fill the bottle with water and see if you can discover a way to carry it without dropping it.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The little boy learned that if he grasped the bottle at the top near the lip with both hands, he could carry it without dropping it. This renowned scientist then remarked that it was at that moment that he knew he didn\'t need to be afraid to make mistakes. Instead, he learned that mistakes were just opportunities for learning something new, which is, after all, what scientific experiments are all about. Even if the experiment \\\"doesn\'t work,\\\" we usually learn something valuable from it.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8305,1091,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8306,1091,'_elementor_css','a:6:{s:4:\"time\";i:1686273820;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:\"\";}'),(8308,354,'_elementor_css','a:6:{s:4:\"time\";i:1686768958;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8315,1092,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8316,1092,'_elementor_css','a:6:{s:4:\"time\";i:1686273821;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:\"\";}'),(8317,1093,'_elementor_template_type','wp-page'),(8318,1093,'_elementor_edit_mode','builder'),(8319,1093,'_elementor_version','3.13.4'),(8320,1093,'_wp_page_template','default'),(8321,1093,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8322,1093,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.<\\/h3><h3>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.<\\/h3><h3>Here\'s what you do,\\\" said the Doctor, \\\"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\\\"<\\/h3><h3>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \\\"I\'m about 40 feet away, let\'s see what happens.\\\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\\\"<\\/h3><h3>No response.<\\/h3><h3>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>Still no response.<\\/h3><h3>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\\\"<\\/h3><h3>Again he gets no response.<\\/h3><h3>So he walks up to the kitchen door, about 10 feet away. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>Again there is no response.<\\/h3><h3>So he walks right up behind her. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>\\\"James, for the FIFTH time I\'ve said, Lima Beans!\\\"<\\/h3><h3>The problem may not be with the other person as we always think, could be very much within us!<\\/h3>\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8323,1093,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8324,1093,'_elementor_css','a:6:{s:4:\"time\";i:1686273821;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:\"\";}'),(8325,1094,'_elementor_template_type','wp-page'),(8326,1094,'_elementor_edit_mode','builder'),(8327,1094,'_elementor_version','3.13.4'),(8328,1094,'_wp_page_template','default'),(8329,1094,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8330,1094,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.<\\/h3><h3>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.<\\/h3><h3>Here\'s what you do,\\\" said the Doctor, \\\"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\\\"<\\/h3><h3>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \\\"I\'m about 40 feet away, let\'s see what happens.\\\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\\\"<\\/h3><h3>No response.<\\/h3><h3>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>Still no response.<\\/h3><h3>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\\\"<\\/h3><h3>Again he gets no response.<\\/h3><h3>So he walks up to the kitchen door, about 10 feet away. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>Again there is no response.<\\/h3><h3>So he walks right up behind her. \\\"Honey, what\'s for dinner?\\\"<\\/h3><h3>\\\"James, for the FIFTH time I\'ve said, Lima Beans!\\\"<\\/h3><h3>The problem may not be with the other person as we always think, could be very much within us!<\\/h3>\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8331,1094,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8332,1094,'_elementor_css','a:6:{s:4:\"time\";i:1686273821;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:\"\";}'),(8340,1095,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8341,1095,'_elementor_css','a:6:{s:4:\"time\";i:1686274688;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:\"\";}'),(8342,1096,'_elementor_template_type','wp-page'),(8343,1096,'_elementor_edit_mode','builder'),(8344,1096,'_elementor_version','3.13.4'),(8345,1096,'_wp_page_template','default'),(8346,1096,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8347,1096,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \\\"Who would like this $20 bill?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Hands started going up.<\\/p><p style=\\\"text-align: justify;\\\">He said, \\\"I am going to give this $20 to one of you but first, let me do this.\\\" He proceeded to crumple the dollar bill up.<\\/p><p style=\\\"text-align: justify;\\\">He then asked, \\\"Who still wants it?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Still the hands were up in the air.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Well,\\\" he replied, \\\"What if I do this?\\\" And he dropped it on the ground and started to grind it into the floor with his shoe.<\\/p><p style=\\\"text-align: justify;\\\">He picked it up, now all crumpled and dirty. \\\"Now who still wants it?\\\" Still the hands went into the air.<\\/p><p style=\\\"text-align: justify;\\\">\\\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.<\\/p><p style=\\\"text-align: justify;\\\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.<\\/p><p style=\\\"text-align: justify;\\\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8348,1096,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8349,1096,'_elementor_css','a:6:{s:4:\"time\";i:1686274688;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:\"\";}'),(8365,1098,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8366,1098,'_elementor_css','a:6:{s:4:\"time\";i:1686475667;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:\"\";}'),(8367,1099,'_elementor_template_type','wp-page'),(8368,1099,'_elementor_edit_mode','builder'),(8369,1099,'_elementor_version','3.13.3'),(8370,1099,'_wp_page_template','default'),(8371,1099,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8372,1099,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Three farmers gathered to evaluate and share their experiences from the year passed. Each had a hundred square meter of land on which they farmed. At the end of the meeting, the first farmer said, \\\"The situation was very hard and it will be much worse for next year.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The second replied, \\\"You are certainly right. As a matter of fact, after working very hard the whole year, from sunrise to sunset, I only gained 1% profit after all expenses.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Calculating his own numbers, the first farmer replied, \\\"I believe that my total profit is exactly the same as yours, which is 1%.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The two of them looked at the third farmer and asked, \\\"How much profit did you make during this year?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The third farmer kindly replied, \\\"Gentleman, with all due respect, I obtained a 5% profit during this year.\\\"<\\/p><p style=\\\"text-align: justify;\\\">That was followed by a long silence...<\\/p><p style=\\\"text-align: justify;\\\">\\\"How come? 5% profit?? That is impossible!!!! How did you do that???\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"Very easy and simple math,\\\" said the third farmer. \\\"I made the very same 1% profit as you did. ... plus 4% that represents the immense pleasure to be able to enjoy this view, milk my cows and enjoy the most of my farm. That gives me 5% total profit.\\\"<\\/p><p style=\\\"text-align: justify;\\\"><b>Moral Of the Story:<\\/b> All of us have to take care of our farm (that is our hundred square meter land) and get the maximum profit while enjoying every instant of our lives and work!!!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8373,1099,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8374,1099,'_elementor_css','a:6:{s:4:\"time\";i:1686475667;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:\"\";}'),(8375,1100,'_elementor_template_type','wp-page'),(8376,1100,'_elementor_edit_mode','builder'),(8377,1100,'_elementor_version','3.13.3'),(8378,1100,'_wp_page_template','default'),(8379,1100,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8380,1100,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Three farmers gathered to evaluate and share their experiences from the year passed. Each had a hundred square meter of land on which they farmed. At the end of the meeting, the first farmer said, \\\"The situation was very hard and it will be much worse for next year.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The second replied, \\\"You are certainly right. As a matter of fact, after working very hard the whole year, from sunrise to sunset, I only gained 1% profit after all expenses.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Calculating his own numbers, the first farmer replied, \\\"I believe that my total profit is exactly the same as yours, which is 1%.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The two of them looked at the third farmer and asked, \\\"How much profit did you make during this year?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The third farmer kindly replied, \\\"Gentleman, with all due respect, I obtained a 5% profit during this year.\\\"<\\/p><p style=\\\"text-align: justify;\\\">That was followed by a long silence...<\\/p><p style=\\\"text-align: justify;\\\">\\\"How come? 5% profit?? That is impossible!!!! How did you do that???\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"Very easy and simple math,\\\" said the third farmer. \\\"I made the very same 1% profit as you did. ... plus 4% that represents the immense pleasure to be able to enjoy this view, milk my cows and enjoy the most of my farm. That gives me 5% total profit.\\\"<\\/p><p style=\\\"text-align: justify;\\\"><b>Moral Of the Story:<\\/b> All of us have to take care of our farm (that is our hundred square meter land) and get the maximum profit while enjoying every instant of our lives and work!!!<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8381,1100,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8382,1100,'_elementor_css','a:6:{s:4:\"time\";i:1686475667;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:\"\";}'),(8390,1101,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8391,1101,'_elementor_css','a:6:{s:4:\"time\";i:1686437537;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:\"\";}'),(8392,1102,'_elementor_template_type','wp-page'),(8393,1102,'_elementor_edit_mode','builder'),(8394,1102,'_elementor_version','3.13.3'),(8395,1102,'_wp_page_template','default'),(8396,1102,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8397,1102,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Bringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \\\"A View from the Zoo\\\", Gary Richmond describes<\\/p><p style=\\\"text-align: justify;\\\">how a newborn giraffe learns its first lesson.<br \\/>The mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing.\\u00a0She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.<\\/p><p style=\\\"text-align: justify;\\\">When it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.<\\/p><p style=\\\"text-align: justify;\\\">Then the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.<\\/p><p style=\\\"text-align: justify;\\\">The late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.<\\/p><p style=\\\"text-align: justify;\\\">Stone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \\\"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.<\\/p><p style=\\\"text-align: justify;\\\">\\\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\\\"<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8398,1102,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8399,1102,'_elementor_css','a:6:{s:4:\"time\";i:1686437537;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:\"\";}'),(8400,1103,'_elementor_template_type','wp-page'),(8401,1103,'_elementor_edit_mode','builder'),(8402,1103,'_elementor_version','3.13.3'),(8403,1103,'_wp_page_template','default'),(8404,1103,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8405,1103,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Bringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \\\"A View from the Zoo\\\", Gary Richmond describes<\\/p><p style=\\\"text-align: justify;\\\">how a newborn giraffe learns its first lesson.<br \\/>The mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing.\\u00a0She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.<\\/p><p style=\\\"text-align: justify;\\\">When it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.<\\/p><p style=\\\"text-align: justify;\\\">Then the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.<\\/p><p style=\\\"text-align: justify;\\\">The late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.<\\/p><p style=\\\"text-align: justify;\\\">Stone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \\\"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.<\\/p><p style=\\\"text-align: justify;\\\">\\\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\\\"<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8406,1103,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8407,1103,'_elementor_css','a:6:{s:4:\"time\";i:1686437537;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:\"\";}'),(8415,1104,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8416,1104,'_elementor_css','a:6:{s:4:\"time\";i:1686330761;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:\"\";}'),(8417,1105,'_elementor_template_type','wp-page'),(8418,1105,'_elementor_edit_mode','builder'),(8419,1105,'_elementor_version','3.13.3'),(8420,1105,'_wp_page_template','default'),(8421,1105,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8422,1105,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Sir Winston Churchill took three years getting through eighth grade because he had trouble learning English. It seems ironic that years later Oxford University asked him to address its commencement exercises.<\\/p><p style=\\\"text-align: justify;\\\">He arrived with his usual props. A cigar, a cane and a top hat accompanied Churchill wherever he went. As Churchill approached the podium, the crowd rose in appreciative applause. With unmatched dignity, he settled the crowd and stood confident before his admirers. Removing the cigar and carefully placing the top hat on the podium, Churchill gazed at his waiting audience. Authority rang in Churchill\'s voice as he shouted, \\\"Never give up!\\\"<\\/p><p style=\\\"text-align: justify;\\\">Several seconds passed before he rose to his toes and repeated: \\\"Never give up!\\\" His words thundered in their ears. There was a deafening silence as Churchill reached for his hat and cigar, steadied himself with his cane and left the platform. His commencement address was finished<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8423,1105,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8424,1105,'_elementor_css','a:6:{s:4:\"time\";i:1686330761;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:\"\";}'),(8425,1106,'_elementor_template_type','wp-page'),(8426,1106,'_elementor_edit_mode','builder'),(8427,1106,'_elementor_version','3.13.3'),(8428,1106,'_wp_page_template','default'),(8429,1106,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8430,1106,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Sir Winston Churchill took three years getting through eighth grade because he had trouble learning English. It seems ironic that years later Oxford University asked him to address its commencement exercises.<\\/p><p style=\\\"text-align: justify;\\\">He arrived with his usual props. A cigar, a cane and a top hat accompanied Churchill wherever he went. As Churchill approached the podium, the crowd rose in appreciative applause. With unmatched dignity, he settled the crowd and stood confident before his admirers. Removing the cigar and carefully placing the top hat on the podium, Churchill gazed at his waiting audience. Authority rang in Churchill\'s voice as he shouted, \\\"Never give up!\\\"<\\/p><p style=\\\"text-align: justify;\\\">Several seconds passed before he rose to his toes and repeated: \\\"Never give up!\\\" His words thundered in their ears. There was a deafening silence as Churchill reached for his hat and cigar, steadied himself with his cane and left the platform. His commencement address was finished<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8431,1106,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8432,1106,'_elementor_css','a:6:{s:4:\"time\";i:1686330761;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:\"\";}'),(8434,364,'_elementor_css','a:6:{s:4:\"time\";i:1686779120;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8441,1107,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8442,1107,'_elementor_css','a:6:{s:4:\"time\";i:1686475667;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:\"\";}'),(8443,1108,'_elementor_template_type','wp-page'),(8444,1108,'_elementor_edit_mode','builder'),(8445,1108,'_elementor_version','3.13.3'),(8446,1108,'_wp_page_template','default'),(8447,1108,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8448,1108,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">This is a \\u00a0parable of a farmer who owned an old mule. The mule fell into the farmer\'s well. The farmer heard the mule \'braying\' -- or whatever mules do when they fall into wells. After carefully assessing the situation, the farmer felt sorry for the mule, but decided that neither the mule nor the well was worth saving. Instead, he called his neighbors together and told them what had happened and asked them to help haul dirt to bury the old mule in the well and put him out of his misery.<\\/p><p style=\\\"text-align: justify;\\\">Initially, the old mule was hysterical! But as the farmer and his neighbors continued shoveling and the dirt hit his back, a thought struck him. It suddenly dawned on him that every time a shovel load of dirt landed on his back: he should shake it off and step up! This is what the old mule did, blow after blow. \\\"Shake it off and step up... shake it off and step up... shake it off and step up!\\\" he repeated to encourage himself.<\\/p><p style=\\\"text-align: justify;\\\">No matter how painful the blows, or distressing the situation seemed, the old mule fought \\\"panic\\\" and just kept right on shaking it off and stepping up! You guessed it! It wasn\'t long before the old mule, battered and exhausted, stepped triumphantly over the wall of that well! What seemed like it would bury him, actually end up blessing him. All because of the manner in which he handled his adversity.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8449,1108,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8450,1108,'_elementor_css','a:6:{s:4:\"time\";i:1686475667;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:\"\";}'),(8451,1109,'_elementor_template_type','wp-page'),(8452,1109,'_elementor_edit_mode','builder'),(8453,1109,'_elementor_version','3.13.3'),(8454,1109,'_wp_page_template','default'),(8455,1109,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8456,1109,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">This is a \\u00a0parable of a farmer who owned an old mule. The mule fell into the farmer\'s well. The farmer heard the mule \'braying\' -- or whatever mules do when they fall into wells. After carefully assessing the situation, the farmer felt sorry for the mule, but decided that neither the mule nor the well was worth saving. Instead, he called his neighbors together and told them what had happened and asked them to help haul dirt to bury the old mule in the well and put him out of his misery.<\\/p><p style=\\\"text-align: justify;\\\">Initially, the old mule was hysterical! But as the farmer and his neighbors continued shoveling and the dirt hit his back, a thought struck him. It suddenly dawned on him that every time a shovel load of dirt landed on his back: he should shake it off and step up! This is what the old mule did, blow after blow. \\\"Shake it off and step up... shake it off and step up... shake it off and step up!\\\" he repeated to encourage himself.<\\/p><p style=\\\"text-align: justify;\\\">No matter how painful the blows, or distressing the situation seemed, the old mule fought \\\"panic\\\" and just kept right on shaking it off and stepping up! You guessed it! It wasn\'t long before the old mule, battered and exhausted, stepped triumphantly over the wall of that well! What seemed like it would bury him, actually end up blessing him. All because of the manner in which he handled his adversity.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8457,1109,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8458,1109,'_elementor_css','a:6:{s:4:\"time\";i:1686475667;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:\"\";}'),(8466,1110,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8467,1110,'_elementor_css','a:6:{s:4:\"time\";i:1686475660;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:\"\";}'),(8468,1111,'_elementor_template_type','wp-page'),(8469,1111,'_elementor_edit_mode','builder'),(8470,1111,'_elementor_version','3.13.3'),(8471,1111,'_wp_page_template','default'),(8472,1111,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8473,1111,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">On a beautiful morning, an older gentleman, aged 75, was sitting with his son when he asked his son what was sitting in the window. He himself was not able to recognize what it was, due to his weak eyesight.<\\/p><p style=\\\"text-align: justify;\\\">His son replied, \\\"That is the crow.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Due to his age, the older man forgot and asked again.<\\/p><p style=\\\"text-align: justify;\\\">His son again replied the same thing, \\\"That is the crow.\\\"<\\/p><p style=\\\"text-align: justify;\\\">This exchange continued for seven to eight times when, and at last, his son got annoyed and replied with anger, \\\"Why are you asking the same thing again and again?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The old man replied with tears in his eyes. \\\"Son, don\'t get angry. When you were at the age of 4 years you asked me the same question 40 times and I never got angry<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8474,1111,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8475,1111,'_elementor_css','a:6:{s:4:\"time\";i:1686475660;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:\"\";}'),(8476,1112,'_elementor_template_type','wp-page'),(8477,1112,'_elementor_edit_mode','builder'),(8478,1112,'_elementor_version','3.13.3'),(8479,1112,'_wp_page_template','default'),(8480,1112,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8481,1112,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">On a beautiful morning, an older gentleman, aged 75, was sitting with his son when he asked his son what was sitting in the window. He himself was not able to recognize what it was, due to his weak eyesight.<\\/p><p style=\\\"text-align: justify;\\\">His son replied, \\\"That is the crow.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Due to his age, the older man forgot and asked again.<\\/p><p style=\\\"text-align: justify;\\\">His son again replied the same thing, \\\"That is the crow.\\\"<\\/p><p style=\\\"text-align: justify;\\\">This exchange continued for seven to eight times when, and at last, his son got annoyed and replied with anger, \\\"Why are you asking the same thing again and again?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The old man replied with tears in his eyes. \\\"Son, don\'t get angry. When you were at the age of 4 years you asked me the same question 40 times and I never got angry<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8482,1112,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8483,1112,'_elementor_css','a:6:{s:4:\"time\";i:1686475660;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:\"\";}'),(8491,1113,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8492,1113,'_elementor_css','a:6:{s:4:\"time\";i:1686475668;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:\"\";}'),(8493,1114,'_elementor_template_type','wp-page'),(8494,1114,'_elementor_edit_mode','builder'),(8495,1114,'_elementor_version','3.13.3'),(8496,1114,'_wp_page_template','default'),(8497,1114,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8498,1114,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">A vacationing American businessman standing on the pier of a quaint coastal fishing village in southern Mexico watched as a small boat with just one young Mexican fisherman pulled into the dock. Inside the small boat were several large yellowfin tuna. Enjoying the warmth of the early afternoon sun, the American complimented the Mexican on the quality of his fish.<\\/p><p style=\\\"text-align: justify;\\\">\\\"How long did it take you to catch them?\\\" the American casually asked.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Oh, a few hours,\\\" the Mexican fisherman replied.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Why don\'t you stay out longer and catch more fish?\\\" the American businessman then asked.<\\/p><p style=\\\"text-align: justify;\\\">The Mexican warmly replied, \\\"With this I have more than enough to support my family\'s needs.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The businessman then became serious, \\\"But what do you do with the rest of your time?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Responding with a smile, the Mexican fisherman answered, \\\"I sleep late, play with my children, watch ballgames, and take siesta with my wife. Sometimes in the evenings I take a stroll into the village to see my friends, play the guitar, sing a few songs...\\\"<\\/p><p style=\\\"text-align: justify;\\\">The American businessman impatiently interrupted, \\\"Look, I have an MBA from Harvard, and I can help you to be more profitable. You can start by fishing several hours longer every day. You can then sell the extra fish you catch. With the extra money, you can buy a bigger boat. With the additional income that larger boat will bring, before long you can buy a second boat, then a third one, and so on, until you have an entire fleet of fishing boats.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Proud of his own sharp thinking, he excitedly elaborated a grand scheme which could bring even bigger profits, \\\"Then, instead of selling your catch to a middleman you\'ll be able to sell your fish directly to the processor, or even open your own cannery. Eventually, you could control the product, processing and distribution. You could leave this tiny coastal village and move to Mexico City, or possibly even Los Angeles or New York City, where you could even further expand your enterprise.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Having never thought of such things, the Mexican fisherman asked, \\\"But how long will all this take?\\\"<\\/p><p style=\\\"text-align: justify;\\\">After a rapid mental calculation, the Harvard MBA pronounced, \\\"Probably about 15-20 years, maybe less if you work really hard.\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"And then what, se\\u00f1or?\\\" asked the fisherman.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Why, that\'s the best part!\\\" answered the businessman with a laugh. \\\"When the time is right, you would sell your company stock to the public and become very rich. You would make millions.\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"Millions? Really? What would I do with it all?\\\" asked the young fisherman in disbelief.<\\/p><p style=\\\"text-align: justify;\\\">The businessman boasted, \\\"Then you could happily retire with all the money you\'ve made. You could move to a quaint coastal fishing village where you could sleep late, play with your grandchildren, watch ballgames, and take siesta with your wife. You could stroll to the village in the evenings where you could play the guitar and sing with your friends all you want.\\\"<br \\/>The moral of the story is: <strong>Know what really matters in life, and you may find that it is already much closer than you think<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8499,1114,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8500,1114,'_elementor_css','a:6:{s:4:\"time\";i:1686475668;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:\"\";}'),(8501,1115,'_elementor_template_type','wp-page'),(8502,1115,'_elementor_edit_mode','builder'),(8503,1115,'_elementor_version','3.13.3'),(8504,1115,'_wp_page_template','default'),(8505,1115,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8506,1115,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">A vacationing American businessman standing on the pier of a quaint coastal fishing village in southern Mexico watched as a small boat with just one young Mexican fisherman pulled into the dock. Inside the small boat were several large yellowfin tuna. Enjoying the warmth of the early afternoon sun, the American complimented the Mexican on the quality of his fish.<\\/p><p style=\\\"text-align: justify;\\\">\\\"How long did it take you to catch them?\\\" the American casually asked.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Oh, a few hours,\\\" the Mexican fisherman replied.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Why don\'t you stay out longer and catch more fish?\\\" the American businessman then asked.<\\/p><p style=\\\"text-align: justify;\\\">The Mexican warmly replied, \\\"With this I have more than enough to support my family\'s needs.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The businessman then became serious, \\\"But what do you do with the rest of your time?\\\"<\\/p><p style=\\\"text-align: justify;\\\">Responding with a smile, the Mexican fisherman answered, \\\"I sleep late, play with my children, watch ballgames, and take siesta with my wife. Sometimes in the evenings I take a stroll into the village to see my friends, play the guitar, sing a few songs...\\\"<\\/p><p style=\\\"text-align: justify;\\\">The American businessman impatiently interrupted, \\\"Look, I have an MBA from Harvard, and I can help you to be more profitable. You can start by fishing several hours longer every day. You can then sell the extra fish you catch. With the extra money, you can buy a bigger boat. With the additional income that larger boat will bring, before long you can buy a second boat, then a third one, and so on, until you have an entire fleet of fishing boats.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Proud of his own sharp thinking, he excitedly elaborated a grand scheme which could bring even bigger profits, \\\"Then, instead of selling your catch to a middleman you\'ll be able to sell your fish directly to the processor, or even open your own cannery. Eventually, you could control the product, processing and distribution. You could leave this tiny coastal village and move to Mexico City, or possibly even Los Angeles or New York City, where you could even further expand your enterprise.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Having never thought of such things, the Mexican fisherman asked, \\\"But how long will all this take?\\\"<\\/p><p style=\\\"text-align: justify;\\\">After a rapid mental calculation, the Harvard MBA pronounced, \\\"Probably about 15-20 years, maybe less if you work really hard.\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"And then what, se\\u00f1or?\\\" asked the fisherman.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Why, that\'s the best part!\\\" answered the businessman with a laugh. \\\"When the time is right, you would sell your company stock to the public and become very rich. You would make millions.\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"Millions? Really? What would I do with it all?\\\" asked the young fisherman in disbelief.<\\/p><p style=\\\"text-align: justify;\\\">The businessman boasted, \\\"Then you could happily retire with all the money you\'ve made. You could move to a quaint coastal fishing village where you could sleep late, play with your grandchildren, watch ballgames, and take siesta with your wife. You could stroll to the village in the evenings where you could play the guitar and sing with your friends all you want.\\\"<br \\/>The moral of the story is: <strong>Know what really matters in life, and you may find that it is already much closer than you think<\\/strong><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8507,1115,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8508,1115,'_elementor_css','a:6:{s:4:\"time\";i:1686475668;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:\"\";}'),(8516,1116,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8517,1116,'_elementor_css','a:6:{s:4:\"time\";i:1686591570;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:\"\";}'),(8518,1117,'_elementor_template_type','wp-page'),(8519,1117,'_elementor_edit_mode','builder'),(8520,1117,'_elementor_version','3.13.3'),(8521,1117,'_wp_page_template','default'),(8522,1117,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8523,1117,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">This is a powerful message for our modern society. We seem to have lost our bearing and our sense of direction.<\\/p><p style=\\\"text-align: justify;\\\">One young academically excellent person went to apply for a managerial position in a big company. He passed the first interview; the director did the last interview. The director discovered from the CV that the youth\'s academic achievements were excellent all the way, from the secondary school until the postgraduate research, never had a year when he did not score.<\\/p><p style=\\\"text-align: justify;\\\">The director asked, \\\"Did you obtain any scholarships in school?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth answered, \\\"None.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The director asked, \\\"Was it your father who paid for your school fees?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth answered, \\\"My father passed away when I was one year old, it was my mother who paid for my school fees.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The director asked, \\\"Where did your mother work?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth answered, \\\"My mother worked as laundry woman.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The director requested the youth to show his hands. The youth showed a pair of hands that were smooth and perfect.<\\/p><p style=\\\"text-align: justify;\\\">The director asked, \\\"Have you ever helped your mother wash the clothes before?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth answered, \\\"Never, my mother always wanted me to study and read more books. Furthermore, my mother can wash clothes faster than me.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The director said, \\\"I have a request. When you go back today, go and clean your mother\'s hands, and then see me tomorrow morning.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth felt that his chance of landing the job was high. When he went back, he happily requested his mother to let him clean her hands. His mother felt strange. Happy but with mixed feelings, she showed her hands to the young man.<\\/p><p style=\\\"text-align: justify;\\\">The youth cleaned his mother\'s hands slowly. His tear fell as he did that. It was the first time he noticed that his mother\'s hands were so wrinkled, and there were so many bruises in her hands. Some bruises were so painful that his mother shivered when they were cleaned with water.<\\/p><p style=\\\"text-align: justify;\\\">This was the first time the youth realized that it was this pair of hands that washed the clothes everyday to enable him to pay the school fee. The bruises in the mother\'s hands were the price that the mother had to pay for his graduation, academic excellence and his future.<\\/p><p style=\\\"text-align: justify;\\\">After finishing the cleaning of his mother\'s hands, the youth quietly washed all the remaining clothes for his mother.<\\/p><p style=\\\"text-align: justify;\\\">That night, mother and son talked for a very long time.<\\/p><p style=\\\"text-align: justify;\\\">Next morning, the youth went to the director\'s office.<\\/p><p style=\\\"text-align: justify;\\\">The Director noticed the tears in the youth\'s eyes, asked: \\\"Can you tell me what have you done and learned yesterday in your house?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth answered, \\\"I cleaned my mother\'s hands and also finished cleaning all the remaining clothes.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The Director asked, \\\"Please tell me your feelings.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth said:<\\/p><ol style=\\\"text-align: justify;\\\" start=\\\"1\\\"><li>I know now what appreciation is. Without my mother, there would not have been the successful me today.<\\/li><li>By working together and helping my mother, only now I realize how difficult and tough it is to get something done.<\\/li><li>I have come to appreciate the importance and value of family relationships.<\\/li><\\/ol><p style=\\\"text-align: justify;\\\">The director said, \\\"This is what I am looking for to be my manager. I want to recruit a person who can appreciate the help of others, a person who knows the sufferings of others to get things done, and a person who would not put money as his only goal in life. You are hired.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Later on, this young person worked very hard and received the respect of his subordinates. Every employee worked diligently and as a team. The company\'s performance improved tremendously<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8524,1117,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8525,1117,'_elementor_css','a:6:{s:4:\"time\";i:1686591570;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:\"\";}'),(8526,1118,'_elementor_template_type','wp-page'),(8527,1118,'_elementor_edit_mode','builder'),(8528,1118,'_elementor_version','3.13.3'),(8529,1118,'_wp_page_template','default'),(8530,1118,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8531,1118,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">This is a powerful message for our modern society. We seem to have lost our bearing and our sense of direction.<\\/p><p style=\\\"text-align: justify;\\\">One young academically excellent person went to apply for a managerial position in a big company. He passed the first interview; the director did the last interview. The director discovered from the CV that the youth\'s academic achievements were excellent all the way, from the secondary school until the postgraduate research, never had a year when he did not score.<\\/p><p style=\\\"text-align: justify;\\\">The director asked, \\\"Did you obtain any scholarships in school?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth answered, \\\"None.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The director asked, \\\"Was it your father who paid for your school fees?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth answered, \\\"My father passed away when I was one year old, it was my mother who paid for my school fees.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The director asked, \\\"Where did your mother work?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth answered, \\\"My mother worked as laundry woman.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The director requested the youth to show his hands. The youth showed a pair of hands that were smooth and perfect.<\\/p><p style=\\\"text-align: justify;\\\">The director asked, \\\"Have you ever helped your mother wash the clothes before?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth answered, \\\"Never, my mother always wanted me to study and read more books. Furthermore, my mother can wash clothes faster than me.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The director said, \\\"I have a request. When you go back today, go and clean your mother\'s hands, and then see me tomorrow morning.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth felt that his chance of landing the job was high. When he went back, he happily requested his mother to let him clean her hands. His mother felt strange. Happy but with mixed feelings, she showed her hands to the young man.<\\/p><p style=\\\"text-align: justify;\\\">The youth cleaned his mother\'s hands slowly. His tear fell as he did that. It was the first time he noticed that his mother\'s hands were so wrinkled, and there were so many bruises in her hands. Some bruises were so painful that his mother shivered when they were cleaned with water.<\\/p><p style=\\\"text-align: justify;\\\">This was the first time the youth realized that it was this pair of hands that washed the clothes everyday to enable him to pay the school fee. The bruises in the mother\'s hands were the price that the mother had to pay for his graduation, academic excellence and his future.<\\/p><p style=\\\"text-align: justify;\\\">After finishing the cleaning of his mother\'s hands, the youth quietly washed all the remaining clothes for his mother.<\\/p><p style=\\\"text-align: justify;\\\">That night, mother and son talked for a very long time.<\\/p><p style=\\\"text-align: justify;\\\">Next morning, the youth went to the director\'s office.<\\/p><p style=\\\"text-align: justify;\\\">The Director noticed the tears in the youth\'s eyes, asked: \\\"Can you tell me what have you done and learned yesterday in your house?\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth answered, \\\"I cleaned my mother\'s hands and also finished cleaning all the remaining clothes.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The Director asked, \\\"Please tell me your feelings.\\\"<\\/p><p style=\\\"text-align: justify;\\\">The youth said:<\\/p><ol style=\\\"text-align: justify;\\\" start=\\\"1\\\"><li>I know now what appreciation is. Without my mother, there would not have been the successful me today.<\\/li><li>By working together and helping my mother, only now I realize how difficult and tough it is to get something done.<\\/li><li>I have come to appreciate the importance and value of family relationships.<\\/li><\\/ol><p style=\\\"text-align: justify;\\\">The director said, \\\"This is what I am looking for to be my manager. I want to recruit a person who can appreciate the help of others, a person who knows the sufferings of others to get things done, and a person who would not put money as his only goal in life. You are hired.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Later on, this young person worked very hard and received the respect of his subordinates. Every employee worked diligently and as a team. The company\'s performance improved tremendously<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8532,1118,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8533,1118,'_elementor_css','a:6:{s:4:\"time\";i:1686591570;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:\"\";}'),(8541,1119,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8542,1119,'_elementor_css','a:6:{s:4:\"time\";i:1686475665;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:\"\";}'),(8543,1120,'_elementor_template_type','wp-page'),(8544,1120,'_elementor_edit_mode','builder'),(8545,1120,'_elementor_version','3.13.3'),(8546,1120,'_wp_page_template','default'),(8547,1120,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8548,1120,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A disciple and his teacher were walking through the forest. The disciple was disturbed by the fact that his mind was in constant unrest.<\\/p><p>He asked his teacher: \\\"Why most people\'s minds are restless, and only a few possess a calm mind? What can one do to still the mind?\\\"<\\/p><p>The teacher looked at the disciple, smiled and said:<br \\/>\\\"I will tell you a story. An elephant was standing and picking leaves from a tree. A small fly came, flying and buzzing near his ear. The elephant waved it away with his long ears. Then the fly came again, and the elephant waved it away once more.\\\"<\\/p><p>This was repeated several times. Then the elephant asked the fly:<br \\/>\\\"Why are you so restless and noisy? Why can\'t you stay for a while in one place?\\\"<\\/p><p>The fly answered: \\\"I am attracted to whatever I see, hear or smell. My five senses, and everything that happens around me, pull me constantly in all directions, and I cannot resist them. What is your secret? How can you stay so calm and still?\\\"<\\/p><p>The elephant stopped eating and said:<br \\/>\\\"My five senses do not rule my attention. I am in control of my attention, and I can direct it wherever I want. This helps me to get immersed in whatever I do, and therefore, keep my mind focused and calm. Now that I am eating, I am completely immersed in eating. In this way, I can enjoy my food and chew it better. I control my attention, and not the other way around, and this helps me stay peaceful.\\\"<\\/p><p>Upon hearing these words, the disciple\'s eyes opened wide, and a smile appeared on his face. He looked at his teacher and said:<br \\/>\\\"I understand! My mind will be in constant unrest, if my five senses, and whatever is happening in the world around me are in control of it. On the other hand, if I am in command of my five senses, able to disregard sense impressions, my mind would become calm, and I will be able to disregard its restlessness.\\\"<\\/p><p>\\\"Yes, that\'s right,\\\" answered the teacher,\\\" The mind is restless and goes wherever the attention is. Control your attention, and you control your mind.\\\"<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8549,1120,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8550,1120,'_elementor_css','a:6:{s:4:\"time\";i:1686475665;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:\"\";}'),(8551,1121,'_elementor_template_type','wp-page'),(8552,1121,'_elementor_edit_mode','builder'),(8553,1121,'_elementor_version','3.13.3'),(8554,1121,'_wp_page_template','default'),(8555,1121,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8556,1121,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A disciple and his teacher were walking through the forest. The disciple was disturbed by the fact that his mind was in constant unrest.<\\/p><p>He asked his teacher: \\\"Why most people\'s minds are restless, and only a few possess a calm mind? What can one do to still the mind?\\\"<\\/p><p>The teacher looked at the disciple, smiled and said:<br \\/>\\\"I will tell you a story. An elephant was standing and picking leaves from a tree. A small fly came, flying and buzzing near his ear. The elephant waved it away with his long ears. Then the fly came again, and the elephant waved it away once more.\\\"<\\/p><p>This was repeated several times. Then the elephant asked the fly:<br \\/>\\\"Why are you so restless and noisy? Why can\'t you stay for a while in one place?\\\"<\\/p><p>The fly answered: \\\"I am attracted to whatever I see, hear or smell. My five senses, and everything that happens around me, pull me constantly in all directions, and I cannot resist them. What is your secret? How can you stay so calm and still?\\\"<\\/p><p>The elephant stopped eating and said:<br \\/>\\\"My five senses do not rule my attention. I am in control of my attention, and I can direct it wherever I want. This helps me to get immersed in whatever I do, and therefore, keep my mind focused and calm. Now that I am eating, I am completely immersed in eating. In this way, I can enjoy my food and chew it better. I control my attention, and not the other way around, and this helps me stay peaceful.\\\"<\\/p><p>Upon hearing these words, the disciple\'s eyes opened wide, and a smile appeared on his face. He looked at his teacher and said:<br \\/>\\\"I understand! My mind will be in constant unrest, if my five senses, and whatever is happening in the world around me are in control of it. On the other hand, if I am in command of my five senses, able to disregard sense impressions, my mind would become calm, and I will be able to disregard its restlessness.\\\"<\\/p><p>\\\"Yes, that\'s right,\\\" answered the teacher,\\\" The mind is restless and goes wherever the attention is. Control your attention, and you control your mind.\\\"<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8557,1121,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8558,1121,'_elementor_css','a:6:{s:4:\"time\";i:1686475665;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:\"\";}'),(8566,1122,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8567,1122,'_elementor_css','a:6:{s:4:\"time\";i:1686273825;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:\"\";}'),(8568,1123,'_elementor_template_type','wp-page'),(8569,1123,'_elementor_edit_mode','builder'),(8570,1123,'_elementor_version','3.13.3'),(8571,1123,'_wp_page_template','default'),(8572,1123,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8573,1123,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">There once was a little boy who had a bad temper. His father gave him a bag of nails and told him that every time he lost his temper, he must hammer a nail into the fence. The first day the boy had driven 37 nails into the fence. Over the next few weeks as he learned to control his anger, the number of nails hammered daily, gradually dwindled down. He discovered it was easier to hold his temper than to drive those nails into the fence.<\\/p><p style=\\\"text-align: justify;\\\">Finally the day came when the boy didn\'t lose his temper at all. He told his father about it and the father suggested that the boy now pull out one nail for each day that he was able to hold his temper. The days passed and the young boy was finally able to tell his father that all the nails were gone.<\\/p><p style=\\\"text-align: justify;\\\">The father took his son by the hand and led him to the fence. He said \\\"you have done well, my son, but look at the holes in the fence. The fence will never be the same. When you say things in anger, they leave a scar just like this one.\\\" You can put a knife in a man and draw it out. It won\'t matter how many times you say I\'m sorry, the wound is still there. Make sure you control your temper the next time you are tempted to say something you will regret later.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8574,1123,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8575,1123,'_elementor_css','a:6:{s:4:\"time\";i:1686273825;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:\"\";}'),(8576,1124,'_elementor_template_type','wp-page'),(8577,1124,'_elementor_edit_mode','builder'),(8578,1124,'_elementor_version','3.13.3'),(8579,1124,'_wp_page_template','default'),(8580,1124,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8581,1124,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">There once was a little boy who had a bad temper. His father gave him a bag of nails and told him that every time he lost his temper, he must hammer a nail into the fence. The first day the boy had driven 37 nails into the fence. Over the next few weeks as he learned to control his anger, the number of nails hammered daily, gradually dwindled down. He discovered it was easier to hold his temper than to drive those nails into the fence.<\\/p><p style=\\\"text-align: justify;\\\">Finally the day came when the boy didn\'t lose his temper at all. He told his father about it and the father suggested that the boy now pull out one nail for each day that he was able to hold his temper. The days passed and the young boy was finally able to tell his father that all the nails were gone.<\\/p><p style=\\\"text-align: justify;\\\">The father took his son by the hand and led him to the fence. He said \\\"you have done well, my son, but look at the holes in the fence. The fence will never be the same. When you say things in anger, they leave a scar just like this one.\\\" You can put a knife in a man and draw it out. It won\'t matter how many times you say I\'m sorry, the wound is still there. Make sure you control your temper the next time you are tempted to say something you will regret later.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8582,1124,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8583,1124,'_elementor_css','a:6:{s:4:\"time\";i:1686273825;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:\"\";}'),(8585,435,'_elementor_css','a:6:{s:4:\"time\";i:1686854905;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8592,1125,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8593,1125,'_elementor_css','a:6:{s:4:\"time\";i:1686475663;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:\"\";}'),(8594,1126,'_elementor_template_type','wp-page'),(8595,1126,'_elementor_edit_mode','builder'),(8596,1126,'_elementor_version','3.13.3'),(8597,1126,'_wp_page_template','default'),(8598,1126,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8599,1126,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">When I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up.<\\/p><p style=\\\"text-align: justify;\\\">I wrote down<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8600,1126,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8601,1126,'_elementor_css','a:6:{s:4:\"time\";i:1686475663;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:\"\";}'),(8602,1127,'_elementor_template_type','wp-page'),(8603,1127,'_elementor_edit_mode','builder'),(8604,1127,'_elementor_version','3.13.3'),(8605,1127,'_wp_page_template','default'),(8606,1127,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8607,1127,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">When I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up.<\\/p><p style=\\\"text-align: justify;\\\">I wrote down<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8608,1127,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8609,1127,'_elementor_css','a:6:{s:4:\"time\";i:1686475663;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:\"\";}'),(8611,440,'_elementor_css','a:6:{s:4:\"time\";i:1686854958;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8618,1128,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8619,1128,'_elementor_css','a:6:{s:4:\"time\";i:1686730663;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:\"\";}'),(8620,1129,'_elementor_template_type','wp-page'),(8621,1129,'_elementor_edit_mode','builder'),(8622,1129,'_elementor_version','3.13.3'),(8623,1129,'_wp_page_template','default'),(8624,1129,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8625,1129,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Two men, both seriously ill, occupied the same hospital room. One man was allowed to sit up in his bed for an hour each afternoon to help drain the fluid from his lungs. His bed was next to the room\'s only window. The other man had to spend all his time flat on his back.<\\/p><p style=\\\"text-align: justify;\\\">The men talked for hours on end. They spoke of their wives and families, their homes, their jobs, their involvement in the military service, where they had been on vacation.<\\/p><p style=\\\"text-align: justify;\\\">And every afternoon when the man in the bed by the window could sit up, he would pass the time by describing to his roommate all the things he could see outside the window. The man in the other bed began to live for those one-hour periods where his world would be broadened and enlivened by all the activity and color of the world outside.<\\/p><p style=\\\"text-align: justify;\\\">The window overlooked a park with a lovely lake. Ducks and swans played on the water while children sailed their model boats. Young lovers walked arm in arm amidst flowers of every color of the rainbow. Grand old trees graced the landscape, and a fine view of the city skyline could be seen in the distance.<\\/p><p style=\\\"text-align: justify;\\\">As the man by the window described all this in exquisite detail, the man on the other side of the room would close his eyes and imagine the picturesque scene.<\\/p><p style=\\\"text-align: justify;\\\">One warm afternoon the man by the window described a parade passing by. Although the other man couldn\'t hear the band - he could see it in his mind\'s eye as the gentleman by the window portrayed it with descriptive words.<\\/p><p style=\\\"text-align: justify;\\\">Days and weeks passed. One morning, the day nurse arrived to bring water for their baths only to find the lifeless body of the man by the window, who had died peacefully in his sleep. She was saddened and called the hospital attendants to take the body away.<\\/p><p style=\\\"text-align: justify;\\\">As soon as it seemed appropriate, the other man asked if he could be moved next to the window. The nurse was happy to make the switch, and after making sure he was comfortable, she left him alone. Slowly, painfully, he propped himself up on one elbow to take his first look at the world outside. Finally, he would have the joy of seeing it for himself.<\\/p><p style=\\\"text-align: justify;\\\">He strained to slowly turn to look out the window beside the bed. It faced a blank wall. The man asked the nurse what could have compelled his deceased roommate who had described such wonderful things outside this window. The nurse responded that the man was blind and could not even see the wall. She said, \\\"Perhaps he just wanted to encourage you.\\\"<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8626,1129,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8627,1129,'_elementor_css','a:6:{s:4:\"time\";i:1686730663;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:\"\";}'),(8628,1130,'_elementor_template_type','wp-page'),(8629,1130,'_elementor_edit_mode','builder'),(8630,1130,'_elementor_version','3.13.3'),(8631,1130,'_wp_page_template','default'),(8632,1130,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8633,1130,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Two men, both seriously ill, occupied the same hospital room. One man was allowed to sit up in his bed for an hour each afternoon to help drain the fluid from his lungs. His bed was next to the room\'s only window. The other man had to spend all his time flat on his back.<\\/p><p style=\\\"text-align: justify;\\\">The men talked for hours on end. They spoke of their wives and families, their homes, their jobs, their involvement in the military service, where they had been on vacation.<\\/p><p style=\\\"text-align: justify;\\\">And every afternoon when the man in the bed by the window could sit up, he would pass the time by describing to his roommate all the things he could see outside the window. The man in the other bed began to live for those one-hour periods where his world would be broadened and enlivened by all the activity and color of the world outside.<\\/p><p style=\\\"text-align: justify;\\\">The window overlooked a park with a lovely lake. Ducks and swans played on the water while children sailed their model boats. Young lovers walked arm in arm amidst flowers of every color of the rainbow. Grand old trees graced the landscape, and a fine view of the city skyline could be seen in the distance.<\\/p><p style=\\\"text-align: justify;\\\">As the man by the window described all this in exquisite detail, the man on the other side of the room would close his eyes and imagine the picturesque scene.<\\/p><p style=\\\"text-align: justify;\\\">One warm afternoon the man by the window described a parade passing by. Although the other man couldn\'t hear the band - he could see it in his mind\'s eye as the gentleman by the window portrayed it with descriptive words.<\\/p><p style=\\\"text-align: justify;\\\">Days and weeks passed. One morning, the day nurse arrived to bring water for their baths only to find the lifeless body of the man by the window, who had died peacefully in his sleep. She was saddened and called the hospital attendants to take the body away.<\\/p><p style=\\\"text-align: justify;\\\">As soon as it seemed appropriate, the other man asked if he could be moved next to the window. The nurse was happy to make the switch, and after making sure he was comfortable, she left him alone. Slowly, painfully, he propped himself up on one elbow to take his first look at the world outside. Finally, he would have the joy of seeing it for himself.<\\/p><p style=\\\"text-align: justify;\\\">He strained to slowly turn to look out the window beside the bed. It faced a blank wall. The man asked the nurse what could have compelled his deceased roommate who had described such wonderful things outside this window. The nurse responded that the man was blind and could not even see the wall. She said, \\\"Perhaps he just wanted to encourage you.\\\"<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8634,1130,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8635,1130,'_elementor_css','a:6:{s:4:\"time\";i:1686730663;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:\"\";}'),(8637,445,'_elementor_css','a:6:{s:4:\"time\";i:1686855014;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8644,1131,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8645,1131,'_elementor_css','a:6:{s:4:\"time\";i:1686475667;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:\"\";}'),(8646,1132,'_elementor_template_type','wp-page'),(8647,1132,'_elementor_edit_mode','builder'),(8648,1132,'_elementor_version','3.13.3'),(8649,1132,'_wp_page_template','default'),(8650,1132,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8651,1132,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Once upon a time there was a rich king who had four wives. He loved the fourth wife the most and adorned her with rich robes and treated her to the finest delicacies. He gave her nothing but the best.<\\/p><p>He also loved the third wife very much and showed her off to neighboring kingdoms. However, he feared that one day she would leave him for another.<\\/p><p>He also loved his second wife. She was his confidante and she was always kind, considerate and patient with him. Whenever the king faced a problem, he could confide in her to help him get through the difficult times.<\\/p><p>The king\'s first wife was a very loyal partner and had made great contributions in maintaining his wealth and kingdom. However, he did not love the first wife but although she loved him deeply, he hardly took notice of her.<\\/p><p>One day, the King fell ill and he knew that his time was short. Thus, he asked the 4th wife, \\\"I have loved you the most endowed you with the finest clothing and showered great care over you. Now that I\'m dying, will you follow me and keep me company?\\\"<\\/p><p>\\\"No way!\\\" replied the 4th wife and she walked away without another word.<\\/p><p>Her answer cut like a sharp knife right into his heart.<\\/p><p>\\u00a0<\\/p><p>The sad king asked the third wife, \\\"I have loved you all my life. Now that I\'m dying, will you follow me and keep me company?\\\"<\\/p><p>\\\"No!\\\" replied the 3rd wife. \\\"Life is too good! When you die, I am going to remarry!\\\"<\\/p><p>His heart sank and turned cold.<\\/p><p>He then asked the 2nd wife, \\\"I have always turned to you for help and you\'ve always been there for me. When I die, will you follow me and keep me company?\\\"<\\/p><p>\\\"I\'m sorry, I can\'t help you out of this time!\\\" replied the 2nd wife. \\\"The very most, I can only send you to your grave.\\\"<\\/p><p>Her answer came like a bolt of thunder and the King was devastated.<\\/p><p>Then a voice called out: \\\"I\'ll leave with you and follow you no matter where you go.\\\"<\\/p><p>The king looked up and there was his first wife. She was so skinny, because she suffered from malnutrition. Greatly grieved the King said, \\\"I should have taken better care of you when I had a chance!\\\"<\\/p><p>Our 4th wife is our BODY. No matter how much time and effort we lavish in making it look great, it\'ll leave us when we die.<\\/p><p>Our 3rd wife is our POSSESSIONS, STATUS and WEALTH. When we die, it will all go to others.<\\/p><p>Our 2nd wife is our FAMILY and friends. No matter how much they have been there for us, the furthest they can stay by us is up to the grave.<\\/p><p>Our 1st wife is our SOUL, often neglected in pursuit of wealth, power and pleasures of the ego. However, our Soul is the only thing that will follow us wherever we go. So cultivate, strengthen and cherish it now! It is your greatest gift to offer the world.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8652,1132,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8653,1132,'_elementor_css','a:6:{s:4:\"time\";i:1686475667;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:\"\";}'),(8654,1133,'_elementor_template_type','wp-page'),(8655,1133,'_elementor_edit_mode','builder'),(8656,1133,'_elementor_version','3.13.3'),(8657,1133,'_wp_page_template','default'),(8658,1133,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8659,1133,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Once upon a time there was a rich king who had four wives. He loved the fourth wife the most and adorned her with rich robes and treated her to the finest delicacies. He gave her nothing but the best.<\\/p><p>He also loved the third wife very much and showed her off to neighboring kingdoms. However, he feared that one day she would leave him for another.<\\/p><p>He also loved his second wife. She was his confidante and she was always kind, considerate and patient with him. Whenever the king faced a problem, he could confide in her to help him get through the difficult times.<\\/p><p>The king\'s first wife was a very loyal partner and had made great contributions in maintaining his wealth and kingdom. However, he did not love the first wife but although she loved him deeply, he hardly took notice of her.<\\/p><p>One day, the King fell ill and he knew that his time was short. Thus, he asked the 4th wife, \\\"I have loved you the most endowed you with the finest clothing and showered great care over you. Now that I\'m dying, will you follow me and keep me company?\\\"<\\/p><p>\\\"No way!\\\" replied the 4th wife and she walked away without another word.<\\/p><p>Her answer cut like a sharp knife right into his heart.<\\/p><p>\\u00a0<\\/p><p>The sad king asked the third wife, \\\"I have loved you all my life. Now that I\'m dying, will you follow me and keep me company?\\\"<\\/p><p>\\\"No!\\\" replied the 3rd wife. \\\"Life is too good! When you die, I am going to remarry!\\\"<\\/p><p>His heart sank and turned cold.<\\/p><p>He then asked the 2nd wife, \\\"I have always turned to you for help and you\'ve always been there for me. When I die, will you follow me and keep me company?\\\"<\\/p><p>\\\"I\'m sorry, I can\'t help you out of this time!\\\" replied the 2nd wife. \\\"The very most, I can only send you to your grave.\\\"<\\/p><p>Her answer came like a bolt of thunder and the King was devastated.<\\/p><p>Then a voice called out: \\\"I\'ll leave with you and follow you no matter where you go.\\\"<\\/p><p>The king looked up and there was his first wife. She was so skinny, because she suffered from malnutrition. Greatly grieved the King said, \\\"I should have taken better care of you when I had a chance!\\\"<\\/p><p>Our 4th wife is our BODY. No matter how much time and effort we lavish in making it look great, it\'ll leave us when we die.<\\/p><p>Our 3rd wife is our POSSESSIONS, STATUS and WEALTH. When we die, it will all go to others.<\\/p><p>Our 2nd wife is our FAMILY and friends. No matter how much they have been there for us, the furthest they can stay by us is up to the grave.<\\/p><p>Our 1st wife is our SOUL, often neglected in pursuit of wealth, power and pleasures of the ego. However, our Soul is the only thing that will follow us wherever we go. So cultivate, strengthen and cherish it now! It is your greatest gift to offer the world.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8660,1133,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8661,1133,'_elementor_css','a:6:{s:4:\"time\";i:1686475667;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:\"\";}'),(8663,450,'_elementor_css','a:6:{s:4:\"time\";i:1686855068;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8670,1134,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8671,1134,'_elementor_css','a:6:{s:4:\"time\";i:1686284867;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:\"\";}'),(8672,1135,'_elementor_template_type','wp-page'),(8673,1135,'_elementor_edit_mode','builder'),(8674,1135,'_elementor_version','3.13.3'),(8675,1135,'_wp_page_template','default'),(8676,1135,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8677,1135,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>By Remez Sasson<\\/p><p>One day, a yogi and his disciple arrived in the big city. They had no money with them, but they needed food and a place to stay. The disciple was sure that they were going to beg for their food, and sleep in the park at night.<\\/p><p>\\\"There is a big park not far from here. We can sleep there at night\\\", said the disciple.<br \\/>\\\"In the open air?\\\" Asked the yogi.<br \\/>\\\"Yes\\\", responded the student.<\\/p><p>The yogi smiled and said: \\\"No, tonight we are going to sleep in a hotel and eat there too\\\".<\\/p><p>The student was amazed and exclaimed, \\\"We cannot afford that!\\\"<br \\/>\\\"Come and sit down\\\", said the yogi.<\\/p><p>They both sat down on the ground, and the yogi said:<br \\/>\\\"When you focus your mind intently on any subject, it comes to pass.\\\"<\\/p><p>The yogi closed his eyes and started to meditate with full concentration. After about ten minutes he got up and started to walk, with his disciple following him. They walked through several streets and alleys, until they arrived at a hotel.<\\/p><p>\\\"Come, let\'s enter inside\\\", the yogi said to his disciple.<\\/p><p>They just set foot in the entrance, when a well-dressed man approached them.<\\/p><p>\\\"I am the manager of this hotel. You look like traveling swamis, and I believe you have no money. Would you like to work in the kitchen, and in return I\'ll give you food and a place to stay?\\\"<\\/p><p>\\\"Fine\\\", the yogi responded.<\\/p><p>The disciple was perplexed and asked the yogi: \\\"Did you use any magic? How did you do that?\\\"<\\/p><p>The yogi smiled and said, \\\"I wanted to show you how the power of thoughts works. When you think with full and strong concentration about something that you want to happen, and your mind does not resist the subject of your thought, your thought materializes.\\\"<\\/p><p>\\\"The secret is concentrating, visualizing, seeing details, having faith and projecting mental and emotional energy into the mental scene. These are the general prerequisites. When your mind is empty from thoughts, and only one single thought is allowed to enter, it gains a very great power. One should be very careful with what he thinks. A concentrated thought is powerful, and exerts a very strong influence.\\\"<\\/p><p>The disciple looked at his teacher and said: \\\"I see that I have to sharpen my concentration in order to be able to use this power.\\\"<\\/p><p>\\\"Yes, this is the first step\\\", the yogi replied.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8678,1135,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8679,1135,'_elementor_css','a:6:{s:4:\"time\";i:1686284867;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:\"\";}'),(8680,1136,'_elementor_template_type','wp-page'),(8681,1136,'_elementor_edit_mode','builder'),(8682,1136,'_elementor_version','3.13.3'),(8683,1136,'_wp_page_template','default'),(8684,1136,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8685,1136,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>By Remez Sasson<\\/p><p>One day, a yogi and his disciple arrived in the big city. They had no money with them, but they needed food and a place to stay. The disciple was sure that they were going to beg for their food, and sleep in the park at night.<\\/p><p>\\\"There is a big park not far from here. We can sleep there at night\\\", said the disciple.<br \\/>\\\"In the open air?\\\" Asked the yogi.<br \\/>\\\"Yes\\\", responded the student.<\\/p><p>The yogi smiled and said: \\\"No, tonight we are going to sleep in a hotel and eat there too\\\".<\\/p><p>The student was amazed and exclaimed, \\\"We cannot afford that!\\\"<br \\/>\\\"Come and sit down\\\", said the yogi.<\\/p><p>They both sat down on the ground, and the yogi said:<br \\/>\\\"When you focus your mind intently on any subject, it comes to pass.\\\"<\\/p><p>The yogi closed his eyes and started to meditate with full concentration. After about ten minutes he got up and started to walk, with his disciple following him. They walked through several streets and alleys, until they arrived at a hotel.<\\/p><p>\\\"Come, let\'s enter inside\\\", the yogi said to his disciple.<\\/p><p>They just set foot in the entrance, when a well-dressed man approached them.<\\/p><p>\\\"I am the manager of this hotel. You look like traveling swamis, and I believe you have no money. Would you like to work in the kitchen, and in return I\'ll give you food and a place to stay?\\\"<\\/p><p>\\\"Fine\\\", the yogi responded.<\\/p><p>The disciple was perplexed and asked the yogi: \\\"Did you use any magic? How did you do that?\\\"<\\/p><p>The yogi smiled and said, \\\"I wanted to show you how the power of thoughts works. When you think with full and strong concentration about something that you want to happen, and your mind does not resist the subject of your thought, your thought materializes.\\\"<\\/p><p>\\\"The secret is concentrating, visualizing, seeing details, having faith and projecting mental and emotional energy into the mental scene. These are the general prerequisites. When your mind is empty from thoughts, and only one single thought is allowed to enter, it gains a very great power. One should be very careful with what he thinks. A concentrated thought is powerful, and exerts a very strong influence.\\\"<\\/p><p>The disciple looked at his teacher and said: \\\"I see that I have to sharpen my concentration in order to be able to use this power.\\\"<\\/p><p>\\\"Yes, this is the first step\\\", the yogi replied.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8686,1136,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8687,1136,'_elementor_css','a:6:{s:4:\"time\";i:1686284867;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:\"\";}'),(8689,455,'_elementor_css','a:6:{s:4:\"time\";i:1686855119;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8696,1137,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8697,1137,'_elementor_css','a:6:{s:4:\"time\";i:1686475665;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:\"\";}'),(8698,1138,'_elementor_template_type','wp-page'),(8699,1138,'_elementor_edit_mode','builder'),(8700,1138,'_elementor_version','3.13.3'),(8701,1138,'_wp_page_template','default'),(8702,1138,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8703,1138,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Remember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.<\\/p><p style=\\\"text-align: justify;\\\">Well, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.<\\/p><p style=\\\"text-align: justify;\\\">The race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.<\\/p><p style=\\\"text-align: justify;\\\">The Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.<\\/p><p style=\\\"text-align: justify;\\\">The Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.<\\/p><p style=\\\"text-align: justify;\\\">After some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.<\\/p><p style=\\\"text-align: justify;\\\">The story does not end here.<\\/p><p style=\\\"text-align: justify;\\\">After the first race, the Rabbit learned that he lost it because of his laziness.<\\/p><p style=\\\"text-align: justify;\\\">After second race, the Turtle learned that he lost the race because his opponent was actually good at running.<\\/p><p style=\\\"text-align: justify;\\\">After the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.<\\/p><p style=\\\"text-align: justify;\\\">The Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.<\\/p><p style=\\\"text-align: justify;\\\">While running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.<\\/p><p style=\\\"text-align: justify;\\\"><b>What did they learn?<\\/b><\\/p><p style=\\\"text-align: justify;\\\">They both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8704,1138,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8705,1138,'_elementor_css','a:6:{s:4:\"time\";i:1686475665;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:\"\";}'),(8706,1139,'_elementor_template_type','wp-page'),(8707,1139,'_elementor_edit_mode','builder'),(8708,1139,'_elementor_version','3.13.3'),(8709,1139,'_wp_page_template','default'),(8710,1139,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8711,1139,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Remember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.<\\/p><p style=\\\"text-align: justify;\\\">Well, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.<\\/p><p style=\\\"text-align: justify;\\\">The race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.<\\/p><p style=\\\"text-align: justify;\\\">The Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.<\\/p><p style=\\\"text-align: justify;\\\">The Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.<\\/p><p style=\\\"text-align: justify;\\\">After some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.<\\/p><p style=\\\"text-align: justify;\\\">The story does not end here.<\\/p><p style=\\\"text-align: justify;\\\">After the first race, the Rabbit learned that he lost it because of his laziness.<\\/p><p style=\\\"text-align: justify;\\\">After second race, the Turtle learned that he lost the race because his opponent was actually good at running.<\\/p><p style=\\\"text-align: justify;\\\">After the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.<\\/p><p style=\\\"text-align: justify;\\\">The Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.<\\/p><p style=\\\"text-align: justify;\\\">While running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.<\\/p><p style=\\\"text-align: justify;\\\"><b>What did they learn?<\\/b><\\/p><p style=\\\"text-align: justify;\\\">They both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8712,1139,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8713,1139,'_elementor_css','a:6:{s:4:\"time\";i:1686475665;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:\"\";}'),(8715,1140,'_elementor_template_type','wp-page'),(8716,1140,'_elementor_edit_mode','builder'),(8717,1140,'_elementor_version','3.13.4'),(8718,1140,'_wp_page_template','default'),(8719,1140,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8720,1140,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Remember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.<\\/p><p style=\\\"text-align: justify;\\\">Well, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.<\\/p><p style=\\\"text-align: justify;\\\">The race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.<\\/p><p style=\\\"text-align: justify;\\\">The Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.<\\/p><p style=\\\"text-align: justify;\\\">The Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.<\\/p><p style=\\\"text-align: justify;\\\">After some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.<\\/p><p style=\\\"text-align: justify;\\\">The story does not end here.<\\/p><p style=\\\"text-align: justify;\\\">After the first race, the Rabbit learned that he lost it because of his laziness.<\\/p><p style=\\\"text-align: justify;\\\">After second race, the Turtle learned that he lost the race because his opponent was actually good at running.<\\/p><p style=\\\"text-align: justify;\\\">After the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.<\\/p><p style=\\\"text-align: justify;\\\">The Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.<\\/p><p style=\\\"text-align: justify;\\\">While running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.<\\/p><p style=\\\"text-align: justify;\\\"><b>What did they learn?<\\/b><\\/p><p style=\\\"text-align: justify;\\\">They both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8721,1140,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8722,1141,'_elementor_template_type','wp-page'),(8723,1141,'_elementor_edit_mode','builder'),(8724,1141,'_elementor_version','3.13.4'),(8725,1141,'_wp_page_template','default'),(8726,1141,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8727,1141,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Remember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.<\\/p><p style=\\\"text-align: justify;\\\">Well, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.<\\/p><p style=\\\"text-align: justify;\\\">The race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.<\\/p><p style=\\\"text-align: justify;\\\">The Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.<\\/p><p style=\\\"text-align: justify;\\\">The Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.<\\/p><p style=\\\"text-align: justify;\\\">After some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.<\\/p><p style=\\\"text-align: justify;\\\">The story does not end here.<\\/p><p style=\\\"text-align: justify;\\\">After the first race, the Rabbit learned that he lost it because of his laziness.<\\/p><p style=\\\"text-align: justify;\\\">After second race, the Turtle learned that he lost the race because his opponent was actually good at running.<\\/p><p style=\\\"text-align: justify;\\\">After the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.<\\/p><p style=\\\"text-align: justify;\\\">The Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.<\\/p><p style=\\\"text-align: justify;\\\">While running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.<\\/p><p style=\\\"text-align: justify;\\\"><b>What did they learn?<\\/b><\\/p><p style=\\\"text-align: justify;\\\">They both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8728,1141,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8729,1142,'_elementor_template_type','wp-page'),(8730,1142,'_elementor_edit_mode','builder'),(8731,1142,'_elementor_version','3.13.4'),(8732,1142,'_wp_page_template','default'),(8733,1142,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8734,1142,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Remember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.<\\/p><p style=\\\"text-align: justify;\\\">Well, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.<\\/p><p style=\\\"text-align: justify;\\\">The race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.<\\/p><p style=\\\"text-align: justify;\\\">The Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.<\\/p><p style=\\\"text-align: justify;\\\">The Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.<\\/p><p style=\\\"text-align: justify;\\\">After some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.<\\/p><p style=\\\"text-align: justify;\\\">The story does not end here.<\\/p><p style=\\\"text-align: justify;\\\">After the first race, the Rabbit learned that he lost it because of his laziness.<\\/p><p style=\\\"text-align: justify;\\\">After second race, the Turtle learned that he lost the race because his opponent was actually good at running.<\\/p><p style=\\\"text-align: justify;\\\">After the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.<\\/p><p style=\\\"text-align: justify;\\\">The Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.<\\/p><p style=\\\"text-align: justify;\\\">While running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.<\\/p><p style=\\\"text-align: justify;\\\"><b>What did they learn?<\\/b><\\/p><p style=\\\"text-align: justify;\\\">They both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8735,1142,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8736,460,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8737,460,'_elementor_css','a:6:{s:4:\"time\";i:1686855273;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8744,1143,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8745,1143,'_elementor_css','a:6:{s:4:\"time\";i:1686475668;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:\"\";}'),(8746,1144,'_elementor_template_type','wp-page'),(8747,1144,'_elementor_edit_mode','builder'),(8748,1144,'_elementor_version','3.13.3'),(8749,1144,'_wp_page_template','default'),(8750,1144,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8751,1144,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">An old farmer had plowed around a large rock in one of his fields for years. He had broken several plowshares and a cultivator on it and had grown rather morbid about the rock.<\\/p><p style=\\\"text-align: justify;\\\">After breaking another plowshare one day, and remembering all the trouble the rock had caused him through the years, he finally decided to do something about it.<\\/p><p style=\\\"text-align: justify;\\\">When he put the crowbar under the rock, he was surprised to discover that it was only about six inches thick and that he could break it up easily with a sledgehammer. As he was carting the pieces away he had to smile, remembering all the trouble that the rock had caused him over the years and how easy it would have been to get rid of it sooner.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8752,1144,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8753,1144,'_elementor_css','a:6:{s:4:\"time\";i:1686475668;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:\"\";}'),(8754,1145,'_elementor_template_type','wp-page'),(8755,1145,'_elementor_edit_mode','builder'),(8756,1145,'_elementor_version','3.13.3'),(8757,1145,'_wp_page_template','default'),(8758,1145,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8759,1145,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">An old farmer had plowed around a large rock in one of his fields for years. He had broken several plowshares and a cultivator on it and had grown rather morbid about the rock.<\\/p><p style=\\\"text-align: justify;\\\">After breaking another plowshare one day, and remembering all the trouble the rock had caused him through the years, he finally decided to do something about it.<\\/p><p style=\\\"text-align: justify;\\\">When he put the crowbar under the rock, he was surprised to discover that it was only about six inches thick and that he could break it up easily with a sledgehammer. As he was carting the pieces away he had to smile, remembering all the trouble that the rock had caused him over the years and how easy it would have been to get rid of it sooner.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8760,1145,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8761,1145,'_elementor_css','a:6:{s:4:\"time\";i:1686475668;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:\"\";}'),(8763,465,'_elementor_css','a:6:{s:4:\"time\";i:1686855321;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8770,1146,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8771,1146,'_elementor_css','a:6:{s:4:\"time\";i:1686475663;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:\"\";}'),(8772,1147,'_elementor_template_type','wp-page'),(8773,1147,'_elementor_edit_mode','builder'),(8774,1147,'_elementor_version','3.13.3'),(8775,1147,'_wp_page_template','default'),(8776,1147,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8777,1147,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">About the hidden nature of Atman [Soul]:<\\/p><p style=\\\"text-align: justify;\\\">\\\"We are like a king, who falling victim to amnesia, wanders his kingdom in tatters, not knowing who he really is. We are like a lion cub who, having become lost from his mother at birth, grows up by accident among sheep and takes to grazing and bleating like them, assuming that he is like them.\\\" - Themes from Hindu literature.<\\/p><p style=\\\"text-align: justify;\\\">A LIONESS was big with young and going about in search of prey when she saw a flock of sheep. She jumped upon them and died in that effort. But her little baby lion was born, motherless. The sheep took care of it, and the sheep brought it up. It grew up with them, ate grass, and bleated like the sheep. In time it became a big, full-grown lion, and still it bleated like a sheep and thought it was a sheep.<\\/p><p style=\\\"text-align: justify;\\\">One day another lion came in search of prey, and was astonished to find that in the middle of this flock of sheep was a lion who fled like the sheep at the approach of danger. He tried to get near the sheep-lion, to tell it that it was not a sheep but a lion, but the poor animal fled at his approach.<\\/p><p style=\\\"text-align: justify;\\\">However, he watched his opportunity, and one day found the sheep-lion sleeping. He approached it and said, \\\"You are a lion.\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"I am the sheep\\\" cried and bleated the other lion, and could not believe otherwise.<\\/p><p style=\\\"text-align: justify;\\\">The lion dragged him towards a lake and said, \\\"Look here, there is my reflection and yours.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Then came the comparison. The bleating lion looked at the lion and then at its own reflection, and in a moment came the idea that it was a lion. The lion roared, the bleating was gone. [Adapted from a tale by Vivekananda in the lecture \\\"The real nature of man\\\", given in London, 1899 or near by]<\\/p><p style=\\\"text-align: justify;\\\">\\u2756 \\\"You are lions . . . and perfect.\\\" - Swami Vivekananda<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8778,1147,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8779,1147,'_elementor_css','a:6:{s:4:\"time\";i:1686475663;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:\"\";}'),(8780,1148,'_elementor_template_type','wp-page'),(8781,1148,'_elementor_edit_mode','builder'),(8782,1148,'_elementor_version','3.13.3'),(8783,1148,'_wp_page_template','default'),(8784,1148,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8785,1148,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">About the hidden nature of Atman [Soul]:<\\/p><p style=\\\"text-align: justify;\\\">\\\"We are like a king, who falling victim to amnesia, wanders his kingdom in tatters, not knowing who he really is. We are like a lion cub who, having become lost from his mother at birth, grows up by accident among sheep and takes to grazing and bleating like them, assuming that he is like them.\\\" - Themes from Hindu literature.<\\/p><p style=\\\"text-align: justify;\\\">A LIONESS was big with young and going about in search of prey when she saw a flock of sheep. She jumped upon them and died in that effort. But her little baby lion was born, motherless. The sheep took care of it, and the sheep brought it up. It grew up with them, ate grass, and bleated like the sheep. In time it became a big, full-grown lion, and still it bleated like a sheep and thought it was a sheep.<\\/p><p style=\\\"text-align: justify;\\\">One day another lion came in search of prey, and was astonished to find that in the middle of this flock of sheep was a lion who fled like the sheep at the approach of danger. He tried to get near the sheep-lion, to tell it that it was not a sheep but a lion, but the poor animal fled at his approach.<\\/p><p style=\\\"text-align: justify;\\\">However, he watched his opportunity, and one day found the sheep-lion sleeping. He approached it and said, \\\"You are a lion.\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"I am the sheep\\\" cried and bleated the other lion, and could not believe otherwise.<\\/p><p style=\\\"text-align: justify;\\\">The lion dragged him towards a lake and said, \\\"Look here, there is my reflection and yours.\\\"<\\/p><p style=\\\"text-align: justify;\\\">Then came the comparison. The bleating lion looked at the lion and then at its own reflection, and in a moment came the idea that it was a lion. The lion roared, the bleating was gone. [Adapted from a tale by Vivekananda in the lecture \\\"The real nature of man\\\", given in London, 1899 or near by]<\\/p><p style=\\\"text-align: justify;\\\">\\u2756 \\\"You are lions . . . and perfect.\\\" - Swami Vivekananda<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8786,1148,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8787,1148,'_elementor_css','a:6:{s:4:\"time\";i:1686475663;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:\"\";}'),(8789,470,'_elementor_css','a:6:{s:4:\"time\";i:1686855384;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8796,1149,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8797,1149,'_elementor_css','a:6:{s:4:\"time\";i:1686475660;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:\"\";}'),(8798,1150,'_elementor_template_type','wp-page'),(8799,1150,'_elementor_edit_mode','builder'),(8800,1150,'_elementor_version','3.13.3'),(8801,1150,'_wp_page_template','default'),(8802,1150,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8803,1150,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A man found a cocoon of a butterfly.<br \\/>One day a small opening appeared.<br \\/>He sat and watched the butterfly for several hours<br \\/>as it struggled to squeeze its body through the tiny hole.<br \\/>Then it stopped, as if it couldn\'t go further.<\\/p><p>So the man decided to help the butterfly.<br \\/>He took a pair of scissors and<br \\/>snipped off the remaining bits of cocoon.<br \\/>The butterfly emerged easily but<br \\/>it had a swollen body and shriveled wings.<\\/p><p>The man continued to watch it,<br \\/>expecting that any minute the wings would enlarge<br \\/>and expand enough to support the body,<br \\/>Neither happened!<br \\/>In fact the butterfly spent the rest of its life<br \\/>crawling around.<br \\/>It was never able to fly.<\\/p><p>What the man in his kindness<br \\/>and haste did not understand:<br \\/>The restricting cocoon and the struggle<br \\/>required by the butterfly to get through the opening<br \\/>was a way of forcing the fluid from the body<br \\/>into the wings so that it would be ready<br \\/>for flight once that was achieved.<\\/p><p>Sometimes struggles are exactly<br \\/>what we need in our lives.<br \\/>Going through life with no obstacles would cripple us.<br \\/>We will not be as strong as we could have been<br \\/>and we would never fly.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8804,1150,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8805,1150,'_elementor_css','a:6:{s:4:\"time\";i:1686475660;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:\"\";}'),(8806,1151,'_elementor_template_type','wp-page'),(8807,1151,'_elementor_edit_mode','builder'),(8808,1151,'_elementor_version','3.13.3'),(8809,1151,'_wp_page_template','default'),(8810,1151,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8811,1151,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A man found a cocoon of a butterfly.<br \\/>One day a small opening appeared.<br \\/>He sat and watched the butterfly for several hours<br \\/>as it struggled to squeeze its body through the tiny hole.<br \\/>Then it stopped, as if it couldn\'t go further.<\\/p><p>So the man decided to help the butterfly.<br \\/>He took a pair of scissors and<br \\/>snipped off the remaining bits of cocoon.<br \\/>The butterfly emerged easily but<br \\/>it had a swollen body and shriveled wings.<\\/p><p>The man continued to watch it,<br \\/>expecting that any minute the wings would enlarge<br \\/>and expand enough to support the body,<br \\/>Neither happened!<br \\/>In fact the butterfly spent the rest of its life<br \\/>crawling around.<br \\/>It was never able to fly.<\\/p><p>What the man in his kindness<br \\/>and haste did not understand:<br \\/>The restricting cocoon and the struggle<br \\/>required by the butterfly to get through the opening<br \\/>was a way of forcing the fluid from the body<br \\/>into the wings so that it would be ready<br \\/>for flight once that was achieved.<\\/p><p>Sometimes struggles are exactly<br \\/>what we need in our lives.<br \\/>Going through life with no obstacles would cripple us.<br \\/>We will not be as strong as we could have been<br \\/>and we would never fly.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8812,1151,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8813,1151,'_elementor_css','a:6:{s:4:\"time\";i:1686475660;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:\"\";}'),(8815,475,'_elementor_css','a:6:{s:4:\"time\";i:1686855430;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8822,1152,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8823,1152,'_elementor_css','a:6:{s:4:\"time\";i:1686475659;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:\"\";}'),(8824,1153,'_elementor_template_type','wp-page'),(8825,1153,'_elementor_edit_mode','builder'),(8826,1153,'_elementor_version','3.13.3'),(8827,1153,'_wp_page_template','default'),(8828,1153,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8829,1153,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">An old story is told of a king in Africa who had a close friend with whom he grew up. The friend had a habit of looking at every situation that ever occurred in his life (positive or negative) and remarking, \\\"This is good!\\\"<\\/p><p style=\\\"text-align: justify;\\\">One day the king and his friend were out on a hunting expedition. The friend would load and prepare the guns for the king. The friend had apparently done something wrong in preparing one of the guns, for after taking the gun from his friend, the king fired it and his thumb was blown off. Examining the situation the friend remarked as usual, \\\"This is good!\\\" To which the king replied, \\\"No, this is NOT good!\\\" and proceeded to send his friend to jail.<\\/p><p style=\\\"text-align: justify;\\\">About a year later, the king was hunting in an area that he should have known to stay clear of. Cannibals captured him and took him to their village. They tied his hands, stacked some wood, set up a stake and bound him to the stake. As they came near to set fire to the wood, they noticed that the king was missing a thumb. Being superstitious, they never ate anyone that was less than whole. So untying the king, they sent him on his way.<\\/p><p style=\\\"text-align: justify;\\\">As he returned home, he was reminded of the event that had taken his thumb and felt remorse for his treatment of his friend. He went immediately to the jail to speak with his friend. \\\"You were right,\\\" he said, \\\"it was good that my thumb was blown off.\\\" And he proceeded to tell the friend all that had just happened. \\\"And so I am very sorry for sending you to jail for so long. It was bad for me to do this.\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"No,\\\" his friend replied, \\\"This is good!\\\" \\\"What do you mean,\'This is good\'? How could it be good that I sent my friend to jail for a year?\\\" \\\"If I had NOT been in jail, I would have been with you.\\\"<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8830,1153,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8831,1153,'_elementor_css','a:6:{s:4:\"time\";i:1686475659;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:\"\";}'),(8832,1154,'_elementor_template_type','wp-page'),(8833,1154,'_elementor_edit_mode','builder'),(8834,1154,'_elementor_version','3.13.3'),(8835,1154,'_wp_page_template','default'),(8836,1154,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8837,1154,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">An old story is told of a king in Africa who had a close friend with whom he grew up. The friend had a habit of looking at every situation that ever occurred in his life (positive or negative) and remarking, \\\"This is good!\\\"<\\/p><p style=\\\"text-align: justify;\\\">One day the king and his friend were out on a hunting expedition. The friend would load and prepare the guns for the king. The friend had apparently done something wrong in preparing one of the guns, for after taking the gun from his friend, the king fired it and his thumb was blown off. Examining the situation the friend remarked as usual, \\\"This is good!\\\" To which the king replied, \\\"No, this is NOT good!\\\" and proceeded to send his friend to jail.<\\/p><p style=\\\"text-align: justify;\\\">About a year later, the king was hunting in an area that he should have known to stay clear of. Cannibals captured him and took him to their village. They tied his hands, stacked some wood, set up a stake and bound him to the stake. As they came near to set fire to the wood, they noticed that the king was missing a thumb. Being superstitious, they never ate anyone that was less than whole. So untying the king, they sent him on his way.<\\/p><p style=\\\"text-align: justify;\\\">As he returned home, he was reminded of the event that had taken his thumb and felt remorse for his treatment of his friend. He went immediately to the jail to speak with his friend. \\\"You were right,\\\" he said, \\\"it was good that my thumb was blown off.\\\" And he proceeded to tell the friend all that had just happened. \\\"And so I am very sorry for sending you to jail for so long. It was bad for me to do this.\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"No,\\\" his friend replied, \\\"This is good!\\\" \\\"What do you mean,\'This is good\'? How could it be good that I sent my friend to jail for a year?\\\" \\\"If I had NOT been in jail, I would have been with you.\\\"<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8838,1154,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8839,1154,'_elementor_css','a:6:{s:4:\"time\";i:1686475659;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:\"\";}'),(8841,1155,'_elementor_template_type','wp-page'),(8842,1155,'_elementor_edit_mode','builder'),(8843,1155,'_elementor_version','3.13.4'),(8844,1155,'_wp_page_template','default'),(8845,1155,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8846,1155,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">An old story is told of a king in Africa who had a close friend with whom he grew up. The friend had a habit of looking at every situation that ever occurred in his life (positive or negative) and remarking, \\\"This is good!\\\"<\\/p><p style=\\\"text-align: justify;\\\">One day the king and his friend were out on a hunting expedition. The friend would load and prepare the guns for the king. The friend had apparently done something wrong in preparing one of the guns, for after taking the gun from his friend, the king fired it and his thumb was blown off. Examining the situation the friend remarked as usual, \\\"This is good!\\\" To which the king replied, \\\"No, this is NOT good!\\\" and proceeded to send his friend to jail.<\\/p><p style=\\\"text-align: justify;\\\">About a year later, the king was hunting in an area that he should have known to stay clear of. Cannibals captured him and took him to their village. They tied his hands, stacked some wood, set up a stake and bound him to the stake. As they came near to set fire to the wood, they noticed that the king was missing a thumb. Being superstitious, they never ate anyone that was less than whole. So untying the king, they sent him on his way.<\\/p><p style=\\\"text-align: justify;\\\">As he returned home, he was reminded of the event that had taken his thumb and felt remorse for his treatment of his friend. He went immediately to the jail to speak with his friend. \\\"You were right,\\\" he said, \\\"it was good that my thumb was blown off.\\\" And he proceeded to tell the friend all that had just happened. \\\"And so I am very sorry for sending you to jail for so long. It was bad for me to do this.\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"No,\\\" his friend replied, \\\"This is good!\\\" \\\"What do you mean,\'This is good\'? How could it be good that I sent my friend to jail for a year?\\\" \\\"If I had NOT been in jail, I would have been with you.\\\"<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8847,1155,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8848,1156,'_elementor_template_type','wp-page'),(8849,1156,'_elementor_edit_mode','builder'),(8850,1156,'_elementor_version','3.13.4'),(8851,1156,'_wp_page_template','default'),(8852,1156,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8853,1156,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">An old story is told of a king in Africa who had a close friend with whom he grew up. The friend had a habit of looking at every situation that ever occurred in his life (positive or negative) and remarking, \\\"This is good!\\\"<\\/p><p style=\\\"text-align: justify;\\\">One day the king and his friend were out on a hunting expedition. The friend would load and prepare the guns for the king. The friend had apparently done something wrong in preparing one of the guns, for after taking the gun from his friend, the king fired it and his thumb was blown off. Examining the situation the friend remarked as usual, \\\"This is good!\\\" To which the king replied, \\\"No, this is NOT good!\\\" and proceeded to send his friend to jail.<\\/p><p style=\\\"text-align: justify;\\\">About a year later, the king was hunting in an area that he should have known to stay clear of. Cannibals captured him and took him to their village. They tied his hands, stacked some wood, set up a stake and bound him to the stake. As they came near to set fire to the wood, they noticed that the king was missing a thumb. Being superstitious, they never ate anyone that was less than whole. So untying the king, they sent him on his way.<\\/p><p style=\\\"text-align: justify;\\\">As he returned home, he was reminded of the event that had taken his thumb and felt remorse for his treatment of his friend. He went immediately to the jail to speak with his friend. \\\"You were right,\\\" he said, \\\"it was good that my thumb was blown off.\\\" And he proceeded to tell the friend all that had just happened. \\\"And so I am very sorry for sending you to jail for so long. It was bad for me to do this.\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"No,\\\" his friend replied, \\\"This is good!\\\" \\\"What do you mean,\'This is good\'? How could it be good that I sent my friend to jail for a year?\\\" \\\"If I had NOT been in jail, I would have been with you.\\\"<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8854,1156,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8855,1157,'_elementor_template_type','wp-page'),(8856,1157,'_elementor_edit_mode','builder'),(8857,1157,'_elementor_version','3.13.4'),(8858,1157,'_wp_page_template','default'),(8859,1157,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8860,1157,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">An old story is told of a king in Africa who had a close friend with whom he grew up. The friend had a habit of looking at every situation that ever occurred in his life (positive or negative) and remarking, \\\"This is good!\\\"<\\/p><p style=\\\"text-align: justify;\\\">One day the king and his friend were out on a hunting expedition. The friend would load and prepare the guns for the king. The friend had apparently done something wrong in preparing one of the guns, for after taking the gun from his friend, the king fired it and his thumb was blown off. Examining the situation the friend remarked as usual, \\\"This is good!\\\" To which the king replied, \\\"No, this is NOT good!\\\" and proceeded to send his friend to jail.<\\/p><p style=\\\"text-align: justify;\\\">About a year later, the king was hunting in an area that he should have known to stay clear of. Cannibals captured him and took him to their village. They tied his hands, stacked some wood, set up a stake and bound him to the stake. As they came near to set fire to the wood, they noticed that the king was missing a thumb. Being superstitious, they never ate anyone that was less than whole. So untying the king, they sent him on his way.<\\/p><p style=\\\"text-align: justify;\\\">As he returned home, he was reminded of the event that had taken his thumb and felt remorse for his treatment of his friend. He went immediately to the jail to speak with his friend. \\\"You were right,\\\" he said, \\\"it was good that my thumb was blown off.\\\" And he proceeded to tell the friend all that had just happened. \\\"And so I am very sorry for sending you to jail for so long. It was bad for me to do this.\\\"<\\/p><p style=\\\"text-align: justify;\\\">\\\"No,\\\" his friend replied, \\\"This is good!\\\" \\\"What do you mean,\'This is good\'? How could it be good that I sent my friend to jail for a year?\\\" \\\"If I had NOT been in jail, I would have been with you.\\\"<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8861,1157,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8862,480,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8863,480,'_elementor_css','a:6:{s:4:\"time\";i:1686855481;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8889,485,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8871,1158,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8872,1158,'_elementor_css','a:6:{s:4:\"time\";i:1686855491;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:\"\";}'),(8873,1159,'_elementor_template_type','wp-page'),(8874,1159,'_elementor_edit_mode','builder'),(8875,1159,'_elementor_version','3.13.3'),(8876,1159,'_wp_page_template','default'),(8877,1159,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8878,1159,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">There once was a wise sage who wandered the countryside. One day, as he passed near a village, he was approached by a woman who told him of a sick child nearby. She beseeched him to help this child.<\\/p><p style=\\\"text-align: justify;\\\">So the sage came to the village, and a crowd gathered around him, for such a man was a rare sight. One woman brought the sick child to him, and he said a prayer over her.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Do you really think your prayer will help her, when medicine has failed?\\\" yelled a man from the crowd.<\\/p><p style=\\\"text-align: justify;\\\">\\\"You know nothing of such things! You are a stupid fool!\\\" said the sage to the man.<\\/p><p style=\\\"text-align: justify;\\\">The man became very angry with these words and his face grew hot and red. He was about to say something, or perhaps strike out, when the sage walked over to him and said: \\\"If one word has such power as to make you so angry and hot, may not another have the power to heal?\\\"<\\/p><p style=\\\"text-align: justify;\\\">And thus, the sage healed two people that day.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8879,1159,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8880,1159,'_elementor_css','a:6:{s:4:\"time\";i:1686855491;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:\"\";}'),(8881,1160,'_elementor_template_type','wp-page'),(8882,1160,'_elementor_edit_mode','builder'),(8883,1160,'_elementor_version','3.13.3'),(8884,1160,'_wp_page_template','default'),(8885,1160,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8886,1160,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">There once was a wise sage who wandered the countryside. One day, as he passed near a village, he was approached by a woman who told him of a sick child nearby. She beseeched him to help this child.<\\/p><p style=\\\"text-align: justify;\\\">So the sage came to the village, and a crowd gathered around him, for such a man was a rare sight. One woman brought the sick child to him, and he said a prayer over her.<\\/p><p style=\\\"text-align: justify;\\\">\\\"Do you really think your prayer will help her, when medicine has failed?\\\" yelled a man from the crowd.<\\/p><p style=\\\"text-align: justify;\\\">\\\"You know nothing of such things! You are a stupid fool!\\\" said the sage to the man.<\\/p><p style=\\\"text-align: justify;\\\">The man became very angry with these words and his face grew hot and red. He was about to say something, or perhaps strike out, when the sage walked over to him and said: \\\"If one word has such power as to make you so angry and hot, may not another have the power to heal?\\\"<\\/p><p style=\\\"text-align: justify;\\\">And thus, the sage healed two people that day.<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8887,1160,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8888,1160,'_elementor_css','a:6:{s:4:\"time\";i:1686855491;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:\"\";}'),(8890,485,'_elementor_css','a:6:{s:4:\"time\";i:1686855526;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8897,1161,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8898,1161,'_elementor_css','a:6:{s:4:\"time\";i:1686475719;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:\"\";}'),(8899,1162,'_elementor_template_type','wp-page'),(8900,1162,'_elementor_edit_mode','builder'),(8901,1162,'_elementor_version','3.13.3'),(8902,1162,'_wp_page_template','default'),(8903,1162,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8904,1162,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">TWO FROGS - a big one and a small one - hopped into a pail of milk. The sides of the pail were shiny and smooth. The frogs were swimming round and round without being able to get out of the pail again, and every time they lifted their mouths to catch a little air to breathe, down they went. They kept on swimming and gasping like this till the big frog gave up and drowned. Then the little frog said to himself,<\\/p><p style=\\\"text-align: justify;\\\">\\\"Well, well. I will hang on as long as I can, too.\\\"<\\/p><p style=\\\"text-align: justify;\\\">It kept on for hours, when suddenly it found something solid under its feet - milk was churned to butter! Out jumped the little frog!<\\/p><p style=\\\"text-align: justify;\\\">\\u2756 <i>Said Yogananda: \\\"Be like the little frog. By all means keep battling.\\\" <\\/i><\\/p><p style=\\\"text-align: justify;\\\">\\u2756 <i>Churn your difficulty well or it may be to your loss.<\\/i><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8905,1162,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8906,1162,'_elementor_css','a:6:{s:4:\"time\";i:1686475719;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:\"\";}'),(8907,1163,'_elementor_template_type','wp-page'),(8908,1163,'_elementor_edit_mode','builder'),(8909,1163,'_elementor_version','3.13.3'),(8910,1163,'_wp_page_template','default'),(8911,1163,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8912,1163,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">TWO FROGS - a big one and a small one - hopped into a pail of milk. The sides of the pail were shiny and smooth. The frogs were swimming round and round without being able to get out of the pail again, and every time they lifted their mouths to catch a little air to breathe, down they went. They kept on swimming and gasping like this till the big frog gave up and drowned. Then the little frog said to himself,<\\/p><p style=\\\"text-align: justify;\\\">\\\"Well, well. I will hang on as long as I can, too.\\\"<\\/p><p style=\\\"text-align: justify;\\\">It kept on for hours, when suddenly it found something solid under its feet - milk was churned to butter! Out jumped the little frog!<\\/p><p style=\\\"text-align: justify;\\\">\\u2756 <i>Said Yogananda: \\\"Be like the little frog. By all means keep battling.\\\" <\\/i><\\/p><p style=\\\"text-align: justify;\\\">\\u2756 <i>Churn your difficulty well or it may be to your loss.<\\/i><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8913,1163,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8914,1163,'_elementor_css','a:6:{s:4:\"time\";i:1686475719;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:\"\";}'),(8916,1164,'_elementor_template_type','wp-page'),(8917,1164,'_elementor_edit_mode','builder'),(8918,1164,'_elementor_version','3.13.4'),(8919,1164,'_wp_page_template','default'),(8920,1164,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8921,1164,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">TWO FROGS - a big one and a small one - hopped into a pail of milk. The sides of the pail were shiny and smooth. The frogs were swimming round and round without being able to get out of the pail again, and every time they lifted their mouths to catch a little air to breathe, down they went. They kept on swimming and gasping like this till the big frog gave up and drowned. Then the little frog said to himself,<\\/p><p style=\\\"text-align: justify;\\\">\\\"Well, well. I will hang on as long as I can, too.\\\"<\\/p><p style=\\\"text-align: justify;\\\">It kept on for hours, when suddenly it found something solid under its feet - milk was churned to butter! Out jumped the little frog!<\\/p><p style=\\\"text-align: justify;\\\">\\u2756 <i>Said Yogananda: \\\"Be like the little frog. By all means keep battling.\\\" <\\/i><\\/p><p style=\\\"text-align: justify;\\\">\\u2756 <i>Churn your difficulty well or it may be to your loss.<\\/i><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8922,1164,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8923,1165,'_elementor_template_type','wp-page'),(8924,1165,'_elementor_edit_mode','builder'),(8925,1165,'_elementor_version','3.13.4'),(8926,1165,'_wp_page_template','default'),(8927,1165,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8928,1165,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">TWO FROGS - a big one and a small one - hopped into a pail of milk. The sides of the pail were shiny and smooth. The frogs were swimming round and round without being able to get out of the pail again, and every time they lifted their mouths to catch a little air to breathe, down they went. They kept on swimming and gasping like this till the big frog gave up and drowned. Then the little frog said to himself,<\\/p><p style=\\\"text-align: justify;\\\">\\\"Well, well. I will hang on as long as I can, too.\\\"<\\/p><p style=\\\"text-align: justify;\\\">It kept on for hours, when suddenly it found something solid under its feet - milk was churned to butter! Out jumped the little frog!<\\/p><p style=\\\"text-align: justify;\\\">\\u2756 <i>Said Yogananda: \\\"Be like the little frog. By all means keep battling.\\\" <\\/i><\\/p><p style=\\\"text-align: justify;\\\">\\u2756 <i>Churn your difficulty well or it may be to your loss.<\\/i><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8929,1165,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8930,1166,'_elementor_template_type','wp-page'),(8931,1166,'_elementor_edit_mode','builder'),(8932,1166,'_elementor_version','3.13.4'),(8933,1166,'_wp_page_template','default'),(8934,1166,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8935,1166,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">TWO FROGS - a big one and a small one - hopped into a pail of milk. The sides of the pail were shiny and smooth. The frogs were swimming round and round without being able to get out of the pail again, and every time they lifted their mouths to catch a little air to breathe, down they went. They kept on swimming and gasping like this till the big frog gave up and drowned. Then the little frog said to himself,<\\/p><p style=\\\"text-align: justify;\\\">\\\"Well, well. I will hang on as long as I can, too.\\\"<\\/p><p style=\\\"text-align: justify;\\\">It kept on for hours, when suddenly it found something solid under its feet - milk was churned to butter! Out jumped the little frog!<\\/p><p style=\\\"text-align: justify;\\\">\\u2756 <i>Said Yogananda: \\\"Be like the little frog. By all means keep battling.\\\" <\\/i><\\/p><p style=\\\"text-align: justify;\\\">\\u2756 <i>Churn your difficulty well or it may be to your loss.<\\/i><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8936,1166,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8937,490,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8938,490,'_elementor_css','a:6:{s:4:\"time\";i:1686855572;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8945,1167,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8946,1167,'_elementor_css','a:6:{s:4:\"time\";i:1686545082;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:\"\";}'),(8947,1168,'_elementor_template_type','wp-page'),(8948,1168,'_elementor_edit_mode','builder'),(8949,1168,'_elementor_version','3.13.3'),(8950,1168,'_wp_page_template','default'),(8951,1168,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8952,1168,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Please do not stand too close to the trees! You will not be able to enjoy the forest...<\\/p><p style=\\\"text-align: justify;\\\">A few years before hurricane Katrina hit New Orleans, a new expensive automobile stopped at the top of the Mississippi River Bridge and a gentleman stepped out of the car wearing very expensive clothing.<\\/p><p style=\\\"text-align: justify;\\\">He climbed over the rail and under the bridge onto a platform below the roadway preparing to jump. Cars started stopping and the traffic backed up for miles. The police arrived with the fire department, ministers and mental health professionals.<\\/p><p style=\\\"text-align: justify;\\\">They began talking to the man and telling him not to jump. They told him that he may not die; he may break all of his bones and be paralyzed for life. About half mile back in traffic was an old truck with lawn mowers, rakes, and shovels. An elderly gardener got out of his truck and walked up to where the crowd was gathered.<\\/p><p style=\\\"text-align: justify;\\\">He made his way through the people, looked over the side and hollered down to the man on the ledge, \\\"Hey, I got to go to work. Either jump or get off the bridge. If you decide not to jump, tomorrow is going to be better!\\\"<\\/p><p style=\\\"text-align: justify;\\\">With that the man climbed up onto the bridge. The police handcuffed him and placed him in the back seat of the police car. The gardener walked back to his truck waiting for the traffic to move.<\\/p><p style=\\\"text-align: justify;\\\">The minister asked the fireman, \\\"Who was that?\\\" The fireman said, \\\"He said he has to go to work!\\\"<\\/p><p style=\\\"text-align: justify;\\\">The police reported to the press that all the way to the hospital the man kept saying over and over, \\\"Tomorrow is going to be better.\\\"<\\/p><p style=\\\"text-align: justify;\\\">One must see a future, to have a future<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8953,1168,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8954,1168,'_elementor_css','a:6:{s:4:\"time\";i:1686545082;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:\"\";}'),(8955,1169,'_elementor_template_type','wp-page'),(8956,1169,'_elementor_edit_mode','builder'),(8957,1169,'_elementor_version','3.13.3'),(8958,1169,'_wp_page_template','default'),(8959,1169,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8960,1169,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: justify;\\\">Please do not stand too close to the trees! You will not be able to enjoy the forest...<\\/p><p style=\\\"text-align: justify;\\\">A few years before hurricane Katrina hit New Orleans, a new expensive automobile stopped at the top of the Mississippi River Bridge and a gentleman stepped out of the car wearing very expensive clothing.<\\/p><p style=\\\"text-align: justify;\\\">He climbed over the rail and under the bridge onto a platform below the roadway preparing to jump. Cars started stopping and the traffic backed up for miles. The police arrived with the fire department, ministers and mental health professionals.<\\/p><p style=\\\"text-align: justify;\\\">They began talking to the man and telling him not to jump. They told him that he may not die; he may break all of his bones and be paralyzed for life. About half mile back in traffic was an old truck with lawn mowers, rakes, and shovels. An elderly gardener got out of his truck and walked up to where the crowd was gathered.<\\/p><p style=\\\"text-align: justify;\\\">He made his way through the people, looked over the side and hollered down to the man on the ledge, \\\"Hey, I got to go to work. Either jump or get off the bridge. If you decide not to jump, tomorrow is going to be better!\\\"<\\/p><p style=\\\"text-align: justify;\\\">With that the man climbed up onto the bridge. The police handcuffed him and placed him in the back seat of the police car. The gardener walked back to his truck waiting for the traffic to move.<\\/p><p style=\\\"text-align: justify;\\\">The minister asked the fireman, \\\"Who was that?\\\" The fireman said, \\\"He said he has to go to work!\\\"<\\/p><p style=\\\"text-align: justify;\\\">The police reported to the press that all the way to the hospital the man kept saying over and over, \\\"Tomorrow is going to be better.\\\"<\\/p><p style=\\\"text-align: justify;\\\">One must see a future, to have a future<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8961,1169,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8962,1169,'_elementor_css','a:6:{s:4:\"time\";i:1686545082;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:\"\";}'),(8964,495,'_elementor_css','a:6:{s:4:\"time\";i:1686855630;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8971,1170,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8972,1170,'_elementor_css','a:6:{s:4:\"time\";i:1686475668;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:\"\";}'),(8973,1171,'_elementor_template_type','wp-page'),(8974,1171,'_elementor_edit_mode','builder'),(8975,1171,'_elementor_version','3.13.3'),(8976,1171,'_wp_page_template','default'),(8977,1171,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8978,1171,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes it sounds foolish or frustrating to think positive when times are really bad and a few people make it worse for you, doesn\'t it?<\\/p><p>But just tell me, if I call you tomorrow morning, while you are still in bed and say, \\\"You are an Angel for me and I\'m blessed to have such a good person in my life. May God bless you\\\".<\\/p><p><b>How would you feel?<\\/b><\\/p><p>Won\'t it be a great feeling and a great way to start a fantastic day?<\\/p><p>Next morning I again call you but this time I say, \\\"You Rascal! You are the dumbest and most foolish person on the earth I\'ve ever met. You screwed me and you will be screwed...etc\\\".<\\/p><p><b>How would you feel now?<\\/b><\\/p><p>Of course it would be a frustrating day, with a sad feeling, because you heard all the crap in the morning while you were still in bed!<\\/p><p>Now answer my question - <b>\\\"Who is controlling \'your\' life?\\\" <\\/b><\\/p><p><b>Am I supposed to control YOUR life? Is that right?<\\/b><\\/p><p><b>When I say something good about you, does it makes you a good person and vice versa?<\\/b><\\/p><p><b>NO, YOU ARE THE MASTER OF YOUR OWN LIFE!<\\/b><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8979,1171,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8980,1171,'_elementor_css','a:6:{s:4:\"time\";i:1686475668;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:\"\";}'),(8981,1172,'_elementor_template_type','wp-page'),(8982,1172,'_elementor_edit_mode','builder'),(8983,1172,'_elementor_version','3.13.3'),(8984,1172,'_wp_page_template','default'),(8985,1172,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(8986,1172,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sometimes it sounds foolish or frustrating to think positive when times are really bad and a few people make it worse for you, doesn\'t it?<\\/p><p>But just tell me, if I call you tomorrow morning, while you are still in bed and say, \\\"You are an Angel for me and I\'m blessed to have such a good person in my life. May God bless you\\\".<\\/p><p><b>How would you feel?<\\/b><\\/p><p>Won\'t it be a great feeling and a great way to start a fantastic day?<\\/p><p>Next morning I again call you but this time I say, \\\"You Rascal! You are the dumbest and most foolish person on the earth I\'ve ever met. You screwed me and you will be screwed...etc\\\".<\\/p><p><b>How would you feel now?<\\/b><\\/p><p>Of course it would be a frustrating day, with a sad feeling, because you heard all the crap in the morning while you were still in bed!<\\/p><p>Now answer my question - <b>\\\"Who is controlling \'your\' life?\\\" <\\/b><\\/p><p><b>Am I supposed to control YOUR life? Is that right?<\\/b><\\/p><p><b>When I say something good about you, does it makes you a good person and vice versa?<\\/b><\\/p><p><b>NO, YOU ARE THE MASTER OF YOUR OWN LIFE!<\\/b><\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(8987,1172,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8988,1172,'_elementor_css','a:6:{s:4:\"time\";i:1686475668;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:\"\";}'),(8990,500,'_elementor_css','a:6:{s:4:\"time\";i:1686855747;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(9016,419,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_background\";a:7:{s:23:\"_background_hover_image\";i:1;s:26:\"_background_hover_position\";i:1;s:28:\"_background_hover_attachment\";i:1;s:24:\"_background_hover_repeat\";i:1;s:22:\"_background_hover_size\";i:1;s:26:\"_background_hover_bg_width\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(8998,1173,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(8999,1173,'_elementor_css','a:6:{s:4:\"time\";i:1686855757;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:\"\";}'),(9000,1174,'_elementor_template_type','wp-page'),(9001,1174,'_elementor_edit_mode','builder'),(9002,1174,'_elementor_version','3.13.3'),(9003,1174,'_wp_page_template','default'),(9004,1174,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(9005,1174,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One day all the employees of a very unusual company reached their office and all saw a big sign on the main door which said this:<\\/p><p>\\\"Yesterday, the person who has been hindering your growth in this company passed away. We invite you to join the funeral in the room that has been prepared in the gym.\\\"<\\/p><p>In the beginning, they all got sad for the death of one of their colleagues, but after a while they started getting curious to know who was that person who hindered the growth of their colleagues and the company itself?<\\/p><p>The excitement in the gym was such that security agents were ordered to control the crowd within the room. The more people reached the coffin, the more the excitement heated up.<\\/p><p><b>Everyone thought - \\\"Who is this person who was hindering my progress?\\\"<\\/b><\\/p><p>One by one the intrigued employees got closer to the coffin, and when they looked inside it, they suddenly became speechless.<\\/p><p>They all got to stand near the coffin, and all ended up shocked and in silence, as if someone had touched the deepest part of their soul.<\\/p><p><b>There was a mirror inside the coffin: everyone who looked inside it could see themselves!<\\/b><\\/p><p><b>There was also a sign next to the mirror that said:<\\/b><\\/p><p><b>There is only one person who is capable of setting limits to your growth and IT IS YOU!<\\/b><\\/p><p>Your life does not change when your boss changes, when your friends change, when your parents change, when your husband or wife changes, when your company changes, when your church changes, when your location changes, when your money changes, when your status changes.<\\/p><p><b>No, your life changes when YOU change<\\/b>, when you go beyond your limiting beliefs.<\\/p><p>Examine yourself, watch yourself. Don\'t be afraid of difficulties, impossibilities and losses. Be a winner, build yourself and your reality. It\'s the way you face life itself that makes the difference.<\\/p><p>A few years ago a college student, who was struggling to build his career, appeared for his professional examination. He attempted his first paper excellently but he imagined that he performed badly.<\\/p><p>Keeping this in mind, he lost concentration for the rest of the subjects and in turn, didn\'t write the other subjects well. Later on, the results came out that the paper he thought was poorly written had secured top marks in the college but in the other subjects, he failed. Why did this happen? The reason is simple: lack of belief in himself<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_background\":\"gradient\",\"_background_color\":\"#60689F\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(9006,1174,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9007,1174,'_elementor_css','a:6:{s:4:\"time\";i:1686855757;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:\"\";}'),(9008,1175,'_elementor_template_type','wp-page'),(9009,1175,'_elementor_edit_mode','builder'),(9010,1175,'_elementor_version','3.13.3'),(9011,1175,'_wp_page_template','default'),(9012,1175,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(9013,1175,'_elementor_data','[{\"id\":\"767b883\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34652d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d731fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner111.jpg\",\"id\":130,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdc4343\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9857ec4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cda1c89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"eb2bc96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc2ec7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One day all the employees of a very unusual company reached their office and all saw a big sign on the main door which said this:<\\/p><p>\\\"Yesterday, the person who has been hindering your growth in this company passed away. We invite you to join the funeral in the room that has been prepared in the gym.\\\"<\\/p><p>In the beginning, they all got sad for the death of one of their colleagues, but after a while they started getting curious to know who was that person who hindered the growth of their colleagues and the company itself?<\\/p><p>The excitement in the gym was such that security agents were ordered to control the crowd within the room. The more people reached the coffin, the more the excitement heated up.<\\/p><p><b>Everyone thought - \\\"Who is this person who was hindering my progress?\\\"<\\/b><\\/p><p>One by one the intrigued employees got closer to the coffin, and when they looked inside it, they suddenly became speechless.<\\/p><p>They all got to stand near the coffin, and all ended up shocked and in silence, as if someone had touched the deepest part of their soul.<\\/p><p><b>There was a mirror inside the coffin: everyone who looked inside it could see themselves!<\\/b><\\/p><p><b>There was also a sign next to the mirror that said:<\\/b><\\/p><p><b>There is only one person who is capable of setting limits to your growth and IT IS YOU!<\\/b><\\/p><p>Your life does not change when your boss changes, when your friends change, when your parents change, when your husband or wife changes, when your company changes, when your church changes, when your location changes, when your money changes, when your status changes.<\\/p><p><b>No, your life changes when YOU change<\\/b>, when you go beyond your limiting beliefs.<\\/p><p>Examine yourself, watch yourself. Don\'t be afraid of difficulties, impossibilities and losses. Be a winner, build yourself and your reality. It\'s the way you face life itself that makes the difference.<\\/p><p>A few years ago a college student, who was struggling to build his career, appeared for his professional examination. He attempted his first paper excellently but he imagined that he performed badly.<\\/p><p>Keeping this in mind, he lost concentration for the rest of the subjects and in turn, didn\'t write the other subjects well. Later on, the results came out that the paper he thought was poorly written had secured top marks in the college but in the other subjects, he failed. Why did this happen? The reason is simple: lack of belief in himself<\\/p>\",\"align\":\"center\",\"text_color\":\"#030303\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_hover_image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/images-6.jpeg\",\"id\":139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_attachment\":\"scroll\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"initial\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"_background_color\":\"#60689F\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c6d282\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dee3df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ba19a33\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner2.jpg\",\"id\":131,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(9014,1175,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(9015,1175,'_elementor_css','a:6:{s:4:\"time\";i:1686855757;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:\"\";}'),(9017,399,'_elementor_css','a:6:{s:4:\"time\";i:1686857445;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(9018,228,'_elementor_css','a:6:{s:4:\"time\";i:1686866162;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(9019,394,'_elementor_css','a:6:{s:4:\"time\";i:1686866244;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(9020,419,'_elementor_css','a:6:{s:4:\"time\";i:1686871573;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(9021,389,'_elementor_css','a:6:{s:4:\"time\";i:1686872912;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(9022,384,'_elementor_css','a:6:{s:4:\"time\";i:1686905170;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(9023,359,'_elementor_css','a:6:{s:4:\"time\";i:1686924262;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(9024,378,'_elementor_css','a:6:{s:4:\"time\";i:1686943033;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(9025,420,'_elementor_css','a:6:{s:4:\"time\";i:1686943039;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(9026,425,'_elementor_css','a:6:{s:4:\"time\";i:1686943040;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(9027,430,'_elementor_css','a:6:{s:4:\"time\";i:1686943041;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(9033,1179,'_elementor_page_assets','a:0:{}'),(9034,1179,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9035,1179,'_elementor_css','a:6:{s:4:\"time\";i:1686767871;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(9036,1180,'_elementor_edit_mode','builder'),(9037,1180,'_elementor_template_type','wp-page'),(9038,1180,'_elementor_version','3.13.4'),(9039,1180,'_wp_page_template','default'),(9040,1180,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-copia.jpg\",\"id\":887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge.<\\/p>\\n<p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>&nbsp;<\\/i><\\/b>exercise<b>s<i>,&nbsp;<\\/i><\\/b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p>\\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p>\\n<p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p>\\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p><ol><li><b>Workout<\\/b>\\u00a0\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li><li><b>Sun Salutation<\\/b>\\u00a0\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li><li><b>Motivational discourse<\\/b>\\u00a0\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li><li><b>Acupressure<\\/b>\\u00a0(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,\\u00a0 middle of your palm for kidney problems and\\u00a0 under the thumb for the well being of thyroid.<\\/li><li><b>Eyes and neck exercises<\\/b>\\u00a0\\u2013 we take care of every part of the body.<br \\/>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>\\u00a0\\u00a0\\u00a0\\u00a0<\\/b><br \\/>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li><li><b>Seven Pranayamas (<\\/b>\\u00a0breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li><li><b>6 mudras\\u00a0<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li><li><b>100 postures, exercises and asanas<\\/b>\\u00a0\\u2013 with these we increase flexibility from head to toe. We are also doing\\u00a0<b>stretching<\\/b>\\u00a0exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br \\/>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li><li><b>Laughter yoga\\u00a0<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br \\/>We also do\\u00a0<b>Super Brain yoga<\\/b>\\u00a0to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li><li><b>Shavasana\\u00a0<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li><li><b>Motivational poem<\\/b>\\u00a0\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li><li><b>Mantra<\\/b>\\u00a0\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li><\\/ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00\\u00a0<\\/strong><br \\/><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(9041,1180,'_elementor_page_assets','a:0:{}'),(9042,1180,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9043,1180,'_elementor_css','a:6:{s:4:\"time\";i:1686767871;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(9044,1181,'_elementor_edit_mode','builder'),(9045,1181,'_elementor_template_type','wp-page'),(9046,1181,'_elementor_version','3.13.4'),(9047,1181,'_wp_page_template','default'),(9048,1181,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-copia.jpg\",\"id\":887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge<\\/p>\\n<p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>&nbsp;<\\/i><\\/b>exercise<b>s<i>,&nbsp;<\\/i><\\/b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p>\\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p>\\n<p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p>\\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p><ol><li><b>Workout<\\/b>\\u00a0\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li><li><b>Sun Salutation<\\/b>\\u00a0\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li><li><b>Motivational discourse<\\/b>\\u00a0\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li><li><b>Acupressure<\\/b>\\u00a0(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,\\u00a0 middle of your palm for kidney problems and\\u00a0 under the thumb for the well being of thyroid.<\\/li><li><b>Eyes and neck exercises<\\/b>\\u00a0\\u2013 we take care of every part of the body.<br \\/>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>\\u00a0\\u00a0\\u00a0\\u00a0<\\/b><br \\/>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li><li><b>Seven Pranayamas (<\\/b>\\u00a0breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li><li><b>6 mudras\\u00a0<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li><li><b>100 postures, exercises and asanas<\\/b>\\u00a0\\u2013 with these we increase flexibility from head to toe. We are also doing\\u00a0<b>stretching<\\/b>\\u00a0exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br \\/>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li><li><b>Laughter yoga\\u00a0<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br \\/>We also do\\u00a0<b>Super Brain yoga<\\/b>\\u00a0to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li><li><b>Shavasana\\u00a0<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li><li><b>Motivational poem<\\/b>\\u00a0\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li><li><b>Mantra<\\/b>\\u00a0\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li><\\/ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00\\u00a0<\\/strong><br \\/><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(9049,1181,'_elementor_page_assets','a:0:{}'),(9050,1181,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9051,1181,'_elementor_css','a:6:{s:4:\"time\";i:1686767871;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(9081,1186,'_wp_page_template','default'),(9082,1186,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-copia.jpg\",\"id\":887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge<\\/p>\\n<p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>&nbsp;<\\/i><\\/b>exercise<b>s<i>,&nbsp;<\\/i><\\/b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p>\\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p>\\n<p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p>\\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p><ol><li><b>Workout<\\/b>\\u00a0\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li><li><b>Sun Salutation<\\/b>\\u00a0\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li><li><b>Motivational discourse<\\/b>\\u00a0\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li><li><b>Acupressure<\\/b>\\u00a0(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,\\u00a0 middle of your palm for kidney problems and\\u00a0 under the thumb for the well being of thyroid.<\\/li><li><b>Eyes and neck exercises<\\/b>\\u00a0\\u2013 we take care of every part of the body.<br \\/>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>\\u00a0\\u00a0\\u00a0\\u00a0<\\/b><br \\/>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li><li><b>Seven Pranayamas (<\\/b>\\u00a0breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li><li><b>6 mudras\\u00a0<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li><li><b>100 postures, exercises and asanas<\\/b>\\u00a0\\u2013 with these we increase flexibility from head to toe. We are also doing\\u00a0<b>stretching<\\/b>\\u00a0exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br \\/>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li><li><b>Laughter yoga\\u00a0<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br \\/>We also do\\u00a0<b>Super Brain yoga<\\/b>\\u00a0to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li><li><b>Shavasana\\u00a0<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li><li><b>Motivational poem<\\/b>\\u00a0\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li><li><b>Mantra<\\/b>\\u00a0\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li><\\/ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00\\u00a0<\\/strong><br \\/><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8cdebb\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5319c9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f90c261\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5f4e8c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51b3d1b\",\"elType\":\"widget\",\"settings\":{\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"95745c1\"},{\"_id\":\"1ad6b6a\",\"eael_event_title\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \",\"eael_event_link\":{\"url\":\"https:\\/\\/us06web.zoom.us\\/meeting\\/register\\/tZIofu-qqzgiHtPlXpzEm2GoKrTks4RHEi12#\\/registration\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_event_redirection\":\"yes\",\"eael_event_start_date\":\"2024-09-28 10:30\",\"eael_event_end_date\":\"2024-09-28 12:30\"},{\"eael_event_title\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \",\"eael_event_link\":{\"url\":\"https:\\/\\/us06web.zoom.us\\/meeting\\/register\\/tZIofu-qqzgiHtPlXpzEm2GoKrTks4RHEi12#\\/registration\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_event_redirection\":\"yes\",\"eael_event_start_date\":\"2024-10-26 10:30\",\"eael_event_end_date\":\"2024-10-26 12:30\",\"_id\":\"70ef101\"},{\"_id\":\"58c28a8\",\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-07 09:00\",\"eael_event_end_date\":\"2024-09-07 11:00\",\"eael_event_bg_color\":\"#079E57\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-28 09:00\",\"eael_event_end_date\":\"2024-09-28 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"3a07192\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-28 09:00\",\"eael_event_end_date\":\"2024-09-28 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"5b8fc3c\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-21 09:00\",\"eael_event_end_date\":\"2024-09-21 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"9c1a29b\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-05 09:00\",\"eael_event_end_date\":\"2024-10-05 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"88c112e\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-12 09:00\",\"eael_event_end_date\":\"2024-10-12 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"9ee9371\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-19 09:00\",\"eael_event_end_date\":\"2024-10-19 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"4bedee7\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-26 09:00\",\"eael_event_end_date\":\"2024-10-26 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"f7418ae\"}],\"eael_event_calendar_default_date\":\"2024-09-28\",\"eael_event_details_text\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \"},\"elements\":[],\"widgetType\":\"eael-event-calendar\"}],\"isInner\":false}],\"isInner\":false}]'),(9078,1186,'_elementor_edit_mode','builder'),(9079,1186,'_elementor_template_type','wp-page'),(9080,1186,'_elementor_version','3.13.4'),(9069,1184,'_elementor_page_assets','a:0:{}'),(9070,1184,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9071,1185,'_elementor_edit_mode','builder'),(9072,1185,'_elementor_template_type','wp-page'),(9073,1185,'_elementor_version','3.13.4'),(9074,1185,'_wp_page_template','default'),(9075,1185,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-copia.jpg\",\"id\":887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge<\\/p>\\n<p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>&nbsp;<\\/i><\\/b>exercise<b>s<i>,&nbsp;<\\/i><\\/b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p>\\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p>\\n<p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p>\\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p><ol><li><b>Workout<\\/b>\\u00a0\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li><li><b>Sun Salutation<\\/b>\\u00a0\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li><li><b>Motivational discourse<\\/b>\\u00a0\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li><li><b>Acupressure<\\/b>\\u00a0(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,\\u00a0 middle of your palm for kidney problems and\\u00a0 under the thumb for the well being of thyroid.<\\/li><li><b>Eyes and neck exercises<\\/b>\\u00a0\\u2013 we take care of every part of the body.<br \\/>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>\\u00a0\\u00a0\\u00a0\\u00a0<\\/b><br \\/>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li><li><b>Seven Pranayamas (<\\/b>\\u00a0breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li><li><b>6 mudras\\u00a0<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li><li><b>100 postures, exercises and asanas<\\/b>\\u00a0\\u2013 with these we increase flexibility from head to toe. We are also doing\\u00a0<b>stretching<\\/b>\\u00a0exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br \\/>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li><li><b>Laughter yoga\\u00a0<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br \\/>We also do\\u00a0<b>Super Brain yoga<\\/b>\\u00a0to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li><li><b>Shavasana\\u00a0<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li><li><b>Motivational poem<\\/b>\\u00a0\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li><li><b>Mantra<\\/b>\\u00a0\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li><\\/ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00\\u00a0<\\/strong><br \\/><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(9076,1185,'_elementor_page_assets','a:0:{}'),(9077,1185,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9083,1186,'_elementor_page_assets','a:0:{}'),(9084,1186,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9085,652,'_eael_widget_elements','a:1:{s:14:\"event-calendar\";s:14:\"event-calendar\";}'),(9095,1188,'_elementor_edit_mode','builder'),(9096,1188,'_elementor_template_type','wp-page'),(9097,1188,'_elementor_version','3.13.4'),(9098,1188,'_wp_page_template','default'),(9099,1188,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-copia.jpg\",\"id\":887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge<\\/p>\\n<p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>&nbsp;<\\/i><\\/b>exercise<b>s<i>,&nbsp;<\\/i><\\/b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p>\\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p>\\n<p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p>\\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p><ol><li><b>Workout<\\/b>\\u00a0\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li><li><b>Sun Salutation<\\/b>\\u00a0\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li><li><b>Motivational discourse<\\/b>\\u00a0\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li><li><b>Acupressure<\\/b>\\u00a0(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,\\u00a0 middle of your palm for kidney problems and\\u00a0 under the thumb for the well being of thyroid.<\\/li><li><b>Eyes and neck exercises<\\/b>\\u00a0\\u2013 we take care of every part of the body.<br \\/>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>\\u00a0\\u00a0\\u00a0\\u00a0<\\/b><br \\/>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li><li><b>Seven Pranayamas (<\\/b>\\u00a0breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li><li><b>6 mudras\\u00a0<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li><li><b>100 postures, exercises and asanas<\\/b>\\u00a0\\u2013 with these we increase flexibility from head to toe. We are also doing\\u00a0<b>stretching<\\/b>\\u00a0exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br \\/>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li><li><b>Laughter yoga\\u00a0<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br \\/>We also do\\u00a0<b>Super Brain yoga<\\/b>\\u00a0to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li><li><b>Shavasana\\u00a0<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li><li><b>Motivational poem<\\/b>\\u00a0\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li><li><b>Mantra<\\/b>\\u00a0\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li><\\/ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00\\u00a0<\\/strong><br \\/><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8cdebb\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5319c9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f90c261\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5f4e8c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51b3d1b\",\"elType\":\"widget\",\"settings\":{\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"95745c1\"},{\"_id\":\"1ad6b6a\",\"eael_event_title\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \",\"eael_event_link\":{\"url\":\"https:\\/\\/us06web.zoom.us\\/meeting\\/register\\/tZIofu-qqzgiHtPlXpzEm2GoKrTks4RHEi12#\\/registration\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_event_redirection\":\"yes\",\"eael_event_start_date\":\"2024-09-28 10:30\",\"eael_event_end_date\":\"2024-09-28 12:30\"},{\"eael_event_title\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \",\"eael_event_link\":{\"url\":\"https:\\/\\/us06web.zoom.us\\/meeting\\/register\\/tZIofu-qqzgiHtPlXpzEm2GoKrTks4RHEi12#\\/registration\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_event_redirection\":\"yes\",\"eael_event_start_date\":\"2024-10-26 10:30\",\"eael_event_end_date\":\"2024-10-26 12:30\",\"_id\":\"70ef101\"},{\"_id\":\"58c28a8\",\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-07 09:00\",\"eael_event_end_date\":\"2024-09-07 11:00\",\"eael_event_bg_color\":\"#079E57\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-28 09:00\",\"eael_event_end_date\":\"2024-09-28 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"3a07192\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-28 09:00\",\"eael_event_end_date\":\"2024-09-28 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"5b8fc3c\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-21 09:00\",\"eael_event_end_date\":\"2024-09-21 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"9c1a29b\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-05 09:00\",\"eael_event_end_date\":\"2024-10-05 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"88c112e\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-12 09:00\",\"eael_event_end_date\":\"2024-10-12 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"9ee9371\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-19 09:00\",\"eael_event_end_date\":\"2024-10-19 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"4bedee7\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-26 09:00\",\"eael_event_end_date\":\"2024-10-26 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"f7418ae\"}],\"eael_event_calendar_default_date\":\"2024-09-28\",\"eael_event_details_text\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \"},\"elements\":[],\"widgetType\":\"eael-event-calendar\"}],\"isInner\":false}],\"isInner\":false}]'),(9114,1190,'_elementor_page_assets','a:0:{}'),(9115,1190,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9109,1190,'_elementor_edit_mode','builder'),(9110,1190,'_elementor_template_type','wp-page'),(9111,1190,'_elementor_version','3.13.4'),(9112,1190,'_wp_page_template','default'),(9113,1190,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-copia.jpg\",\"id\":887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge<\\/p>\\n<p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>&nbsp;<\\/i><\\/b>exercise<b>s<i>,&nbsp;<\\/i><\\/b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p>\\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p>\\n<p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p>\\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p><ol><li><b>Workout<\\/b>\\u00a0\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li><li><b>Sun Salutation<\\/b>\\u00a0\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li><li><b>Motivational discourse<\\/b>\\u00a0\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li><li><b>Acupressure<\\/b>\\u00a0(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,\\u00a0 middle of your palm for kidney problems and\\u00a0 under the thumb for the well being of thyroid.<\\/li><li><b>Eyes and neck exercises<\\/b>\\u00a0\\u2013 we take care of every part of the body.<br \\/>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>\\u00a0\\u00a0\\u00a0\\u00a0<\\/b><br \\/>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li><li><b>Seven Pranayamas (<\\/b>\\u00a0breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li><li><b>6 mudras\\u00a0<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li><li><b>100 postures, exercises and asanas<\\/b>\\u00a0\\u2013 with these we increase flexibility from head to toe. We are also doing\\u00a0<b>stretching<\\/b>\\u00a0exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br \\/>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li><li><b>Laughter yoga\\u00a0<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br \\/>We also do\\u00a0<b>Super Brain yoga<\\/b>\\u00a0to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li><li><b>Shavasana\\u00a0<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li><li><b>Motivational poem<\\/b>\\u00a0\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li><li><b>Mantra<\\/b>\\u00a0\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li><\\/ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00\\u00a0<\\/strong><br \\/><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8cdebb\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5319c9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38ea796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Divya Yoga Monteregie - annual calendar 2024-2025 \",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f90c261\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5f4e8c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51b3d1b\",\"elType\":\"widget\",\"settings\":{\"eael_event_items\":[{\"_id\":\"1ad6b6a\",\"eael_event_title\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \",\"eael_event_link\":{\"url\":\"https:\\/\\/us06web.zoom.us\\/meeting\\/register\\/tZIofu-qqzgiHtPlXpzEm2GoKrTks4RHEi12#\\/registration\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_event_redirection\":\"yes\",\"eael_event_start_date\":\"2024-09-28 10:30\",\"eael_event_end_date\":\"2024-09-28 12:30\"},{\"eael_event_title\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \",\"eael_event_link\":{\"url\":\"https:\\/\\/us06web.zoom.us\\/meeting\\/register\\/tZIofu-qqzgiHtPlXpzEm2GoKrTks4RHEi12#\\/registration\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_event_redirection\":\"yes\",\"eael_event_start_date\":\"2024-10-26 10:30\",\"eael_event_end_date\":\"2024-10-26 12:30\",\"_id\":\"70ef101\"},{\"_id\":\"58c28a8\",\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-07 09:00\",\"eael_event_end_date\":\"2024-09-07 11:00\",\"eael_event_bg_color\":\"#079E57\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-28 09:00\",\"eael_event_end_date\":\"2024-09-28 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"3a07192\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-28 09:00\",\"eael_event_end_date\":\"2024-09-28 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"5b8fc3c\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-21 09:00\",\"eael_event_end_date\":\"2024-09-21 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"9c1a29b\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-05 09:00\",\"eael_event_end_date\":\"2024-10-05 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"88c112e\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-12 09:00\",\"eael_event_end_date\":\"2024-10-12 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"9ee9371\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-19 09:00\",\"eael_event_end_date\":\"2024-10-19 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"4bedee7\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-26 09:00\",\"eael_event_end_date\":\"2024-10-26 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"f7418ae\"}],\"eael_event_calendar_default_date\":\"2024-09-28\",\"eael_event_details_text\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \"},\"elements\":[],\"widgetType\":\"eael-event-calendar\"}],\"isInner\":false}],\"isInner\":false}]'),(9100,1188,'_elementor_page_assets','a:0:{}'),(9101,1188,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9102,1189,'_elementor_edit_mode','builder'),(9103,1189,'_elementor_template_type','wp-page'),(9104,1189,'_elementor_version','3.13.4'),(9105,1189,'_wp_page_template','default'),(9106,1189,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-copia.jpg\",\"id\":887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge<\\/p>\\n<p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>&nbsp;<\\/i><\\/b>exercise<b>s<i>,&nbsp;<\\/i><\\/b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p>\\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p>\\n<p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p>\\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p><ol><li><b>Workout<\\/b>\\u00a0\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li><li><b>Sun Salutation<\\/b>\\u00a0\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li><li><b>Motivational discourse<\\/b>\\u00a0\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li><li><b>Acupressure<\\/b>\\u00a0(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,\\u00a0 middle of your palm for kidney problems and\\u00a0 under the thumb for the well being of thyroid.<\\/li><li><b>Eyes and neck exercises<\\/b>\\u00a0\\u2013 we take care of every part of the body.<br \\/>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>\\u00a0\\u00a0\\u00a0\\u00a0<\\/b><br \\/>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li><li><b>Seven Pranayamas (<\\/b>\\u00a0breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li><li><b>6 mudras\\u00a0<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li><li><b>100 postures, exercises and asanas<\\/b>\\u00a0\\u2013 with these we increase flexibility from head to toe. We are also doing\\u00a0<b>stretching<\\/b>\\u00a0exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br \\/>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li><li><b>Laughter yoga\\u00a0<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br \\/>We also do\\u00a0<b>Super Brain yoga<\\/b>\\u00a0to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li><li><b>Shavasana\\u00a0<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li><li><b>Motivational poem<\\/b>\\u00a0\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li><li><b>Mantra<\\/b>\\u00a0\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li><\\/ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00\\u00a0<\\/strong><br \\/><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8cdebb\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5319c9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"f90c261\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5f4e8c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51b3d1b\",\"elType\":\"widget\",\"settings\":{\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"95745c1\"},{\"_id\":\"1ad6b6a\",\"eael_event_title\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \",\"eael_event_link\":{\"url\":\"https:\\/\\/us06web.zoom.us\\/meeting\\/register\\/tZIofu-qqzgiHtPlXpzEm2GoKrTks4RHEi12#\\/registration\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_event_redirection\":\"yes\",\"eael_event_start_date\":\"2024-09-28 10:30\",\"eael_event_end_date\":\"2024-09-28 12:30\"},{\"eael_event_title\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \",\"eael_event_link\":{\"url\":\"https:\\/\\/us06web.zoom.us\\/meeting\\/register\\/tZIofu-qqzgiHtPlXpzEm2GoKrTks4RHEi12#\\/registration\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_event_redirection\":\"yes\",\"eael_event_start_date\":\"2024-10-26 10:30\",\"eael_event_end_date\":\"2024-10-26 12:30\",\"_id\":\"70ef101\"},{\"_id\":\"58c28a8\",\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-07 09:00\",\"eael_event_end_date\":\"2024-09-07 11:00\",\"eael_event_bg_color\":\"#079E57\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-28 09:00\",\"eael_event_end_date\":\"2024-09-28 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"3a07192\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-28 09:00\",\"eael_event_end_date\":\"2024-09-28 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"5b8fc3c\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-21 09:00\",\"eael_event_end_date\":\"2024-09-21 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"9c1a29b\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-05 09:00\",\"eael_event_end_date\":\"2024-10-05 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"88c112e\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-12 09:00\",\"eael_event_end_date\":\"2024-10-12 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"9ee9371\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-19 09:00\",\"eael_event_end_date\":\"2024-10-19 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"4bedee7\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-26 09:00\",\"eael_event_end_date\":\"2024-10-26 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"f7418ae\"}],\"eael_event_calendar_default_date\":\"2024-09-28\",\"eael_event_details_text\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \"},\"elements\":[],\"widgetType\":\"eael-event-calendar\"}],\"isInner\":false}],\"isInner\":false}]'),(9107,1189,'_elementor_page_assets','a:0:{}'),(9108,1189,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9118,1191,'_elementor_edit_mode','builder'),(9119,1191,'_elementor_template_type','wp-page'),(9120,1191,'_elementor_version','3.13.4'),(9121,1191,'_wp_page_template','default'),(9122,1191,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-copia.jpg\",\"id\":887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge<\\/p>\\n<p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>&nbsp;<\\/i><\\/b>exercise<b>s<i>,&nbsp;<\\/i><\\/b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p>\\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p>\\n<p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p>\\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p><ol><li><b>Workout<\\/b>\\u00a0\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li><li><b>Sun Salutation<\\/b>\\u00a0\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li><li><b>Motivational discourse<\\/b>\\u00a0\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li><li><b>Acupressure<\\/b>\\u00a0(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,\\u00a0 middle of your palm for kidney problems and\\u00a0 under the thumb for the well being of thyroid.<\\/li><li><b>Eyes and neck exercises<\\/b>\\u00a0\\u2013 we take care of every part of the body.<br \\/>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>\\u00a0\\u00a0\\u00a0\\u00a0<\\/b><br \\/>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li><li><b>Seven Pranayamas (<\\/b>\\u00a0breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li><li><b>6 mudras\\u00a0<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li><li><b>100 postures, exercises and asanas<\\/b>\\u00a0\\u2013 with these we increase flexibility from head to toe. We are also doing\\u00a0<b>stretching<\\/b>\\u00a0exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br \\/>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li><li><b>Laughter yoga\\u00a0<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br \\/>We also do\\u00a0<b>Super Brain yoga<\\/b>\\u00a0to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li><li><b>Shavasana\\u00a0<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li><li><b>Motivational poem<\\/b>\\u00a0\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li><li><b>Mantra<\\/b>\\u00a0\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li><\\/ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00\\u00a0<\\/strong><br \\/><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8cdebb\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5319c9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38ea796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Divya Yoga Monteregie - annual calendar 2024-2025 \",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f90c261\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5f4e8c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51b3d1b\",\"elType\":\"widget\",\"settings\":{\"eael_event_items\":[{\"_id\":\"1ad6b6a\",\"eael_event_title\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \",\"eael_event_link\":{\"url\":\"https:\\/\\/us06web.zoom.us\\/meeting\\/register\\/tZIofu-qqzgiHtPlXpzEm2GoKrTks4RHEi12#\\/registration\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_event_redirection\":\"yes\",\"eael_event_start_date\":\"2024-09-28 10:30\",\"eael_event_end_date\":\"2024-09-28 12:30\"},{\"eael_event_title\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \",\"eael_event_link\":{\"url\":\"https:\\/\\/us06web.zoom.us\\/meeting\\/register\\/tZIofu-qqzgiHtPlXpzEm2GoKrTks4RHEi12#\\/registration\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_event_redirection\":\"yes\",\"eael_event_start_date\":\"2024-10-26 10:30\",\"eael_event_end_date\":\"2024-10-26 12:30\",\"_id\":\"70ef101\"},{\"_id\":\"58c28a8\",\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-07 09:00\",\"eael_event_end_date\":\"2024-09-07 11:00\",\"eael_event_bg_color\":\"#079E57\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-28 09:00\",\"eael_event_end_date\":\"2024-09-28 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"3a07192\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-28 09:00\",\"eael_event_end_date\":\"2024-09-28 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"5b8fc3c\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-21 09:00\",\"eael_event_end_date\":\"2024-09-21 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"9c1a29b\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-05 09:00\",\"eael_event_end_date\":\"2024-10-05 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"88c112e\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-12 09:00\",\"eael_event_end_date\":\"2024-10-12 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"9ee9371\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-19 09:00\",\"eael_event_end_date\":\"2024-10-19 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"4bedee7\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-26 09:00\",\"eael_event_end_date\":\"2024-10-26 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"f7418ae\"}],\"eael_event_calendar_default_date\":\"2024-09-28\",\"eael_event_details_text\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \"},\"elements\":[],\"widgetType\":\"eael-event-calendar\"}],\"isInner\":false}],\"isInner\":false}]'),(9123,1191,'_elementor_page_assets','a:0:{}'),(9124,1191,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9125,1191,'_elementor_css','a:6:{s:4:\"time\";i:1726631332;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(9126,1192,'_elementor_edit_mode','builder'),(9127,1192,'_elementor_template_type','wp-page'),(9128,1192,'_elementor_version','3.13.4'),(9129,1192,'_wp_page_template','default'),(9130,1192,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-copia.jpg\",\"id\":887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge<\\/p>\\n<p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>&nbsp;<\\/i><\\/b>exercise<b>s<i>,&nbsp;<\\/i><\\/b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p>\\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p>\\n<p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p>\\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p><ol><li><b>Workout<\\/b>\\u00a0\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li><li><b>Sun Salutation<\\/b>\\u00a0\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li><li><b>Motivational discourse<\\/b>\\u00a0\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li><li><b>Acupressure<\\/b>\\u00a0(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,\\u00a0 middle of your palm for kidney problems and\\u00a0 under the thumb for the well being of thyroid.<\\/li><li><b>Eyes and neck exercises<\\/b>\\u00a0\\u2013 we take care of every part of the body.<br \\/>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>\\u00a0\\u00a0\\u00a0\\u00a0<\\/b><br \\/>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li><li><b>Seven Pranayamas (<\\/b>\\u00a0breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li><li><b>6 mudras\\u00a0<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li><li><b>100 postures, exercises and asanas<\\/b>\\u00a0\\u2013 with these we increase flexibility from head to toe. We are also doing\\u00a0<b>stretching<\\/b>\\u00a0exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br \\/>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li><li><b>Laughter yoga\\u00a0<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br \\/>We also do\\u00a0<b>Super Brain yoga<\\/b>\\u00a0to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li><li><b>Shavasana\\u00a0<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li><li><b>Motivational poem<\\/b>\\u00a0\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li><li><b>Mantra<\\/b>\\u00a0\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li><\\/ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00\\u00a0<\\/strong><br \\/><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8cdebb\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5319c9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38ea796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Divya Yoga Monteregie - annual calendar 2024-2025 \",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f90c261\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5f4e8c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51b3d1b\",\"elType\":\"widget\",\"settings\":{\"eael_event_items\":[{\"_id\":\"1ad6b6a\",\"eael_event_title\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \",\"eael_event_link\":{\"url\":\"https:\\/\\/us06web.zoom.us\\/meeting\\/register\\/tZIofu-qqzgiHtPlXpzEm2GoKrTks4RHEi12#\\/registration\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_event_redirection\":\"yes\",\"eael_event_start_date\":\"2024-09-28 10:30\",\"eael_event_end_date\":\"2024-09-28 12:30\"},{\"eael_event_title\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \",\"eael_event_link\":{\"url\":\"https:\\/\\/us06web.zoom.us\\/meeting\\/register\\/tZIofu-qqzgiHtPlXpzEm2GoKrTks4RHEi12#\\/registration\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_event_redirection\":\"yes\",\"eael_event_start_date\":\"2024-10-26 10:30\",\"eael_event_end_date\":\"2024-10-26 12:30\",\"_id\":\"70ef101\"},{\"_id\":\"58c28a8\",\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-07 09:00\",\"eael_event_end_date\":\"2024-09-07 11:00\",\"eael_event_bg_color\":\"#079E57\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-28 09:00\",\"eael_event_end_date\":\"2024-09-28 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"3a07192\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-28 09:00\",\"eael_event_end_date\":\"2024-09-28 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"5b8fc3c\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-21 09:00\",\"eael_event_end_date\":\"2024-09-21 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"9c1a29b\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-05 09:00\",\"eael_event_end_date\":\"2024-10-05 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"88c112e\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-12 09:00\",\"eael_event_end_date\":\"2024-10-12 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"9ee9371\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-19 09:00\",\"eael_event_end_date\":\"2024-10-19 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"4bedee7\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-26 09:00\",\"eael_event_end_date\":\"2024-10-26 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"f7418ae\"}],\"eael_event_calendar_default_date\":\"2024-09-28\",\"eael_event_details_text\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \"},\"elements\":[],\"widgetType\":\"eael-event-calendar\"}],\"isInner\":false}],\"isInner\":false}]'),(9131,1192,'_elementor_page_assets','a:0:{}'),(9132,1192,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9133,1192,'_elementor_css','a:6:{s:4:\"time\";i:1726631332;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(9134,1193,'_elementor_edit_mode','builder'),(9135,1193,'_elementor_template_type','wp-page'),(9136,1193,'_elementor_version','3.13.4'),(9137,1193,'_wp_page_template','default'),(9138,1193,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-copia.jpg\",\"id\":887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge<\\/p>\\n<p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>&nbsp;<\\/i><\\/b>exercise<b>s<i>,&nbsp;<\\/i><\\/b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p>\\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p>\\n<p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p>\\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"St. Lambert International Hight School 675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p><ol><li><b>Workout<\\/b>\\u00a0\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li><li><b>Sun Salutation<\\/b>\\u00a0\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li><li><b>Motivational discourse<\\/b>\\u00a0\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li><li><b>Acupressure<\\/b>\\u00a0(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,\\u00a0 middle of your palm for kidney problems and\\u00a0 under the thumb for the well being of thyroid.<\\/li><li><b>Eyes and neck exercises<\\/b>\\u00a0\\u2013 we take care of every part of the body.<br \\/>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>\\u00a0\\u00a0\\u00a0\\u00a0<\\/b><br \\/>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li><li><b>Seven Pranayamas (<\\/b>\\u00a0breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li><li><b>6 mudras\\u00a0<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li><li><b>100 postures, exercises and asanas<\\/b>\\u00a0\\u2013 with these we increase flexibility from head to toe. We are also doing\\u00a0<b>stretching<\\/b>\\u00a0exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br \\/>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li><li><b>Laughter yoga\\u00a0<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br \\/>We also do\\u00a0<b>Super Brain yoga<\\/b>\\u00a0to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li><li><b>Shavasana\\u00a0<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li><li><b>Motivational poem<\\/b>\\u00a0\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li><li><b>Mantra<\\/b>\\u00a0\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li><\\/ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00\\u00a0<\\/strong><br \\/><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8cdebb\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5319c9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38ea796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Divya Yoga Monteregie - annual calendar 2024-2025 \",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f90c261\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5f4e8c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51b3d1b\",\"elType\":\"widget\",\"settings\":{\"eael_event_items\":[{\"_id\":\"1ad6b6a\",\"eael_event_title\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \",\"eael_event_link\":{\"url\":\"https:\\/\\/us06web.zoom.us\\/meeting\\/register\\/tZIofu-qqzgiHtPlXpzEm2GoKrTks4RHEi12#\\/registration\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_event_redirection\":\"yes\",\"eael_event_start_date\":\"2024-09-28 10:30\",\"eael_event_end_date\":\"2024-09-28 12:30\"},{\"eael_event_title\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \",\"eael_event_link\":{\"url\":\"https:\\/\\/us06web.zoom.us\\/meeting\\/register\\/tZIofu-qqzgiHtPlXpzEm2GoKrTks4RHEi12#\\/registration\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_event_redirection\":\"yes\",\"eael_event_start_date\":\"2024-10-26 10:30\",\"eael_event_end_date\":\"2024-10-26 12:30\",\"_id\":\"70ef101\"},{\"_id\":\"58c28a8\",\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-07 09:00\",\"eael_event_end_date\":\"2024-09-07 11:00\",\"eael_event_bg_color\":\"#079E57\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-28 09:00\",\"eael_event_end_date\":\"2024-09-28 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"3a07192\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-28 09:00\",\"eael_event_end_date\":\"2024-09-28 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"5b8fc3c\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-21 09:00\",\"eael_event_end_date\":\"2024-09-21 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"9c1a29b\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-05 09:00\",\"eael_event_end_date\":\"2024-10-05 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"88c112e\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-12 09:00\",\"eael_event_end_date\":\"2024-10-12 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"9ee9371\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-19 09:00\",\"eael_event_end_date\":\"2024-10-19 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"4bedee7\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-26 09:00\",\"eael_event_end_date\":\"2024-10-26 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"f7418ae\"}],\"eael_event_calendar_default_date\":\"2024-09-28\",\"eael_event_details_text\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \"},\"elements\":[],\"widgetType\":\"eael-event-calendar\"}],\"isInner\":false}],\"isInner\":false}]'),(9139,1193,'_elementor_page_assets','a:0:{}'),(9140,1193,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9141,1193,'_elementor_css','a:6:{s:4:\"time\";i:1726631332;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(9143,1194,'_elementor_edit_mode','builder'),(9144,1194,'_elementor_template_type','wp-page'),(9145,1194,'_elementor_version','3.13.4'),(9146,1194,'_wp_page_template','default'),(9147,1194,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-copia.jpg\",\"id\":887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge<\\/p>\\n<p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>&nbsp;<\\/i><\\/b>exercise<b>s<i>,&nbsp;<\\/i><\\/b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p>\\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p>\\n<p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p>\\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"St. Lambert International Hight School 675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p><ol><li><b>Workout<\\/b>\\u00a0\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li><li><b>Sun Salutation<\\/b>\\u00a0\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li><li><b>Motivational discourse<\\/b>\\u00a0\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li><li><b>Acupressure<\\/b>\\u00a0(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,\\u00a0 middle of your palm for kidney problems and\\u00a0 under the thumb for the well being of thyroid.<\\/li><li><b>Eyes and neck exercises<\\/b>\\u00a0\\u2013 we take care of every part of the body.<br \\/>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>\\u00a0\\u00a0\\u00a0\\u00a0<\\/b><br \\/>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li><li><b>Seven Pranayamas (<\\/b>\\u00a0breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li><li><b>6 mudras\\u00a0<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li><li><b>100 postures, exercises and asanas<\\/b>\\u00a0\\u2013 with these we increase flexibility from head to toe. We are also doing\\u00a0<b>stretching<\\/b>\\u00a0exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br \\/>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li><li><b>Laughter yoga\\u00a0<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br \\/>We also do\\u00a0<b>Super Brain yoga<\\/b>\\u00a0to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li><li><b>Shavasana\\u00a0<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li><li><b>Motivational poem<\\/b>\\u00a0\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li><li><b>Mantra<\\/b>\\u00a0\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li><\\/ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00\\u00a0<\\/strong><br \\/><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8cdebb\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5319c9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38ea796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Divya Yoga Monteregie - annual calendar 2024-2025 \",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f90c261\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5f4e8c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51b3d1b\",\"elType\":\"widget\",\"settings\":{\"eael_event_items\":[{\"_id\":\"1ad6b6a\",\"eael_event_title\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \",\"eael_event_link\":{\"url\":\"https:\\/\\/us06web.zoom.us\\/meeting\\/register\\/tZIofu-qqzgiHtPlXpzEm2GoKrTks4RHEi12#\\/registration\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_event_redirection\":\"yes\",\"eael_event_start_date\":\"2024-09-28 10:30\",\"eael_event_end_date\":\"2024-09-28 12:30\"},{\"eael_event_title\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \",\"eael_event_link\":{\"url\":\"https:\\/\\/us06web.zoom.us\\/meeting\\/register\\/tZIofu-qqzgiHtPlXpzEm2GoKrTks4RHEi12#\\/registration\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_event_redirection\":\"yes\",\"eael_event_start_date\":\"2024-10-26 10:30\",\"eael_event_end_date\":\"2024-10-26 12:30\",\"_id\":\"70ef101\"},{\"_id\":\"58c28a8\",\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-07 09:00\",\"eael_event_end_date\":\"2024-09-07 11:00\",\"eael_event_bg_color\":\"#079E57\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-28 09:00\",\"eael_event_end_date\":\"2024-09-28 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"3a07192\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-28 09:00\",\"eael_event_end_date\":\"2024-09-28 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"5b8fc3c\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-21 09:00\",\"eael_event_end_date\":\"2024-09-21 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"9c1a29b\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-05 09:00\",\"eael_event_end_date\":\"2024-10-05 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"88c112e\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-12 09:00\",\"eael_event_end_date\":\"2024-10-12 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"9ee9371\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-19 09:00\",\"eael_event_end_date\":\"2024-10-19 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"4bedee7\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-26 09:00\",\"eael_event_end_date\":\"2024-10-26 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"f7418ae\"}],\"eael_event_calendar_default_date\":\"2024-09-28\",\"eael_event_details_text\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \"},\"elements\":[],\"widgetType\":\"eael-event-calendar\"}],\"isInner\":false}],\"isInner\":false}]'),(9148,1194,'_elementor_page_assets','a:0:{}'),(9149,1194,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9150,1195,'_elementor_edit_mode','builder'),(9151,1195,'_elementor_template_type','wp-page'),(9152,1195,'_elementor_version','3.13.4'),(9153,1195,'_wp_page_template','default'),(9154,1195,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-copia.jpg\",\"id\":887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge<\\/p>\\n<p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>&nbsp;<\\/i><\\/b>exercise<b>s<i>,&nbsp;<\\/i><\\/b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p>\\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p>\\n<p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p>\\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"St. Lambert International Hight School 675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p><ol><li><b>Workout<\\/b>\\u00a0\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li><li><b>Sun Salutation<\\/b>\\u00a0\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li><li><b>Motivational discourse<\\/b>\\u00a0\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li><li><b>Acupressure<\\/b>\\u00a0(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,\\u00a0 middle of your palm for kidney problems and\\u00a0 under the thumb for the well being of thyroid.<\\/li><li><b>Eyes and neck exercises<\\/b>\\u00a0\\u2013 we take care of every part of the body.<br \\/>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>\\u00a0\\u00a0\\u00a0\\u00a0<\\/b><br \\/>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li><li><b>Seven Pranayamas (<\\/b>\\u00a0breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li><li><b>6 mudras\\u00a0<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li><li><b>100 postures, exercises and asanas<\\/b>\\u00a0\\u2013 with these we increase flexibility from head to toe. We are also doing\\u00a0<b>stretching<\\/b>\\u00a0exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br \\/>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li><li><b>Laughter yoga\\u00a0<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br \\/>We also do\\u00a0<b>Super Brain yoga<\\/b>\\u00a0to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li><li><b>Shavasana\\u00a0<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li><li><b>Motivational poem<\\/b>\\u00a0\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li><li><b>Mantra<\\/b>\\u00a0\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li><\\/ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00\\u00a0<\\/strong><br \\/><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8cdebb\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5319c9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38ea796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Divya Yoga Monteregie - annual calendar 2024-2025 \",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f90c261\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5f4e8c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51b3d1b\",\"elType\":\"widget\",\"settings\":{\"eael_event_items\":[{\"_id\":\"1ad6b6a\",\"eael_event_title\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \",\"eael_event_link\":{\"url\":\"https:\\/\\/us06web.zoom.us\\/meeting\\/register\\/tZIofu-qqzgiHtPlXpzEm2GoKrTks4RHEi12#\\/registration\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_event_redirection\":\"yes\",\"eael_event_start_date\":\"2024-09-28 10:30\",\"eael_event_end_date\":\"2024-09-28 12:30\"},{\"eael_event_title\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \",\"eael_event_link\":{\"url\":\"https:\\/\\/us06web.zoom.us\\/meeting\\/register\\/tZIofu-qqzgiHtPlXpzEm2GoKrTks4RHEi12#\\/registration\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_event_redirection\":\"yes\",\"eael_event_start_date\":\"2024-10-26 10:30\",\"eael_event_end_date\":\"2024-10-26 12:30\",\"_id\":\"70ef101\"},{\"_id\":\"58c28a8\",\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-07 09:00\",\"eael_event_end_date\":\"2024-09-07 11:00\",\"eael_event_bg_color\":\"#079E57\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-28 09:00\",\"eael_event_end_date\":\"2024-09-28 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"3a07192\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-28 09:00\",\"eael_event_end_date\":\"2024-09-28 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"5b8fc3c\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-21 09:00\",\"eael_event_end_date\":\"2024-09-21 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"9c1a29b\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-05 09:00\",\"eael_event_end_date\":\"2024-10-05 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"88c112e\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-12 09:00\",\"eael_event_end_date\":\"2024-10-12 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"9ee9371\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-19 09:00\",\"eael_event_end_date\":\"2024-10-19 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"4bedee7\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-26 09:00\",\"eael_event_end_date\":\"2024-10-26 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"f7418ae\"}],\"eael_event_calendar_default_date\":\"2024-09-28\",\"eael_event_details_text\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \"},\"elements\":[],\"widgetType\":\"eael-event-calendar\"}],\"isInner\":false}],\"isInner\":false}]'),(9155,1195,'_elementor_page_assets','a:0:{}'),(9156,1195,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9157,1196,'_elementor_edit_mode','builder'),(9158,1196,'_elementor_template_type','wp-page'),(9159,1196,'_elementor_version','3.13.4'),(9160,1196,'_wp_page_template','default'),(9161,1196,'_elementor_data','[{\"id\":\"11ee0a7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"580cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cb18b84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/05\\/yoga-copia.jpg\",\"id\":887,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d183403\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"13ae7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0395103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To make basic yoga practice easily accessible to everyone without charge<\\/p>\\n<p>Founder of Divya Yoga Swami Ram Dev says \\u201cGood Health is birth right of mankind\\u201d. By performing yoga postures,\\/asanas,<b><i>&nbsp;<\\/i><\\/b>exercise<b>s<i>,&nbsp;<\\/i><\\/b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one\\u2019s control. By getting in touch with one\\u2019s inner self we can experience state of \\u201cBliss and Anand\\u201d<\\/p>\\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with \\u2018Shav Asana\\u2019, motivational poem, mantra and prayer,<\\/p>\\n<p>After yoga super food i. e. grapes and banana are available for Yogies.<\\/p>\\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body\\/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbb5aba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"487d20a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8bfea9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule & Location\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ff9e459\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"04761ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e958084\",\"elType\":\"widget\",\"settings\":{\"address\":\"St. Lambert International Hight School 675 Rue Green, Saint-Lambert, \",\"height\":{\"unit\":\"px\",\"size\":403,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dcbcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"10862de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f69944\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>What do we do!<\\/strong><\\/p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle<\\/p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.<\\/p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.<\\/p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18953cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ebc87d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c25cc77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/divyayogamonteregie.org\\/ca\\/wp-content\\/uploads\\/2023\\/04\\/cropped-banner5.jpg\",\"id\":33,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e3535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25ca798\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70f4911\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Please see below a short description of exercises that we practice every Saturday.<\\/p>\\n<ol>\\n<li><b>Workout<\\/b>&nbsp;\\u2013 a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward\\/upward dog etc.<\\/li>\\n<li><b>Sun Salutation<\\/b>&nbsp;\\u2013 Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.<\\/li>\\n<li><b>Motivational discourse<\\/b>&nbsp;\\u2013 our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.<\\/li>\\n<li><b>Acupressure<\\/b>&nbsp;(an alternative medicine technique derived from acupuncture)\\u2013 pressing with rotation your fingertips to relieve sinus problems,&nbsp; middle of your palm for kidney problems and&nbsp; under the thumb for the well being of thyroid.<\\/li>\\n<li><b>Eyes and neck exercises<\\/b>&nbsp;\\u2013 we take care of every part of the body.<br>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>&nbsp;&nbsp;&nbsp;&nbsp;<\\/b><br>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.<\\/li>\\n<li><b>Seven Pranayamas (<\\/b>&nbsp;breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.<\\/li>\\n<li><b>6 mudras&nbsp;<\\/b>(positioning of fingers) \\u2013 are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.<\\/li>\\n<li><b>100 postures, exercises and asanas<\\/b>&nbsp;\\u2013 with these we increase flexibility from head to toe. We are also doing&nbsp;<b>stretching<\\/b>&nbsp;exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.<\\/li>\\n<li><b>Laughter yoga&nbsp;<\\/b>\\u2013 with Meera \\u2013 a revolutionary idea \\u2013 simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br>We also do&nbsp;<b>Super Brain yoga<\\/b>&nbsp;to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.<\\/li>\\n<li><b>Shavasana&nbsp;<\\/b>\\u2013 After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.<\\/li>\\n<li><b>Motivational poem<\\/b>&nbsp;\\u2013 is read at the end of the session to keep us motivated, focused and recharge our batteries.<\\/li>\\n<li><b>Mantra<\\/b>&nbsp;\\u2013 at the end we repeat and acknowledge our mantra \\u2013 IF IT IS TO BE IT IS UP TO ME.<\\/li>\\n<\\/ol>\\n<p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00&nbsp;<\\/strong><br><strong>at St.Lambert International Hight School, 675 Green, St. Lambert, QC, J4P 1V9<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8cdebb\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5319c9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38ea796\",\"elType\":\"widget\",\"settings\":{\"title\":\"Divya Yoga Monteregie - annual calendar 2024-2025 \",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f90c261\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5f4e8c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51b3d1b\",\"elType\":\"widget\",\"settings\":{\"eael_event_items\":[{\"_id\":\"1ad6b6a\",\"eael_event_title\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \",\"eael_event_link\":{\"url\":\"https:\\/\\/us06web.zoom.us\\/meeting\\/register\\/tZIofu-qqzgiHtPlXpzEm2GoKrTks4RHEi12#\\/registration\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_event_redirection\":\"yes\",\"eael_event_start_date\":\"2024-09-28 10:30\",\"eael_event_end_date\":\"2024-09-28 12:30\"},{\"eael_event_title\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \",\"eael_event_link\":{\"url\":\"https:\\/\\/us06web.zoom.us\\/meeting\\/register\\/tZIofu-qqzgiHtPlXpzEm2GoKrTks4RHEi12#\\/registration\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"eael_event_redirection\":\"yes\",\"eael_event_start_date\":\"2024-10-26 10:30\",\"eael_event_end_date\":\"2024-10-26 12:30\",\"_id\":\"70ef101\"},{\"_id\":\"58c28a8\",\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-07 09:00\",\"eael_event_end_date\":\"2024-09-07 11:00\",\"eael_event_bg_color\":\"#079E57\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-28 09:00\",\"eael_event_end_date\":\"2024-09-28 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"3a07192\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-28 09:00\",\"eael_event_end_date\":\"2024-09-28 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"5b8fc3c\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-09-21 09:00\",\"eael_event_end_date\":\"2024-09-21 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"9c1a29b\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-05 09:00\",\"eael_event_end_date\":\"2024-10-05 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"88c112e\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-12 09:00\",\"eael_event_end_date\":\"2024-10-12 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"9ee9371\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-19 09:00\",\"eael_event_end_date\":\"2024-10-19 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"4bedee7\"},{\"eael_event_title\":\" Yoga in shool  from 9am  to 11 AM \",\"eael_event_start_date\":\"2024-10-26 09:00\",\"eael_event_end_date\":\"2024-10-26 11:00\",\"eael_event_bg_color\":\"#079E57\",\"_id\":\"f7418ae\"}],\"eael_event_calendar_default_date\":\"2024-09-28\",\"eael_event_details_text\":\" Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant \"},\"elements\":[],\"widgetType\":\"eael-event-calendar\"}],\"isInner\":false}],\"isInner\":false}]'),(9162,1196,'_elementor_page_assets','a:0:{}'),(9163,1196,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(9164,652,'_elementor_controls_usage','a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;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:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:28:\"text_shadow_text_shadow_type\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:5:\"align\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:1;s:6:\"height\";i:1;}}}}s:19:\"eael-event-calendar\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:18:\"eael_event_section\";a:1:{s:16:\"eael_event_items\";i:1;}s:27:\"eael_event_calendar_section\";a:2:{s:32:\"eael_event_calendar_default_date\";i:1;s:23:\"eael_event_details_text\";i:1;}}}}}'),(9165,652,'_elementor_css','a:6:{s:4:\"time\";i:1728103614;s:5:\"fonts\";a:1:{i:0;s:9:\"Helvetica\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}');
/*!40000 ALTER TABLE `wpjv_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjv_posts`
--

DROP TABLE IF EXISTS `wpjv_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjv_posts` (
  `ID` bigint unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint 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 CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_excerpt` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `to_ping` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `pinged` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_parent` bigint unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `menu_order` int NOT NULL DEFAULT '0',
  `post_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_count` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=1197 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjv_posts`
--

LOCK TABLES `wpjv_posts` WRITE;
/*!40000 ALTER TABLE `wpjv_posts` DISABLE KEYS */;
INSERT INTO `wpjv_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (1,1,'2023-04-29 04:53:32','2023-04-29 04:53:32','<!-- 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!','','draft','open','open','','hello-world','','','2023-05-24 16:09:34','2023-05-24 16:09:34','',0,'https://divyayogamonteregie.org/ca/?p=1',0,'post','',1),(691,1,'2023-05-24 03:39:09','2023-05-24 03:39:09','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Tres agricultores se reunieron para evaluar y compartir sus experiencias del año pasado. Cada uno tenía cien metros cuadrados de tierra en la que cultivaban. Al final de la reunión, el primer agricultor dijo: \"La situación era muy difícil y será mucho peor para el próximo año\".</p><p>El segundo respondió: \"Ciertamente tienes razón. De hecho, después de trabajar muy duro todo el año, desde el amanecer hasta el atardecer, solo obtuve un 1% de ganancias después de todos los gastos\".</p><p>Calculando sus propios números, el primer agricultor respondió: \"Creo que mi ganancia total es exactamente la misma que la suya, que es del 1%\".</p><p>Los dos miraron al tercer agricultor y le preguntaron: \"¿Cuántas ganancias obtuviste durante este año?\"</p><p>El tercer agricultor respondió amablemente: \"Caballero, con el debido respeto, obtuve una ganancia del 5% durante este año\".</p><p>Eso fue seguido por un largo silencio ...</p><p>\"¿Cómo es que? 5% de ganancia?? Eso es imposible!!!! ¿Cómo lo hiciste???\"</p><p>\"Matemáticas muy fáciles y simples\", dijo el tercer agricultor. \"Obtuve el mismo beneficio del 1% que tú. ... más un 4% que representa el inmenso placer de poder disfrutar de esta vista, ordeñar mis vacas y disfrutar al máximo de mi granja. Eso me da un 5% de ganancia total\".</p><p><strong>Moraleja de la historia:</strong> Todos tenemos que cuidar nuestra granja (que es nuestra tierra de cien metros cuadrados) y obtener el máximo beneficio mientras disfrutamos de cada instante de nuestras vidas y trabajo!!!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Beginning A New Year','','inherit','closed','closed','','378-revision-v1','','','2023-05-24 03:39:09','2023-05-24 03:39:09','',378,'https://divyayogamonteregie.org/ca/?p=691',0,'revision','',0),(921,1,'2023-06-08 23:46:39','2023-06-08 23:46:39','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\"><b><br /></b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</p><p style=\"text-align: justify;\">The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</p><p style=\"text-align: justify;\">Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</p><p style=\"text-align: justify;\">That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">No response.</p><p style=\"text-align: justify;\">So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">Still no response.</p><p style=\"text-align: justify;\">Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">Again he gets no response.</p><p style=\"text-align: justify;\">So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">Again there is no response.</p><p style=\"text-align: justify;\">So he walks right up behind her. \"Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">\"James, for the FIFTH time I\'ve said, Lima Beans!\"</p><p style=\"text-align: justify;\"><b>The problem may not be with the other person as we always think, could be very much within us!</b></p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','inherit','closed','closed','','359-revision-v1','','','2023-06-08 23:46:39','2023-06-08 23:46:39','',359,'https://divyayogamonteregie.org/ca/?p=921',0,'revision','',0),(555,1,'2023-05-13 20:13:11','2023-05-13 20:13:11','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SE LO QUE QUIERAS SER!</h1>		\n		<p>¡Puedes ser <strong>lo que</strong><br /><strong>quieras ser!</strong></p><p>Hay dentro de ti<br />todo el potencial<br />para ser lo que quieras ser,<br />toda la energía<br />para hacer lo que quieras hacer.</p><p>Imagínate como te gustaría ser, haciendo lo que quieres hacer, y cada día,<br /><br />da un paso<br />hacia tu sueño.</p><p>Y aunque a veces parezca demasiado<br />difícil continuar,<br />aférrate a tu sueño.</p><p>Una mañana te despertarás para descubrir<br />que eres la persona con la que soñaste, haciendo lo que querías hacer, simplemente porque tuviste el coraje<br />de creer en tu potencial<br />y aferrarte a tu sueño.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Se lo que quieras ser','','inherit','closed','closed','','175-revision-v1','','','2023-05-13 20:13:11','2023-05-13 20:13:11','',175,'https://divyayogamonteregie.org/ca/?p=555',0,'revision','',0),(6,1,'2023-04-29 21:09:54','2023-04-29 21:09:54','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-twentytwentythree','','','2023-04-29 21:09:54','2023-04-29 21:09:54','',0,'https://divyayogamonteregie.org/ca/2023/04/29/wp-global-styles-twentytwentythree/',0,'wp_global_styles','',0),(72,1,'2023-04-30 03:16:42','2023-04-30 03:16:42','','descarga (1)','','inherit','open','closed','','descarga-1','','','2023-04-30 03:16:42','2023-04-30 03:16:42','',43,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg',0,'attachment','image/jpeg',0),(73,1,'2023-04-30 03:16:43','2023-04-30 03:16:43','','descarga (2)','','inherit','open','closed','','descarga-2','','','2023-04-30 03:16:43','2023-04-30 03:16:43','',43,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg',0,'attachment','image/jpeg',0),(681,1,'2023-05-24 03:35:18','2023-05-24 03:35:18','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un conocido orador comenzó su seminario sosteniendo un billete de $ 20. En la sala de 200, preguntó: \"¿A quién le gustaría este billete de 20 dólares?\"</p><p>Las manos comenzaron a subir.</p><p>Él dijo: \"Voy a darle estos $ 20 a uno de ustedes, pero primero, déjenme hacer esto\". Procedió a arrugar el billete de un dólar.</p><p>Luego preguntó: \"¿Quién todavía lo quiere?\"</p><p>Aún así, las manos estaban en el aire.</p><p>\"Bueno\", respondió, \"¿y si hago esto?\" Y lo dejó caer al suelo y comenzó a molerlo en el suelo con su zapato.</p><p>Lo recogió, ahora todo arrugado y sucio. \"Ahora, ¿quién todavía lo quiere?\" Aún así, las manos se elevaron en el aire.</p><p>\"Mis amigos, todos ustedes han aprendido una lección muy valiosa. No importa lo que le hiciera al dinero, todavía lo querías porque no disminuía su valor. Todavía valía $ 20.</p><p>Muchas veces en nuestras vidas, somos dejados caer, arrugados y molidos en la tierra por las decisiones que tomamos y las circunstancias que se nos presentan.</p><p>Sentimos que no valemos nada. Pero no importa lo que haya sucedido o lo que suceda, nunca perderá su valor. Tienes alma divina. Eres especial, ¡nunca lo olvides!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A value','','inherit','closed','closed','','364-revision-v1','','','2023-05-24 03:35:18','2023-05-24 03:35:18','',364,'https://divyayogamonteregie.org/ca/?p=681',0,'revision','',0),(925,1,'2023-06-08 23:48:28','2023-06-08 23:48:28','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h2 style=\"text-align: justify;\"><b><br /></b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</h2><p style=\"text-align: justify;\">The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</p><p style=\"text-align: justify;\">Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</p><p style=\"text-align: justify;\">That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">No response.</p><p style=\"text-align: justify;\">So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">Still no response.</p><p style=\"text-align: justify;\">Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">Again he gets no response.</p><p style=\"text-align: justify;\">So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">Again there is no response.</p><p style=\"text-align: justify;\">So he walks right up behind her. \"Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">\"James, for the FIFTH time I\'ve said, Lima Beans!\"</p><p style=\"text-align: justify;\"><b>The problem may not be with the other person as we always think, could be very much within us!</b></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','inherit','closed','closed','','359-revision-v1','','','2023-06-08 23:48:28','2023-06-08 23:48:28','',359,'https://divyayogamonteregie.org/ca/?p=925',0,'revision','',0),(926,1,'2023-06-08 23:48:28','2023-06-08 23:48:28','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h3><b><br /></b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</h3><h3 style=\"text-align: justify;\">The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</h3><h3 style=\"text-align: justify;\">Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</h3><h3 style=\"text-align: justify;\">That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</h3><h3 style=\"text-align: justify;\">No response.</h3><h3 style=\"text-align: justify;\">So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</h3><h3 style=\"text-align: justify;\">Still no response.</h3><h3 style=\"text-align: justify;\">Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</h3><h3 style=\"text-align: justify;\">Again he gets no response.</h3><h3 style=\"text-align: justify;\">So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</h3><h3 style=\"text-align: justify;\">Again there is no response.</h3><h3 style=\"text-align: justify;\">So he walks right up behind her. \"Honey, what\'s for dinner?\"</h3><h3 style=\"text-align: justify;\">\"James, for the FIFTH time I\'ve said, Lima Beans!\"</h3><h3 style=\"text-align: justify;\"><b>The problem may not be with the other person as we always think, could be very much within us!</b></h3>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','inherit','closed','closed','','359-revision-v1','','','2023-06-08 23:48:28','2023-06-08 23:48:28','',359,'https://divyayogamonteregie.org/ca/?p=926',0,'revision','',0),(927,1,'2023-06-08 23:49:12','2023-06-08 23:49:12','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h3><b><br /></b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</h3><h3 style=\"text-align: justify;\">The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</h3><h3 style=\"text-align: justify;\">Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</h3><h3 style=\"text-align: justify;\">That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</h3><h3 style=\"text-align: justify;\">No response.</h3><h3 style=\"text-align: justify;\">So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</h3><h3 style=\"text-align: justify;\">Still no response.</h3><h3 style=\"text-align: justify;\">Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</h3><h3 style=\"text-align: justify;\">Again he gets no response.</h3><h3 style=\"text-align: justify;\">So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</h3><h3 style=\"text-align: justify;\">Again there is no response.</h3><h3 style=\"text-align: justify;\">So he walks right up behind her. \"Honey, what\'s for dinner?\"</h3><h3 style=\"text-align: justify;\">\"James, for the FIFTH time I\'ve said, Lima Beans!\"</h3><h3 style=\"text-align: justify;\"><b>The problem may not be with the other person as we always think, could be very much within us!</b></h3>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','inherit','closed','closed','','359-revision-v1','','','2023-06-08 23:49:12','2023-06-08 23:49:12','',359,'https://divyayogamonteregie.org/ca/?p=927',0,'revision','',0),(928,1,'2023-06-08 23:49:12','2023-06-08 23:49:12','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h3><b><br /></b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</h3><h3 style=\"text-align: justify;\">The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</h3><h3 style=\"text-align: justify;\">Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</h3><h3 style=\"text-align: justify;\">That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</h3><h3 style=\"text-align: justify;\">No response.</h3><h3 style=\"text-align: justify;\">So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</h3><h3 style=\"text-align: justify;\">Still no response.</h3><h3 style=\"text-align: justify;\">Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</h3><h3 style=\"text-align: justify;\">Again he gets no response.</h3><h3 style=\"text-align: justify;\">So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</h3><h3 style=\"text-align: justify;\">Again there is no response.</h3><h3 style=\"text-align: justify;\">So he walks right up behind her. \"Honey, what\'s for dinner?\"</h3><h3 style=\"text-align: justify;\">\"James, for the FIFTH time I\'ve said, Lima Beans!\"</h3><h3 style=\"text-align: justify;\"><b>The problem may not be with the other person as we always think, could be very much within us!</b></h3>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','inherit','closed','closed','','359-revision-v1','','','2023-06-08 23:49:12','2023-06-08 23:49:12','',359,'https://divyayogamonteregie.org/ca/?p=928',0,'revision','',0),(692,1,'2023-05-24 03:39:10','2023-05-24 03:39:10','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Three farmers gathered to evaluate and share their experiences from the year passed. Each had a hundred square meter of land on which they farmed. At the end of the meeting, the first farmer said, \"The situation was very hard and it will be much worse for next year.\"</p><p style=\"text-align: justify;\">The second replied, \"You are certainly right. As a matter of fact, after working very hard the whole year, from sunrise to sunset, I only gained 1% profit after all expenses.\"</p><p style=\"text-align: justify;\">Calculating his own numbers, the first farmer replied, \"I believe that my total profit is exactly the same as yours, which is 1%.\"</p><p style=\"text-align: justify;\">The two of them looked at the third farmer and asked, \"How much profit did you make during this year?\"</p><p style=\"text-align: justify;\">The third farmer kindly replied, \"Gentleman, with all due respect, I obtained a 5% profit during this year.\"</p><p style=\"text-align: justify;\">That was followed by a long silence...</p><p style=\"text-align: justify;\">\"How come? 5% profit?? That is impossible!!!! How did you do that???\"</p><p style=\"text-align: justify;\">\"Very easy and simple math,\" said the third farmer. \"I made the very same 1% profit as you did. ... plus 4% that represents the immense pleasure to be able to enjoy this view, milk my cows and enjoy the most of my farm. That gives me 5% total profit.\"</p><p style=\"text-align: justify;\"><b>Moral Of the Story:</b> All of us have to take care of our farm (that is our hundred square meter land) and get the maximum profit while enjoying every instant of our lives and work!!!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Beginning A New Year','','inherit','closed','closed','','378-revision-v1','','','2023-05-24 03:39:10','2023-05-24 03:39:10','',378,'https://divyayogamonteregie.org/ca/?p=692',0,'revision','',0),(20,1,'2023-04-30 00:57:57','2023-04-30 00:57:57','','Kit predeterminado','','publish','closed','closed','','kit-predeterminado','','','2023-04-30 05:38:28','2023-04-30 05:38:28','',0,'https://divyayogamonteregie.org/ca/?p=20',0,'elementor_library','',0),(21,1,'2023-04-30 01:00:57','2023-04-30 01:00:57','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Present instructors</h2>		\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h1>Jocelyne Boucher</h1>		\n		<p> </p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. </p><p>ears, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. </p><p> I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h2>Past instructor</h2>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"1022\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-225x300.jpg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-770x1024.jpg 770w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg 962w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','publish','closed','closed','','instructors','','','2023-06-14 18:52:17','2023-06-14 18:52:17','',0,'https://divyayogamonteregie.org/ca/?page_id=21',0,'page','',0),(68,1,'2023-04-30 03:08:38','2023-04-30 03:08:38','','Poemas','','inherit','closed','closed','','21-revision-v1','','','2023-04-30 03:08:38','2023-04-30 03:08:38','',21,'https://divyayogamonteregie.org/ca/?p=68',0,'revision','',0),(22,1,'2023-04-30 01:00:57','2023-04-30 01:00:57','','Elementor #21','','inherit','closed','closed','','21-revision-v1','','','2023-04-30 01:00:57','2023-04-30 01:00:57','',21,'https://divyayogamonteregie.org/ca/?p=22',0,'revision','',0),(24,1,'2023-04-30 01:14:13','2023-04-30 01:14:13','','logo','','inherit','open','closed','','logo','','','2023-04-30 01:14:13','2023-04-30 01:14:13','',0,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/logo.png',0,'attachment','image/png',0),(25,1,'2023-04-30 01:14:19','2023-04-30 01:14:19','https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-logo.png','cropped-logo.png','','inherit','open','closed','','cropped-logo-png','','','2023-04-30 01:14:19','2023-04-30 01:14:19','',0,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-logo.png',0,'attachment','image/png',0),(26,1,'2023-04-30 01:15:12','2023-04-30 01:15:12','https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-logo-1.png','cropped-logo-1.png','','inherit','open','closed','','cropped-logo-1-png','','','2023-04-30 01:15:12','2023-04-30 01:15:12','',0,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-logo-1.png',0,'attachment','image/png',0),(27,1,'2023-04-30 01:15:26','2023-04-30 01:15:26','','Kit predeterminado','','inherit','closed','closed','','20-revision-v1','','','2023-04-30 01:15:26','2023-04-30 01:15:26','',20,'https://divyayogamonteregie.org/ca/?p=27',0,'revision','',0),(29,1,'2023-04-30 01:17:41','2023-04-30 01:17:41','','cropped-logo-2.png','','inherit','open','closed','','cropped-logo-2-png','','','2023-04-30 01:17:41','2023-04-30 01:17:41','',0,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-logo-2.png',0,'attachment','image/png',0),(924,1,'2023-06-08 23:48:28','2023-06-08 23:48:28','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h2 style=\"text-align: justify;\"><b><br /></b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</h2><p style=\"text-align: justify;\">The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</p><p style=\"text-align: justify;\">Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</p><p style=\"text-align: justify;\">That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">No response.</p><p style=\"text-align: justify;\">So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">Still no response.</p><p style=\"text-align: justify;\">Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">Again he gets no response.</p><p style=\"text-align: justify;\">So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">Again there is no response.</p><p style=\"text-align: justify;\">So he walks right up behind her. \"Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">\"James, for the FIFTH time I\'ve said, Lima Beans!\"</p><p style=\"text-align: justify;\"><b>The problem may not be with the other person as we always think, could be very much within us!</b></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','inherit','closed','closed','','359-revision-v1','','','2023-06-08 23:48:28','2023-06-08 23:48:28','',359,'https://divyayogamonteregie.org/ca/?p=924',0,'revision','',0),(33,1,'2023-04-30 01:22:33','2023-04-30 01:22:33','','cropped-banner5','','inherit','open','closed','','cropped-banner5','','','2023-04-30 01:22:33','2023-04-30 01:22:33','',0,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg',0,'attachment','image/jpeg',0),(923,1,'2023-06-08 23:46:39','2023-06-08 23:46:39','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h2 style=\"text-align: justify;\"><b><br /></b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</h2><p style=\"text-align: justify;\">The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</p><p style=\"text-align: justify;\">Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</p><p style=\"text-align: justify;\">That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">No response.</p><p style=\"text-align: justify;\">So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">Still no response.</p><p style=\"text-align: justify;\">Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">Again he gets no response.</p><p style=\"text-align: justify;\">So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">Again there is no response.</p><p style=\"text-align: justify;\">So he walks right up behind her. \"Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">\"James, for the FIFTH time I\'ve said, Lima Beans!\"</p><p style=\"text-align: justify;\"><b>The problem may not be with the other person as we always think, could be very much within us!</b></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','inherit','closed','closed','','359-revision-v1','','','2023-06-08 23:46:39','2023-06-08 23:46:39','',359,'https://divyayogamonteregie.org/ca/?p=923',0,'revision','',0),(922,1,'2023-06-08 23:46:39','2023-06-08 23:46:39','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\"><b><br /></b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</p><p style=\"text-align: justify;\">The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</p><p style=\"text-align: justify;\">Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</p><p style=\"text-align: justify;\">That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">No response.</p><p style=\"text-align: justify;\">So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">Still no response.</p><p style=\"text-align: justify;\">Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">Again he gets no response.</p><p style=\"text-align: justify;\">So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">Again there is no response.</p><p style=\"text-align: justify;\">So he walks right up behind her. \"Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">\"James, for the FIFTH time I\'ve said, Lima Beans!\"</p><p style=\"text-align: justify;\"><b>The problem may not be with the other person as we always think, could be very much within us!</b></p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','inherit','closed','closed','','359-revision-v1','','','2023-06-08 23:46:39','2023-06-08 23:46:39','',359,'https://divyayogamonteregie.org/ca/?p=922',0,'revision','',0),(43,1,'2023-04-30 01:47:50','2023-04-30 01:47:50','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g12cf06d74_1280.jpg\" alt=\"yoga-g12cf06d74_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg\" alt=\"peaceful-g5ada3643f_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg\" alt=\"yoga-g4ef99c854_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280.jpg\" alt=\"sunrise-g34a24ef5c_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg\" alt=\"meditate-g16efcb560_1280\" /></figure>			\n												Previous image\n												Next image\n		<p style=\"text-align: justify;\">To make basic yoga practice easily accessible to everyone without charge.</p><p style=\"text-align: justify;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p><p style=\"text-align: justify;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p><p style=\"text-align: justify;\">After yoga super food i. e. grapes and banana are available for Yogies.</p><p style=\"text-align: justify;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>','Mission','','publish','closed','closed','','mission','','','2023-06-14 18:48:35','2023-06-14 18:48:35','',0,'https://divyayogamonteregie.org/ca/?page_id=43',0,'page','',0),(44,1,'2023-04-30 01:47:50','2023-04-30 01:47:50','','Elementor #43','','inherit','closed','closed','','43-revision-v1','','','2023-04-30 01:47:50','2023-04-30 01:47:50','',43,'https://divyayogamonteregie.org/ca/?p=44',0,'revision','',0),(70,1,'2023-04-30 03:13:31','2023-04-30 03:13:31','','descarga (3)','','inherit','open','closed','','descarga-3','','','2023-04-30 03:13:31','2023-04-30 03:13:31','',43,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg',0,'attachment','image/jpeg',0),(46,1,'2023-04-30 02:30:07','2023-04-30 02:30:07','https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-logo-3.png','cropped-logo-3.png','','inherit','open','closed','','cropped-logo-3-png','','','2023-04-30 02:30:07','2023-04-30 02:30:07','',0,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-logo-3.png',0,'attachment','image/png',0),(47,1,'2023-04-30 02:32:11','2023-04-30 02:32:11','https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-logo-4.png','cropped-logo-4.png','','inherit','open','closed','','cropped-logo-4-png','','','2023-04-30 02:32:11','2023-04-30 02:32:11','',0,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-logo-4.png',0,'attachment','image/png',0),(48,1,'2023-04-30 02:32:20','2023-04-30 02:32:20','https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-logo-5.png','cropped-logo-5.png','','inherit','open','closed','','cropped-logo-5-png','','','2023-04-30 02:32:20','2023-04-30 02:32:20','',0,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-logo-5.png',0,'attachment','image/png',0),(71,1,'2023-04-30 03:14:49','2023-04-30 03:14:49','','descarga','','inherit','open','closed','','descarga','','','2023-04-30 03:14:49','2023-04-30 03:14:49','',43,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg',0,'attachment','image/jpeg',0),(69,1,'2023-04-30 03:11:59','2023-04-30 03:11:59','','Mision','','inherit','closed','closed','','43-revision-v1','','','2023-04-30 03:11:59','2023-04-30 03:11:59','',43,'https://divyayogamonteregie.org/ca/?p=69',0,'revision','',0),(55,1,'2023-04-30 03:00:17','2023-04-30 03:00:17','','yoga','','inherit','open','closed','','yoga','','','2023-04-30 03:00:17','2023-04-30 03:00:17','',0,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/yoga.jpg',0,'attachment','image/jpeg',0),(680,1,'2023-05-24 03:34:03','2023-05-24 03:34:03','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\"><b><br /></b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</p><p style=\"text-align: justify;\">The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</p><p style=\"text-align: justify;\">Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</p><p style=\"text-align: justify;\">That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">No response.</p><p style=\"text-align: justify;\">So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">Still no response.</p><p style=\"text-align: justify;\">Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">Again he gets no response.</p><p style=\"text-align: justify;\">So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">Again there is no response.</p><p style=\"text-align: justify;\">So he walks right up behind her. \"Honey, what\'s for dinner?\"</p><p style=\"text-align: justify;\">\"James, for the FIFTH time I\'ve said, Lima Beans!\"</p><p style=\"text-align: justify;\"><b>The problem may not be with the other person as we always think, could be very much within us!</b></p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','inherit','closed','closed','','359-revision-v1','','','2023-05-24 03:34:03','2023-05-24 03:34:03','',359,'https://divyayogamonteregie.org/ca/?p=680',0,'revision','',0),(74,1,'2023-04-30 03:18:29','2023-04-30 03:18:29','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-150x150.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3-150x150.jpeg\" alt=\"descarga (3)\" /></figure>			\n												Anterior\n												Siguiente','Mision','','inherit','closed','closed','','43-revision-v1','','','2023-04-30 03:18:29','2023-04-30 03:18:29','',43,'https://divyayogamonteregie.org/ca/?p=74',0,'revision','',0),(75,1,'2023-04-30 03:18:29','2023-04-30 03:18:29','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-150x150.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3-150x150.jpeg\" alt=\"descarga (3)\" /></figure>			\n												Anterior\n												Siguiente','Mision','','inherit','closed','closed','','43-revision-v1','','','2023-04-30 03:18:29','2023-04-30 03:18:29','',43,'https://divyayogamonteregie.org/ca/?p=75',0,'revision','',0),(76,1,'2023-04-30 03:18:29','2023-04-30 03:18:29','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente','Mision','','inherit','closed','closed','','43-revision-v1','','','2023-04-30 03:18:29','2023-04-30 03:18:29','',43,'https://divyayogamonteregie.org/ca/?p=76',0,'revision','',0),(77,1,'2023-04-30 03:20:22','2023-04-30 03:20:22','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente','Mision','','inherit','closed','closed','','43-revision-v1','','','2023-04-30 03:20:22','2023-04-30 03:20:22','',43,'https://divyayogamonteregie.org/ca/?p=77',0,'revision','',0),(78,1,'2023-04-30 03:20:22','2023-04-30 03:20:22','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente','Mision','','inherit','closed','closed','','43-revision-v1','','','2023-04-30 03:20:22','2023-04-30 03:20:22','',43,'https://divyayogamonteregie.org/ca/?p=78',0,'revision','',0),(579,1,'2023-05-23 19:48:21','2023-05-23 19:48:21','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Previous image\n												Next image\n		<p style=\"text-align: justify;\">To make basic yoga practice easily accessible to everyone without charge.</p><p style=\"text-align: justify;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p><p style=\"text-align: justify;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p><p style=\"text-align: justify;\">After yoga super food i. e. grapes and banana are available for Yogies.</p><p style=\"text-align: justify;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>','Mision','','inherit','closed','closed','','43-revision-v1','','','2023-05-23 19:48:21','2023-05-23 19:48:21','',43,'https://divyayogamonteregie.org/ca/?p=579',0,'revision','',0),(79,1,'2023-04-30 03:20:22','2023-04-30 03:20:22','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente\n		<p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Hacer que la práctica básica de yoga sea fácilmente accesible para todos sin cargo.</p>\n<p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">El fundador de Divya Yoga Swami Ram Dev dice: \"La buena salud es un derecho de nacimiento de la humanidad\". Al realizar posturas de yoga, / asanas, ejercicios, mudras,<b>pranayams<i>,&nbsp;</i></b>meditación y al proporcionar un discurso motivacional práctico ayudan a desarrollar una mente libre de estrés y un cuerpo libre de enfermedades. Ayuda a cuidar el cuerpo, la mente y el alma y vivir una vida feliz, saludable y satisfactoria. Haga hincapié en que la clave para un cuerpo físico saludable y un estado mental sano está bajo el control de uno. Al ponernos en contacto con el ser interior podemos experimentar un estado de \"Bienaventuranza y Anand\".</p>\n<p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Este Divya yoga es para personas de todas las edades. Comenzamos con ejercicios de calentamiento (12-15), saludo al sol y discurso motivacional. Luego practicamos 90-100 combinaciones de asanas, posturas y ejercicios. También realizamos algo de acupresión, 6 mudras, 7 pranayams y micro ejercicios para ojos, dedos de manos, pies, cara y cuello. También se incluye yoga de la risa y súper yoga cerebral. Terminamos con \'Shav Asana\', poema motivacional, mantra y oración,&nbsp;Después del yoga, la súper comida, es decir, las uvas y el plátano están disponibles para los yoguis.</p>\n<p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">El yoga es un medio maravilloso de ejercitar, estirar y relajar el cuerpo / mente para que pueda ser saludable y duradero. Ayuda en la coordinación del cuerpo, la mente y el alma. También creamos un entorno donde las personas pueden interactuar para su mejoramiento y bien de la sociedad.</p>','Mision','','inherit','closed','closed','','43-revision-v1','','','2023-04-30 03:20:22','2023-04-30 03:20:22','',43,'https://divyayogamonteregie.org/ca/?p=79',0,'revision','',0),(80,1,'2023-04-30 03:20:48','2023-04-30 03:20:48','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente\n		<p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Hacer que la práctica básica de yoga sea fácilmente accesible para todos sin cargo.</p>\n<p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">El fundador de Divya Yoga Swami Ram Dev dice: \"La buena salud es un derecho de nacimiento de la humanidad\". Al realizar posturas de yoga, / asanas, ejercicios, mudras,<b>pranayams<i>,&nbsp;</i></b>meditación y al proporcionar un discurso motivacional práctico ayudan a desarrollar una mente libre de estrés y un cuerpo libre de enfermedades. Ayuda a cuidar el cuerpo, la mente y el alma y vivir una vida feliz, saludable y satisfactoria. Haga hincapié en que la clave para un cuerpo físico saludable y un estado mental sano está bajo el control de uno. Al ponernos en contacto con el ser interior podemos experimentar un estado de \"Bienaventuranza y Anand\".</p>\n<p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Este Divya yoga es para personas de todas las edades. Comenzamos con ejercicios de calentamiento (12-15), saludo al sol y discurso motivacional. Luego practicamos 90-100 combinaciones de asanas, posturas y ejercicios. También realizamos algo de acupresión, 6 mudras, 7 pranayams y micro ejercicios para ojos, dedos de manos, pies, cara y cuello. También se incluye yoga de la risa y súper yoga cerebral. Terminamos con \'Shav Asana\', poema motivacional, mantra y oración,&nbsp;Después del yoga, la súper comida, es decir, las uvas y el plátano están disponibles para los yoguis.</p>\n<p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">El yoga es un medio maravilloso de ejercitar, estirar y relajar el cuerpo / mente para que pueda ser saludable y duradero. Ayuda en la coordinación del cuerpo, la mente y el alma. También creamos un entorno donde las personas pueden interactuar para su mejoramiento y bien de la sociedad.</p>','Mision','','inherit','closed','closed','','43-revision-v1','','','2023-04-30 03:20:48','2023-04-30 03:20:48','',43,'https://divyayogamonteregie.org/ca/?p=80',0,'revision','',0),(81,1,'2023-04-30 03:20:48','2023-04-30 03:20:48','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente\n		<p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Hacer que la práctica básica de yoga sea fácilmente accesible para todos sin cargo.</p>\n<p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">El fundador de Divya Yoga Swami Ram Dev dice: \"La buena salud es un derecho de nacimiento de la humanidad\". Al realizar posturas de yoga, / asanas, ejercicios, mudras,<b>pranayams<i>,&nbsp;</i></b>meditación y al proporcionar un discurso motivacional práctico ayudan a desarrollar una mente libre de estrés y un cuerpo libre de enfermedades. Ayuda a cuidar el cuerpo, la mente y el alma y vivir una vida feliz, saludable y satisfactoria. Haga hincapié en que la clave para un cuerpo físico saludable y un estado mental sano está bajo el control de uno. Al ponernos en contacto con el ser interior podemos experimentar un estado de \"Bienaventuranza y Anand\".</p>\n<p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Este Divya yoga es para personas de todas las edades. Comenzamos con ejercicios de calentamiento (12-15), saludo al sol y discurso motivacional. Luego practicamos 90-100 combinaciones de asanas, posturas y ejercicios. También realizamos algo de acupresión, 6 mudras, 7 pranayams y micro ejercicios para ojos, dedos de manos, pies, cara y cuello. También se incluye yoga de la risa y súper yoga cerebral. Terminamos con \'Shav Asana\', poema motivacional, mantra y oración,&nbsp;Después del yoga, la súper comida, es decir, las uvas y el plátano están disponibles para los yoguis.</p>\n<p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">El yoga es un medio maravilloso de ejercitar, estirar y relajar el cuerpo / mente para que pueda ser saludable y duradero. Ayuda en la coordinación del cuerpo, la mente y el alma. También creamos un entorno donde las personas pueden interactuar para su mejoramiento y bien de la sociedad.</p>','Mision','','inherit','closed','closed','','43-revision-v1','','','2023-04-30 03:20:48','2023-04-30 03:20:48','',43,'https://divyayogamonteregie.org/ca/?p=81',0,'revision','',0),(82,1,'2023-04-30 03:20:48','2023-04-30 03:20:48','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente\n		<p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Hacer que la práctica básica de yoga sea fácilmente accesible para todos sin cargo.</p><p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">El fundador de Divya Yoga Swami Ram Dev dice: \"La buena salud es un derecho de nacimiento de la humanidad\". Al realizar posturas de yoga, / asanas, ejercicios, mudras,<b>pranayams<i>, </i></b>meditación y al proporcionar un discurso motivacional práctico ayudan a desarrollar una mente libre de estrés y un cuerpo libre de enfermedades. Ayuda a cuidar el cuerpo, la mente y el alma y vivir una vida feliz, saludable y satisfactoria. Haga hincapié en que la clave para un cuerpo físico saludable y un estado mental sano está bajo el control de uno. Al ponernos en contacto con el ser interior podemos experimentar un estado de \"Bienaventuranza y Anand\".</p><p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Este Divya yoga es para personas de todas las edades. Comenzamos con ejercicios de calentamiento (12-15), saludo al sol y discurso motivacional. Luego practicamos 90-100 combinaciones de asanas, posturas y ejercicios. También realizamos algo de acupresión, 6 mudras, 7 pranayams y micro ejercicios para ojos, dedos de manos, pies, cara y cuello. También se incluye yoga de la risa y súper yoga cerebral. Terminamos con \'Shav Asana\', poema motivacional, mantra y oración, Después del yoga, la súper comida, es decir, las uvas y el plátano están disponibles para los yoguis.</p><p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">El yoga es un medio maravilloso de ejercitar, estirar y relajar el cuerpo / mente para que pueda ser saludable y duradero. Ayuda en la coordinación del cuerpo, la mente y el alma. También creamos un entorno donde las personas pueden interactuar para su mejoramiento y bien de la sociedad.</p>','Mision','','inherit','closed','closed','','43-revision-v1','','','2023-04-30 03:20:48','2023-04-30 03:20:48','',43,'https://divyayogamonteregie.org/ca/?p=82',0,'revision','',0),(83,1,'2023-04-30 03:30:34','2023-04-30 03:30:34','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente\n		<p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Hacer que la práctica básica de yoga sea fácilmente accesible para todos sin cargo.</p><p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">El fundador de Divya Yoga Swami Ram Dev dice: \"La buena salud es un derecho de nacimiento de la humanidad\". Al realizar posturas de yoga, / asanas, ejercicios, mudras,<b>pranayams<i>, </i></b>meditación y al proporcionar un discurso motivacional práctico ayudan a desarrollar una mente libre de estrés y un cuerpo libre de enfermedades. Ayuda a cuidar el cuerpo, la mente y el alma y vivir una vida feliz, saludable y satisfactoria. Haga hincapié en que la clave para un cuerpo físico saludable y un estado mental sano está bajo el control de uno. Al ponernos en contacto con el ser interior podemos experimentar un estado de \"Bienaventuranza y Anand\".</p><p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Este Divya yoga es para personas de todas las edades. Comenzamos con ejercicios de calentamiento (12-15), saludo al sol y discurso motivacional. Luego practicamos 90-100 combinaciones de asanas, posturas y ejercicios. También realizamos algo de acupresión, 6 mudras, 7 pranayams y micro ejercicios para ojos, dedos de manos, pies, cara y cuello. También se incluye yoga de la risa y súper yoga cerebral. Terminamos con \'Shav Asana\', poema motivacional, mantra y oración, Después del yoga, la súper comida, es decir, las uvas y el plátano están disponibles para los yoguis.</p><p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">El yoga es un medio maravilloso de ejercitar, estirar y relajar el cuerpo / mente para que pueda ser saludable y duradero. Ayuda en la coordinación del cuerpo, la mente y el alma. También creamos un entorno donde las personas pueden interactuar para su mejoramiento y bien de la sociedad.</p>','','','inherit','closed','closed','','43-revision-v1','','','2023-04-30 03:30:34','2023-04-30 03:30:34','',43,'https://divyayogamonteregie.org/ca/?p=83',0,'revision','',0),(85,1,'2023-04-30 03:38:09','2023-04-30 03:38:09','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente\n		<p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Hacer que la práctica básica de yoga sea fácilmente accesible para todos sin cargo.</p><p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">El fundador de Divya Yoga Swami Ram Dev dice: \"La buena salud es un derecho de nacimiento de la humanidad\". Al realizar posturas de yoga, / asanas, ejercicios, mudras,<b>pranayams<i>, </i></b>meditación y al proporcionar un discurso motivacional práctico ayudan a desarrollar una mente libre de estrés y un cuerpo libre de enfermedades. Ayuda a cuidar el cuerpo, la mente y el alma y vivir una vida feliz, saludable y satisfactoria. Haga hincapié en que la clave para un cuerpo físico saludable y un estado mental sano está bajo el control de uno. Al ponernos en contacto con el ser interior podemos experimentar un estado de \"Bienaventuranza y Anand\".</p><p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Este Divya yoga es para personas de todas las edades. Comenzamos con ejercicios de calentamiento (12-15), saludo al sol y discurso motivacional. Luego practicamos 90-100 combinaciones de asanas, posturas y ejercicios. También realizamos algo de acupresión, 6 mudras, 7 pranayams y micro ejercicios para ojos, dedos de manos, pies, cara y cuello. También se incluye yoga de la risa y súper yoga cerebral. Terminamos con \'Shav Asana\', poema motivacional, mantra y oración, Después del yoga, la súper comida, es decir, las uvas y el plátano están disponibles para los yoguis.</p><p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">El yoga es un medio maravilloso de ejercitar, estirar y relajar el cuerpo / mente para que pueda ser saludable y duradero. Ayuda en la coordinación del cuerpo, la mente y el alma. También creamos un entorno donde las personas pueden interactuar para su mejoramiento y bien de la sociedad.</p>','Ms¿ision','','inherit','closed','closed','','43-revision-v1','','','2023-04-30 03:38:09','2023-04-30 03:38:09','',43,'https://divyayogamonteregie.org/ca/?p=85',0,'revision','',0),(86,1,'2023-04-30 03:38:25','2023-04-30 03:38:25','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente\n		<p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Hacer que la práctica básica de yoga sea fácilmente accesible para todos sin cargo.</p><p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">El fundador de Divya Yoga Swami Ram Dev dice: \"La buena salud es un derecho de nacimiento de la humanidad\". Al realizar posturas de yoga, / asanas, ejercicios, mudras,<b>pranayams<i>, </i></b>meditación y al proporcionar un discurso motivacional práctico ayudan a desarrollar una mente libre de estrés y un cuerpo libre de enfermedades. Ayuda a cuidar el cuerpo, la mente y el alma y vivir una vida feliz, saludable y satisfactoria. Haga hincapié en que la clave para un cuerpo físico saludable y un estado mental sano está bajo el control de uno. Al ponernos en contacto con el ser interior podemos experimentar un estado de \"Bienaventuranza y Anand\".</p><p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Este Divya yoga es para personas de todas las edades. Comenzamos con ejercicios de calentamiento (12-15), saludo al sol y discurso motivacional. Luego practicamos 90-100 combinaciones de asanas, posturas y ejercicios. También realizamos algo de acupresión, 6 mudras, 7 pranayams y micro ejercicios para ojos, dedos de manos, pies, cara y cuello. También se incluye yoga de la risa y súper yoga cerebral. Terminamos con \'Shav Asana\', poema motivacional, mantra y oración, Después del yoga, la súper comida, es decir, las uvas y el plátano están disponibles para los yoguis.</p><p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">El yoga es un medio maravilloso de ejercitar, estirar y relajar el cuerpo / mente para que pueda ser saludable y duradero. Ayuda en la coordinación del cuerpo, la mente y el alma. También creamos un entorno donde las personas pueden interactuar para su mejoramiento y bien de la sociedad.</p>','Mision','','inherit','closed','closed','','43-revision-v1','','','2023-04-30 03:38:25','2023-04-30 03:38:25','',43,'https://divyayogamonteregie.org/ca/?p=86',0,'revision','',0),(690,1,'2023-05-24 03:39:09','2023-05-24 03:39:09','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Tres agricultores se reunieron para evaluar y compartir sus experiencias del año pasado. Cada uno tenía cien metros cuadrados de tierra en la que cultivaban. Al final de la reunión, el primer agricultor dijo: \"La situación era muy difícil y será mucho peor para el próximo año\".</p><p>El segundo respondió: \"Ciertamente tienes razón. De hecho, después de trabajar muy duro todo el año, desde el amanecer hasta el atardecer, solo obtuve un 1% de ganancias después de todos los gastos\".</p><p>Calculando sus propios números, el primer agricultor respondió: \"Creo que mi ganancia total es exactamente la misma que la suya, que es del 1%\".</p><p>Los dos miraron al tercer agricultor y le preguntaron: \"¿Cuántas ganancias obtuviste durante este año?\"</p><p>El tercer agricultor respondió amablemente: \"Caballero, con el debido respeto, obtuve una ganancia del 5% durante este año\".</p><p>Eso fue seguido por un largo silencio ...</p><p>\"¿Cómo es que? 5% de ganancia?? Eso es imposible!!!! ¿Cómo lo hiciste???\"</p><p>\"Matemáticas muy fáciles y simples\", dijo el tercer agricultor. \"Obtuve el mismo beneficio del 1% que tú. ... más un 4% que representa el inmenso placer de poder disfrutar de esta vista, ordeñar mis vacas y disfrutar al máximo de mi granja. Eso me da un 5% de ganancia total\".</p><p><strong>Moraleja de la historia:</strong> Todos tenemos que cuidar nuestra granja (que es nuestra tierra de cien metros cuadrados) y obtener el máximo beneficio mientras disfrutamos de cada instante de nuestras vidas y trabajo!!!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Beginning A New Year','','inherit','closed','closed','','378-revision-v1','','','2023-05-24 03:39:09','2023-05-24 03:39:09','',378,'https://divyayogamonteregie.org/ca/?p=690',0,'revision','',0),(92,1,'2023-05-24 02:49:49','2023-04-30 03:55:21',' ','','','publish','closed','closed','','92','','','2023-05-24 02:49:49','2023-05-24 02:49:49','',0,'https://divyayogamonteregie.org/ca/?p=92',17,'nav_menu_item','',0),(93,1,'2023-05-24 02:49:49','2023-04-30 03:55:21',' ','','','publish','closed','closed','','93','','','2023-05-24 02:49:49','2023-05-24 02:49:49','',0,'https://divyayogamonteregie.org/ca/?p=93',18,'nav_menu_item','',0),(657,1,'2023-05-24 02:49:49','2023-05-24 02:49:49',' ','','','publish','closed','closed','','657','','','2023-05-24 02:49:49','2023-05-24 02:49:49','',0,'https://divyayogamonteregie.org/ca/2023/05/24/657/',1,'nav_menu_item','',0),(658,1,'2023-05-24 02:52:38','2023-05-24 02:52:38','https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-logo-3.png','cropped-cropped-logo-3.png','','inherit','open','closed','','cropped-cropped-logo-3-png','','','2023-05-24 02:52:38','2023-05-24 02:52:38','',0,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-cropped-logo-3.png',0,'attachment','image/png',0),(663,1,'2023-05-24 03:07:21','2023-05-24 03:07:21','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1000\" height=\"288\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />','Home','','inherit','closed','closed','','652-revision-v1','','','2023-05-24 03:07:21','2023-05-24 03:07:21','',652,'https://divyayogamonteregie.org/ca/?p=663',0,'revision','',0),(96,1,'2023-04-30 04:08:51','2023-04-30 04:08:51','','Kit predeterminado','','inherit','closed','closed','','20-revision-v1','','','2023-04-30 04:08:51','2023-04-30 04:08:51','',20,'https://divyayogamonteregie.org/ca/?p=96',0,'revision','',0),(97,1,'2023-04-30 04:08:51','2023-04-30 04:08:51','','Kit predeterminado','','inherit','closed','closed','','20-revision-v1','','','2023-04-30 04:08:51','2023-04-30 04:08:51','',20,'https://divyayogamonteregie.org/ca/?p=97',0,'revision','',0),(689,1,'2023-05-24 03:38:32','2023-05-24 03:38:32','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Tres agricultores se reunieron para evaluar y compartir sus experiencias del año pasado. Cada uno tenía cien metros cuadrados de tierra en la que cultivaban. Al final de la reunión, el primer agricultor dijo: \"La situación era muy difícil y será mucho peor para el próximo año\".</p><p>El segundo respondió: \"Ciertamente tienes razón. De hecho, después de trabajar muy duro todo el año, desde el amanecer hasta el atardecer, solo obtuve un 1% de ganancias después de todos los gastos\".</p><p>Calculando sus propios números, el primer agricultor respondió: \"Creo que mi ganancia total es exactamente la misma que la suya, que es del 1%\".</p><p>Los dos miraron al tercer agricultor y le preguntaron: \"¿Cuántas ganancias obtuviste durante este año?\"</p><p>El tercer agricultor respondió amablemente: \"Caballero, con el debido respeto, obtuve una ganancia del 5% durante este año\".</p><p>Eso fue seguido por un largo silencio ...</p><p>\"¿Cómo es que? 5% de ganancia?? Eso es imposible!!!! ¿Cómo lo hiciste???\"</p><p>\"Matemáticas muy fáciles y simples\", dijo el tercer agricultor. \"Obtuve el mismo beneficio del 1% que tú. ... más un 4% que representa el inmenso placer de poder disfrutar de esta vista, ordeñar mis vacas y disfrutar al máximo de mi granja. Eso me da un 5% de ganancia total\".</p><p><strong>Moraleja de la historia:</strong> Todos tenemos que cuidar nuestra granja (que es nuestra tierra de cien metros cuadrados) y obtener el máximo beneficio mientras disfrutamos de cada instante de nuestras vidas y trabajo!!!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Beginning A New Year','','inherit','closed','closed','','378-revision-v1','','','2023-05-24 03:38:32','2023-05-24 03:38:32','',378,'https://divyayogamonteregie.org/ca/?p=689',0,'revision','',0),(101,1,'2023-04-30 04:43:02','2023-04-30 04:43:02','','Instructores','','inherit','closed','closed','','21-revision-v1','','','2023-04-30 04:43:02','2023-04-30 04:43:02','',21,'https://divyayogamonteregie.org/ca/?p=101',0,'revision','',0),(102,1,'2023-04-30 04:48:31','2023-04-30 04:48:31','','images','','inherit','open','closed','','images','','','2023-04-30 04:48:31','2023-04-30 04:48:31','',21,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg',0,'attachment','image/jpeg',0),(103,1,'2023-04-30 04:50:13','2023-04-30 04:50:13','','Instructores','','inherit','closed','closed','','21-revision-v1','','','2023-04-30 04:50:13','2023-04-30 04:50:13','',21,'https://divyayogamonteregie.org/ca/?p=103',0,'revision','',0),(104,1,'2023-04-30 04:50:13','2023-04-30 04:50:13','','Instructores','','inherit','closed','closed','','21-revision-v1','','','2023-04-30 04:50:13','2023-04-30 04:50:13','',21,'https://divyayogamonteregie.org/ca/?p=104',0,'revision','',0),(105,1,'2023-04-30 04:50:13','2023-04-30 04:50:13','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg 290w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/elementor/thumbs/images-150x150.jpeg 500w\" sizes=\"(max-width: 290px) 100vw, 290px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \"persona hecha a sí misma\". Provenía de una familia modesta y trabajó duro para lograr sus objetivos. Obtuvo muchas becas de mérito mientras era estudiante. Tiene una Maestría en Ingeniería y una Maestría en Administración de Empresas junto con una designación de Contabilidad. Ha trabajado como ingeniero y ha enseñado a tiempo parcial en las universidades de Concordia y McGill.</p><p>Se retiró alrededor de los 50 años para perseguir su pasión. Ha establecido una fundación caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundación también \"Siete principios simples de la vida\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.</p>','Instructores','','inherit','closed','closed','','21-revision-v1','','','2023-04-30 04:50:13','2023-04-30 04:50:13','',21,'https://divyayogamonteregie.org/ca/?p=105',0,'revision','',0),(106,1,'2023-04-30 04:53:04','2023-04-30 04:53:04','','images (1)','','inherit','open','closed','','images-1','','','2023-04-30 04:53:04','2023-04-30 04:53:04','',21,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-1.jpeg',0,'attachment','image/jpeg',0),(107,1,'2023-04-30 04:53:11','2023-04-30 04:53:11','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg 290w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/elementor/thumbs/images-150x150.jpeg 500w\" sizes=\"(max-width: 290px) 100vw, 290px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \"persona hecha a sí misma\". Provenía de una familia modesta y trabajó duro para lograr sus objetivos. Obtuvo muchas becas de mérito mientras era estudiante. Tiene una Maestría en Ingeniería y una Maestría en Administración de Empresas junto con una designación de Contabilidad. Ha trabajado como ingeniero y ha enseñado a tiempo parcial en las universidades de Concordia y McGill.</p><p>Se retiró alrededor de los 50 años para perseguir su pasión. Ha establecido una fundación caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundación también \"Siete principios simples de la vida\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.</p>','Instructores','','inherit','closed','closed','','21-revision-v1','','','2023-04-30 04:53:11','2023-04-30 04:53:11','',21,'https://divyayogamonteregie.org/ca/?p=107',0,'revision','',0),(108,1,'2023-04-30 04:53:11','2023-04-30 04:53:11','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg 290w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/elementor/thumbs/images-150x150.jpeg 500w\" sizes=\"(max-width: 290px) 100vw, 290px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \"persona hecha a sí misma\". Provenía de una familia modesta y trabajó duro para lograr sus objetivos. Obtuvo muchas becas de mérito mientras era estudiante. Tiene una Maestría en Ingeniería y una Maestría en Administración de Empresas junto con una designación de Contabilidad. Ha trabajado como ingeniero y ha enseñado a tiempo parcial en las universidades de Concordia y McGill.</p><p>Se retiró alrededor de los 50 años para perseguir su pasión. Ha establecido una fundación caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundación también \"Siete principios simples de la vida\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.</p>','Instructores','','inherit','closed','closed','','21-revision-v1','','','2023-04-30 04:53:11','2023-04-30 04:53:11','',21,'https://divyayogamonteregie.org/ca/?p=108',0,'revision','',0),(109,1,'2023-04-30 04:53:11','2023-04-30 04:53:11','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg 290w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/elementor/thumbs/images-150x150.jpeg 500w\" sizes=\"(max-width: 290px) 100vw, 290px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \"persona hecha a sí misma\". Provenía de una familia modesta y trabajó duro para lograr sus objetivos. Obtuvo muchas becas de mérito mientras era estudiante. Tiene una Maestría en Ingeniería y una Maestría en Administración de Empresas junto con una designación de Contabilidad. Ha trabajado como ingeniero y ha enseñado a tiempo parcial en las universidades de Concordia y McGill.</p><p>Se retiró alrededor de los 50 años para perseguir su pasión. Ha establecido una fundación caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundación también \"Siete principios simples de la vida\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahmán, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiración alterna de fosas nasales. Después de hacer B.Sc con Biología y Química, se convirtió en profesora de biología en una escuela secundaria en la India. Al enseñar anatomía y fisiología humana y hacer yoga gradualmente, ella entendió la utilidad y los hechos científicos involucrados detrás del yoga. Emigró a Estados Unidos en 1994 y luego se casó y emigró a Canadá. Actualmente trabaja en el laboratorio de la Academia Chambly.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Ella cree que el yoga en la esterilla como los aeróbicos tiene efectos terapéuticos y fisioterapéuticos, pero al mismo tiempo también cree en el yoga más allá de la esterilla. Si hacemos yoga y también llevamos una vida piadosa y libre de culpa, entonces nuestros órganos funcionarán correctamente. Porque en el momento en que hacemos algo mal, nuestro corazón late aumenta, así que ¿por qué hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas añaden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el súper yoga del cerebro pueden hacer una gran contribución. También trata de seguir ocho ramas del yoga tanto como pueda.</p>		\n															<img width=\"251\" height=\"201\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-1.jpeg\" alt=\"\" loading=\"lazy\" />','Instructores','','inherit','closed','closed','','21-revision-v1','','','2023-04-30 04:53:11','2023-04-30 04:53:11','',21,'https://divyayogamonteregie.org/ca/?p=109',0,'revision','',0),(679,1,'2023-05-24 03:34:03','2023-05-24 03:34:03','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un hombre temía que su esposa no estuviera escuchando tan bien como solía hacerlo y pensó que podría necesitar un audífono. Sin estar muy seguro de cómo acercarse a ella, llamó al médico de familia para discutir el problema.</p><p>El Doctor le dijo que hay una simple prueba informal que el marido podría realizar para darle al Doctor una mejor idea sobre su pérdida auditiva.</p><p>Esto es lo que haces\", dijo el Doctor, \"párate a unos 40 pies de distancia de ella, y en un tono de conversación normal mira si te escucha. Si no, ve a 30 pies, luego a 20 pies, y así sucesivamente hasta que obtengas una respuesta\".</p><p>Esa noche, la esposa está en la cocina cocinando la cena, y él estaba en el estudio. Se dice a sí mismo: \"Estoy a unos 40 pies de distancia, veamos qué pasa\". Luego, en un tono normal, pregunta: \'Cariño, ¿qué hay para cenar?\'</p><p>Sin respuesta.</p><p>Así que el esposo se acerca a la cocina, a unos 30 pies de su esposa y repite: \"Cariño, ¿qué hay para cenar?\"</p><p>Todavía no hay respuesta.</p><p>Luego se muda al comedor donde está a unos 20 pies de su esposa y pregunta: \"Cariño, ¿qué hay para cenar?\"</p><p>Una vez más no obtiene respuesta.</p><p>Así que camina hacia la puerta de la cocina, a unos 10 pies de distancia. \"Cariño, ¿qué hay para cenar?\"</p><p>Una vez más, no hay respuesta.</p><p>Así que camina justo detrás de ella. \"Cariño, ¿qué hay para cenar?\"</p><p>\"James, por QUINTA vez he dicho, ¡Frijoles Lima!\"</p><p><strong>El problema puede no ser con la otra persona como siempre pensamos, ¡podría estar muy dentro de nosotros!</strong></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','inherit','closed','closed','','359-revision-v1','','','2023-05-24 03:34:03','2023-05-24 03:34:03','',359,'https://divyayogamonteregie.org/ca/?p=679',0,'revision','',0),(111,1,'2023-04-30 04:58:52','2023-04-30 04:58:52','','images (2)','','inherit','open','closed','','images-2','','','2023-04-30 04:58:52','2023-04-30 04:58:52','',0,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-2.jpeg',0,'attachment','image/jpeg',0),(687,1,'2023-05-24 03:37:37','2023-05-24 03:37:37','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un día, todos los empleados de una empresa muy inusual llegaron a su oficina y todos vieron un gran letrero en la puerta principal que decía esto:</p><p>\"Ayer, la persona que ha estado obstaculizando su crecimiento en esta empresa falleció. Te invitamos a unirte al funeral en la sala que se ha preparado en el gimnasio\".</p><p>Al principio, todos se pusieron tristes por la muerte de uno de sus colegas, pero después de un tiempo comenzaron a sentir curiosidad por saber quién era esa persona que obstaculizaba el crecimiento de sus colegas y de la propia empresa.</p><p>La emoción en el gimnasio era tal que se ordenó a los agentes de seguridad que controlaran a la multitud dentro de la sala. Cuanta más gente llegaba al ataúd, más se calentaba la emoción.</p><p><strong>Todos pensaron: \"¿Quién es esta persona que estaba obstaculizando mi progreso?\"</strong></p><p>Uno por uno, los empleados intrigados se acercaron al ataúd, y cuando miraron dentro de él, de repente se quedaron sin palabras.</p><p>Todos llegaron a pararse cerca del ataúd, y todos terminaron conmocionados y en silencio, como si alguien hubiera tocado la parte más profunda de su alma.</p><p><strong>Había un espejo dentro del ataúd: ¡todos los que miraban dentro de él podían verse a sí mismos!</strong></p><p><strong>También había un letrero al lado del espejo que decía:</strong></p><p><strong>Sólo hay una persona que es capaz de poner límites a tu crecimiento y ¡ERES TÚ!</strong></p><p>Tu vida no cambia cuando cambia tu jefe, cuando cambian tus amigos, cuando cambian tus padres, cuando cambia tu esposo o esposa, cuando cambia tu compañía, cuando cambia tu iglesia, cuando cambia tu ubicación, cuando cambia tu dinero, cuando cambia tu estatus.</p><p><strong>No, tu vida cambia cuando TÚ cambias, cuando</strong> vas más allá de tus creencias limitantes.</p><p>Examínate a ti mismo, obsérvate a ti mismo. No tengas miedo de las dificultades, imposibilidades y pérdidas. Sé un ganador, constrúyete a ti mismo y a tu realidad. Es la forma en que enfrentas la vida misma lo que marca la diferencia.</p><p>Hace unos años, un estudiante universitario, que luchaba por construir su carrera, se presentó para su examen profesional. Intentó su primer trabajo excelentemente, pero imaginó que se desempeñó mal.</p><p>Teniendo esto en cuenta, perdió la concentración para el resto de las asignaturas y, a su vez, no escribió bien las otras asignaturas. Más tarde, los resultados salieron que el documento que pensaba que estaba mal escrito había obtenido las mejores calificaciones en la universidad, pero en las otras materias, falló. ¿Por qué sucedió esto? La razón es simple: falta de creencia en sí mismo</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','An Interesting Funeral','','inherit','closed','closed','','419-revision-v1','','','2023-05-24 03:37:37','2023-05-24 03:37:37','',419,'https://divyayogamonteregie.org/ca/?p=687',0,'revision','',0),(686,1,'2023-05-24 03:37:36','2023-05-24 03:37:36','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un día, todos los empleados de una empresa muy inusual llegaron a su oficina y todos vieron un gran letrero en la puerta principal que decía esto:</p><p>\"Ayer, la persona que ha estado obstaculizando su crecimiento en esta empresa falleció. Te invitamos a unirte al funeral en la sala que se ha preparado en el gimnasio\".</p><p>Al principio, todos se pusieron tristes por la muerte de uno de sus colegas, pero después de un tiempo comenzaron a sentir curiosidad por saber quién era esa persona que obstaculizaba el crecimiento de sus colegas y de la propia empresa.</p><p>La emoción en el gimnasio era tal que se ordenó a los agentes de seguridad que controlaran a la multitud dentro de la sala. Cuanta más gente llegaba al ataúd, más se calentaba la emoción.</p><p><strong>Todos pensaron: \"¿Quién es esta persona que estaba obstaculizando mi progreso?\"</strong></p><p>Uno por uno, los empleados intrigados se acercaron al ataúd, y cuando miraron dentro de él, de repente se quedaron sin palabras.</p><p>Todos llegaron a pararse cerca del ataúd, y todos terminaron conmocionados y en silencio, como si alguien hubiera tocado la parte más profunda de su alma.</p><p><strong>Había un espejo dentro del ataúd: ¡todos los que miraban dentro de él podían verse a sí mismos!</strong></p><p><strong>También había un letrero al lado del espejo que decía:</strong></p><p><strong>Sólo hay una persona que es capaz de poner límites a tu crecimiento y ¡ERES TÚ!</strong></p><p>Tu vida no cambia cuando cambia tu jefe, cuando cambian tus amigos, cuando cambian tus padres, cuando cambia tu esposo o esposa, cuando cambia tu compañía, cuando cambia tu iglesia, cuando cambia tu ubicación, cuando cambia tu dinero, cuando cambia tu estatus.</p><p><strong>No, tu vida cambia cuando TÚ cambias, cuando</strong> vas más allá de tus creencias limitantes.</p><p>Examínate a ti mismo, obsérvate a ti mismo. No tengas miedo de las dificultades, imposibilidades y pérdidas. Sé un ganador, constrúyete a ti mismo y a tu realidad. Es la forma en que enfrentas la vida misma lo que marca la diferencia.</p><p>Hace unos años, un estudiante universitario, que luchaba por construir su carrera, se presentó para su examen profesional. Intentó su primer trabajo excelentemente, pero imaginó que se desempeñó mal.</p><p>Teniendo esto en cuenta, perdió la concentración para el resto de las asignaturas y, a su vez, no escribió bien las otras asignaturas. Más tarde, los resultados salieron que el documento que pensaba que estaba mal escrito había obtenido las mejores calificaciones en la universidad, pero en las otras materias, falló. ¿Por qué sucedió esto? La razón es simple: falta de creencia en sí mismo</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','An Interesting Funeral','','inherit','closed','closed','','419-revision-v1','','','2023-05-24 03:37:36','2023-05-24 03:37:36','',419,'https://divyayogamonteregie.org/ca/?p=686',0,'revision','',0),(676,1,'2023-05-24 03:31:32','2023-05-24 03:31:32','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">There is this story about a famous research scientist who had made several very important medical breakthroughs. He was being interviewed by a newspaper reporter who asked him why he thought he was able to be so much more creative than the average person. What set him so far apart from others?</p><p style=\"text-align: justify;\">He responded that, in his opinion, it all came from an experience with his mother that occurred when he was about two years old. He had been trying to remove a bottle of milk from the refrigerator when he lost his grip on the slippery bottle and it fell, spilling its contents all over the kitchen floor - a veritable sea of milk!</p><p style=\"text-align: justify;\">When his mother came into the kitchen, instead of yelling at him, giving him a lecture, or punishing him, she said, \"Robert, what a great and wonderful mess you have made! I have rarely seen such a huge puddle of milk. Well, the damage has already been done. Would you like to get down and play in the milk for a few minutes before we clean it up?\"</p><p style=\"text-align: justify;\">Indeed, he did. After a few minutes, his mother said, \"You know, Robert, whenever you make a mess like this, eventually you have to clean it up and restore everything to its proper order. So, how would you like to do that? We could use a sponge, a towel, or a mop. Which do you prefer?\"</p><p style=\"text-align: justify;\">He chose the sponge and together they cleaned up the spilled milk.</p><p style=\"text-align: justify;\">His mother then said, \"You know, what we have here is a failed experiment in how to effectively carry a big milk bottle with two tiny hands. Let\'s go out in the back yard and fill the bottle with water and see if you can discover a way to carry it without dropping it.\"</p><p style=\"text-align: justify;\">The little boy learned that if he grasped the bottle at the top near the lip with both hands, he could carry it without dropping it. This renowned scientist then remarked that it was at that moment that he knew he didn\'t need to be afraid to make mistakes. Instead, he learned that mistakes were just opportunities for learning something new, which is, after all, what scientific experiments are all about. Even if the experiment \"doesn\'t work,\" we usually learn something valuable from it.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Motivate','','inherit','closed','closed','','354-revision-v1','','','2023-05-24 03:31:32','2023-05-24 03:31:32','',354,'https://divyayogamonteregie.org/ca/?p=676',0,'revision','',0),(677,1,'2023-05-24 03:33:12','2023-05-24 03:33:12','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un hombre temía que su esposa no estuviera escuchando tan bien como solía hacerlo y pensó que podría necesitar un audífono. Sin estar muy seguro de cómo acercarse a ella, llamó al médico de familia para discutir el problema.</p><p>El Doctor le dijo que hay una simple prueba informal que el marido podría realizar para darle al Doctor una mejor idea sobre su pérdida auditiva.</p><p>Esto es lo que haces\", dijo el Doctor, \"párate a unos 40 pies de distancia de ella, y en un tono de conversación normal mira si te escucha. Si no, ve a 30 pies, luego a 20 pies, y así sucesivamente hasta que obtengas una respuesta\".</p><p>Esa noche, la esposa está en la cocina cocinando la cena, y él estaba en el estudio. Se dice a sí mismo: \"Estoy a unos 40 pies de distancia, veamos qué pasa\". Luego, en un tono normal, pregunta: \'Cariño, ¿qué hay para cenar?\'</p><p>Sin respuesta.</p><p>Así que el esposo se acerca a la cocina, a unos 30 pies de su esposa y repite: \"Cariño, ¿qué hay para cenar?\"</p><p>Todavía no hay respuesta.</p><p>Luego se muda al comedor donde está a unos 20 pies de su esposa y pregunta: \"Cariño, ¿qué hay para cenar?\"</p><p>Una vez más no obtiene respuesta.</p><p>Así que camina hacia la puerta de la cocina, a unos 10 pies de distancia. \"Cariño, ¿qué hay para cenar?\"</p><p>Una vez más, no hay respuesta.</p><p>Así que camina justo detrás de ella. \"Cariño, ¿qué hay para cenar?\"</p><p>\"James, por QUINTA vez he dicho, ¡Frijoles Lima!\"</p><p><strong>El problema puede no ser con la otra persona como siempre pensamos, ¡podría estar muy dentro de nosotros!</strong></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','inherit','closed','closed','','359-revision-v1','','','2023-05-24 03:33:12','2023-05-24 03:33:12','',359,'https://divyayogamonteregie.org/ca/?p=677',0,'revision','',0),(678,1,'2023-05-24 03:34:03','2023-05-24 03:34:03','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un hombre temía que su esposa no estuviera escuchando tan bien como solía hacerlo y pensó que podría necesitar un audífono. Sin estar muy seguro de cómo acercarse a ella, llamó al médico de familia para discutir el problema.</p><p>El Doctor le dijo que hay una simple prueba informal que el marido podría realizar para darle al Doctor una mejor idea sobre su pérdida auditiva.</p><p>Esto es lo que haces\", dijo el Doctor, \"párate a unos 40 pies de distancia de ella, y en un tono de conversación normal mira si te escucha. Si no, ve a 30 pies, luego a 20 pies, y así sucesivamente hasta que obtengas una respuesta\".</p><p>Esa noche, la esposa está en la cocina cocinando la cena, y él estaba en el estudio. Se dice a sí mismo: \"Estoy a unos 40 pies de distancia, veamos qué pasa\". Luego, en un tono normal, pregunta: \'Cariño, ¿qué hay para cenar?\'</p><p>Sin respuesta.</p><p>Así que el esposo se acerca a la cocina, a unos 30 pies de su esposa y repite: \"Cariño, ¿qué hay para cenar?\"</p><p>Todavía no hay respuesta.</p><p>Luego se muda al comedor donde está a unos 20 pies de su esposa y pregunta: \"Cariño, ¿qué hay para cenar?\"</p><p>Una vez más no obtiene respuesta.</p><p>Así que camina hacia la puerta de la cocina, a unos 10 pies de distancia. \"Cariño, ¿qué hay para cenar?\"</p><p>Una vez más, no hay respuesta.</p><p>Así que camina justo detrás de ella. \"Cariño, ¿qué hay para cenar?\"</p><p>\"James, por QUINTA vez he dicho, ¡Frijoles Lima!\"</p><p><strong>El problema puede no ser con la otra persona como siempre pensamos, ¡podría estar muy dentro de nosotros!</strong></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','inherit','closed','closed','','359-revision-v1','','','2023-05-24 03:34:03','2023-05-24 03:34:03','',359,'https://divyayogamonteregie.org/ca/?p=678',0,'revision','',0),(673,1,'2023-05-24 03:30:45','2023-05-24 03:30:45','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Motivate','','inherit','closed','closed','','354-revision-v1','','','2023-05-24 03:30:45','2023-05-24 03:30:45','',354,'https://divyayogamonteregie.org/ca/?p=673',0,'revision','',0),(674,1,'2023-05-24 03:31:31','2023-05-24 03:31:31','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Motivate','','inherit','closed','closed','','354-revision-v1','','','2023-05-24 03:31:31','2023-05-24 03:31:31','',354,'https://divyayogamonteregie.org/ca/?p=674',0,'revision','',0),(675,1,'2023-05-24 03:31:32','2023-05-24 03:31:32','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Motivate','','inherit','closed','closed','','354-revision-v1','','','2023-05-24 03:31:32','2023-05-24 03:31:32','',354,'https://divyayogamonteregie.org/ca/?p=675',0,'revision','',0),(664,1,'2023-05-24 03:07:21','2023-05-24 03:07:21','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1000\" height=\"288\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />','Home','','inherit','closed','closed','','652-revision-v1','','','2023-05-24 03:07:21','2023-05-24 03:07:21','',652,'https://divyayogamonteregie.org/ca/?p=664',0,'revision','',0),(665,1,'2023-05-24 03:07:21','2023-05-24 03:07:21','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>','Home','','inherit','closed','closed','','652-revision-v1','','','2023-05-24 03:07:21','2023-05-24 03:07:21','',652,'https://divyayogamonteregie.org/ca/?p=665',0,'revision','',0),(666,1,'2023-05-24 03:15:11','2023-05-24 03:15:11','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>','Home','','inherit','closed','closed','','652-revision-v1','','','2023-05-24 03:15:11','2023-05-24 03:15:11','',652,'https://divyayogamonteregie.org/ca/?p=666',0,'revision','',0),(667,1,'2023-05-24 03:15:11','2023-05-24 03:15:11','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>','Home','','inherit','closed','closed','','652-revision-v1','','','2023-05-24 03:15:11','2023-05-24 03:15:11','',652,'https://divyayogamonteregie.org/ca/?p=667',0,'revision','',0),(668,1,'2023-05-24 03:15:11','2023-05-24 03:15:11','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Making the basic practice of yoga easily accessible to everyone at no charge.<br>Divya Yoga founder Swami Ram Dev says, \"Good health is a birthright of humanity.\" By performing yoga poses,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; / asanas, exercises, mudras, pranayamas, meditation and by providing practical motivational speech they help to develop a stress free mind and disease free body. It helps to take care of the body, mind and soul and live a happy, healthy and fulfilling life. Emphasize that the key to a healthy physical body and a healthy state of mind is in one\'s control. By getting in touch with the inner being we can experience a state of \"Bliss and Anand\".<br>This Divya yoga is for people of all ages. We start with warm-up exercises (12-15), salutation to the sun and motivational speech. Then we practice 90-100 combination of asanas, postures and exercises. We also do some acupressure, 6 mudras, 7 pranayamas and micro exercises for eyes, fingers, toes, face and neck. Laughter yoga and super brain yoga are also included. We finish with \'Shav Asana\', motivational poem, mantra and prayer,<br>After yoga, super food i.e. grapes and banana are available for yogis.<br>Yoga is a wonderful means of exercising, stretching and relaxing the body/mind so that it can be healthy and lasting. Helps in the coordination of the body, mind and soul. We also create an environment where people can interact for their betterment and the good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>','Home','','inherit','closed','closed','','652-revision-v1','','','2023-05-24 03:15:11','2023-05-24 03:15:11','',652,'https://divyayogamonteregie.org/ca/?p=668',0,'revision','',0),(672,1,'2023-05-24 03:25:10','2023-05-24 03:25:10','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Making the basic practice of yoga easily accessible to everyone at no charge.<br>Divya Yoga founder Swami Ram Dev says, \"Good health is a birthright of humanity.\" By performing yoga poses,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; / asanas, exercises, mudras, pranayamas, meditation and by providing practical motivational speech they help to develop a stress free mind and disease free body. It helps to take care of the body, mind and soul and live a happy, healthy and fulfilling life. Emphasize that the key to a healthy physical body and a healthy state of mind is in one\'s control. By getting in touch with the inner being we can experience a state of \"Bliss and Anand\".<br>This Divya yoga is for people of all ages. We start with warm-up exercises (12-15), salutation to the sun and motivational speech. Then we practice 90-100 combination of asanas, postures and exercises. We also do some acupressure, 6 mudras, 7 pranayamas and micro exercises for eyes, fingers, toes, face and neck. Laughter yoga and super brain yoga are also included. We finish with \'Shav Asana\', motivational poem, mantra and prayer,<br>After yoga, super food i.e. grapes and banana are available for yogis.<br>Yoga is a wonderful means of exercising, stretching and relaxing the body/mind so that it can be healthy and lasting. Helps in the coordination of the body, mind and soul. We also create an environment where people can interact for their betterment and the good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong><br />Every Saturday morning from 9:00 a.m. to 11:00 a.m. we participate in the session, a series of physical and breathing exercises to make the body more flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poems, prayers and our mantra. Yoga is a complete lifestyle<br />Every last Saturday of the month we have a guest speaker from 11:00 to 11:45 and after that we eat together. The food is provided by the Vinesh Saxena Family foundation, Meera is preparing amazing vegetarian Indian food for us, and if you want to share a small plate with us, you are welcome.<br />If it\'s your first day, please come before 8.30am to take the time to fill out an information sheet. Mihaela is happy to meet you.<br />Afterwards please come 10-15 minutes early to give yourself time to arrange your mat etc so we can start at 9.00am.<br />See below a brief description of the exercises we practice every Saturday.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>1. Workout: A series of 12-15 exercises to warm up your body: i.e. knee bend, forward bend, back bend, right bend, left bend, shoulder stretch, jump, hand swing , bend right knee, bend left knee, jump cat, body shake, downward/upward dog, etc.</p>\n<p>2. Salutation to the Sun – Surya Namaskar, a flowing series of 12 postures that helps improve strength and flexibility of the muscles and spine. These poses also warm up the body and tone the abdominal muscles.</p>\n<p>3. Motivational Speech - Our teacher Vinesh Saxena shares with us wise stories and practical tips for a happy, healthy, motivated and fulfilling life.</p>\n<p><br>4. Acupressure (an alternative medicine technique derived from acupuncture): Rotating pressure on the pads of the fingers to relieve sinus problems, the middle of the palm of the hand for kidney problems, and under the thumb for thyroid wellness .</p>\n<p><br>5. Exercises for the eyes and neck: we take care of each part of the body.Eyes: move the pupil to the right, left, up and down; Turn clockwise, then counterclockwise. Reach your right arm in front, thumb up, focus on your thumb as you bring your hand up to your nose, and then take it away. Extend both arms inward, look at the center of the thumb. Spread arms apart until you can still see, stay in this position for 30 seconds, move arms back Neck: bend left, right, forward and back, turn clockwise, then counterclockwise clockwise, look to the right and look up the left.</p>\n<p>6. Seven Pranayamas (breathing exercises) When we do yoga, 75% of the benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya (Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</p><p>7. 6 mudras (finger positioning): Used in conjunction with pranayama, usually while seated, to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</p><p>8. 100 postures, exercises and asanas: with them we increase flexibility from head to toe. We are also doing stretching exercises to help our bodies stimulate the lymphatic system, targeting key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees, and feet. We do exercises to relieve arthritis, diabetes, heart disease, cholesterol, back pain, insomnia, etc.</p><p>9. Laughter Yoga – with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a doctor from Mumbai. Today, it has become a global phenomenon with more than 6,000 laughter social clubs in some 60 countries. We combine unconditional laughter with Pranayama. The Laughter Yoga concept is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.</p><p>We also do Super Brain yoga to stimulate brain cells and improve memory. This form of yoga was invented by a Virginia doctor and is very popular in the medical community.</p><p>10. Shavasana – After your yoga session, lie on your back on the mat – Shavasana allows the body a chance to regroup and reset. After a balanced practice, the entire body has been stretched, contracted, twisted, and inverted. The body, mind and soul get complete rest, power, motivation and happiness.</p><p>11. Motivational poem: read at the end of the session to keep us motivated, focused and to recharge our batteries.</p><p>12. Mantra – at the end we repeat and acknowledge our mantra – IF IT WILL BE DEPENDS ON ME</p>','Home','','inherit','closed','closed','','652-revision-v1','','','2023-05-24 03:25:10','2023-05-24 03:25:10','',652,'https://divyayogamonteregie.org/ca/?p=672',0,'revision','',0),(128,1,'2023-04-30 05:14:14','2023-04-30 05:14:14','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"descarga (17)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg\" alt=\"yoga-g4ef99c854_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280.jpg\" alt=\"sunrise-g34a24ef5c_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg\" alt=\"peaceful-g5ada3643f_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g12cf06d74_1280.jpg\" alt=\"yoga-g12cf06d74_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg\" alt=\"meditate-g16efcb560_1280\" /></figure>			\n												Previous image\n												Next image\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/pexels-lucas-pezeta-2035018-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-7.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"533\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-ga0015b20f_1280-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-ga0015b20f_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-ga0015b20f_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-ga0015b20f_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-ga0015b20f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/religion-g51748518d_1280-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/religion-g51748518d_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/religion-g51748518d_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/religion-g51748518d_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/religion-g51748518d_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Gallery','','publish','closed','closed','','gallery','','','2023-05-24 21:19:35','2023-05-24 21:19:35','',0,'https://divyayogamonteregie.org/ca/?page_id=128',0,'page','',0),(131,1,'2023-04-30 05:17:34','2023-04-30 05:17:34','','cropped-banner2','','inherit','open','closed','','cropped-banner2','','','2023-04-30 05:17:34','2023-04-30 05:17:34','',128,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg',0,'attachment','image/jpeg',0),(132,1,'2023-04-30 05:18:10','2023-04-30 05:18:10','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n															<img src=\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n															<img src=\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n															<img src=\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n															<img src=\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />','GALERIA','','inherit','closed','closed','','128-revision-v1','','','2023-04-30 05:18:10','2023-04-30 05:18:10','',128,'https://divyayogamonteregie.org/ca/?p=132',0,'revision','',0),(129,1,'2023-04-30 05:14:35','2023-04-30 05:14:35','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente\n		<p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Hacer que la práctica básica de yoga sea fácilmente accesible para todos sin cargo.</p><p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">El fundador de Divya Yoga Swami Ram Dev dice: \"La buena salud es un derecho de nacimiento de la humanidad\". Al realizar posturas de yoga, / asanas, ejercicios, mudras,<b>pranayams<i>, </i></b>meditación y al proporcionar un discurso motivacional práctico ayudan a desarrollar una mente libre de estrés y un cuerpo libre de enfermedades. Ayuda a cuidar el cuerpo, la mente y el alma y vivir una vida feliz, saludable y satisfactoria. Haga hincapié en que la clave para un cuerpo físico saludable y un estado mental sano está bajo el control de uno. Al ponernos en contacto con el ser interior podemos experimentar un estado de \"Bienaventuranza y Anand\".</p><p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Este Divya yoga es para personas de todas las edades. Comenzamos con ejercicios de calentamiento (12-15), saludo al sol y discurso motivacional. Luego practicamos 90-100 combinaciones de asanas, posturas y ejercicios. También realizamos algo de acupresión, 6 mudras, 7 pranayams y micro ejercicios para ojos, dedos de manos, pies, cara y cuello. También se incluye yoga de la risa y súper yoga cerebral. Terminamos con \'Shav Asana\', poema motivacional, mantra y oración, Después del yoga, la súper comida, es decir, las uvas y el plátano están disponibles para los yoguis.</p><p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">El yoga es un medio maravilloso de ejercitar, estirar y relajar el cuerpo / mente para que pueda ser saludable y duradero. Ayuda en la coordinación del cuerpo, la mente y el alma. También creamos un entorno donde las personas pueden interactuar para su mejoramiento y bien de la sociedad.</p>','GALERIA','','inherit','closed','closed','','128-revision-v1','','','2023-04-30 05:14:35','2023-04-30 05:14:35','',128,'https://divyayogamonteregie.org/ca/?p=129',0,'revision','',0),(130,1,'2023-04-30 05:16:18','2023-04-30 05:16:18','','cropped-banner111','','inherit','open','closed','','cropped-banner111','','','2023-04-30 05:16:18','2023-04-30 05:16:18','',128,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg',0,'attachment','image/jpeg',0),(133,1,'2023-04-30 05:18:10','2023-04-30 05:18:10','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n															<img src=\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n															<img src=\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n															<img src=\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n															<img src=\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />','GALERIA','','inherit','closed','closed','','128-revision-v1','','','2023-04-30 05:18:10','2023-04-30 05:18:10','',128,'https://divyayogamonteregie.org/ca/?p=133',0,'revision','',0),(134,1,'2023-04-30 05:18:11','2023-04-30 05:18:11','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n															<img src=\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n															<img src=\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n															<img src=\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n															<img src=\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />','GALERIA','','inherit','closed','closed','','128-revision-v1','','','2023-04-30 05:18:11','2023-04-30 05:18:11','',128,'https://divyayogamonteregie.org/ca/?p=134',0,'revision','',0),(143,1,'2023-04-30 05:26:35','2023-04-30 05:26:35','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-6.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-7.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-5.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"251\" height=\"201\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-1.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','GALERIA','','inherit','closed','closed','','128-revision-v1','','','2023-04-30 05:26:35','2023-04-30 05:26:35','',128,'https://divyayogamonteregie.org/ca/?p=143',0,'revision','',0),(136,1,'2023-04-30 05:23:42','2023-04-30 05:23:42','','images (3)','','inherit','open','closed','','images-3','','','2023-04-30 05:23:42','2023-04-30 05:23:42','',128,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-3.jpeg',0,'attachment','image/jpeg',0),(137,1,'2023-04-30 05:23:43','2023-04-30 05:23:43','','images (4)','','inherit','open','closed','','images-4','','','2023-04-30 05:23:43','2023-04-30 05:23:43','',128,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-4.jpeg',0,'attachment','image/jpeg',0),(138,1,'2023-04-30 05:23:44','2023-04-30 05:23:44','','images (5)','','inherit','open','closed','','images-5','','','2023-04-30 05:23:44','2023-04-30 05:23:44','',128,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-5.jpeg',0,'attachment','image/jpeg',0),(139,1,'2023-04-30 05:23:45','2023-04-30 05:23:45','','images (6)','','inherit','open','closed','','images-6','','','2023-04-30 05:23:45','2023-04-30 05:23:45','',128,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-6.jpeg',0,'attachment','image/jpeg',0),(140,1,'2023-04-30 05:23:45','2023-04-30 05:23:45','','images (7)','','inherit','open','closed','','images-7','','','2023-04-30 05:23:45','2023-04-30 05:23:45','',128,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-7.jpeg',0,'attachment','image/jpeg',0),(141,1,'2023-04-30 05:26:35','2023-04-30 05:26:35','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n															<img src=\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n															<img src=\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n															<img src=\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n															<img src=\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />','GALERIA','','inherit','closed','closed','','128-revision-v1','','','2023-04-30 05:26:35','2023-04-30 05:26:35','',128,'https://divyayogamonteregie.org/ca/?p=141',0,'revision','',0),(142,1,'2023-04-30 05:26:35','2023-04-30 05:26:35','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n															<img src=\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n															<img src=\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n															<img src=\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n															<img src=\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />','GALERIA','','inherit','closed','closed','','128-revision-v1','','','2023-04-30 05:26:35','2023-04-30 05:26:35','',128,'https://divyayogamonteregie.org/ca/?p=142',0,'revision','',0),(144,1,'2023-04-30 05:28:00','2023-04-30 05:28:00','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg 290w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/elementor/thumbs/images-150x150.jpeg 500w\" sizes=\"(max-width: 290px) 100vw, 290px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \"persona hecha a sí misma\". Provenía de una familia modesta y trabajó duro para lograr sus objetivos. Obtuvo muchas becas de mérito mientras era estudiante. Tiene una Maestría en Ingeniería y una Maestría en Administración de Empresas junto con una designación de Contabilidad. Ha trabajado como ingeniero y ha enseñado a tiempo parcial en las universidades de Concordia y McGill.</p><p>Se retiró alrededor de los 50 años para perseguir su pasión. Ha establecido una fundación caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundación también \"Siete principios simples de la vida\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahmán, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiración alterna de fosas nasales. Después de hacer B.Sc con Biología y Química, se convirtió en profesora de biología en una escuela secundaria en la India. Al enseñar anatomía y fisiología humana y hacer yoga gradualmente, ella entendió la utilidad y los hechos científicos involucrados detrás del yoga. Emigró a Estados Unidos en 1994 y luego se casó y emigró a Canadá. Actualmente trabaja en el laboratorio de la Academia Chambly.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Ella cree que el yoga en la esterilla como los aeróbicos tiene efectos terapéuticos y fisioterapéuticos, pero al mismo tiempo también cree en el yoga más allá de la esterilla. Si hacemos yoga y también llevamos una vida piadosa y libre de culpa, entonces nuestros órganos funcionarán correctamente. Porque en el momento en que hacemos algo mal, nuestro corazón late aumenta, así que ¿por qué hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas añaden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el súper yoga del cerebro pueden hacer una gran contribución. También trata de seguir ocho ramas del yoga tanto como pueda.</p>		\n															<img width=\"251\" height=\"201\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-1.jpeg\" alt=\"\" loading=\"lazy\" />','Instructores','','inherit','closed','closed','','21-revision-v1','','','2023-04-30 05:28:00','2023-04-30 05:28:00','',21,'https://divyayogamonteregie.org/ca/?p=144',0,'revision','',0),(145,1,'2023-04-30 05:28:00','2023-04-30 05:28:00','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg 290w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/elementor/thumbs/images-150x150.jpeg 500w\" sizes=\"(max-width: 290px) 100vw, 290px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \"persona hecha a sí misma\". Provenía de una familia modesta y trabajó duro para lograr sus objetivos. Obtuvo muchas becas de mérito mientras era estudiante. Tiene una Maestría en Ingeniería y una Maestría en Administración de Empresas junto con una designación de Contabilidad. Ha trabajado como ingeniero y ha enseñado a tiempo parcial en las universidades de Concordia y McGill.</p><p>Se retiró alrededor de los 50 años para perseguir su pasión. Ha establecido una fundación caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundación también \"Siete principios simples de la vida\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahmán, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiración alterna de fosas nasales. Después de hacer B.Sc con Biología y Química, se convirtió en profesora de biología en una escuela secundaria en la India. Al enseñar anatomía y fisiología humana y hacer yoga gradualmente, ella entendió la utilidad y los hechos científicos involucrados detrás del yoga. Emigró a Estados Unidos en 1994 y luego se casó y emigró a Canadá. Actualmente trabaja en el laboratorio de la Academia Chambly.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Ella cree que el yoga en la esterilla como los aeróbicos tiene efectos terapéuticos y fisioterapéuticos, pero al mismo tiempo también cree en el yoga más allá de la esterilla. Si hacemos yoga y también llevamos una vida piadosa y libre de culpa, entonces nuestros órganos funcionarán correctamente. Porque en el momento en que hacemos algo mal, nuestro corazón late aumenta, así que ¿por qué hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas añaden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el súper yoga del cerebro pueden hacer una gran contribución. También trata de seguir ocho ramas del yoga tanto como pueda.</p>		\n															<img width=\"251\" height=\"201\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-1.jpeg\" alt=\"\" loading=\"lazy\" />','Instructores','','inherit','closed','closed','','21-revision-v1','','','2023-04-30 05:28:00','2023-04-30 05:28:00','',21,'https://divyayogamonteregie.org/ca/?p=145',0,'revision','',0),(146,1,'2023-04-30 05:28:00','2023-04-30 05:28:00','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg 290w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/elementor/thumbs/images-150x150.jpeg 500w\" sizes=\"(max-width: 290px) 100vw, 290px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \"persona hecha a sí misma\". Provenía de una familia modesta y trabajó duro para lograr sus objetivos. Obtuvo muchas becas de mérito mientras era estudiante. Tiene una Maestría en Ingeniería y una Maestría en Administración de Empresas junto con una designación de Contabilidad. Ha trabajado como ingeniero y ha enseñado a tiempo parcial en las universidades de Concordia y McGill.</p><p>Se retiró alrededor de los 50 años para perseguir su pasión. Ha establecido una fundación caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundación también \"Siete principios simples de la vida\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahmán, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiración alterna de fosas nasales. Después de hacer B.Sc con Biología y Química, se convirtió en profesora de biología en una escuela secundaria en la India. Al enseñar anatomía y fisiología humana y hacer yoga gradualmente, ella entendió la utilidad y los hechos científicos involucrados detrás del yoga. Emigró a Estados Unidos en 1994 y luego se casó y emigró a Canadá. Actualmente trabaja en el laboratorio de la Academia Chambly.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Ella cree que el yoga en la esterilla como los aeróbicos tiene efectos terapéuticos y fisioterapéuticos, pero al mismo tiempo también cree en el yoga más allá de la esterilla. Si hacemos yoga y también llevamos una vida piadosa y libre de culpa, entonces nuestros órganos funcionarán correctamente. Porque en el momento en que hacemos algo mal, nuestro corazón late aumenta, así que ¿por qué hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas añaden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el súper yoga del cerebro pueden hacer una gran contribución. También trata de seguir ocho ramas del yoga tanto como pueda.</p>		\n															<img width=\"183\" height=\"275\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-4.jpeg\" alt=\"\" loading=\"lazy\" />','Instructores','','inherit','closed','closed','','21-revision-v1','','','2023-04-30 05:28:00','2023-04-30 05:28:00','',21,'https://divyayogamonteregie.org/ca/?p=146',0,'revision','',0),(147,1,'2023-04-30 05:29:47','2023-04-30 05:29:47','','cropped-banner5','','inherit','open','closed','','cropped-banner5-2','','','2023-04-30 05:29:47','2023-04-30 05:29:47','',21,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg',0,'attachment','image/jpeg',0),(148,1,'2023-04-30 05:29:59','2023-04-30 05:29:59','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg 290w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/elementor/thumbs/images-150x150.jpeg 500w\" sizes=\"(max-width: 290px) 100vw, 290px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \"persona hecha a sí misma\". Provenía de una familia modesta y trabajó duro para lograr sus objetivos. Obtuvo muchas becas de mérito mientras era estudiante. Tiene una Maestría en Ingeniería y una Maestría en Administración de Empresas junto con una designación de Contabilidad. Ha trabajado como ingeniero y ha enseñado a tiempo parcial en las universidades de Concordia y McGill.</p><p>Se retiró alrededor de los 50 años para perseguir su pasión. Ha establecido una fundación caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundación también \"Siete principios simples de la vida\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahmán, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiración alterna de fosas nasales. Después de hacer B.Sc con Biología y Química, se convirtió en profesora de biología en una escuela secundaria en la India. Al enseñar anatomía y fisiología humana y hacer yoga gradualmente, ella entendió la utilidad y los hechos científicos involucrados detrás del yoga. Emigró a Estados Unidos en 1994 y luego se casó y emigró a Canadá. Actualmente trabaja en el laboratorio de la Academia Chambly.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Ella cree que el yoga en la esterilla como los aeróbicos tiene efectos terapéuticos y fisioterapéuticos, pero al mismo tiempo también cree en el yoga más allá de la esterilla. Si hacemos yoga y también llevamos una vida piadosa y libre de culpa, entonces nuestros órganos funcionarán correctamente. Porque en el momento en que hacemos algo mal, nuestro corazón late aumenta, así que ¿por qué hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas añaden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el súper yoga del cerebro pueden hacer una gran contribución. También trata de seguir ocho ramas del yoga tanto como pueda.</p>		\n															<img width=\"183\" height=\"275\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-4.jpeg\" alt=\"\" loading=\"lazy\" />','Instructores','','inherit','closed','closed','','21-revision-v1','','','2023-04-30 05:29:59','2023-04-30 05:29:59','',21,'https://divyayogamonteregie.org/ca/?p=148',0,'revision','',0),(149,1,'2023-04-30 05:29:59','2023-04-30 05:29:59','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg 290w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/elementor/thumbs/images-150x150.jpeg 500w\" sizes=\"(max-width: 290px) 100vw, 290px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \"persona hecha a sí misma\". Provenía de una familia modesta y trabajó duro para lograr sus objetivos. Obtuvo muchas becas de mérito mientras era estudiante. Tiene una Maestría en Ingeniería y una Maestría en Administración de Empresas junto con una designación de Contabilidad. Ha trabajado como ingeniero y ha enseñado a tiempo parcial en las universidades de Concordia y McGill.</p><p>Se retiró alrededor de los 50 años para perseguir su pasión. Ha establecido una fundación caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundación también \"Siete principios simples de la vida\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahmán, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiración alterna de fosas nasales. Después de hacer B.Sc con Biología y Química, se convirtió en profesora de biología en una escuela secundaria en la India. Al enseñar anatomía y fisiología humana y hacer yoga gradualmente, ella entendió la utilidad y los hechos científicos involucrados detrás del yoga. Emigró a Estados Unidos en 1994 y luego se casó y emigró a Canadá. Actualmente trabaja en el laboratorio de la Academia Chambly.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Ella cree que el yoga en la esterilla como los aeróbicos tiene efectos terapéuticos y fisioterapéuticos, pero al mismo tiempo también cree en el yoga más allá de la esterilla. Si hacemos yoga y también llevamos una vida piadosa y libre de culpa, entonces nuestros órganos funcionarán correctamente. Porque en el momento en que hacemos algo mal, nuestro corazón late aumenta, así que ¿por qué hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas añaden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el súper yoga del cerebro pueden hacer una gran contribución. También trata de seguir ocho ramas del yoga tanto como pueda.</p>		\n															<img width=\"183\" height=\"275\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-4.jpeg\" alt=\"\" loading=\"lazy\" />','Instructores','','inherit','closed','closed','','21-revision-v1','','','2023-04-30 05:29:59','2023-04-30 05:29:59','',21,'https://divyayogamonteregie.org/ca/?p=149',0,'revision','',0),(150,1,'2023-04-30 05:30:00','2023-04-30 05:30:00','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg 290w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/elementor/thumbs/images-150x150.jpeg 500w\" sizes=\"(max-width: 290px) 100vw, 290px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \"persona hecha a sí misma\". Provenía de una familia modesta y trabajó duro para lograr sus objetivos. Obtuvo muchas becas de mérito mientras era estudiante. Tiene una Maestría en Ingeniería y una Maestría en Administración de Empresas junto con una designación de Contabilidad. Ha trabajado como ingeniero y ha enseñado a tiempo parcial en las universidades de Concordia y McGill.</p><p>Se retiró alrededor de los 50 años para perseguir su pasión. Ha establecido una fundación caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundación también \"Siete principios simples de la vida\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahmán, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiración alterna de fosas nasales. Después de hacer B.Sc con Biología y Química, se convirtió en profesora de biología en una escuela secundaria en la India. Al enseñar anatomía y fisiología humana y hacer yoga gradualmente, ella entendió la utilidad y los hechos científicos involucrados detrás del yoga. Emigró a Estados Unidos en 1994 y luego se casó y emigró a Canadá. Actualmente trabaja en el laboratorio de la Academia Chambly.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Ella cree que el yoga en la esterilla como los aeróbicos tiene efectos terapéuticos y fisioterapéuticos, pero al mismo tiempo también cree en el yoga más allá de la esterilla. Si hacemos yoga y también llevamos una vida piadosa y libre de culpa, entonces nuestros órganos funcionarán correctamente. Porque en el momento en que hacemos algo mal, nuestro corazón late aumenta, así que ¿por qué hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas añaden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el súper yoga del cerebro pueden hacer una gran contribución. También trata de seguir ocho ramas del yoga tanto como pueda.</p>		\n															<img width=\"183\" height=\"275\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-4.jpeg\" alt=\"\" loading=\"lazy\" />','Instructores','','inherit','closed','closed','','21-revision-v1','','','2023-04-30 05:30:00','2023-04-30 05:30:00','',21,'https://divyayogamonteregie.org/ca/?p=150',0,'revision','',0),(153,1,'2023-04-30 05:32:52','2023-04-30 05:32:52','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-6.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-7.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-5.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"251\" height=\"201\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-1.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Galeria','','inherit','closed','closed','','128-revision-v1','','','2023-04-30 05:32:52','2023-04-30 05:32:52','',128,'https://divyayogamonteregie.org/ca/?p=153',0,'revision','',0),(152,1,'2023-05-24 02:49:49','2023-04-30 05:32:13',' ','','','publish','closed','closed','','152','','','2023-05-24 02:49:49','2023-05-24 02:49:49','',0,'https://divyayogamonteregie.org/ca/?p=152',19,'nav_menu_item','',0),(154,1,'2023-04-30 05:40:58','2023-04-30 05:40:58','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg 290w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/elementor/thumbs/images-150x150.jpeg 500w\" sizes=\"(max-width: 290px) 100vw, 290px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \"persona hecha a sí misma\". Provenía de una familia modesta y trabajó duro para lograr sus objetivos. Obtuvo muchas becas de mérito mientras era estudiante. Tiene una Maestría en Ingeniería y una Maestría en Administración de Empresas junto con una designación de Contabilidad. Ha trabajado como ingeniero y ha enseñado a tiempo parcial en las universidades de Concordia y McGill.</p><p>Se retiró alrededor de los 50 años para perseguir su pasión. Ha establecido una fundación caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundación también \"Siete principios simples de la vida\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahmán, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiración alterna de fosas nasales. Después de hacer B.Sc con Biología y Química, se convirtió en profesora de biología en una escuela secundaria en la India. Al enseñar anatomía y fisiología humana y hacer yoga gradualmente, ella entendió la utilidad y los hechos científicos involucrados detrás del yoga. Emigró a Estados Unidos en 1994 y luego se casó y emigró a Canadá. Actualmente trabaja en el laboratorio de la Academia Chambly.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Ella cree que el yoga en la esterilla como los aeróbicos tiene efectos terapéuticos y fisioterapéuticos, pero al mismo tiempo también cree en el yoga más allá de la esterilla. Si hacemos yoga y también llevamos una vida piadosa y libre de culpa, entonces nuestros órganos funcionarán correctamente. Porque en el momento en que hacemos algo mal, nuestro corazón late aumenta, así que ¿por qué hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas añaden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el súper yoga del cerebro pueden hacer una gran contribución. También trata de seguir ocho ramas del yoga tanto como pueda.</p>		\n															<img width=\"183\" height=\"275\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-4.jpeg\" alt=\"\" loading=\"lazy\" />','Instructores','','inherit','closed','closed','','21-revision-v1','','','2023-04-30 05:40:58','2023-04-30 05:40:58','',21,'https://divyayogamonteregie.org/ca/?p=154',0,'revision','',0),(155,1,'2023-04-30 05:40:59','2023-04-30 05:40:59','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg 290w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/elementor/thumbs/images-150x150.jpeg 500w\" sizes=\"(max-width: 290px) 100vw, 290px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \"persona hecha a sí misma\". Provenía de una familia modesta y trabajó duro para lograr sus objetivos. Obtuvo muchas becas de mérito mientras era estudiante. Tiene una Maestría en Ingeniería y una Maestría en Administración de Empresas junto con una designación de Contabilidad. Ha trabajado como ingeniero y ha enseñado a tiempo parcial en las universidades de Concordia y McGill.</p><p>Se retiró alrededor de los 50 años para perseguir su pasión. Ha establecido una fundación caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundación también \"Siete principios simples de la vida\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahmán, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiración alterna de fosas nasales. Después de hacer B.Sc con Biología y Química, se convirtió en profesora de biología en una escuela secundaria en la India. Al enseñar anatomía y fisiología humana y hacer yoga gradualmente, ella entendió la utilidad y los hechos científicos involucrados detrás del yoga. Emigró a Estados Unidos en 1994 y luego se casó y emigró a Canadá. Actualmente trabaja en el laboratorio de la Academia Chambly.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Ella cree que el yoga en la esterilla como los aeróbicos tiene efectos terapéuticos y fisioterapéuticos, pero al mismo tiempo también cree en el yoga más allá de la esterilla. Si hacemos yoga y también llevamos una vida piadosa y libre de culpa, entonces nuestros órganos funcionarán correctamente. Porque en el momento en que hacemos algo mal, nuestro corazón late aumenta, así que ¿por qué hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas añaden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el súper yoga del cerebro pueden hacer una gran contribución. También trata de seguir ocho ramas del yoga tanto como pueda.</p>		\n															<img width=\"183\" height=\"275\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-4.jpeg\" alt=\"\" loading=\"lazy\" />','Instructores','','inherit','closed','closed','','21-revision-v1','','','2023-04-30 05:40:59','2023-04-30 05:40:59','',21,'https://divyayogamonteregie.org/ca/?p=155',0,'revision','',0),(156,1,'2023-04-30 05:40:59','2023-04-30 05:40:59','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg 290w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/elementor/thumbs/images-150x150.jpeg 500w\" sizes=\"(max-width: 290px) 100vw, 290px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \"persona hecha a sí misma\". Provenía de una familia modesta y trabajó duro para lograr sus objetivos. Obtuvo muchas becas de mérito mientras era estudiante. Tiene una Maestría en Ingeniería y una Maestría en Administración de Empresas junto con una designación de Contabilidad. Ha trabajado como ingeniero y ha enseñado a tiempo parcial en las universidades de Concordia y McGill.</p><p>Se retiró alrededor de los 50 años para perseguir su pasión. Ha establecido una fundación caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundación también \"Siete principios simples de la vida\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahmán, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiración alterna de fosas nasales. Después de hacer B.Sc con Biología y Química, se convirtió en profesora de biología en una escuela secundaria en la India. Al enseñar anatomía y fisiología humana y hacer yoga gradualmente, ella entendió la utilidad y los hechos científicos involucrados detrás del yoga. Emigró a Estados Unidos en 1994 y luego se casó y emigró a Canadá. Actualmente trabaja en el laboratorio de la Academia Chambly.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Ella cree que el yoga en la esterilla como los aeróbicos tiene efectos terapéuticos y fisioterapéuticos, pero al mismo tiempo también cree en el yoga más allá de la esterilla. Si hacemos yoga y también llevamos una vida piadosa y libre de culpa, entonces nuestros órganos funcionarán correctamente. Porque en el momento en que hacemos algo mal, nuestro corazón late aumenta, así que ¿por qué hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas añaden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el súper yoga del cerebro pueden hacer una gran contribución. También trata de seguir ocho ramas del yoga tanto como pueda.</p>		\n															<img width=\"183\" height=\"275\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-4.jpeg\" alt=\"\" loading=\"lazy\" />','Instructores','','inherit','closed','closed','','21-revision-v1','','','2023-04-30 05:40:59','2023-04-30 05:40:59','',21,'https://divyayogamonteregie.org/ca/?p=156',0,'revision','',0),(161,1,'2023-04-30 05:49:36','2023-04-30 05:49:36','','Elementor #160','','inherit','closed','closed','','160-revision-v1','','','2023-04-30 05:49:36','2023-04-30 05:49:36','',160,'https://divyayogamonteregie.org/ca/?p=161',0,'revision','',0),(162,1,'2023-04-30 05:51:42','2023-04-30 05:51:42','','Poemas','','inherit','closed','closed','','160-revision-v1','','','2023-04-30 05:51:42','2023-04-30 05:51:42','',160,'https://divyayogamonteregie.org/ca/?p=162',0,'revision','',0),(160,1,'2023-04-30 05:49:36','2023-04-30 05:49:36','','Poems','','draft','closed','closed','','poems','','','2023-05-23 19:53:46','2023-05-23 19:53:46','',0,'https://divyayogamonteregie.org/ca/?page_id=160',0,'page','',0),(165,1,'2023-05-24 02:49:49','2023-04-30 13:37:31',' ','','','publish','closed','closed','','165','','','2023-05-24 02:49:49','2023-05-24 02:49:49','',0,'https://divyayogamonteregie.org/ca/?p=165',2,'nav_menu_item','',0),(166,1,'2023-04-30 13:41:34','2023-04-30 13:41:34','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h4><strong><em>Believe in Yourself,and Remember that Anything Is Possible</em></strong></h4><h4><strong><em><br /></em></strong>Believe in what makes you feel good.<br />Believe in what makes you happy.<br />Believe in the dreams you\'ve always wanted to come true,<br />and give them every chance to.<br />Life holds no promises to what will come your way.<br />You must search for your own ideals<br />and work towards reaching them.<br />Life makes no guarantees as to what you\'ll have.<br />It just gives you time to make choices<br />and to take chances<br />and to discover whatever secrets might come your way.<br />If you are willing to take the opportunities you are given<br />and utilize the abilities you have,<br />you will constantly fill your life<br />with special moments and unforgettable times.<br />No one knows the mysteries of life or its ultimate meaning,<br />but for those who are willing<br />to believe in their dreams and in themselves,<br />life is a precious gift in which anything is possible.<br />~ Dena DiIaconi ~</h4>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Anything Is Possible','','publish','closed','closed','','anything-is-possible','','','2023-06-14 18:27:40','2023-06-14 18:27:40','',0,'https://divyayogamonteregie.org/ca/?page_id=166',0,'page','',0),(1029,1,'2023-06-13 19:03:32','2023-06-13 19:03:32','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h4><strong><em>Believe in Yourself,and Remember that Anything Is Possible</em></strong></h4><h4><strong><em><br></em></strong>Believe in what makes you feel good.<br>Believe in what makes you happy.<br>Believe in the dreams you\'ve always wanted to come true,<br>and give them every chance to.<br>Life holds no promises to what will come your way.<br>You must search for your own ideals<br>and work towards reaching them.<br>Life makes no guarantees as to what you\'ll have.<br>It just gives you time to make choices<br>and to take chances<br>and to discover whatever secrets might come your way.<br>If you are willing to take the opportunities you are given<br>and utilize the abilities you have,<br>you will constantly fill your life<br>with special moments and unforgettable times.<br>No one knows the mysteries of life or its ultimate meaning,<br>but for those who are willing<br>to believe in their dreams and in themselves,<br>life is a precious gift in which anything is possible.<br>~ Dena DiIaconi ~</h4>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Anything Is Possible','','inherit','closed','closed','','166-revision-v1','','','2023-06-13 19:03:32','2023-06-13 19:03:32','',166,'https://divyayogamonteregie.org/ca/?p=1029',0,'revision','',0),(1005,1,'2023-06-13 18:53:01','2023-06-13 18:53:01','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>EANYTHING IS POSSIBLE</h1>		\n		<h2><strong><em>Believe in Yourself,and Remember that Anything Is Possible</em></strong></h2><p>Believe in what makes you feel good.<br />Believe in what makes you happy.<br />Believe in the dreams you\'ve always wanted to come true,<br />and give them every chance to.</p><p>Life holds no promises to what will come your way.<br />You must search for your own ideals<br />and work towards reaching them.</p><p>Life makes no guarantees as to what you\'ll have.<br />It just gives you time to make choices<br />and to take chances<br />and to discover whatever secrets might come your way.</p><p>If you are willing to take the opportunities you are given<br />and utilize the abilities you have,<br />you will constantly fill your life<br />with special moments and unforgettable times.</p><p>No one knows the mysteries of life or its ultimate meaning,<br />but for those who are willing<br />to believe in their dreams and in themselves,<br />life is a precious gift in which anything is possible.</p><p>~ Dena DiIaconi ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Anything Is Possible','','inherit','closed','closed','','166-revision-v1','','','2023-06-13 18:53:01','2023-06-13 18:53:01','',166,'https://divyayogamonteregie.org/ca/?p=1005',0,'revision','',0),(167,1,'2023-04-30 13:42:37','2023-04-30 13:42:37','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-6.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-7.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-5.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"251\" height=\"201\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-1.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Todo es posible','','inherit','closed','closed','','166-revision-v1','','','2023-04-30 13:42:37','2023-04-30 13:42:37','',166,'https://divyayogamonteregie.org/ca/?p=167',0,'revision','',0),(170,1,'2023-04-30 13:45:32','2023-04-30 13:45:32','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODO ES POSIBLE</h1>		\n		<h2><strong><em>Cree en ti mismo y recuerda que todo es posible</em></strong></h2><p>Cree en lo que te hace sentir bien.<br />Cree en lo que te hace feliz.<br />Cree en los sueños que siempre has querido que se hagan realidad<br />y dales todas las oportunidades para hacerlo.</p><p>La vida no tiene promesas de lo que vendrá en tu camino.<br />Debes buscar tus propios ideales<br />y trabajar para alcanzarlos.</p><p>La vida no da garantías en cuanto a lo que tendrás.<br />Simplemente te da tiempo para tomar decisiones<br />y arriesgarte<br />y descubrir cualquier secreto que pueda surgir en tu camino.</p><p>Si estás dispuesto a aprovechar las oportunidades que se te dan<br />y utilizar las habilidades que tienes,<br />constantemente llenarás tu vida<br />con momentos especiales y momentos inolvidables.</p><p>Nadie conoce los misterios de la vida o su significado último, pero para aquellos que están dispuestos<br />a creer en sus sueños y en sí mismos,<br /><br />la vida es un regalo precioso en el que todo es posible.</p><p>~ Dena DiIaconi ~</p>','Todo es posible','','inherit','closed','closed','','166-revision-v1','','','2023-04-30 13:45:32','2023-04-30 13:45:32','',166,'https://divyayogamonteregie.org/ca/?p=170',0,'revision','',0),(168,1,'2023-04-30 13:45:31','2023-04-30 13:45:31','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-6.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-7.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-5.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"251\" height=\"201\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-1.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Todo es posible','','inherit','closed','closed','','166-revision-v1','','','2023-04-30 13:45:31','2023-04-30 13:45:31','',166,'https://divyayogamonteregie.org/ca/?p=168',0,'revision','',0),(169,1,'2023-04-30 13:45:32','2023-04-30 13:45:32','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-6.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-7.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-5.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"251\" height=\"201\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-1.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Todo es posible','','inherit','closed','closed','','166-revision-v1','','','2023-04-30 13:45:32','2023-04-30 13:45:32','',166,'https://divyayogamonteregie.org/ca/?p=169',0,'revision','',0),(171,1,'2023-04-30 13:48:38','2023-04-30 13:48:38','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODO ES POSIBLE</h1>		\n		<h2><strong><em>Cree en ti mismo y recuerda que todo es posible</em></strong></h2><p>Cree en lo que te hace sentir bien.<br />Cree en lo que te hace feliz.<br />Cree en los sueños que siempre has querido que se hagan realidad<br />y dales todas las oportunidades para hacerlo.</p><p>La vida no tiene promesas de lo que vendrá en tu camino.<br />Debes buscar tus propios ideales<br />y trabajar para alcanzarlos.</p><p>La vida no da garantías en cuanto a lo que tendrás.<br />Simplemente te da tiempo para tomar decisiones<br />y arriesgarte<br />y descubrir cualquier secreto que pueda surgir en tu camino.</p><p>Si estás dispuesto a aprovechar las oportunidades que se te dan<br />y utilizar las habilidades que tienes,<br />constantemente llenarás tu vida<br />con momentos especiales y momentos inolvidables.</p><p>Nadie conoce los misterios de la vida o su significado último, pero para aquellos que están dispuestos<br />a creer en sus sueños y en sí mismos,<br /><br />la vida es un regalo precioso en el que todo es posible.</p><p>~ Dena DiIaconi ~</p>','Todo es posible','','inherit','closed','closed','','166-revision-v1','','','2023-04-30 13:48:38','2023-04-30 13:48:38','',166,'https://divyayogamonteregie.org/ca/?p=171',0,'revision','',0),(172,1,'2023-04-30 13:48:39','2023-04-30 13:48:39','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODO ES POSIBLE</h1>		\n		<h2><strong><em>Cree en ti mismo y recuerda que todo es posible</em></strong></h2><p>Cree en lo que te hace sentir bien.<br />Cree en lo que te hace feliz.<br />Cree en los sueños que siempre has querido que se hagan realidad<br />y dales todas las oportunidades para hacerlo.</p><p>La vida no tiene promesas de lo que vendrá en tu camino.<br />Debes buscar tus propios ideales<br />y trabajar para alcanzarlos.</p><p>La vida no da garantías en cuanto a lo que tendrás.<br />Simplemente te da tiempo para tomar decisiones<br />y arriesgarte<br />y descubrir cualquier secreto que pueda surgir en tu camino.</p><p>Si estás dispuesto a aprovechar las oportunidades que se te dan<br />y utilizar las habilidades que tienes,<br />constantemente llenarás tu vida<br />con momentos especiales y momentos inolvidables.</p><p>Nadie conoce los misterios de la vida o su significado último, pero para aquellos que están dispuestos<br />a creer en sus sueños y en sí mismos,<br /><br />la vida es un regalo precioso en el que todo es posible.</p><p>~ Dena DiIaconi ~</p>','Todo es posible','','inherit','closed','closed','','166-revision-v1','','','2023-04-30 13:48:39','2023-04-30 13:48:39','',166,'https://divyayogamonteregie.org/ca/?p=172',0,'revision','',0),(173,1,'2023-04-30 13:48:39','2023-04-30 13:48:39','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODO ES POSIBLE</h1>		\n		<h2><strong><em>Cree en ti mismo y recuerda que todo es posible</em></strong></h2><p>Cree en lo que te hace sentir bien.<br />Cree en lo que te hace feliz.<br />Cree en los sueños que siempre has querido que se hagan realidad<br />y dales todas las oportunidades para hacerlo.</p><p>La vida no tiene promesas de lo que vendrá en tu camino.<br />Debes buscar tus propios ideales<br />y trabajar para alcanzarlos.</p><p>La vida no da garantías en cuanto a lo que tendrás.<br />Simplemente te da tiempo para tomar decisiones<br />y arriesgarte<br />y descubrir cualquier secreto que pueda surgir en tu camino.</p><p>Si estás dispuesto a aprovechar las oportunidades que se te dan<br />y utilizar las habilidades que tienes,<br />constantemente llenarás tu vida<br />con momentos especiales y momentos inolvidables.</p><p>Nadie conoce los misterios de la vida o su significado último, pero para aquellos que están dispuestos<br />a creer en sus sueños y en sí mismos,<br /><br />la vida es un regalo precioso en el que todo es posible.</p><p>~ Dena DiIaconi ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Todo es posible','','inherit','closed','closed','','166-revision-v1','','','2023-04-30 13:48:39','2023-04-30 13:48:39','',166,'https://divyayogamonteregie.org/ca/?p=173',0,'revision','',0),(174,1,'2023-05-24 02:49:49','2023-04-30 13:49:18',' ','','','publish','closed','closed','','174','','','2023-05-24 02:49:49','2023-05-24 02:49:49','',0,'https://divyayogamonteregie.org/ca/?p=174',3,'nav_menu_item','',0),(175,1,'2023-04-30 13:50:27','2023-04-30 13:50:27','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h4><strong>You Can Be Whatever<br></strong><strong>You Want To Be!<br></strong>There is inside you<br>all of the potential<br>to be whatever you want to be,<br>all of the energy<br>to do whatever you want to do.<br>Imagine yourself as you would like to be,<br>doing what you want to do,<br>and each day, take one step<br>towards your dream.<br>And though at times it may seem too<br>difficult to continue,<br>hold on to your dream.<br>One morning you will awake to find<br>that you are the person you dreamed of,<br>doing what you wanted to do,<br>simply because you had the courage<br>to believe in your potential<br>and to hold on to your dream</h4>\n<p></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Be Whatever  You Want To Be !','','publish','closed','closed','','be-whatever-you-want-to-be','','','2023-06-13 19:01:26','2023-06-13 19:01:26','',0,'https://divyayogamonteregie.org/ca/?page_id=175',0,'page','',0),(1017,1,'2023-06-13 18:59:07','2023-06-13 18:59:07','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h1><strong>You Can Be Whatever<br></strong><strong>You Want To Be!<br></strong>There is inside you<br>all of the potential<br>to be whatever you want to be,<br>all of the energy<br>to do whatever you want to do.<br>Imagine yourself as you would like to be,<br>doing what you want to do,<br>and each day, take one step<br>towards your dream.<br>And though at times it may seem too<br>difficult to continue,<br>hold on to your dream.<br>One morning you will awake to find<br>that you are the person you dreamed of,<br>doing what you wanted to do,<br>simply because you had the courage<br>to believe in your potential<br>and to hold on to your dream</h1>\n<p></p>\n<p></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Be Whatever  You Want To Be !','','inherit','closed','closed','','175-revision-v1','','','2023-06-13 18:59:07','2023-06-13 18:59:07','',175,'https://divyayogamonteregie.org/ca/?p=1017',0,'revision','',0),(1014,1,'2023-06-13 18:58:40','2023-06-13 18:58:40','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p><strong>You Can Be Whatever</strong><strong><br /></strong><strong>You Want To Be!</strong></p><p>There is inside you<br />all of the potential<br />to be whatever you want to be,<br />all of the energy<br />to do whatever you want to do.</p><p>Imagine yourself as you would like to be,<br />doing what you want to do,<br />and each day, take one step<br />towards your dream.</p><p>And though at times it may seem too<br />difficult to continue,<br />hold on to your dream.</p><p>One morning you will awake to find<br />that you are the person you dreamed of,<br />doing what you wanted to do,<br />simply because you had the courage<br />to believe in your potential<br />and to hold on to your dream</p><p> </p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Be Whatever  You Want To Be !','','inherit','closed','closed','','175-revision-v1','','','2023-06-13 18:58:40','2023-06-13 18:58:40','',175,'https://divyayogamonteregie.org/ca/?p=1014',0,'revision','',0),(1011,1,'2023-06-13 18:57:08','2023-06-13 18:57:08','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Be Whatever  You Want To Be !</h1>		\n		<p><strong>You Can Be Whatever</strong><strong><br /></strong><strong>You Want To Be!</strong></p><p>There is inside you<br />all of the potential<br />to be whatever you want to be,<br />all of the energy<br />to do whatever you want to do.</p><p>Imagine yourself as you would like to be,<br />doing what you want to do,<br />and each day, take one step<br />towards your dream.</p><p>And though at times it may seem too<br />difficult to continue,<br />hold on to your dream.</p><p>One morning you will awake to find<br />that you are the person you dreamed of,<br />doing what you wanted to do,<br />simply because you had the courage<br />to believe in your potential<br />and to hold on to your dream</p><p> </p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Be Whatever  You Want To Be !','','inherit','closed','closed','','175-revision-v1','','','2023-06-13 18:57:08','2023-06-13 18:57:08','',175,'https://divyayogamonteregie.org/ca/?p=1011',0,'revision','',0),(179,1,'2023-04-30 13:57:43','2023-04-30 13:57:43','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SE LO QUE QUIERAS SER!</h1>		\n		<p>¡Puedes ser <strong>lo que</strong><br /><strong>quieras ser!</strong></p><p>Hay dentro de ti<br />todo el potencial<br />para ser lo que quieras ser,<br />toda la energía<br />para hacer lo que quieras hacer.</p><p>Imagínate como te gustaría ser, haciendo lo que quieres hacer, y cada día,<br /><br />da un paso<br />hacia tu sueño.</p><p>Y aunque a veces parezca demasiado<br />difícil continuar,<br />aférrate a tu sueño.</p><p>Una mañana te despertarás para descubrir<br />que eres la persona con la que soñaste, haciendo lo que querías hacer, simplemente porque tuviste el coraje<br />de creer en tu potencial<br />y aferrarte a tu sueño.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Se lo que quieras ser','','inherit','closed','closed','','175-revision-v1','','','2023-04-30 13:57:43','2023-04-30 13:57:43','',175,'https://divyayogamonteregie.org/ca/?p=179',0,'revision','',0),(176,1,'2023-04-30 13:51:23','2023-04-30 13:51:23','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODO ES POSIBLE</h1>		\n		<h2><strong><em>Cree en ti mismo y recuerda que todo es posible</em></strong></h2><p>Cree en lo que te hace sentir bien.<br />Cree en lo que te hace feliz.<br />Cree en los sueños que siempre has querido que se hagan realidad<br />y dales todas las oportunidades para hacerlo.</p><p>La vida no tiene promesas de lo que vendrá en tu camino.<br />Debes buscar tus propios ideales<br />y trabajar para alcanzarlos.</p><p>La vida no da garantías en cuanto a lo que tendrás.<br />Simplemente te da tiempo para tomar decisiones<br />y arriesgarte<br />y descubrir cualquier secreto que pueda surgir en tu camino.</p><p>Si estás dispuesto a aprovechar las oportunidades que se te dan<br />y utilizar las habilidades que tienes,<br />constantemente llenarás tu vida<br />con momentos especiales y momentos inolvidables.</p><p>Nadie conoce los misterios de la vida o su significado último, pero para aquellos que están dispuestos<br />a creer en sus sueños y en sí mismos,<br /><br />la vida es un regalo precioso en el que todo es posible.</p><p>~ Dena DiIaconi ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Se lo que quieras ser','','inherit','closed','closed','','175-revision-v1','','','2023-04-30 13:51:23','2023-04-30 13:51:23','',175,'https://divyayogamonteregie.org/ca/?p=176',0,'revision','',0),(177,1,'2023-04-30 13:57:43','2023-04-30 13:57:43','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODO ES POSIBLE</h1>		\n		<h2><strong><em>Cree en ti mismo y recuerda que todo es posible</em></strong></h2><p>Cree en lo que te hace sentir bien.<br />Cree en lo que te hace feliz.<br />Cree en los sueños que siempre has querido que se hagan realidad<br />y dales todas las oportunidades para hacerlo.</p><p>La vida no tiene promesas de lo que vendrá en tu camino.<br />Debes buscar tus propios ideales<br />y trabajar para alcanzarlos.</p><p>La vida no da garantías en cuanto a lo que tendrás.<br />Simplemente te da tiempo para tomar decisiones<br />y arriesgarte<br />y descubrir cualquier secreto que pueda surgir en tu camino.</p><p>Si estás dispuesto a aprovechar las oportunidades que se te dan<br />y utilizar las habilidades que tienes,<br />constantemente llenarás tu vida<br />con momentos especiales y momentos inolvidables.</p><p>Nadie conoce los misterios de la vida o su significado último, pero para aquellos que están dispuestos<br />a creer en sus sueños y en sí mismos,<br /><br />la vida es un regalo precioso en el que todo es posible.</p><p>~ Dena DiIaconi ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Se lo que quieras ser','','inherit','closed','closed','','175-revision-v1','','','2023-04-30 13:57:43','2023-04-30 13:57:43','',175,'https://divyayogamonteregie.org/ca/?p=177',0,'revision','',0),(178,1,'2023-04-30 13:57:43','2023-04-30 13:57:43','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODO ES POSIBLE</h1>		\n		<h2><strong><em>Cree en ti mismo y recuerda que todo es posible</em></strong></h2><p>Cree en lo que te hace sentir bien.<br />Cree en lo que te hace feliz.<br />Cree en los sueños que siempre has querido que se hagan realidad<br />y dales todas las oportunidades para hacerlo.</p><p>La vida no tiene promesas de lo que vendrá en tu camino.<br />Debes buscar tus propios ideales<br />y trabajar para alcanzarlos.</p><p>La vida no da garantías en cuanto a lo que tendrás.<br />Simplemente te da tiempo para tomar decisiones<br />y arriesgarte<br />y descubrir cualquier secreto que pueda surgir en tu camino.</p><p>Si estás dispuesto a aprovechar las oportunidades que se te dan<br />y utilizar las habilidades que tienes,<br />constantemente llenarás tu vida<br />con momentos especiales y momentos inolvidables.</p><p>Nadie conoce los misterios de la vida o su significado último, pero para aquellos que están dispuestos<br />a creer en sus sueños y en sí mismos,<br /><br />la vida es un regalo precioso en el que todo es posible.</p><p>~ Dena DiIaconi ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Se lo que quieras ser','','inherit','closed','closed','','175-revision-v1','','','2023-04-30 13:57:43','2023-04-30 13:57:43','',175,'https://divyayogamonteregie.org/ca/?p=178',0,'revision','',0),(180,1,'2023-04-30 14:02:32','2023-04-30 14:02:32','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SE LO QUE QUIERAS SER!</h1>		\n		<p>¡Puedes ser <strong>lo que</strong><br /><strong>quieras ser!</strong></p><p>Hay dentro de ti<br />todo el potencial<br />para ser lo que quieras ser,<br />toda la energía<br />para hacer lo que quieras hacer.</p><p>Imagínate como te gustaría ser, haciendo lo que quieres hacer, y cada día,<br /><br />da un paso<br />hacia tu sueño.</p><p>Y aunque a veces parezca demasiado<br />difícil continuar,<br />aférrate a tu sueño.</p><p>Una mañana te despertarás para descubrir<br />que eres la persona con la que soñaste, haciendo lo que querías hacer, simplemente porque tuviste el coraje<br />de creer en tu potencial<br />y aferrarte a tu sueño.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Se lo que quieras ser','','inherit','closed','closed','','175-revision-v1','','','2023-04-30 14:02:32','2023-04-30 14:02:32','',175,'https://divyayogamonteregie.org/ca/?p=180',0,'revision','',0),(181,1,'2023-04-30 14:02:32','2023-04-30 14:02:32','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SE LO QUE QUIERAS SER!</h1>		\n		<p>¡Puedes ser <strong>lo que</strong><br /><strong>quieras ser!</strong></p><p>Hay dentro de ti<br />todo el potencial<br />para ser lo que quieras ser,<br />toda la energía<br />para hacer lo que quieras hacer.</p><p>Imagínate como te gustaría ser, haciendo lo que quieres hacer, y cada día,<br /><br />da un paso<br />hacia tu sueño.</p><p>Y aunque a veces parezca demasiado<br />difícil continuar,<br />aférrate a tu sueño.</p><p>Una mañana te despertarás para descubrir<br />que eres la persona con la que soñaste, haciendo lo que querías hacer, simplemente porque tuviste el coraje<br />de creer en tu potencial<br />y aferrarte a tu sueño.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Se lo que quieras ser','','inherit','closed','closed','','175-revision-v1','','','2023-04-30 14:02:32','2023-04-30 14:02:32','',175,'https://divyayogamonteregie.org/ca/?p=181',0,'revision','',0),(182,1,'2023-04-30 14:02:32','2023-04-30 14:02:32','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SE LO QUE QUIERAS SER!</h1>		\n		<p>¡Puedes ser <strong>lo que</strong><br /><strong>quieras ser!</strong></p><p>Hay dentro de ti<br />todo el potencial<br />para ser lo que quieras ser,<br />toda la energía<br />para hacer lo que quieras hacer.</p><p>Imagínate como te gustaría ser, haciendo lo que quieres hacer, y cada día,<br /><br />da un paso<br />hacia tu sueño.</p><p>Y aunque a veces parezca demasiado<br />difícil continuar,<br />aférrate a tu sueño.</p><p>Una mañana te despertarás para descubrir<br />que eres la persona con la que soñaste, haciendo lo que querías hacer, simplemente porque tuviste el coraje<br />de creer en tu potencial<br />y aferrarte a tu sueño.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Se lo que quieras ser','','inherit','closed','closed','','175-revision-v1','','','2023-04-30 14:02:32','2023-04-30 14:02:32','',175,'https://divyayogamonteregie.org/ca/?p=182',0,'revision','',0),(183,1,'2023-04-30 14:03:20','2023-04-30 14:03:20','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h4><b>If You Have A Dream<br /></b>Don’t wait for some distant day to come,<br />it may be too late before you’ve even begun.<br />Not everyone will agree with all you decide.<br />Be true to yourself first and foremost.<br />The only important thing in life is what you do<br />with the time you spend here on earth.<br />Don’t be afraid to follow your desires,<br />they are not silly nor selfish.<br />Take the time and do what makes you feel alive.<br />Leave your fears and regrets in the past,<br />for this is where they belong.<br />Don’t cloud today with things that can’t be undone.<br />You have no more control over yesterday or tomorrow,<br />than you do the raging of your passions.<br />Do not quiet these dreams nor quench your desires.<br />For if you do, your journey is ended.<br />You have only today to begin anew and follow your dreams.<br />For in the end all we have are our memories.<br />When the twilight comes to us, let there be,<br />No excuses, no explanations, no regrets!</h4>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','If You Have A Dream','','publish','closed','closed','','if-you-have-a-dream','','','2023-06-13 19:08:21','2023-06-13 19:08:21','',0,'https://divyayogamonteregie.org/ca/?page_id=183',0,'page','',0),(1035,1,'2023-06-13 19:07:22','2023-06-13 19:07:22','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h4><b>If You Have A Dream<br></b>Don’t wait for some distant day to come,<br>it may be too late before you’ve even begun.<br>Not everyone will agree with all you decide.<br>Be true to yourself first and foremost.<br>The only important thing in life is what you do<br>with the time you spend here on earth.<br>Don’t be afraid to follow your desires,<br>they are not silly nor selfish.<br>Take the time and do what makes you feel alive.<br>Leave your fears and regrets in the past,<br>for this is where they belong.<br>Don’t cloud today with things that can’t be undone.<br>You have no more control over yesterday or tomorrow,<br>than you do the raging of your passions.<br>Do not quiet these dreams nor quench your desires.<br>For if you do, your journey is ended.<br>You have only today to begin anew and follow your dreams.<br>For in the end all we have are our memories.<br>When the twilight comes to us, let there be,<br>No excuses, no explanations, no regrets!</h4>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','If You Have A Dream','','inherit','closed','closed','','183-revision-v1','','','2023-06-13 19:07:22','2023-06-13 19:07:22','',183,'https://divyayogamonteregie.org/ca/?p=1035',0,'revision','',0),(184,1,'2023-04-30 14:03:48','2023-04-30 14:03:48','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SE LO QUE QUIERAS SER!</h1>		\n		<p>¡Puedes ser <strong>lo que</strong><br /><strong>quieras ser!</strong></p><p>Hay dentro de ti<br />todo el potencial<br />para ser lo que quieras ser,<br />toda la energía<br />para hacer lo que quieras hacer.</p><p>Imagínate como te gustaría ser, haciendo lo que quieres hacer, y cada día,<br /><br />da un paso<br />hacia tu sueño.</p><p>Y aunque a veces parezca demasiado<br />difícil continuar,<br />aférrate a tu sueño.</p><p>Una mañana te despertarás para descubrir<br />que eres la persona con la que soñaste, haciendo lo que querías hacer, simplemente porque tuviste el coraje<br />de creer en tu potencial<br />y aferrarte a tu sueño.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Si tienes un sueño','','inherit','closed','closed','','183-revision-v1','','','2023-04-30 14:03:48','2023-04-30 14:03:48','',183,'https://divyayogamonteregie.org/ca/?p=184',0,'revision','',0),(185,1,'2023-04-30 14:04:38','2023-04-30 14:04:38','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SE LO QUE QUIERAS SER!</h1>		\n		<p>¡Puedes ser <strong>lo que</strong><br /><strong>quieras ser!</strong></p><p>Hay dentro de ti<br />todo el potencial<br />para ser lo que quieras ser,<br />toda la energía<br />para hacer lo que quieras hacer.</p><p>Imagínate como te gustaría ser, haciendo lo que quieres hacer, y cada día,<br /><br />da un paso<br />hacia tu sueño.</p><p>Y aunque a veces parezca demasiado<br />difícil continuar,<br />aférrate a tu sueño.</p><p>Una mañana te despertarás para descubrir<br />que eres la persona con la que soñaste, haciendo lo que querías hacer, simplemente porque tuviste el coraje<br />de creer en tu potencial<br />y aferrarte a tu sueño.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Si tienes un sueño','','inherit','closed','closed','','183-revision-v1','','','2023-04-30 14:04:38','2023-04-30 14:04:38','',183,'https://divyayogamonteregie.org/ca/?p=185',0,'revision','',0),(186,1,'2023-04-30 14:04:38','2023-04-30 14:04:38','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SE LO QUE QUIERAS SER!</h1>		\n		<p>¡Puedes ser <strong>lo que</strong><br /><strong>quieras ser!</strong></p><p>Hay dentro de ti<br />todo el potencial<br />para ser lo que quieras ser,<br />toda la energía<br />para hacer lo que quieras hacer.</p><p>Imagínate como te gustaría ser, haciendo lo que quieres hacer, y cada día,<br /><br />da un paso<br />hacia tu sueño.</p><p>Y aunque a veces parezca demasiado<br />difícil continuar,<br />aférrate a tu sueño.</p><p>Una mañana te despertarás para descubrir<br />que eres la persona con la que soñaste, haciendo lo que querías hacer, simplemente porque tuviste el coraje<br />de creer en tu potencial<br />y aferrarte a tu sueño.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Si tienes un sueño','','inherit','closed','closed','','183-revision-v1','','','2023-04-30 14:04:38','2023-04-30 14:04:38','',183,'https://divyayogamonteregie.org/ca/?p=186',0,'revision','',0),(187,1,'2023-04-30 14:04:39','2023-04-30 14:04:39','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SI TIENES UN SUEÑO</h1>		\n		<p>¡Puedes ser <strong>lo que</strong><br /><strong>quieras ser!</strong></p><p>Hay dentro de ti<br />todo el potencial<br />para ser lo que quieras ser,<br />toda la energía<br />para hacer lo que quieras hacer.</p><p>Imagínate como te gustaría ser, haciendo lo que quieres hacer, y cada día,<br /><br />da un paso<br />hacia tu sueño.</p><p>Y aunque a veces parezca demasiado<br />difícil continuar,<br />aférrate a tu sueño.</p><p>Una mañana te despertarás para descubrir<br />que eres la persona con la que soñaste, haciendo lo que querías hacer, simplemente porque tuviste el coraje<br />de creer en tu potencial<br />y aferrarte a tu sueño.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Si tienes un sueño','','inherit','closed','closed','','183-revision-v1','','','2023-04-30 14:04:39','2023-04-30 14:04:39','',183,'https://divyayogamonteregie.org/ca/?p=187',0,'revision','',0),(188,1,'2023-04-30 14:06:40','2023-04-30 14:06:40','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SI TIENES UN SUEÑO</h1>		\n		<p>¡Puedes ser <strong>lo que</strong><br /><strong>quieras ser!</strong></p><p>Hay dentro de ti<br />todo el potencial<br />para ser lo que quieras ser,<br />toda la energía<br />para hacer lo que quieras hacer.</p><p>Imagínate como te gustaría ser, haciendo lo que quieres hacer, y cada día,<br /><br />da un paso<br />hacia tu sueño.</p><p>Y aunque a veces parezca demasiado<br />difícil continuar,<br />aférrate a tu sueño.</p><p>Una mañana te despertarás para descubrir<br />que eres la persona con la que soñaste, haciendo lo que querías hacer, simplemente porque tuviste el coraje<br />de creer en tu potencial<br />y aferrarte a tu sueño.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Si tienes un sueño','','inherit','closed','closed','','183-revision-v1','','','2023-04-30 14:06:40','2023-04-30 14:06:40','',183,'https://divyayogamonteregie.org/ca/?p=188',0,'revision','',0),(189,1,'2023-04-30 14:06:40','2023-04-30 14:06:40','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SI TIENES UN SUEÑO</h1>		\n		<p>¡Puedes ser <strong>lo que</strong><br /><strong>quieras ser!</strong></p><p>Hay dentro de ti<br />todo el potencial<br />para ser lo que quieras ser,<br />toda la energía<br />para hacer lo que quieras hacer.</p><p>Imagínate como te gustaría ser, haciendo lo que quieres hacer, y cada día,<br /><br />da un paso<br />hacia tu sueño.</p><p>Y aunque a veces parezca demasiado<br />difícil continuar,<br />aférrate a tu sueño.</p><p>Una mañana te despertarás para descubrir<br />que eres la persona con la que soñaste, haciendo lo que querías hacer, simplemente porque tuviste el coraje<br />de creer en tu potencial<br />y aferrarte a tu sueño.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Si tienes un sueño','','inherit','closed','closed','','183-revision-v1','','','2023-04-30 14:06:40','2023-04-30 14:06:40','',183,'https://divyayogamonteregie.org/ca/?p=189',0,'revision','',0),(190,1,'2023-04-30 14:06:40','2023-04-30 14:06:40','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SI TIENES UN SUEÑO</h1>		\n		<p><strong>Si tienes un sueño</strong></p><p>No esperes a que llegue un día lejano,<br />puede ser demasiado tarde antes de que hayas comenzado.<br />No todos estarán de acuerdo con todo lo que decidas.</p><p>Sé fiel a ti mismo ante todo.<br />Lo único importante en la vida es lo que haces<br />con el tiempo que pasas aquí en la tierra.</p><p>No tengas miedo de seguir tus deseos,<br />no son tontos ni egoístas.<br />Tómate el tiempo y haz lo que te haga sentir vivo.</p><p>Deja tus miedos y remordimientos en el pasado,<br />porque aquí es donde pertenecen.<br />No te nubles hoy con cosas que no se pueden deshacer.</p><p>No tienes más control sobre el ayer o el mañana,<br />que sobre la furia de tus pasiones.<br />No calmes estos sueños ni sacies tus deseos.</p><p>Porque si lo haces, tu viaje ha terminado.<br />Sólo tienes hoy para comenzar de nuevo y seguir tus sueños.<br />Porque al final todo lo que tenemos son nuestros recuerdos.</p><p>Cuando el crepúsculo venga a nosotros, que haya, ¡Sin excusas, sin explicaciones,<br />sin arrepentimientos!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Si tienes un sueño','','inherit','closed','closed','','183-revision-v1','','','2023-04-30 14:06:40','2023-04-30 14:06:40','',183,'https://divyayogamonteregie.org/ca/?p=190',0,'revision','',0),(191,1,'2023-05-24 02:49:49','2023-04-30 14:07:52',' ','','','publish','closed','closed','','191','','','2023-05-24 02:49:49','2023-05-24 02:49:49','',0,'https://divyayogamonteregie.org/ca/?p=191',4,'nav_menu_item','',0),(192,1,'2023-05-24 02:49:49','2023-04-30 14:07:52',' ','','','publish','closed','closed','','192','','','2023-05-24 02:49:49','2023-05-24 02:49:49','',0,'https://divyayogamonteregie.org/ca/?p=192',5,'nav_menu_item','',0),(193,1,'2023-04-30 14:09:09','2023-04-30 14:09:09','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h4 style=\"text-align: center;\">In life there are people that will hurt us and cause us pain,<br />but we must learn to forgive and forget and not hold grudges.<br />In life there are mistakes we will make,<br />but we must learn from our wrongs and grow from them.<br />In life there are regrets we will have to live with,<br />but we must learn to leave the past behind and realize it is something we can\'t change.<br />In life there are people we will loose forever and can\'t have back,<br />but we must learn to let go &amp; move on.<br />In life there are going to be obstacles that will cause interference,<br />but we must learn to overcome these challenges and grow stronger.<br />In life there are fears that will hold us back from what we want,<br />but we must learn to fight them with the courage from within.</h4>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','In our life','','publish','closed','closed','','in-our-life','','','2023-06-13 19:12:43','2023-06-13 19:12:43','',0,'https://divyayogamonteregie.org/ca/?page_id=193',0,'page','',0),(1042,1,'2023-06-13 19:12:43','2023-06-13 19:12:43','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h4 style=\"text-align: center;\">In life there are people that will hurt us and cause us pain,<br />but we must learn to forgive and forget and not hold grudges.<br />In life there are mistakes we will make,<br />but we must learn from our wrongs and grow from them.<br />In life there are regrets we will have to live with,<br />but we must learn to leave the past behind and realize it is something we can\'t change.<br />In life there are people we will loose forever and can\'t have back,<br />but we must learn to let go &amp; move on.<br />In life there are going to be obstacles that will cause interference,<br />but we must learn to overcome these challenges and grow stronger.<br />In life there are fears that will hold us back from what we want,<br />but we must learn to fight them with the courage from within.</h4>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','In our life','','inherit','closed','closed','','193-revision-v1','','','2023-06-13 19:12:43','2023-06-13 19:12:43','',193,'https://divyayogamonteregie.org/ca/?p=1042',0,'revision','',0),(197,1,'2023-04-30 14:11:48','2023-04-30 14:11:48','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>ES NUESTRA VIDA</h1>		\n		<p>En la vida hay personas que nos harán daño y nos causarán dolor,</p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.</p><p>En la vida hay errores que cometeremos,<br />pero debemos aprender de nuestros errores y crecer a partir de ellos.</p><p>En la vida hay remordimientos con los que tendremos que vivir,<br />pero debemos aprender a dejar atrás el pasado y darnos cuenta de que es algo que no podemos cambiar.</p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br />pero debemos aprender a dejar ir y seguir adelante.</p><p>En la vida habrá obstáculos que causarán interferencia,<br />pero debemos aprender a superar estos desafíos y fortalecernos.</p><p>En la vida hay miedos que nos frenarán de lo que queremos,<br />pero debemos aprender a combatirlos con el coraje de dentro.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','En nuestra vida','','inherit','closed','closed','','193-revision-v1','','','2023-04-30 14:11:48','2023-04-30 14:11:48','',193,'https://divyayogamonteregie.org/ca/?p=197',0,'revision','',0),(194,1,'2023-04-30 14:09:55','2023-04-30 14:09:55','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SI TIENES UN SUEÑO</h1>		\n		<p><strong>Si tienes un sueño</strong></p><p>No esperes a que llegue un día lejano,<br />puede ser demasiado tarde antes de que hayas comenzado.<br />No todos estarán de acuerdo con todo lo que decidas.</p><p>Sé fiel a ti mismo ante todo.<br />Lo único importante en la vida es lo que haces<br />con el tiempo que pasas aquí en la tierra.</p><p>No tengas miedo de seguir tus deseos,<br />no son tontos ni egoístas.<br />Tómate el tiempo y haz lo que te haga sentir vivo.</p><p>Deja tus miedos y remordimientos en el pasado,<br />porque aquí es donde pertenecen.<br />No te nubles hoy con cosas que no se pueden deshacer.</p><p>No tienes más control sobre el ayer o el mañana,<br />que sobre la furia de tus pasiones.<br />No calmes estos sueños ni sacies tus deseos.</p><p>Porque si lo haces, tu viaje ha terminado.<br />Sólo tienes hoy para comenzar de nuevo y seguir tus sueños.<br />Porque al final todo lo que tenemos son nuestros recuerdos.</p><p>Cuando el crepúsculo venga a nosotros, que haya, ¡Sin excusas, sin explicaciones,<br />sin arrepentimientos!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','En nuestra vida','','inherit','closed','closed','','193-revision-v1','','','2023-04-30 14:09:55','2023-04-30 14:09:55','',193,'https://divyayogamonteregie.org/ca/?p=194',0,'revision','',0),(195,1,'2023-04-30 14:11:47','2023-04-30 14:11:47','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SI TIENES UN SUEÑO</h1>		\n		<p><strong>Si tienes un sueño</strong></p><p>No esperes a que llegue un día lejano,<br />puede ser demasiado tarde antes de que hayas comenzado.<br />No todos estarán de acuerdo con todo lo que decidas.</p><p>Sé fiel a ti mismo ante todo.<br />Lo único importante en la vida es lo que haces<br />con el tiempo que pasas aquí en la tierra.</p><p>No tengas miedo de seguir tus deseos,<br />no son tontos ni egoístas.<br />Tómate el tiempo y haz lo que te haga sentir vivo.</p><p>Deja tus miedos y remordimientos en el pasado,<br />porque aquí es donde pertenecen.<br />No te nubles hoy con cosas que no se pueden deshacer.</p><p>No tienes más control sobre el ayer o el mañana,<br />que sobre la furia de tus pasiones.<br />No calmes estos sueños ni sacies tus deseos.</p><p>Porque si lo haces, tu viaje ha terminado.<br />Sólo tienes hoy para comenzar de nuevo y seguir tus sueños.<br />Porque al final todo lo que tenemos son nuestros recuerdos.</p><p>Cuando el crepúsculo venga a nosotros, que haya, ¡Sin excusas, sin explicaciones,<br />sin arrepentimientos!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','En nuestra vida','','inherit','closed','closed','','193-revision-v1','','','2023-04-30 14:11:47','2023-04-30 14:11:47','',193,'https://divyayogamonteregie.org/ca/?p=195',0,'revision','',0),(196,1,'2023-04-30 14:11:48','2023-04-30 14:11:48','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SI TIENES UN SUEÑO</h1>		\n		<p><strong>Si tienes un sueño</strong></p><p>No esperes a que llegue un día lejano,<br />puede ser demasiado tarde antes de que hayas comenzado.<br />No todos estarán de acuerdo con todo lo que decidas.</p><p>Sé fiel a ti mismo ante todo.<br />Lo único importante en la vida es lo que haces<br />con el tiempo que pasas aquí en la tierra.</p><p>No tengas miedo de seguir tus deseos,<br />no son tontos ni egoístas.<br />Tómate el tiempo y haz lo que te haga sentir vivo.</p><p>Deja tus miedos y remordimientos en el pasado,<br />porque aquí es donde pertenecen.<br />No te nubles hoy con cosas que no se pueden deshacer.</p><p>No tienes más control sobre el ayer o el mañana,<br />que sobre la furia de tus pasiones.<br />No calmes estos sueños ni sacies tus deseos.</p><p>Porque si lo haces, tu viaje ha terminado.<br />Sólo tienes hoy para comenzar de nuevo y seguir tus sueños.<br />Porque al final todo lo que tenemos son nuestros recuerdos.</p><p>Cuando el crepúsculo venga a nosotros, que haya, ¡Sin excusas, sin explicaciones,<br />sin arrepentimientos!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','En nuestra vida','','inherit','closed','closed','','193-revision-v1','','','2023-04-30 14:11:48','2023-04-30 14:11:48','',193,'https://divyayogamonteregie.org/ca/?p=196',0,'revision','',0),(198,1,'2023-04-30 14:13:13','2023-04-30 14:13:13','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>ES NUESTRA VIDA</h1>		\n		<p>En la vida hay personas que nos harán daño y nos causarán dolor,</p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.</p><p>En la vida hay errores que cometeremos,<br />pero debemos aprender de nuestros errores y crecer a partir de ellos.</p><p>En la vida hay remordimientos con los que tendremos que vivir,<br />pero debemos aprender a dejar atrás el pasado y darnos cuenta de que es algo que no podemos cambiar.</p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br />pero debemos aprender a dejar ir y seguir adelante.</p><p>En la vida habrá obstáculos que causarán interferencia,<br />pero debemos aprender a superar estos desafíos y fortalecernos.</p><p>En la vida hay miedos que nos frenarán de lo que queremos,<br />pero debemos aprender a combatirlos con el coraje de dentro.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','En nuestra vida','','inherit','closed','closed','','193-revision-v1','','','2023-04-30 14:13:13','2023-04-30 14:13:13','',193,'https://divyayogamonteregie.org/ca/?p=198',0,'revision','',0),(199,1,'2023-04-30 14:13:13','2023-04-30 14:13:13','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>ES NUESTRA VIDA</h1>		\n		<p>En la vida hay personas que nos harán daño y nos causarán dolor,</p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.</p><p>En la vida hay errores que cometeremos,<br />pero debemos aprender de nuestros errores y crecer a partir de ellos.</p><p>En la vida hay remordimientos con los que tendremos que vivir,<br />pero debemos aprender a dejar atrás el pasado y darnos cuenta de que es algo que no podemos cambiar.</p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br />pero debemos aprender a dejar ir y seguir adelante.</p><p>En la vida habrá obstáculos que causarán interferencia,<br />pero debemos aprender a superar estos desafíos y fortalecernos.</p><p>En la vida hay miedos que nos frenarán de lo que queremos,<br />pero debemos aprender a combatirlos con el coraje de dentro.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','En nuestra vida','','inherit','closed','closed','','193-revision-v1','','','2023-04-30 14:13:13','2023-04-30 14:13:13','',193,'https://divyayogamonteregie.org/ca/?p=199',0,'revision','',0),(200,1,'2023-04-30 14:13:13','2023-04-30 14:13:13','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>ES NUESTRA VIDA</h1>		\n		<p>En la vida hay personas que nos harán daño y nos causarán dolor,</p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.</p><p>En la vida hay errores que cometeremos,<br />pero debemos aprender de nuestros errores y crecer a partir de ellos.</p><p>En la vida hay remordimientos con los que tendremos que vivir,<br />pero debemos aprender a dejar atrás el pasado y darnos cuenta de que es algo que no podemos cambiar.</p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br />pero debemos aprender a dejar ir y seguir adelante.</p><p>En la vida habrá obstáculos que causarán interferencia,<br />pero debemos aprender a superar estos desafíos y fortalecernos.</p><p>En la vida hay miedos que nos frenarán de lo que queremos,<br />pero debemos aprender a combatirlos con el coraje de dentro.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','En nuestra vida','','inherit','closed','closed','','193-revision-v1','','','2023-04-30 14:13:13','2023-04-30 14:13:13','',193,'https://divyayogamonteregie.org/ca/?p=200',0,'revision','',0),(201,1,'2023-05-24 02:49:49','2023-04-30 14:14:02',' ','','','publish','closed','closed','','201','','','2023-05-24 02:49:49','2023-05-24 02:49:49','',0,'https://divyayogamonteregie.org/ca/?p=201',6,'nav_menu_item','',0),(202,1,'2023-04-30 14:14:37','2023-04-30 14:14:37','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h4>One song can spark a moment,</h4>\n<h4>One tree can start a forest,<br>One bird can herald spring.</h4><h4><br>One smile begins a friendship,<br>One handclasp lifts a soul.</h4><h4><br>One star can guide a ship at sea,<br>One vote can change a nation,<br>One sunbeam lights a room<br>One candle wipes out darkness,<br>One laugh will conquer gloom.</h4><h4><br>One step must start each journey.<br>One word must start each prayer.<br>One hope will raise our spirits,<br>One touch can show you care.</h4><h4><br>One voice can speak with wisdom,<br>One heart can know what\'s true,<br>One life can make a difference,<br>You see, it\'s up to you!</h4>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Just One','','publish','closed','closed','','just-one','','','2023-06-13 19:18:16','2023-06-13 19:18:16','',0,'https://divyayogamonteregie.org/ca/?page_id=202',0,'page','',0),(1045,1,'2023-06-13 19:18:16','2023-06-13 19:18:16','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h4>One song can spark a moment,</h4>\n<h4>One tree can start a forest,<br>One bird can herald spring.</h4><h4><br>One smile begins a friendship,<br>One handclasp lifts a soul.</h4><h4><br>One star can guide a ship at sea,<br>One vote can change a nation,<br>One sunbeam lights a room<br>One candle wipes out darkness,<br>One laugh will conquer gloom.</h4><h4><br>One step must start each journey.<br>One word must start each prayer.<br>One hope will raise our spirits,<br>One touch can show you care.</h4><h4><br>One voice can speak with wisdom,<br>One heart can know what\'s true,<br>One life can make a difference,<br>You see, it\'s up to you!</h4>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Just One','','inherit','closed','closed','','202-revision-v1','','','2023-06-13 19:18:16','2023-06-13 19:18:16','',202,'https://divyayogamonteregie.org/ca/?p=1045',0,'revision','',0),(603,1,'2023-05-24 00:15:25','2023-05-24 00:15:25','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>JUST ONE</h1>		\n		<p align=\"center\">One song can spark a moment,<br />One tree can start a forest,<br />One bird can herald spring.</p><p align=\"center\">One smile begins a friendship,<br />One handclasp lifts a soul.<br />One star can guide a ship at sea,<br />One vote can change a nation,<br />One sunbeam lights a room<br />One candle wipes out darkness,<br />One laugh will conquer gloom.</p><p align=\"center\">One step must start each journey.<br />One word must start each prayer.<br />One hope will raise our spirits,<br />One touch can show you care.</p><p align=\"center\">One voice can speak with wisdom,<br />One heart can know what\'s true,</p><p align=\"center\">One life can make a difference,<br />You see, it\'s up to you!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Just One','','inherit','closed','closed','','202-revision-v1','','','2023-05-24 00:15:25','2023-05-24 00:15:25','',202,'https://divyayogamonteregie.org/ca/?p=603',0,'revision','',0),(206,1,'2023-04-30 14:15:48','2023-04-30 14:15:48','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SOLO UNA</h1>		\n		<p>Una canción puede provocar un momento, un árbol puede comenzar un bosque,<br /><br />un pájaro puede anunciar la primavera.</p><p>Una sonrisa comienza una amistad,<br />un apretón de manos levanta un alma.<br />Una estrella puede guiar un barco en el mar, Un voto puede cambiar una nación, Un rayo de sol ilumina una habitación<br />Una vela borra la oscuridad,<br /><br /><br />Una risa conquistará la tristeza.</p><p>Un paso debe comenzar cada viaje.<br />Una palabra debe comenzar cada oración.<br />Una esperanza elevará nuestro espíritu,<br />un toque puede mostrarte que te importa.</p><p>Una voz puede hablar con sabiduría, Un corazón puede saber lo que es verdad,</p><p>Una vida puede marcar la diferencia, ya ves,<br />¡depende de ti!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Sólo una','','inherit','closed','closed','','202-revision-v1','','','2023-04-30 14:15:48','2023-04-30 14:15:48','',202,'https://divyayogamonteregie.org/ca/?p=206',0,'revision','',0),(203,1,'2023-04-30 14:14:56','2023-04-30 14:14:56','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>ES NUESTRA VIDA</h1>		\n		<p>En la vida hay personas que nos harán daño y nos causarán dolor,</p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.</p><p>En la vida hay errores que cometeremos,<br />pero debemos aprender de nuestros errores y crecer a partir de ellos.</p><p>En la vida hay remordimientos con los que tendremos que vivir,<br />pero debemos aprender a dejar atrás el pasado y darnos cuenta de que es algo que no podemos cambiar.</p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br />pero debemos aprender a dejar ir y seguir adelante.</p><p>En la vida habrá obstáculos que causarán interferencia,<br />pero debemos aprender a superar estos desafíos y fortalecernos.</p><p>En la vida hay miedos que nos frenarán de lo que queremos,<br />pero debemos aprender a combatirlos con el coraje de dentro.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Sólo una','','inherit','closed','closed','','202-revision-v1','','','2023-04-30 14:14:56','2023-04-30 14:14:56','',202,'https://divyayogamonteregie.org/ca/?p=203',0,'revision','',0),(204,1,'2023-04-30 14:15:47','2023-04-30 14:15:47','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>ES NUESTRA VIDA</h1>		\n		<p>En la vida hay personas que nos harán daño y nos causarán dolor,</p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.</p><p>En la vida hay errores que cometeremos,<br />pero debemos aprender de nuestros errores y crecer a partir de ellos.</p><p>En la vida hay remordimientos con los que tendremos que vivir,<br />pero debemos aprender a dejar atrás el pasado y darnos cuenta de que es algo que no podemos cambiar.</p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br />pero debemos aprender a dejar ir y seguir adelante.</p><p>En la vida habrá obstáculos que causarán interferencia,<br />pero debemos aprender a superar estos desafíos y fortalecernos.</p><p>En la vida hay miedos que nos frenarán de lo que queremos,<br />pero debemos aprender a combatirlos con el coraje de dentro.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Sólo una','','inherit','closed','closed','','202-revision-v1','','','2023-04-30 14:15:47','2023-04-30 14:15:47','',202,'https://divyayogamonteregie.org/ca/?p=204',0,'revision','',0),(205,1,'2023-04-30 14:15:47','2023-04-30 14:15:47','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>ES NUESTRA VIDA</h1>		\n		<p>En la vida hay personas que nos harán daño y nos causarán dolor,</p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.</p><p>En la vida hay errores que cometeremos,<br />pero debemos aprender de nuestros errores y crecer a partir de ellos.</p><p>En la vida hay remordimientos con los que tendremos que vivir,<br />pero debemos aprender a dejar atrás el pasado y darnos cuenta de que es algo que no podemos cambiar.</p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br />pero debemos aprender a dejar ir y seguir adelante.</p><p>En la vida habrá obstáculos que causarán interferencia,<br />pero debemos aprender a superar estos desafíos y fortalecernos.</p><p>En la vida hay miedos que nos frenarán de lo que queremos,<br />pero debemos aprender a combatirlos con el coraje de dentro.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Sólo una','','inherit','closed','closed','','202-revision-v1','','','2023-04-30 14:15:47','2023-04-30 14:15:47','',202,'https://divyayogamonteregie.org/ca/?p=205',0,'revision','',0),(207,1,'2023-05-24 02:49:49','2023-04-30 14:16:47',' ','','','publish','closed','closed','','207','','','2023-05-24 02:49:49','2023-05-24 02:49:49','',0,'https://divyayogamonteregie.org/ca/?p=207',7,'nav_menu_item','',0),(208,1,'2023-04-30 14:26:47','2023-04-30 14:26:47','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p align=\"center\">I used to have a comfort zone where I knew I wouldn\'t fail.<br />The same four walls and busywork were really more like jail.</p><p align=\"center\">I longed so much to do the things I\'d never done before,<br />But stayed inside my comfort zone and paced the same old floor.</p><p align=\"center\">I claimed to be so busy with the things inside the zone,<br />But deep inside I longed for something special of my own.</p><p align=\"center\">I couldn\'t let my life go by just watching others win.<br />I held my breath; I stepped outside and let the change begin.<br />I took a step and with new strength I\'d never felt before,<br />I kissed my comfort zone goodbye and closed and locked the door.</p><p align=\"center\">If you\'re in a comfort zone, afraid to venture out,<br />Remember that all winners were at one time filled with doubt.<br />A step or two and will power can make your dreams come true.</p><p align=\"center\">Reach for your future with a smile; success is there for you!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','My Comfort Zone','','publish','closed','closed','','my-comfort-zone','','','2023-06-14 18:31:15','2023-06-14 18:31:15','',0,'https://divyayogamonteregie.org/ca/?page_id=208',0,'page','',0),(1055,1,'2023-06-14 18:30:41','2023-06-14 18:30:41','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p align=\"center\">I used to have a comfort zone where I knew I wouldn\'t fail.<br />The same four walls and busywork were really more like jail.</p><p align=\"center\">I longed so much to do the things I\'d never done before,<br />But stayed inside my comfort zone and paced the same old floor.</p><p align=\"center\">I claimed to be so busy with the things inside the zone,<br />But deep inside I longed for something special of my own.</p><p align=\"center\">I couldn\'t let my life go by just watching others win.<br />I held my breath; I stepped outside and let the change begin.<br />I took a step and with new strength I\'d never felt before,<br />I kissed my comfort zone goodbye and closed and locked the door.</p><p align=\"center\">If you\'re in a comfort zone, afraid to venture out,<br />Remember that all winners were at one time filled with doubt.<br />A step or two and will power can make your dreams come true.</p><p align=\"center\">Reach for your future with a smile; success is there for you!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','My Comfort Zone','','inherit','closed','closed','','208-revision-v1','','','2023-06-14 18:30:41','2023-06-14 18:30:41','',208,'https://divyayogamonteregie.org/ca/?p=1055',0,'revision','',0),(209,1,'2023-04-30 14:27:27','2023-04-30 14:27:27','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SOLO UNA</h1>		\n		<p>Una canción puede provocar un momento, un árbol puede comenzar un bosque,<br /><br />un pájaro puede anunciar la primavera.</p><p>Una sonrisa comienza una amistad,<br />un apretón de manos levanta un alma.<br />Una estrella puede guiar un barco en el mar, Un voto puede cambiar una nación, Un rayo de sol ilumina una habitación<br />Una vela borra la oscuridad,<br /><br /><br />Una risa conquistará la tristeza.</p><p>Un paso debe comenzar cada viaje.<br />Una palabra debe comenzar cada oración.<br />Una esperanza elevará nuestro espíritu,<br />un toque puede mostrarte que te importa.</p><p>Una voz puede hablar con sabiduría, Un corazón puede saber lo que es verdad,</p><p>Una vida puede marcar la diferencia, ya ves,<br />¡depende de ti!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Mi zona de confort','','inherit','closed','closed','','208-revision-v1','','','2023-04-30 14:27:27','2023-04-30 14:27:27','',208,'https://divyayogamonteregie.org/ca/?p=209',0,'revision','',0),(214,1,'2023-04-30 14:31:53','2023-04-30 14:31:53','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>MI ZONA DE CONFORT</h1>		\n		<p>Solía tener una zona de confort donde sabía que no fallaría.<br />Las mismas cuatro paredes y el trabajo ocupado eran realmente más como la cárcel.</p><p>Anhelaba tanto hacer las cosas que nunca había hecho antes,<br />pero me quedé dentro de mi zona de confort y caminé por el mismo piso de siempre.</p><p>Decía estar tan ocupado con las cosas dentro de la zona,<br />pero en el fondo anhelaba algo especial propio.</p><p>No podía dejar pasar mi vida simplemente viendo ganar a otros.<br />Contuve la respiración; Salí y dejé que comenzara el cambio.<br />Di un paso y con nuevas fuerzas que nunca antes había sentido,<br />me despedí de mi zona de confort y cerré y cerré la puerta.</p><p>Si estás en una zona de confort, temeroso de aventurarte,<br />recuerda que todos los ganadores estuvieron en algún momento llenos de dudas.<br />Un paso o dos y la fuerza de voluntad pueden hacer realidad tus sueños.</p><p>Alcanza tu futuro con una sonrisa; ¡El éxito está ahí para ti!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Mi zona de confort','','inherit','closed','closed','','208-revision-v1','','','2023-04-30 14:31:53','2023-04-30 14:31:53','',208,'https://divyayogamonteregie.org/ca/?p=214',0,'revision','',0),(211,1,'2023-04-30 14:31:18','2023-04-30 14:31:18','','descarga (4)','','inherit','open','closed','','descarga-4','','','2023-04-30 14:31:18','2023-04-30 14:31:18','',208,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-4.jpeg',0,'attachment','image/jpeg',0),(212,1,'2023-04-30 14:31:53','2023-04-30 14:31:53','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SOLO UNA</h1>		\n		<p>Una canción puede provocar un momento, un árbol puede comenzar un bosque,<br /><br />un pájaro puede anunciar la primavera.</p><p>Una sonrisa comienza una amistad,<br />un apretón de manos levanta un alma.<br />Una estrella puede guiar un barco en el mar, Un voto puede cambiar una nación, Un rayo de sol ilumina una habitación<br />Una vela borra la oscuridad,<br /><br /><br />Una risa conquistará la tristeza.</p><p>Un paso debe comenzar cada viaje.<br />Una palabra debe comenzar cada oración.<br />Una esperanza elevará nuestro espíritu,<br />un toque puede mostrarte que te importa.</p><p>Una voz puede hablar con sabiduría, Un corazón puede saber lo que es verdad,</p><p>Una vida puede marcar la diferencia, ya ves,<br />¡depende de ti!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Mi zona de confort','','inherit','closed','closed','','208-revision-v1','','','2023-04-30 14:31:53','2023-04-30 14:31:53','',208,'https://divyayogamonteregie.org/ca/?p=212',0,'revision','',0),(213,1,'2023-04-30 14:31:53','2023-04-30 14:31:53','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SOLO UNA</h1>		\n		<p>Una canción puede provocar un momento, un árbol puede comenzar un bosque,<br /><br />un pájaro puede anunciar la primavera.</p><p>Una sonrisa comienza una amistad,<br />un apretón de manos levanta un alma.<br />Una estrella puede guiar un barco en el mar, Un voto puede cambiar una nación, Un rayo de sol ilumina una habitación<br />Una vela borra la oscuridad,<br /><br /><br />Una risa conquistará la tristeza.</p><p>Un paso debe comenzar cada viaje.<br />Una palabra debe comenzar cada oración.<br />Una esperanza elevará nuestro espíritu,<br />un toque puede mostrarte que te importa.</p><p>Una voz puede hablar con sabiduría, Un corazón puede saber lo que es verdad,</p><p>Una vida puede marcar la diferencia, ya ves,<br />¡depende de ti!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Mi zona de confort','','inherit','closed','closed','','208-revision-v1','','','2023-04-30 14:31:53','2023-04-30 14:31:53','',208,'https://divyayogamonteregie.org/ca/?p=213',0,'revision','',0),(215,1,'2023-04-30 14:45:11','2023-04-30 14:45:11','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>OUR THOUGHTS</h1>		\n		<p align=\"center\">Keep your thoughts positive,</p><p align=\"center\">because thoughts become your words.</p><p align=\"center\">Keep your words positive</p><p align=\"center\">because words become your action.</p><p align=\"center\">Keep your action positive</p><p align=\"center\">Because your action becomes your habit.</p><p align=\"center\">Keep your habit positive,</p><p align=\"center\">because your habit becomes your lifestyle.</p><p align=\"center\">Keep your life style positive,</p><p align=\"center\">because your life style becomes your destiny.</p><p>.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Our Thoughts','','publish','closed','closed','','our-thoughts','','','2023-06-14 18:32:54','2023-06-14 18:32:54','',0,'https://divyayogamonteregie.org/ca/?page_id=215',0,'page','',0),(220,1,'2023-04-30 14:48:13','2023-04-30 14:48:13','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>NUESTROS PENSAMIENTOS</h1>		\n		<p>Mantén tus pensamientos positivos,</p><p>Porque los pensamientos se convierten en tus palabras.</p><p>Mantén tus palabras positivas</p><p>Porque las palabras se convierten en tu acción.</p><p>Mantén tu acción positiva</p><p>Porque tu acción se convierte en tu hábito.</p><p>Mantén tu hábito positivo,</p><p>Porque tu hábito se convierte en tu estilo de vida.</p><p>Mantén tu estilo de vida positivo,</p><p>Porque tu estilo de vida se convierte en tu destino.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Nuestros Pensamientos','','inherit','closed','closed','','215-revision-v1','','','2023-04-30 14:48:13','2023-04-30 14:48:13','',215,'https://divyayogamonteregie.org/ca/?p=220',0,'revision','',0),(216,1,'2023-04-30 14:45:59','2023-04-30 14:45:59','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>MI ZONA DE CONFORT</h1>		\n		<p>Solía tener una zona de confort donde sabía que no fallaría.<br />Las mismas cuatro paredes y el trabajo ocupado eran realmente más como la cárcel.</p><p>Anhelaba tanto hacer las cosas que nunca había hecho antes,<br />pero me quedé dentro de mi zona de confort y caminé por el mismo piso de siempre.</p><p>Decía estar tan ocupado con las cosas dentro de la zona,<br />pero en el fondo anhelaba algo especial propio.</p><p>No podía dejar pasar mi vida simplemente viendo ganar a otros.<br />Contuve la respiración; Salí y dejé que comenzara el cambio.<br />Di un paso y con nuevas fuerzas que nunca antes había sentido,<br />me despedí de mi zona de confort y cerré y cerré la puerta.</p><p>Si estás en una zona de confort, temeroso de aventurarte,<br />recuerda que todos los ganadores estuvieron en algún momento llenos de dudas.<br />Un paso o dos y la fuerza de voluntad pueden hacer realidad tus sueños.</p><p>Alcanza tu futuro con una sonrisa; ¡El éxito está ahí para ti!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','NUESTROS PENSAMIENTOS','','inherit','closed','closed','','215-revision-v1','','','2023-04-30 14:45:59','2023-04-30 14:45:59','',215,'https://divyayogamonteregie.org/ca/?p=216',0,'revision','',0),(217,1,'2023-04-30 14:46:23','2023-04-30 14:46:23','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>MI ZONA DE CONFORT</h1>		\n		<p>Solía tener una zona de confort donde sabía que no fallaría.<br />Las mismas cuatro paredes y el trabajo ocupado eran realmente más como la cárcel.</p><p>Anhelaba tanto hacer las cosas que nunca había hecho antes,<br />pero me quedé dentro de mi zona de confort y caminé por el mismo piso de siempre.</p><p>Decía estar tan ocupado con las cosas dentro de la zona,<br />pero en el fondo anhelaba algo especial propio.</p><p>No podía dejar pasar mi vida simplemente viendo ganar a otros.<br />Contuve la respiración; Salí y dejé que comenzara el cambio.<br />Di un paso y con nuevas fuerzas que nunca antes había sentido,<br />me despedí de mi zona de confort y cerré y cerré la puerta.</p><p>Si estás en una zona de confort, temeroso de aventurarte,<br />recuerda que todos los ganadores estuvieron en algún momento llenos de dudas.<br />Un paso o dos y la fuerza de voluntad pueden hacer realidad tus sueños.</p><p>Alcanza tu futuro con una sonrisa; ¡El éxito está ahí para ti!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Nuestros Pensamientos','','inherit','closed','closed','','215-revision-v1','','','2023-04-30 14:46:23','2023-04-30 14:46:23','',215,'https://divyayogamonteregie.org/ca/?p=217',0,'revision','',0),(218,1,'2023-04-30 14:48:13','2023-04-30 14:48:13','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>MI ZONA DE CONFORT</h1>		\n		<p>Solía tener una zona de confort donde sabía que no fallaría.<br />Las mismas cuatro paredes y el trabajo ocupado eran realmente más como la cárcel.</p><p>Anhelaba tanto hacer las cosas que nunca había hecho antes,<br />pero me quedé dentro de mi zona de confort y caminé por el mismo piso de siempre.</p><p>Decía estar tan ocupado con las cosas dentro de la zona,<br />pero en el fondo anhelaba algo especial propio.</p><p>No podía dejar pasar mi vida simplemente viendo ganar a otros.<br />Contuve la respiración; Salí y dejé que comenzara el cambio.<br />Di un paso y con nuevas fuerzas que nunca antes había sentido,<br />me despedí de mi zona de confort y cerré y cerré la puerta.</p><p>Si estás en una zona de confort, temeroso de aventurarte,<br />recuerda que todos los ganadores estuvieron en algún momento llenos de dudas.<br />Un paso o dos y la fuerza de voluntad pueden hacer realidad tus sueños.</p><p>Alcanza tu futuro con una sonrisa; ¡El éxito está ahí para ti!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Nuestros Pensamientos','','inherit','closed','closed','','215-revision-v1','','','2023-04-30 14:48:13','2023-04-30 14:48:13','',215,'https://divyayogamonteregie.org/ca/?p=218',0,'revision','',0),(219,1,'2023-04-30 14:48:13','2023-04-30 14:48:13','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>MI ZONA DE CONFORT</h1>		\n		<p>Solía tener una zona de confort donde sabía que no fallaría.<br />Las mismas cuatro paredes y el trabajo ocupado eran realmente más como la cárcel.</p><p>Anhelaba tanto hacer las cosas que nunca había hecho antes,<br />pero me quedé dentro de mi zona de confort y caminé por el mismo piso de siempre.</p><p>Decía estar tan ocupado con las cosas dentro de la zona,<br />pero en el fondo anhelaba algo especial propio.</p><p>No podía dejar pasar mi vida simplemente viendo ganar a otros.<br />Contuve la respiración; Salí y dejé que comenzara el cambio.<br />Di un paso y con nuevas fuerzas que nunca antes había sentido,<br />me despedí de mi zona de confort y cerré y cerré la puerta.</p><p>Si estás en una zona de confort, temeroso de aventurarte,<br />recuerda que todos los ganadores estuvieron en algún momento llenos de dudas.<br />Un paso o dos y la fuerza de voluntad pueden hacer realidad tus sueños.</p><p>Alcanza tu futuro con una sonrisa; ¡El éxito está ahí para ti!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Nuestros Pensamientos','','inherit','closed','closed','','215-revision-v1','','','2023-04-30 14:48:13','2023-04-30 14:48:13','',215,'https://divyayogamonteregie.org/ca/?p=219',0,'revision','',0),(221,1,'2023-05-24 02:49:49','2023-04-30 14:49:16',' ','','','publish','closed','closed','','221','','','2023-05-24 02:49:49','2023-05-24 02:49:49','',0,'https://divyayogamonteregie.org/ca/?p=221',8,'nav_menu_item','',0),(222,1,'2023-05-24 02:49:49','2023-04-30 14:49:17',' ','','','publish','closed','closed','','222','','','2023-05-24 02:49:49','2023-05-24 02:49:49','',0,'https://divyayogamonteregie.org/ca/?p=222',9,'nav_menu_item','',0),(223,1,'2023-04-30 14:49:32','2023-04-30 14:49:32','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMISE YOURSELF</h1>		\n		<p align=\"center\">(one the most classic motivational poems)</p><p align=\"center\">Promise yourself to be so strong that nothing can<br />disturb your peace of mind.</p><p align=\"center\">To talk health, happiness, and prosperity to<br />every person you meet.</p><p align=\"center\">To make all your friends feel like there is<br />something in them.</p><p align=\"center\">To look at the sunny side of everything and make your<br />optimism come true.</p><p align=\"center\">To think only of the best, to work only for the best,<br />and expect only the best.</p><p align=\"center\">To be just as enthusiastic about the success of others<br />as you are about your own.</p><p align=\"center\">To forget the mistakes of the past and press on the<br />greater achievements of the future.</p><p align=\"center\">To wear a cheerful countenance at all times and give<br />every living person you meet a smile.</p><p align=\"center\">To give so much time to the improvement of yourself<br />that you have no time to criticize others.</p><p align=\"center\">To be too large for worry, too noble for anger, and too<br />strong for fear, and too happy to permit the<br />presence of trouble.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Promise Yourself','','publish','closed','closed','','promise-yourself','','','2023-06-14 18:34:39','2023-06-14 18:34:39','',0,'https://divyayogamonteregie.org/ca/?page_id=223',0,'page','',0),(224,1,'2023-04-30 14:49:53','2023-04-30 14:49:53','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>NUESTROS PENSAMIENTOS</h1>		\n		<p>Mantén tus pensamientos positivos,</p><p>Porque los pensamientos se convierten en tus palabras.</p><p>Mantén tus palabras positivas</p><p>Porque las palabras se convierten en tu acción.</p><p>Mantén tu acción positiva</p><p>Porque tu acción se convierte en tu hábito.</p><p>Mantén tu hábito positivo,</p><p>Porque tu hábito se convierte en tu estilo de vida.</p><p>Mantén tu estilo de vida positivo,</p><p>Porque tu estilo de vida se convierte en tu destino.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Prométete a ti mismo','','inherit','closed','closed','','223-revision-v1','','','2023-04-30 14:49:53','2023-04-30 14:49:53','',223,'https://divyayogamonteregie.org/ca/?p=224',0,'revision','',0),(225,1,'2023-04-30 14:52:08','2023-04-30 14:52:08','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>NUESTROS PENSAMIENTOS</h1>		\n		<p>Mantén tus pensamientos positivos,</p><p>Porque los pensamientos se convierten en tus palabras.</p><p>Mantén tus palabras positivas</p><p>Porque las palabras se convierten en tu acción.</p><p>Mantén tu acción positiva</p><p>Porque tu acción se convierte en tu hábito.</p><p>Mantén tu hábito positivo,</p><p>Porque tu hábito se convierte en tu estilo de vida.</p><p>Mantén tu estilo de vida positivo,</p><p>Porque tu estilo de vida se convierte en tu destino.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Prométete a ti mismo','','inherit','closed','closed','','223-revision-v1','','','2023-04-30 14:52:08','2023-04-30 14:52:08','',223,'https://divyayogamonteregie.org/ca/?p=225',0,'revision','',0),(226,1,'2023-04-30 14:52:08','2023-04-30 14:52:08','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>NUESTROS PENSAMIENTOS</h1>		\n		<p>Mantén tus pensamientos positivos,</p><p>Porque los pensamientos se convierten en tus palabras.</p><p>Mantén tus palabras positivas</p><p>Porque las palabras se convierten en tu acción.</p><p>Mantén tu acción positiva</p><p>Porque tu acción se convierte en tu hábito.</p><p>Mantén tu hábito positivo,</p><p>Porque tu hábito se convierte en tu estilo de vida.</p><p>Mantén tu estilo de vida positivo,</p><p>Porque tu estilo de vida se convierte en tu destino.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Prométete a ti mismo','','inherit','closed','closed','','223-revision-v1','','','2023-04-30 14:52:08','2023-04-30 14:52:08','',223,'https://divyayogamonteregie.org/ca/?p=226',0,'revision','',0),(227,1,'2023-04-30 14:52:08','2023-04-30 14:52:08','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMETETE A TI MISMO</h1>		\n		<p>(uno de los poemas motivacionales más clásicos)</p><p>Prométete a ti mismo ser tan fuerte que nada pueda<br />perturbar tu tranquilidad.</p><p>Para hablar de salud, felicidad y prosperidad a<br />cada persona que conozcas.</p><p>Para hacer que todos tus amigos sientan que hay<br />algo en ellos.</p><p>Para mirar el lado soleado de todo y hacer realidad tu<br />optimismo.</p><p>Pensar sólo en lo mejor, trabajar sólo para lo mejor,<br />y esperar sólo lo mejor.</p><p>Estar tan entusiasmado con el éxito de los demás<br />como lo eres con el tuyo propio.</p><p>Olvidar los errores del pasado y presionar sobre los<br />mayores logros del futuro.</p><p>Llevar un semblante alegre en todo momento y dar<br />una sonrisa a cada persona viva que conozcas.</p><p>Dedicar tanto tiempo a la mejora de ti mismo<br />que no tengas tiempo para criticar a los demás.</p><p>Ser demasiado grande para la preocupación, demasiado noble para la ira, y demasiado fuerte para el miedo, y demasiado<br />feliz para permitir la<br />presencia de problemas.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Prométete a ti mismo','','inherit','closed','closed','','223-revision-v1','','','2023-04-30 14:52:08','2023-04-30 14:52:08','',223,'https://divyayogamonteregie.org/ca/?p=227',0,'revision','',0),(228,1,'2023-04-30 14:52:37','2023-04-30 14:52:37','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMISE YOURSELF -NOW</h1>		\n		<p align=\"center\">Of all the things you can do,</p><p align=\"center\">promise yourself you will try.</p><p align=\"center\">It doesn\'t even matter if you win,</p><p align=\"center\">as long as you apply.</p><p align=\"center\"> </p><p align=\"center\">No one can ask anything of you except yourself.</p><p align=\"center\">If you don\'t want to make a move,</p><p align=\"center\">it\'s you who\'ll be left out.</p><p align=\"center\"> </p><p align=\"center\">So don\'t allow yourself to miss out on important things.</p><p align=\"center\">You may not feel that they are worthy,</p><p align=\"center\">yet they can turn out to be your wings.</p><p align=\"center\"> </p><p align=\"center\">Experiences make us whole,</p><p align=\"center\">and make life feel fulfilled.</p><p align=\"center\">And when it\'s time to look back,</p><p align=\"center\">don\'t let yourself feel unskilled.</p><p align=\"center\"> </p><p align=\"center\">So don\'t allow yourself to stop,</p><p align=\"center\">for no apparent reason.</p><p align=\"center\">Promise yourself you will try,</p><p align=\"center\">and take on any season.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Promise Yourself-now.','','publish','closed','closed','','promise-yourself-now','','','2023-06-14 18:36:47','2023-06-14 18:36:47','',0,'https://divyayogamonteregie.org/ca/?page_id=228',0,'page','',0),(232,1,'2023-04-30 14:53:49','2023-04-30 14:53:49','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMETETE A TI MISMO, AHORA</h1>		\n		<p>De todas las cosas que puedes hacer,</p><p>Prométete a ti mismo que lo intentarás.</p><p>Ni siquiera importa si ganas,</p><p>siempre y cuando lo solicites.</p><p>Nadie puede pedirte nada excepto a ti mismo.</p><p>Si no quieres hacer un movimiento,</p><p>Eres tú quien se quedará fuera.</p><p>Así que no te permitas perderte cosas importantes.</p><p>Puede que no sientas que son dignos,</p><p>Sin embargo, pueden llegar a ser tus alas.</p><p>Las experiencias nos hacen completos,</p><p>y hacer que la vida se sienta plena.</p><p>Y cuando llega el momento de mirar hacia atrás,</p><p>No te dejes sentir inexperto.</p><p>Así que no te permitas parar,</p><p>sin razón aparente.</p><p>Prométete a ti mismo que lo intentarás,</p><p>y enfréntate a cualquier temporada.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Prométete a ti mismo, Ahora','','inherit','closed','closed','','228-revision-v1','','','2023-04-30 14:53:49','2023-04-30 14:53:49','',228,'https://divyayogamonteregie.org/ca/?p=232',0,'revision','',0),(229,1,'2023-04-30 14:53:13','2023-04-30 14:53:13','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMETETE A TI MISMO</h1>		\n		<p>(uno de los poemas motivacionales más clásicos)</p><p>Prométete a ti mismo ser tan fuerte que nada pueda<br />perturbar tu tranquilidad.</p><p>Para hablar de salud, felicidad y prosperidad a<br />cada persona que conozcas.</p><p>Para hacer que todos tus amigos sientan que hay<br />algo en ellos.</p><p>Para mirar el lado soleado de todo y hacer realidad tu<br />optimismo.</p><p>Pensar sólo en lo mejor, trabajar sólo para lo mejor,<br />y esperar sólo lo mejor.</p><p>Estar tan entusiasmado con el éxito de los demás<br />como lo eres con el tuyo propio.</p><p>Olvidar los errores del pasado y presionar sobre los<br />mayores logros del futuro.</p><p>Llevar un semblante alegre en todo momento y dar<br />una sonrisa a cada persona viva que conozcas.</p><p>Dedicar tanto tiempo a la mejora de ti mismo<br />que no tengas tiempo para criticar a los demás.</p><p>Ser demasiado grande para la preocupación, demasiado noble para la ira, y demasiado fuerte para el miedo, y demasiado<br />feliz para permitir la<br />presencia de problemas.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Prométete a ti mismo, Ahora','','inherit','closed','closed','','228-revision-v1','','','2023-04-30 14:53:13','2023-04-30 14:53:13','',228,'https://divyayogamonteregie.org/ca/?p=229',0,'revision','',0),(230,1,'2023-04-30 14:53:48','2023-04-30 14:53:48','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMETETE A TI MISMO</h1>		\n		<p>(uno de los poemas motivacionales más clásicos)</p><p>Prométete a ti mismo ser tan fuerte que nada pueda<br />perturbar tu tranquilidad.</p><p>Para hablar de salud, felicidad y prosperidad a<br />cada persona que conozcas.</p><p>Para hacer que todos tus amigos sientan que hay<br />algo en ellos.</p><p>Para mirar el lado soleado de todo y hacer realidad tu<br />optimismo.</p><p>Pensar sólo en lo mejor, trabajar sólo para lo mejor,<br />y esperar sólo lo mejor.</p><p>Estar tan entusiasmado con el éxito de los demás<br />como lo eres con el tuyo propio.</p><p>Olvidar los errores del pasado y presionar sobre los<br />mayores logros del futuro.</p><p>Llevar un semblante alegre en todo momento y dar<br />una sonrisa a cada persona viva que conozcas.</p><p>Dedicar tanto tiempo a la mejora de ti mismo<br />que no tengas tiempo para criticar a los demás.</p><p>Ser demasiado grande para la preocupación, demasiado noble para la ira, y demasiado fuerte para el miedo, y demasiado<br />feliz para permitir la<br />presencia de problemas.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Prométete a ti mismo, Ahora','','inherit','closed','closed','','228-revision-v1','','','2023-04-30 14:53:48','2023-04-30 14:53:48','',228,'https://divyayogamonteregie.org/ca/?p=230',0,'revision','',0),(231,1,'2023-04-30 14:53:48','2023-04-30 14:53:48','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMETETE A TI MISMO</h1>		\n		<p>(uno de los poemas motivacionales más clásicos)</p><p>Prométete a ti mismo ser tan fuerte que nada pueda<br />perturbar tu tranquilidad.</p><p>Para hablar de salud, felicidad y prosperidad a<br />cada persona que conozcas.</p><p>Para hacer que todos tus amigos sientan que hay<br />algo en ellos.</p><p>Para mirar el lado soleado de todo y hacer realidad tu<br />optimismo.</p><p>Pensar sólo en lo mejor, trabajar sólo para lo mejor,<br />y esperar sólo lo mejor.</p><p>Estar tan entusiasmado con el éxito de los demás<br />como lo eres con el tuyo propio.</p><p>Olvidar los errores del pasado y presionar sobre los<br />mayores logros del futuro.</p><p>Llevar un semblante alegre en todo momento y dar<br />una sonrisa a cada persona viva que conozcas.</p><p>Dedicar tanto tiempo a la mejora de ti mismo<br />que no tengas tiempo para criticar a los demás.</p><p>Ser demasiado grande para la preocupación, demasiado noble para la ira, y demasiado fuerte para el miedo, y demasiado<br />feliz para permitir la<br />presencia de problemas.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Prométete a ti mismo, Ahora','','inherit','closed','closed','','228-revision-v1','','','2023-04-30 14:53:48','2023-04-30 14:53:48','',228,'https://divyayogamonteregie.org/ca/?p=231',0,'revision','',0),(233,1,'2023-05-24 02:49:49','2023-04-30 14:54:53',' ','','','publish','closed','closed','','233','','','2023-05-24 02:49:49','2023-05-24 02:49:49','',0,'https://divyayogamonteregie.org/ca/?p=233',11,'nav_menu_item','',0),(234,1,'2023-05-24 02:49:49','2023-04-30 14:54:53',' ','','','publish','closed','closed','','234','','','2023-05-24 02:49:49','2023-05-24 02:49:49','',0,'https://divyayogamonteregie.org/ca/?p=234',10,'nav_menu_item','',0),(235,1,'2023-04-30 14:55:28','2023-04-30 14:55:28','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>START WHERE YOU STAND</h1>		\n		<p align=\"center\">By Berton Braley</p><p align=\"center\">Start where you stand and never mind the past,<br />The past won\'t help you in beginning new,<br />If you have left it all behind at last<br />Why, that\'s enough, you\'re done with it, you\'re through;<br />This is another chapter in the book,<br />This is another race that you have planned,<br />Don\'t give the vanished days a backward look,<br />Start where you stand.</p><p align=\"center\">The world won\'t care about your old defeats<br />If you can start anew and win success;<br />The future is your time, and time is fleet<br />And there is much of work and strain and stress;<br />Forget the buried woes and dead despairs,<br />Here is a brand-new trial right at hand,<br />The future is for him who does and dares,<br />Start where you stand.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Start Where You Stand','','publish','closed','closed','','start-where-you-stand','','','2023-06-14 18:38:16','2023-06-14 18:38:16','',0,'https://divyayogamonteregie.org/ca/?page_id=235',0,'page','',0),(236,1,'2023-04-30 14:55:54','2023-04-30 14:55:54','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMETETE A TI MISMO, AHORA</h1>		\n		<p>De todas las cosas que puedes hacer,</p><p>Prométete a ti mismo que lo intentarás.</p><p>Ni siquiera importa si ganas,</p><p>siempre y cuando lo solicites.</p><p>Nadie puede pedirte nada excepto a ti mismo.</p><p>Si no quieres hacer un movimiento,</p><p>Eres tú quien se quedará fuera.</p><p>Así que no te permitas perderte cosas importantes.</p><p>Puede que no sientas que son dignos,</p><p>Sin embargo, pueden llegar a ser tus alas.</p><p>Las experiencias nos hacen completos,</p><p>y hacer que la vida se sienta plena.</p><p>Y cuando llega el momento de mirar hacia atrás,</p><p>No te dejes sentir inexperto.</p><p>Así que no te permitas parar,</p><p>sin razón aparente.</p><p>Prométete a ti mismo que lo intentarás,</p><p>y enfréntate a cualquier temporada.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Comience donde se encuentra','','inherit','closed','closed','','235-revision-v1','','','2023-04-30 14:55:54','2023-04-30 14:55:54','',235,'https://divyayogamonteregie.org/ca/?p=236',0,'revision','',0),(237,1,'2023-04-30 14:59:20','2023-04-30 14:59:20','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMETETE A TI MISMO, AHORA</h1>		\n		<p>De todas las cosas que puedes hacer,</p><p>Prométete a ti mismo que lo intentarás.</p><p>Ni siquiera importa si ganas,</p><p>siempre y cuando lo solicites.</p><p>Nadie puede pedirte nada excepto a ti mismo.</p><p>Si no quieres hacer un movimiento,</p><p>Eres tú quien se quedará fuera.</p><p>Así que no te permitas perderte cosas importantes.</p><p>Puede que no sientas que son dignos,</p><p>Sin embargo, pueden llegar a ser tus alas.</p><p>Las experiencias nos hacen completos,</p><p>y hacer que la vida se sienta plena.</p><p>Y cuando llega el momento de mirar hacia atrás,</p><p>No te dejes sentir inexperto.</p><p>Así que no te permitas parar,</p><p>sin razón aparente.</p><p>Prométete a ti mismo que lo intentarás,</p><p>y enfréntate a cualquier temporada.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Comience donde se encuentra','','inherit','closed','closed','','235-revision-v1','','','2023-04-30 14:59:20','2023-04-30 14:59:20','',235,'https://divyayogamonteregie.org/ca/?p=237',0,'revision','',0),(238,1,'2023-04-30 14:59:21','2023-04-30 14:59:21','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMETETE A TI MISMO, AHORA</h1>		\n		<p>De todas las cosas que puedes hacer,</p><p>Prométete a ti mismo que lo intentarás.</p><p>Ni siquiera importa si ganas,</p><p>siempre y cuando lo solicites.</p><p>Nadie puede pedirte nada excepto a ti mismo.</p><p>Si no quieres hacer un movimiento,</p><p>Eres tú quien se quedará fuera.</p><p>Así que no te permitas perderte cosas importantes.</p><p>Puede que no sientas que son dignos,</p><p>Sin embargo, pueden llegar a ser tus alas.</p><p>Las experiencias nos hacen completos,</p><p>y hacer que la vida se sienta plena.</p><p>Y cuando llega el momento de mirar hacia atrás,</p><p>No te dejes sentir inexperto.</p><p>Así que no te permitas parar,</p><p>sin razón aparente.</p><p>Prométete a ti mismo que lo intentarás,</p><p>y enfréntate a cualquier temporada.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Comience donde se encuentra','','inherit','closed','closed','','235-revision-v1','','','2023-04-30 14:59:21','2023-04-30 14:59:21','',235,'https://divyayogamonteregie.org/ca/?p=238',0,'revision','',0),(239,1,'2023-04-30 14:59:21','2023-04-30 14:59:21','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>COMIENCE DONDE SE ENCUENTRA</h1>		\n		<p>Por Berton Braley</p><p>Comienza donde estás parado y no te preocupes por el pasado, El pasado no te ayudará a comenzar de nuevo, Si lo has dejado todo atrás por fin<br />Por qué, eso es suficiente, has terminado con eso,<br /><br />has terminado;<br />Este es otro capítulo del libro, Esta es otra carrera que has planeado, No mires hacia atrás los días desaparecidos,<br /><br /><br />Comienza donde estás parado.</p><p>Al mundo no le importarán tus viejas derrotas<br />Si puedes comenzar de nuevo y ganar el éxito;<br />El futuro es tu tiempo, y el tiempo es flota<br />Y hay mucho trabajo, tensión y estrés;<br />Olvídate de los males enterrados y las desesperaciones muertas, Aquí hay una nueva prueba a la mano, El futuro es para el que hace y se atreve,<br /><br /><br />Comienza donde estás parado.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Comience donde se encuentra','','inherit','closed','closed','','235-revision-v1','','','2023-04-30 14:59:21','2023-04-30 14:59:21','',235,'https://divyayogamonteregie.org/ca/?p=239',0,'revision','',0),(240,1,'2023-05-24 02:49:49','2023-04-30 15:00:19',' ','','','publish','closed','closed','','240','','','2023-05-24 02:49:49','2023-05-24 02:49:49','',0,'https://divyayogamonteregie.org/ca/?p=240',12,'nav_menu_item','',0),(241,1,'2023-04-30 15:08:47','2023-04-30 15:08:47','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODAY I</h1>		\n		<p align=\"center\">Today I have decided,</p><p align=\"center\">that it\'s time to take control.</p><p align=\"center\">There won\'t be anymore sitting,</p><p align=\"center\">and waiting, this is my goal.</p><p align=\"center\"> </p><p align=\"center\">Today I see it so clearly,</p><p align=\"center\">I am all that I have.</p><p align=\"center\">If I want to get something done,</p><p align=\"center\">it\'s up to me to pave my own path.</p><p align=\"center\"> </p><p align=\"center\">Today I will set my goal,</p><p align=\"center\">and work to see it through.</p><p align=\"center\">I\'m tired of being afraid,</p><p align=\"center\">it\'s time for my dreams to come true.</p><p align=\"center\"> </p><p align=\"center\">Today I am quite happy,</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Today I','','publish','closed','closed','','today-i','','','2023-06-14 18:40:23','2023-06-14 18:40:23','',0,'https://divyayogamonteregie.org/ca/?page_id=241',0,'page','',0),(245,1,'2023-04-30 15:09:51','2023-04-30 15:09:51','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HOY</h1>		\n		<p>Hoy he decidido,</p><p>que es hora de tomar el control.</p><p>No habrá más sentado,</p><p>Y esperando, este es mi objetivo.</p><p>Hoy lo veo tan claramente,</p><p>Soy todo lo que tengo.</p><p>Si quiero hacer algo,</p><p>Depende de mí allanar mi propio camino.</p><p>Hoy voy a establecer mi meta,</p><p>y trabajar para llevarlo a cabo.</p><p>Estoy cansado de tener miedo,</p><p>Es hora de que mis sueños se hagan realidad.</p><p>Hoy estoy bastante feliz.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Hoy','','inherit','closed','closed','','241-revision-v1','','','2023-04-30 15:09:51','2023-04-30 15:09:51','',241,'https://divyayogamonteregie.org/ca/?p=245',0,'revision','',0),(242,1,'2023-04-30 15:09:13','2023-04-30 15:09:13','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>COMIENCE DONDE SE ENCUENTRA</h1>		\n		<p>Por Berton Braley</p><p>Comienza donde estás parado y no te preocupes por el pasado, El pasado no te ayudará a comenzar de nuevo, Si lo has dejado todo atrás por fin<br />Por qué, eso es suficiente, has terminado con eso,<br /><br />has terminado;<br />Este es otro capítulo del libro, Esta es otra carrera que has planeado, No mires hacia atrás los días desaparecidos,<br /><br /><br />Comienza donde estás parado.</p><p>Al mundo no le importarán tus viejas derrotas<br />Si puedes comenzar de nuevo y ganar el éxito;<br />El futuro es tu tiempo, y el tiempo es flota<br />Y hay mucho trabajo, tensión y estrés;<br />Olvídate de los males enterrados y las desesperaciones muertas, Aquí hay una nueva prueba a la mano, El futuro es para el que hace y se atreve,<br /><br /><br />Comienza donde estás parado.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Hoy','','inherit','closed','closed','','241-revision-v1','','','2023-04-30 15:09:13','2023-04-30 15:09:13','',241,'https://divyayogamonteregie.org/ca/?p=242',0,'revision','',0),(243,1,'2023-04-30 15:09:51','2023-04-30 15:09:51','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>COMIENCE DONDE SE ENCUENTRA</h1>		\n		<p>Por Berton Braley</p><p>Comienza donde estás parado y no te preocupes por el pasado, El pasado no te ayudará a comenzar de nuevo, Si lo has dejado todo atrás por fin<br />Por qué, eso es suficiente, has terminado con eso,<br /><br />has terminado;<br />Este es otro capítulo del libro, Esta es otra carrera que has planeado, No mires hacia atrás los días desaparecidos,<br /><br /><br />Comienza donde estás parado.</p><p>Al mundo no le importarán tus viejas derrotas<br />Si puedes comenzar de nuevo y ganar el éxito;<br />El futuro es tu tiempo, y el tiempo es flota<br />Y hay mucho trabajo, tensión y estrés;<br />Olvídate de los males enterrados y las desesperaciones muertas, Aquí hay una nueva prueba a la mano, El futuro es para el que hace y se atreve,<br /><br /><br />Comienza donde estás parado.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Hoy','','inherit','closed','closed','','241-revision-v1','','','2023-04-30 15:09:51','2023-04-30 15:09:51','',241,'https://divyayogamonteregie.org/ca/?p=243',0,'revision','',0),(244,1,'2023-04-30 15:09:51','2023-04-30 15:09:51','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>COMIENCE DONDE SE ENCUENTRA</h1>		\n		<p>Por Berton Braley</p><p>Comienza donde estás parado y no te preocupes por el pasado, El pasado no te ayudará a comenzar de nuevo, Si lo has dejado todo atrás por fin<br />Por qué, eso es suficiente, has terminado con eso,<br /><br />has terminado;<br />Este es otro capítulo del libro, Esta es otra carrera que has planeado, No mires hacia atrás los días desaparecidos,<br /><br /><br />Comienza donde estás parado.</p><p>Al mundo no le importarán tus viejas derrotas<br />Si puedes comenzar de nuevo y ganar el éxito;<br />El futuro es tu tiempo, y el tiempo es flota<br />Y hay mucho trabajo, tensión y estrés;<br />Olvídate de los males enterrados y las desesperaciones muertas, Aquí hay una nueva prueba a la mano, El futuro es para el que hace y se atreve,<br /><br /><br />Comienza donde estás parado.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Hoy','','inherit','closed','closed','','241-revision-v1','','','2023-04-30 15:09:51','2023-04-30 15:09:51','',241,'https://divyayogamonteregie.org/ca/?p=244',0,'revision','',0),(246,1,'2023-04-30 15:12:03','2023-04-30 15:12:03','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>YOU POSSESS TEHE ENERGY</h1>		\n		<p style=\"text-align: center;\" align=\"center\">Like attracts like.</p><p style=\"text-align: center;\" align=\"center\">If you feel defeated, you will be.</p><p style=\"text-align: center;\" align=\"center\">If you are weary, you will lose momentum.</p><p style=\"text-align: center;\" align=\"center\">If you are of joyful focus, the negative will have no choice but to recede.</p><p style=\"text-align: center;\" align=\"center\">Decide to laugh in the face of adversity.</p><p style=\"text-align: center;\" align=\"center\">Know you are powerful enough to supersede all difficulty.</p><p style=\"text-align: center;\" align=\"center\">Do not let your thoughts wander.</p><p style=\"text-align: center;\" align=\"center\">Be powerful.</p><p style=\"text-align: center;\" align=\"center\">Know yourself.</p><p style=\"text-align: center;\" align=\"center\"> Decide to be in control of your reality.</p><p style=\"text-align: center;\" align=\"center\">There are no victims except those who have given up their power.</p><p style=\"text-align: center;\" align=\"center\">You possess the energy, create and take control of your destiny</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','You Possess The Energy','','publish','closed','closed','','you-possess-the-energy','','','2023-06-14 18:42:59','2023-06-14 18:42:59','',0,'https://divyayogamonteregie.org/ca/?page_id=246',0,'page','',0),(247,1,'2023-04-30 15:12:22','2023-04-30 15:12:22','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HOY</h1>		\n		<p>Hoy he decidido,</p><p>que es hora de tomar el control.</p><p>No habrá más sentado,</p><p>Y esperando, este es mi objetivo.</p><p>Hoy lo veo tan claramente,</p><p>Soy todo lo que tengo.</p><p>Si quiero hacer algo,</p><p>Depende de mí allanar mi propio camino.</p><p>Hoy voy a establecer mi meta,</p><p>y trabajar para llevarlo a cabo.</p><p>Estoy cansado de tener miedo,</p><p>Es hora de que mis sueños se hagan realidad.</p><p>Hoy estoy bastante feliz.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Tú posees la energía','','inherit','closed','closed','','246-revision-v1','','','2023-04-30 15:12:22','2023-04-30 15:12:22','',246,'https://divyayogamonteregie.org/ca/?p=247',0,'revision','',0),(248,1,'2023-04-30 15:12:58','2023-04-30 15:12:58','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HOY</h1>		\n		<p>Hoy he decidido,</p><p>que es hora de tomar el control.</p><p>No habrá más sentado,</p><p>Y esperando, este es mi objetivo.</p><p>Hoy lo veo tan claramente,</p><p>Soy todo lo que tengo.</p><p>Si quiero hacer algo,</p><p>Depende de mí allanar mi propio camino.</p><p>Hoy voy a establecer mi meta,</p><p>y trabajar para llevarlo a cabo.</p><p>Estoy cansado de tener miedo,</p><p>Es hora de que mis sueños se hagan realidad.</p><p>Hoy estoy bastante feliz.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Tú posees la energía','','inherit','closed','closed','','246-revision-v1','','','2023-04-30 15:12:58','2023-04-30 15:12:58','',246,'https://divyayogamonteregie.org/ca/?p=248',0,'revision','',0),(249,1,'2023-04-30 15:12:58','2023-04-30 15:12:58','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HOY</h1>		\n		<p>Hoy he decidido,</p><p>que es hora de tomar el control.</p><p>No habrá más sentado,</p><p>Y esperando, este es mi objetivo.</p><p>Hoy lo veo tan claramente,</p><p>Soy todo lo que tengo.</p><p>Si quiero hacer algo,</p><p>Depende de mí allanar mi propio camino.</p><p>Hoy voy a establecer mi meta,</p><p>y trabajar para llevarlo a cabo.</p><p>Estoy cansado de tener miedo,</p><p>Es hora de que mis sueños se hagan realidad.</p><p>Hoy estoy bastante feliz.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Tú posees la energía','','inherit','closed','closed','','246-revision-v1','','','2023-04-30 15:12:58','2023-04-30 15:12:58','',246,'https://divyayogamonteregie.org/ca/?p=249',0,'revision','',0),(250,1,'2023-04-30 15:12:58','2023-04-30 15:12:58','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TU POSEES LA ENERGIA</h1>		\n		<p>Hoy he decidido,</p><p>que es hora de tomar el control.</p><p>No habrá más sentado,</p><p>Y esperando, este es mi objetivo.</p><p>Hoy lo veo tan claramente,</p><p>Soy todo lo que tengo.</p><p>Si quiero hacer algo,</p><p>Depende de mí allanar mi propio camino.</p><p>Hoy voy a establecer mi meta,</p><p>y trabajar para llevarlo a cabo.</p><p>Estoy cansado de tener miedo,</p><p>Es hora de que mis sueños se hagan realidad.</p><p>Hoy estoy bastante feliz.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Tú posees la energía','','inherit','closed','closed','','246-revision-v1','','','2023-04-30 15:12:58','2023-04-30 15:12:58','',246,'https://divyayogamonteregie.org/ca/?p=250',0,'revision','',0),(251,1,'2023-04-30 15:13:48','2023-04-30 15:13:48','','images (8)','','inherit','open','closed','','images-8','','','2023-04-30 15:13:48','2023-04-30 15:13:48','',246,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-8.jpeg',0,'attachment','image/jpeg',0),(252,1,'2023-04-30 15:13:58','2023-04-30 15:13:58','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TU POSEES LA ENERGIA</h1>		\n		<p>Hoy he decidido,</p><p>que es hora de tomar el control.</p><p>No habrá más sentado,</p><p>Y esperando, este es mi objetivo.</p><p>Hoy lo veo tan claramente,</p><p>Soy todo lo que tengo.</p><p>Si quiero hacer algo,</p><p>Depende de mí allanar mi propio camino.</p><p>Hoy voy a establecer mi meta,</p><p>y trabajar para llevarlo a cabo.</p><p>Estoy cansado de tener miedo,</p><p>Es hora de que mis sueños se hagan realidad.</p><p>Hoy estoy bastante feliz.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Tú posees la energía','','inherit','closed','closed','','246-revision-v1','','','2023-04-30 15:13:58','2023-04-30 15:13:58','',246,'https://divyayogamonteregie.org/ca/?p=252',0,'revision','',0),(253,1,'2023-04-30 15:13:58','2023-04-30 15:13:58','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TU POSEES LA ENERGIA</h1>		\n		<p>Hoy he decidido,</p><p>que es hora de tomar el control.</p><p>No habrá más sentado,</p><p>Y esperando, este es mi objetivo.</p><p>Hoy lo veo tan claramente,</p><p>Soy todo lo que tengo.</p><p>Si quiero hacer algo,</p><p>Depende de mí allanar mi propio camino.</p><p>Hoy voy a establecer mi meta,</p><p>y trabajar para llevarlo a cabo.</p><p>Estoy cansado de tener miedo,</p><p>Es hora de que mis sueños se hagan realidad.</p><p>Hoy estoy bastante feliz.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Tú posees la energía','','inherit','closed','closed','','246-revision-v1','','','2023-04-30 15:13:58','2023-04-30 15:13:58','',246,'https://divyayogamonteregie.org/ca/?p=253',0,'revision','',0),(254,1,'2023-04-30 15:13:59','2023-04-30 15:13:59','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TU POSEES LA ENERGIA</h1>		\n		<p>Lo semejante atrae a lo semejante.</p><p>Si te sientes derrotado, lo serás.</p><p>Si estás cansado, perderás impulso.</p><p>Si eres de enfoque alegre, lo negativo no tendrá más remedio que retroceder.</p><p>Decide reír ante la adversidad.</p><p>Sepa que es lo suficientemente poderoso como para superar toda dificultad.</p><p>No dejes que tus pensamientos divaguen.</p><p>Sé poderoso.</p><p>Conócete a ti mismo.</p><p>Decide tener el control de tu realidad.</p><p>No hay víctimas, excepto aquellos que han renunciado a su poder.</p><p>Posees la energía, creas y tomas el control de tu destino</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Tú posees la energía','','inherit','closed','closed','','246-revision-v1','','','2023-04-30 15:13:59','2023-04-30 15:13:59','',246,'https://divyayogamonteregie.org/ca/?p=254',0,'revision','',0),(255,1,'2023-05-24 02:49:49','2023-04-30 15:15:00',' ','','','publish','closed','closed','','255','','','2023-05-24 02:49:49','2023-05-24 02:49:49','',0,'https://divyayogamonteregie.org/ca/?p=255',14,'nav_menu_item','',0),(256,1,'2023-05-24 02:49:49','2023-04-30 15:15:00',' ','','','publish','closed','closed','','256','','','2023-05-24 02:49:49','2023-05-24 02:49:49','',0,'https://divyayogamonteregie.org/ca/?p=256',13,'nav_menu_item','',0),(257,1,'2023-04-30 15:16:24','2023-04-30 15:16:24','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODAY\'S DREAMS ARE TOMORROW\'S SUCCESSES</h1>		\n		<p align=\"center\">Don\'t be afraid of high hopes<br />or plans that seem to be out of reach.<br />Life is meant to be experienced,<br />and every situation allows for<br />learning and growth.</p><p align=\"center\">Motivation is a positive starting point,<br />and action places you on a forward path.<br />A dream is a blueprint<br />of a goal not yet achieved;<br />the only difference between the two<br />is the effort involved in attaining<br />what you hope to accomplish.</p><p align=\"center\">Let your mind and heart urge you on;<br />allow the power of your will<br />to lead you to your destination.</p><p align=\"center\">Don\'t count the steps ahead;<br />just add up the total<br />of steps already covered,<br />and multiply it by<br />faith, confidence, and endurance.</p><p align=\"center\">Always remember that<br />for those who persist,<br />today\'s dreams are transformed<br />into tomorrow\'s successes.</p><p align=\"center\">~ Kelly D. Caron ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Today\'s Dreams Are Tomorrow\'s Successes','','publish','closed','closed','','todays-dreams-are-tomorrows-successes','','','2023-06-14 18:45:07','2023-06-14 18:45:07','',0,'https://divyayogamonteregie.org/ca/?page_id=257',0,'page','',0),(258,1,'2023-04-30 15:16:48','2023-04-30 15:16:48','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TU POSEES LA ENERGIA</h1>		\n		<p>Lo semejante atrae a lo semejante.</p><p>Si te sientes derrotado, lo serás.</p><p>Si estás cansado, perderás impulso.</p><p>Si eres de enfoque alegre, lo negativo no tendrá más remedio que retroceder.</p><p>Decide reír ante la adversidad.</p><p>Sepa que es lo suficientemente poderoso como para superar toda dificultad.</p><p>No dejes que tus pensamientos divaguen.</p><p>Sé poderoso.</p><p>Conócete a ti mismo.</p><p>Decide tener el control de tu realidad.</p><p>No hay víctimas, excepto aquellos que han renunciado a su poder.</p><p>Posees la energía, creas y tomas el control de tu destino</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Los sueños de hoy son los éxitos de mañana','','inherit','closed','closed','','257-revision-v1','','','2023-04-30 15:16:48','2023-04-30 15:16:48','',257,'https://divyayogamonteregie.org/ca/?p=258',0,'revision','',0),(259,1,'2023-04-30 15:17:46','2023-04-30 15:17:46','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TU POSEES LA ENERGIA</h1>		\n		<p>Lo semejante atrae a lo semejante.</p><p>Si te sientes derrotado, lo serás.</p><p>Si estás cansado, perderás impulso.</p><p>Si eres de enfoque alegre, lo negativo no tendrá más remedio que retroceder.</p><p>Decide reír ante la adversidad.</p><p>Sepa que es lo suficientemente poderoso como para superar toda dificultad.</p><p>No dejes que tus pensamientos divaguen.</p><p>Sé poderoso.</p><p>Conócete a ti mismo.</p><p>Decide tener el control de tu realidad.</p><p>No hay víctimas, excepto aquellos que han renunciado a su poder.</p><p>Posees la energía, creas y tomas el control de tu destino</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Los sueños de hoy son los éxitos de mañana','','inherit','closed','closed','','257-revision-v1','','','2023-04-30 15:17:46','2023-04-30 15:17:46','',257,'https://divyayogamonteregie.org/ca/?p=259',0,'revision','',0),(260,1,'2023-04-30 15:17:47','2023-04-30 15:17:47','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TU POSEES LA ENERGIA</h1>		\n		<p>Lo semejante atrae a lo semejante.</p><p>Si te sientes derrotado, lo serás.</p><p>Si estás cansado, perderás impulso.</p><p>Si eres de enfoque alegre, lo negativo no tendrá más remedio que retroceder.</p><p>Decide reír ante la adversidad.</p><p>Sepa que es lo suficientemente poderoso como para superar toda dificultad.</p><p>No dejes que tus pensamientos divaguen.</p><p>Sé poderoso.</p><p>Conócete a ti mismo.</p><p>Decide tener el control de tu realidad.</p><p>No hay víctimas, excepto aquellos que han renunciado a su poder.</p><p>Posees la energía, creas y tomas el control de tu destino</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Los sueños de hoy son los éxitos de mañana','','inherit','closed','closed','','257-revision-v1','','','2023-04-30 15:17:47','2023-04-30 15:17:47','',257,'https://divyayogamonteregie.org/ca/?p=260',0,'revision','',0),(261,1,'2023-04-30 15:17:47','2023-04-30 15:17:47','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>LOS SUEÑOS DE HOY SON LOS EXITOS DE MAÑANA</h1>		\n		<p>No tengas miedo de grandes esperanzas<br />o planes que parecen estar fuera de tu alcance.<br />La vida está destinada a ser experimentada,<br />y cada situación permite el<br />aprendizaje y el crecimiento.</p><p>La motivación es un punto de partida positivo,<br />y la acción te coloca en un camino hacia adelante.<br />Un sueño es un plano<br />de una meta aún no alcanzada;<br />La única diferencia entre los dos<br />es el esfuerzo involucrado en lograr<br />lo que esperas lograr.</p><p>Deja que tu mente y tu corazón te impulsen;<br />Permite que el poder de tu voluntad<br />te lleve a tu destino.</p><p>No cuentes los pasos por delante;<br />Simplemente suma el total<br />de pasos ya cubiertos, y multiplícalo por<br />fe,<br />confianza y resistencia.</p><p>Recuerde siempre que para aquellos que<br />persisten,<br />los sueños de hoy se transforman<br />en éxitos de mañana.</p><p>~ Kelly D. Caron ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Los sueños de hoy son los éxitos de mañana','','inherit','closed','closed','','257-revision-v1','','','2023-04-30 15:17:47','2023-04-30 15:17:47','',257,'https://divyayogamonteregie.org/ca/?p=261',0,'revision','',0),(262,1,'2023-04-30 15:18:29','2023-04-30 15:18:29','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WITHIN YOU IS THE STENGHT TO MEET TO MEET LIFE\'S CHALLENGES !</h1>		\n		<p align=\"center\">You are stronger than you think,<br />remember to stand tall.</p><p align=\"center\">Every challenge in your life<br />helps you to grow.</p><p align=\"center\">Every problem you encounter<br />strengthens your mind and your soul.</p><p align=\"center\">Every trouble you overcome<br />increases your understanding of life.</p><p align=\"center\">When all your troubles weigh<br />heavily on your shoulders,<br />remember that beneath the burden<br />you can stand tall,<br />because you are never given<br />more than you can handle...<br />and you are stronger than you think</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Within You Is The Strength To Meet Life\'s Challenges !','','publish','closed','closed','','within-you-is-the-strength-to-meet-lifes-challenges','','','2023-06-14 18:47:03','2023-06-14 18:47:03','',0,'https://divyayogamonteregie.org/ca/?page_id=262',0,'page','',0),(266,1,'2023-04-30 15:19:26','2023-04-30 15:19:26','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>LOS SUEÑOS DE HOY SON LOS EXITOS DE MAÑANA</h1>		\n		<p>Eres más fuerte de lo que piensas,<br />recuerda mantenerte erguido.</p><p>Cada desafío en tu vida<br />te ayuda a crecer.</p><p>Cada problema que encuentras<br />fortalece tu mente y tu alma.</p><p>Cada problema que superas<br />aumenta tu comprensión de la vida.</p><p>Cuando todos tus problemas pesen<br />mucho sobre tus hombros, recuerda que debajo de la carga<br />puedes mantenerte erguido,<br /><br />porque nunca se te da<br />más de lo que puedes manejar ...<br />y eres más fuerte de lo que piensas.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','¡Dentro de ti está la fuerza para enfrentar los desafíos de la vida!','','inherit','closed','closed','','262-revision-v1','','','2023-04-30 15:19:26','2023-04-30 15:19:26','',262,'https://divyayogamonteregie.org/ca/?p=266',0,'revision','',0),(263,1,'2023-04-30 15:18:55','2023-04-30 15:18:55','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>LOS SUEÑOS DE HOY SON LOS EXITOS DE MAÑANA</h1>		\n		<p>No tengas miedo de grandes esperanzas<br />o planes que parecen estar fuera de tu alcance.<br />La vida está destinada a ser experimentada,<br />y cada situación permite el<br />aprendizaje y el crecimiento.</p><p>La motivación es un punto de partida positivo,<br />y la acción te coloca en un camino hacia adelante.<br />Un sueño es un plano<br />de una meta aún no alcanzada;<br />La única diferencia entre los dos<br />es el esfuerzo involucrado en lograr<br />lo que esperas lograr.</p><p>Deja que tu mente y tu corazón te impulsen;<br />Permite que el poder de tu voluntad<br />te lleve a tu destino.</p><p>No cuentes los pasos por delante;<br />Simplemente suma el total<br />de pasos ya cubiertos, y multiplícalo por<br />fe,<br />confianza y resistencia.</p><p>Recuerde siempre que para aquellos que<br />persisten,<br />los sueños de hoy se transforman<br />en éxitos de mañana.</p><p>~ Kelly D. Caron ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','¡Dentro de ti está la fuerza para enfrentar los desafíos de la vida!','','inherit','closed','closed','','262-revision-v1','','','2023-04-30 15:18:55','2023-04-30 15:18:55','',262,'https://divyayogamonteregie.org/ca/?p=263',0,'revision','',0),(264,1,'2023-04-30 15:19:26','2023-04-30 15:19:26','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>LOS SUEÑOS DE HOY SON LOS EXITOS DE MAÑANA</h1>		\n		<p>No tengas miedo de grandes esperanzas<br />o planes que parecen estar fuera de tu alcance.<br />La vida está destinada a ser experimentada,<br />y cada situación permite el<br />aprendizaje y el crecimiento.</p><p>La motivación es un punto de partida positivo,<br />y la acción te coloca en un camino hacia adelante.<br />Un sueño es un plano<br />de una meta aún no alcanzada;<br />La única diferencia entre los dos<br />es el esfuerzo involucrado en lograr<br />lo que esperas lograr.</p><p>Deja que tu mente y tu corazón te impulsen;<br />Permite que el poder de tu voluntad<br />te lleve a tu destino.</p><p>No cuentes los pasos por delante;<br />Simplemente suma el total<br />de pasos ya cubiertos, y multiplícalo por<br />fe,<br />confianza y resistencia.</p><p>Recuerde siempre que para aquellos que<br />persisten,<br />los sueños de hoy se transforman<br />en éxitos de mañana.</p><p>~ Kelly D. Caron ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','¡Dentro de ti está la fuerza para enfrentar los desafíos de la vida!','','inherit','closed','closed','','262-revision-v1','','','2023-04-30 15:19:26','2023-04-30 15:19:26','',262,'https://divyayogamonteregie.org/ca/?p=264',0,'revision','',0),(265,1,'2023-04-30 15:19:26','2023-04-30 15:19:26','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>LOS SUEÑOS DE HOY SON LOS EXITOS DE MAÑANA</h1>		\n		<p>No tengas miedo de grandes esperanzas<br />o planes que parecen estar fuera de tu alcance.<br />La vida está destinada a ser experimentada,<br />y cada situación permite el<br />aprendizaje y el crecimiento.</p><p>La motivación es un punto de partida positivo,<br />y la acción te coloca en un camino hacia adelante.<br />Un sueño es un plano<br />de una meta aún no alcanzada;<br />La única diferencia entre los dos<br />es el esfuerzo involucrado en lograr<br />lo que esperas lograr.</p><p>Deja que tu mente y tu corazón te impulsen;<br />Permite que el poder de tu voluntad<br />te lleve a tu destino.</p><p>No cuentes los pasos por delante;<br />Simplemente suma el total<br />de pasos ya cubiertos, y multiplícalo por<br />fe,<br />confianza y resistencia.</p><p>Recuerde siempre que para aquellos que<br />persisten,<br />los sueños de hoy se transforman<br />en éxitos de mañana.</p><p>~ Kelly D. Caron ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','¡Dentro de ti está la fuerza para enfrentar los desafíos de la vida!','','inherit','closed','closed','','262-revision-v1','','','2023-04-30 15:19:26','2023-04-30 15:19:26','',262,'https://divyayogamonteregie.org/ca/?p=265',0,'revision','',0),(267,1,'2023-04-30 15:20:37','2023-04-30 15:20:37','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>LOS SUEÑOS DE HOY SON LOS EXITOS DE MAÑANA</h1>		\n		<p>Eres más fuerte de lo que piensas,<br />recuerda mantenerte erguido.</p><p>Cada desafío en tu vida<br />te ayuda a crecer.</p><p>Cada problema que encuentras<br />fortalece tu mente y tu alma.</p><p>Cada problema que superas<br />aumenta tu comprensión de la vida.</p><p>Cuando todos tus problemas pesen<br />mucho sobre tus hombros, recuerda que debajo de la carga<br />puedes mantenerte erguido,<br /><br />porque nunca se te da<br />más de lo que puedes manejar ...<br />y eres más fuerte de lo que piensas.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','¡Dentro de ti está la fuerza para enfrentar los desafíos de la vida!','','inherit','closed','closed','','262-revision-v1','','','2023-04-30 15:20:37','2023-04-30 15:20:37','',262,'https://divyayogamonteregie.org/ca/?p=267',0,'revision','',0),(268,1,'2023-04-30 15:20:37','2023-04-30 15:20:37','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>LOS SUEÑOS DE HOY SON LOS EXITOS DE MAÑANA</h1>		\n		<p>Eres más fuerte de lo que piensas,<br />recuerda mantenerte erguido.</p><p>Cada desafío en tu vida<br />te ayuda a crecer.</p><p>Cada problema que encuentras<br />fortalece tu mente y tu alma.</p><p>Cada problema que superas<br />aumenta tu comprensión de la vida.</p><p>Cuando todos tus problemas pesen<br />mucho sobre tus hombros, recuerda que debajo de la carga<br />puedes mantenerte erguido,<br /><br />porque nunca se te da<br />más de lo que puedes manejar ...<br />y eres más fuerte de lo que piensas.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','¡Dentro de ti está la fuerza para enfrentar los desafíos de la vida!','','inherit','closed','closed','','262-revision-v1','','','2023-04-30 15:20:37','2023-04-30 15:20:37','',262,'https://divyayogamonteregie.org/ca/?p=268',0,'revision','',0),(635,1,'2023-05-24 01:34:28','2023-05-24 01:34:28','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>¡DENTRO DE TI ESTA LA FUERZA PARA ENFRENTAR LOS DESAFIOS DE LA VIDA!</h1>		\n		<p>Eres más fuerte de lo que piensas,<br />recuerda mantenerte erguido.</p><p>Cada desafío en tu vida<br />te ayuda a crecer.</p><p>Cada problema que encuentras<br />fortalece tu mente y tu alma.</p><p>Cada problema que superas<br />aumenta tu comprensión de la vida.</p><p>Cuando todos tus problemas pesen<br />mucho sobre tus hombros, recuerda que debajo de la carga<br />puedes mantenerte erguido,<br /><br />porque nunca se te da<br />más de lo que puedes manejar ...<br />y eres más fuerte de lo que piensas.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Within You Is The Strength To Meet Life\'s Challenges !','','inherit','closed','closed','','262-revision-v1','','','2023-05-24 01:34:28','2023-05-24 01:34:28','',262,'https://divyayogamonteregie.org/ca/?p=635',0,'revision','',0),(269,1,'2023-04-30 15:20:37','2023-04-30 15:20:37','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>¡DENTRO DE TI ESTA LA FUERZA PARA ENFRENTAR LOS DESAFIOS DE LA VIDA!</h1>		\n		<p>Eres más fuerte de lo que piensas,<br />recuerda mantenerte erguido.</p><p>Cada desafío en tu vida<br />te ayuda a crecer.</p><p>Cada problema que encuentras<br />fortalece tu mente y tu alma.</p><p>Cada problema que superas<br />aumenta tu comprensión de la vida.</p><p>Cuando todos tus problemas pesen<br />mucho sobre tus hombros, recuerda que debajo de la carga<br />puedes mantenerte erguido,<br /><br />porque nunca se te da<br />más de lo que puedes manejar ...<br />y eres más fuerte de lo que piensas.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','¡Dentro de ti está la fuerza para enfrentar los desafíos de la vida!','','inherit','closed','closed','','262-revision-v1','','','2023-04-30 15:20:37','2023-04-30 15:20:37','',262,'https://divyayogamonteregie.org/ca/?p=269',0,'revision','',0),(270,1,'2023-04-30 15:21:07','2023-04-30 15:21:07','','images (9)','','inherit','open','closed','','images-9','','','2023-04-30 15:21:07','2023-04-30 15:21:07','',262,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-9.jpeg',0,'attachment','image/jpeg',0),(271,1,'2023-04-30 15:21:15','2023-04-30 15:21:15','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>¡DENTRO DE TI ESTA LA FUERZA PARA ENFRENTAR LOS DESAFIOS DE LA VIDA!</h1>		\n		<p>Eres más fuerte de lo que piensas,<br />recuerda mantenerte erguido.</p><p>Cada desafío en tu vida<br />te ayuda a crecer.</p><p>Cada problema que encuentras<br />fortalece tu mente y tu alma.</p><p>Cada problema que superas<br />aumenta tu comprensión de la vida.</p><p>Cuando todos tus problemas pesen<br />mucho sobre tus hombros, recuerda que debajo de la carga<br />puedes mantenerte erguido,<br /><br />porque nunca se te da<br />más de lo que puedes manejar ...<br />y eres más fuerte de lo que piensas.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','¡Dentro de ti está la fuerza para enfrentar los desafíos de la vida!','','inherit','closed','closed','','262-revision-v1','','','2023-04-30 15:21:15','2023-04-30 15:21:15','',262,'https://divyayogamonteregie.org/ca/?p=271',0,'revision','',0),(272,1,'2023-04-30 15:21:15','2023-04-30 15:21:15','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>¡DENTRO DE TI ESTA LA FUERZA PARA ENFRENTAR LOS DESAFIOS DE LA VIDA!</h1>		\n		<p>Eres más fuerte de lo que piensas,<br />recuerda mantenerte erguido.</p><p>Cada desafío en tu vida<br />te ayuda a crecer.</p><p>Cada problema que encuentras<br />fortalece tu mente y tu alma.</p><p>Cada problema que superas<br />aumenta tu comprensión de la vida.</p><p>Cuando todos tus problemas pesen<br />mucho sobre tus hombros, recuerda que debajo de la carga<br />puedes mantenerte erguido,<br /><br />porque nunca se te da<br />más de lo que puedes manejar ...<br />y eres más fuerte de lo que piensas.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','¡Dentro de ti está la fuerza para enfrentar los desafíos de la vida!','','inherit','closed','closed','','262-revision-v1','','','2023-04-30 15:21:15','2023-04-30 15:21:15','',262,'https://divyayogamonteregie.org/ca/?p=272',0,'revision','',0),(273,1,'2023-04-30 15:21:15','2023-04-30 15:21:15','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>¡DENTRO DE TI ESTA LA FUERZA PARA ENFRENTAR LOS DESAFIOS DE LA VIDA!</h1>		\n		<p>Eres más fuerte de lo que piensas,<br />recuerda mantenerte erguido.</p><p>Cada desafío en tu vida<br />te ayuda a crecer.</p><p>Cada problema que encuentras<br />fortalece tu mente y tu alma.</p><p>Cada problema que superas<br />aumenta tu comprensión de la vida.</p><p>Cuando todos tus problemas pesen<br />mucho sobre tus hombros, recuerda que debajo de la carga<br />puedes mantenerte erguido,<br /><br />porque nunca se te da<br />más de lo que puedes manejar ...<br />y eres más fuerte de lo que piensas.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','¡Dentro de ti está la fuerza para enfrentar los desafíos de la vida!','','inherit','closed','closed','','262-revision-v1','','','2023-04-30 15:21:15','2023-04-30 15:21:15','',262,'https://divyayogamonteregie.org/ca/?p=273',0,'revision','',0),(274,1,'2023-05-24 02:49:49','2023-04-30 15:22:50',' ','','','publish','closed','closed','','274','','','2023-05-24 02:49:49','2023-05-24 02:49:49','',0,'https://divyayogamonteregie.org/ca/?p=274',16,'nav_menu_item','',0),(275,1,'2023-05-24 02:49:49','2023-04-30 15:22:50',' ','','','publish','closed','closed','','275','','','2023-05-24 02:49:49','2023-05-24 02:49:49','',0,'https://divyayogamonteregie.org/ca/?p=275',15,'nav_menu_item','',0),(276,1,'2023-04-30 15:25:26','2023-04-30 15:25:26','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-sheep-lion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-story-of-the-butterfly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/this-is-good/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/wise-saint/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-two-frogs-in-trouble/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/tomorrow-is-going-to-be-better/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/whos-in-charge-of-your-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/an-interesting-funeral/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','publish','closed','closed','','stories','','','2023-05-24 13:47:36','2023-05-24 13:47:36','',0,'https://divyayogamonteregie.org/ca/?page_id=276',0,'page','',0),(282,1,'2023-04-30 15:35:10','2023-04-30 15:35:10','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n												<figure>\n										<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />											<figcaption>Motivar</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 15:35:10','2023-04-30 15:35:10','',276,'https://divyayogamonteregie.org/ca/?p=282',0,'revision','',0),(277,1,'2023-04-30 15:26:03','2023-04-30 15:26:03','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODO ES POSIBLE</h1>		\n		<h2><strong><em>Cree en ti mismo y recuerda que todo es posible</em></strong></h2><p>Cree en lo que te hace sentir bien.<br />Cree en lo que te hace feliz.<br />Cree en los sueños que siempre has querido que se hagan realidad<br />y dales todas las oportunidades para hacerlo.</p><p>La vida no tiene promesas de lo que vendrá en tu camino.<br />Debes buscar tus propios ideales<br />y trabajar para alcanzarlos.</p><p>La vida no da garantías en cuanto a lo que tendrás.<br />Simplemente te da tiempo para tomar decisiones<br />y arriesgarte<br />y descubrir cualquier secreto que pueda surgir en tu camino.</p><p>Si estás dispuesto a aprovechar las oportunidades que se te dan<br />y utilizar las habilidades que tienes,<br />constantemente llenarás tu vida<br />con momentos especiales y momentos inolvidables.</p><p>Nadie conoce los misterios de la vida o su significado último, pero para aquellos que están dispuestos<br />a creer en sus sueños y en sí mismos,<br /><br />la vida es un regalo precioso en el que todo es posible.</p><p>~ Dena DiIaconi ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 15:26:03','2023-04-30 15:26:03','',276,'https://divyayogamonteregie.org/ca/?p=277',0,'revision','',0),(283,1,'2023-05-24 02:49:49','2023-04-30 15:36:04',' ','','','publish','closed','closed','','283','','','2023-05-24 02:49:49','2023-05-24 02:49:49','',0,'https://divyayogamonteregie.org/ca/?p=283',20,'nav_menu_item','',0),(284,1,'2023-04-30 15:37:16','2023-04-30 15:37:16','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n												<figure>\n										<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />											<figcaption>Motivar</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 15:37:16','2023-04-30 15:37:16','',276,'https://divyayogamonteregie.org/ca/?p=284',0,'revision','',0),(279,1,'2023-04-30 15:33:23','2023-04-30 15:33:23','','descarga (5)','','inherit','open','closed','','descarga-5','','','2023-04-30 15:33:23','2023-04-30 15:33:23','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg',0,'attachment','image/jpeg',0),(280,1,'2023-04-30 15:35:09','2023-04-30 15:35:09','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODO ES POSIBLE</h1>		\n		<h2><strong><em>Cree en ti mismo y recuerda que todo es posible</em></strong></h2><p>Cree en lo que te hace sentir bien.<br />Cree en lo que te hace feliz.<br />Cree en los sueños que siempre has querido que se hagan realidad<br />y dales todas las oportunidades para hacerlo.</p><p>La vida no tiene promesas de lo que vendrá en tu camino.<br />Debes buscar tus propios ideales<br />y trabajar para alcanzarlos.</p><p>La vida no da garantías en cuanto a lo que tendrás.<br />Simplemente te da tiempo para tomar decisiones<br />y arriesgarte<br />y descubrir cualquier secreto que pueda surgir en tu camino.</p><p>Si estás dispuesto a aprovechar las oportunidades que se te dan<br />y utilizar las habilidades que tienes,<br />constantemente llenarás tu vida<br />con momentos especiales y momentos inolvidables.</p><p>Nadie conoce los misterios de la vida o su significado último, pero para aquellos que están dispuestos<br />a creer en sus sueños y en sí mismos,<br /><br />la vida es un regalo precioso en el que todo es posible.</p><p>~ Dena DiIaconi ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 15:35:09','2023-04-30 15:35:09','',276,'https://divyayogamonteregie.org/ca/?p=280',0,'revision','',0),(281,1,'2023-04-30 15:35:09','2023-04-30 15:35:09','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODO ES POSIBLE</h1>		\n		<h2><strong><em>Cree en ti mismo y recuerda que todo es posible</em></strong></h2><p>Cree en lo que te hace sentir bien.<br />Cree en lo que te hace feliz.<br />Cree en los sueños que siempre has querido que se hagan realidad<br />y dales todas las oportunidades para hacerlo.</p><p>La vida no tiene promesas de lo que vendrá en tu camino.<br />Debes buscar tus propios ideales<br />y trabajar para alcanzarlos.</p><p>La vida no da garantías en cuanto a lo que tendrás.<br />Simplemente te da tiempo para tomar decisiones<br />y arriesgarte<br />y descubrir cualquier secreto que pueda surgir en tu camino.</p><p>Si estás dispuesto a aprovechar las oportunidades que se te dan<br />y utilizar las habilidades que tienes,<br />constantemente llenarás tu vida<br />con momentos especiales y momentos inolvidables.</p><p>Nadie conoce los misterios de la vida o su significado último, pero para aquellos que están dispuestos<br />a creer en sus sueños y en sí mismos,<br /><br />la vida es un regalo precioso en el que todo es posible.</p><p>~ Dena DiIaconi ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 15:35:09','2023-04-30 15:35:09','',276,'https://divyayogamonteregie.org/ca/?p=281',0,'revision','',0),(285,1,'2023-04-30 15:37:16','2023-04-30 15:37:16','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n												<figure>\n										<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />											<figcaption>Motivar</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 15:37:16','2023-04-30 15:37:16','',276,'https://divyayogamonteregie.org/ca/?p=285',0,'revision','',0),(286,1,'2023-04-30 15:37:16','2023-04-30 15:37:16','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/en/\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 15:37:16','2023-04-30 15:37:16','',276,'https://divyayogamonteregie.org/ca/?p=286',0,'revision','',0),(287,1,'2023-04-30 15:40:19','2023-04-30 15:40:19','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/en/\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 15:40:19','2023-04-30 15:40:19','',276,'https://divyayogamonteregie.org/ca/?p=287',0,'revision','',0),(288,1,'2023-04-30 15:40:19','2023-04-30 15:40:19','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/en/\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 15:40:19','2023-04-30 15:40:19','',276,'https://divyayogamonteregie.org/ca/?p=288',0,'revision','',0),(289,1,'2023-04-30 15:40:19','2023-04-30 15:40:19','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 15:40:19','2023-04-30 15:40:19','',276,'https://divyayogamonteregie.org/ca/?p=289',0,'revision','',0),(290,1,'2023-04-30 15:48:26','2023-04-30 15:48:26','','descarga (6)','','inherit','open','closed','','descarga-6','','','2023-04-30 15:48:26','2023-04-30 15:48:26','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg',0,'attachment','image/jpeg',0),(291,1,'2023-04-30 15:50:01','2023-04-30 15:50:01','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 15:50:01','2023-04-30 15:50:01','',276,'https://divyayogamonteregie.org/ca/?p=291',0,'revision','',0),(292,1,'2023-04-30 15:50:01','2023-04-30 15:50:01','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 15:50:01','2023-04-30 15:50:01','',276,'https://divyayogamonteregie.org/ca/?p=292',0,'revision','',0),(293,1,'2023-04-30 15:50:01','2023-04-30 15:50:01','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 15:50:01','2023-04-30 15:50:01','',276,'https://divyayogamonteregie.org/ca/?p=293',0,'revision','',0),(294,1,'2023-04-30 15:51:16','2023-04-30 15:51:16','','images (10)','','inherit','open','closed','','images-10','','','2023-04-30 15:51:16','2023-04-30 15:51:16','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg',0,'attachment','image/jpeg',0),(300,1,'2023-04-30 15:54:28','2023-04-30 15:54:28','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 15:54:28','2023-04-30 15:54:28','',276,'https://divyayogamonteregie.org/ca/?p=300',0,'revision','',0),(296,1,'2023-04-30 15:53:06','2023-04-30 15:53:06','','images (11)','','inherit','open','closed','','images-11','','','2023-04-30 15:53:06','2023-04-30 15:53:06','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg',0,'attachment','image/jpeg',0),(297,1,'2023-04-30 15:54:17','2023-04-30 15:54:17','','descarga (7)','','inherit','open','closed','','descarga-7','','','2023-04-30 15:54:17','2023-04-30 15:54:17','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg',0,'attachment','image/jpeg',0),(298,1,'2023-04-30 15:54:27','2023-04-30 15:54:27','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 15:54:27','2023-04-30 15:54:27','',276,'https://divyayogamonteregie.org/ca/?p=298',0,'revision','',0),(299,1,'2023-04-30 15:54:27','2023-04-30 15:54:27','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 15:54:27','2023-04-30 15:54:27','',276,'https://divyayogamonteregie.org/ca/?p=299',0,'revision','',0),(306,1,'2023-04-30 15:59:17','2023-04-30 15:59:17','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 15:59:17','2023-04-30 15:59:17','',276,'https://divyayogamonteregie.org/ca/?p=306',0,'revision','',0),(302,1,'2023-04-30 15:57:00','2023-04-30 15:57:00','','images (12)','','inherit','open','closed','','images-12','','','2023-04-30 15:57:00','2023-04-30 15:57:00','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg',0,'attachment','image/jpeg',0),(303,1,'2023-04-30 15:59:07','2023-04-30 15:59:07','','da-un-paso-adelante','','inherit','open','closed','','da-un-paso-adelante','','','2023-04-30 15:59:07','2023-04-30 15:59:07','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png',0,'attachment','image/png',0),(304,1,'2023-04-30 15:59:16','2023-04-30 15:59:16','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 15:59:16','2023-04-30 15:59:16','',276,'https://divyayogamonteregie.org/ca/?p=304',0,'revision','',0),(305,1,'2023-04-30 15:59:16','2023-04-30 15:59:16','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 15:59:16','2023-04-30 15:59:16','',276,'https://divyayogamonteregie.org/ca/?p=305',0,'revision','',0),(311,1,'2023-04-30 16:01:29','2023-04-30 16:01:29','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 16:01:29','2023-04-30 16:01:29','',276,'https://divyayogamonteregie.org/ca/?p=311',0,'revision','',0),(308,1,'2023-04-30 16:01:21','2023-04-30 16:01:21','','descarga (8)','','inherit','open','closed','','descarga-8','','','2023-04-30 16:01:21','2023-04-30 16:01:21','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg',0,'attachment','image/jpeg',0),(309,1,'2023-04-30 16:01:29','2023-04-30 16:01:29','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 16:01:29','2023-04-30 16:01:29','',276,'https://divyayogamonteregie.org/ca/?p=309',0,'revision','',0),(310,1,'2023-04-30 16:01:29','2023-04-30 16:01:29','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 16:01:29','2023-04-30 16:01:29','',276,'https://divyayogamonteregie.org/ca/?p=310',0,'revision','',0),(319,1,'2023-04-30 16:18:07','2023-04-30 16:18:07','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 16:18:07','2023-04-30 16:18:07','',276,'https://divyayogamonteregie.org/ca/?p=319',0,'revision','',0),(313,1,'2023-04-30 16:08:37','2023-04-30 16:08:37','','descarga (9)','','inherit','open','closed','','descarga-9','','','2023-04-30 16:08:37','2023-04-30 16:08:37','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg',0,'attachment','image/jpeg',0),(314,1,'2023-04-30 16:12:45','2023-04-30 16:12:45','','descarga (10)','','inherit','open','closed','','descarga-10','','','2023-04-30 16:12:45','2023-04-30 16:12:45','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg',0,'attachment','image/jpeg',0),(315,1,'2023-04-30 16:14:28','2023-04-30 16:14:28','','descarga (11)','','inherit','open','closed','','descarga-11','','','2023-04-30 16:14:28','2023-04-30 16:14:28','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg',0,'attachment','image/jpeg',0),(316,1,'2023-04-30 16:18:01','2023-04-30 16:18:01','','ee3caa2d0f7980ae26f7cfe2bfb13957','','inherit','open','closed','','ee3caa2d0f7980ae26f7cfe2bfb13957','','','2023-04-30 16:18:01','2023-04-30 16:18:01','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg',0,'attachment','image/jpeg',0),(317,1,'2023-04-30 16:18:06','2023-04-30 16:18:06','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 16:18:06','2023-04-30 16:18:06','',276,'https://divyayogamonteregie.org/ca/?p=317',0,'revision','',0),(318,1,'2023-04-30 16:18:06','2023-04-30 16:18:06','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 16:18:06','2023-04-30 16:18:06','',276,'https://divyayogamonteregie.org/ca/?p=318',0,'revision','',0),(320,1,'2023-04-30 16:20:11','2023-04-30 16:20:11','','descarga (12)','','inherit','open','closed','','descarga-12','','','2023-04-30 16:20:11','2023-04-30 16:20:11','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg',0,'attachment','image/jpeg',0),(321,1,'2023-04-30 16:21:23','2023-04-30 16:21:23','','ventana','','inherit','open','closed','','ventana','','','2023-04-30 16:21:23','2023-04-30 16:21:23','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png',0,'attachment','image/png',0),(327,1,'2023-04-30 16:24:48','2023-04-30 16:24:48','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 16:24:48','2023-04-30 16:24:48','',276,'https://divyayogamonteregie.org/ca/?p=327',0,'revision','',0),(323,1,'2023-04-30 16:23:15','2023-04-30 16:23:15','','El rey con cuatro esposas','','inherit','open','closed','','el-rey-con-cuatro-esposas','','','2023-04-30 16:23:15','2023-04-30 16:23:15','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg',0,'attachment','image/jpeg',0),(324,1,'2023-04-30 16:24:42','2023-04-30 16:24:42','','pensamientos-1','','inherit','open','closed','','pensamientos-1','','','2023-04-30 16:24:42','2023-04-30 16:24:42','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg',0,'attachment','image/jpeg',0),(325,1,'2023-04-30 16:24:48','2023-04-30 16:24:48','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 16:24:48','2023-04-30 16:24:48','',276,'https://divyayogamonteregie.org/ca/?p=325',0,'revision','',0),(326,1,'2023-04-30 16:24:48','2023-04-30 16:24:48','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 16:24:48','2023-04-30 16:24:48','',276,'https://divyayogamonteregie.org/ca/?p=326',0,'revision','',0),(334,1,'2023-04-30 16:32:28','2023-04-30 16:32:28','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 16:32:28','2023-04-30 16:32:28','',276,'https://divyayogamonteregie.org/ca/?p=334',0,'revision','',0),(332,1,'2023-04-30 16:32:27','2023-04-30 16:32:27','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 16:32:27','2023-04-30 16:32:27','',276,'https://divyayogamonteregie.org/ca/?p=332',0,'revision','',0),(329,1,'2023-04-30 16:27:11','2023-04-30 16:27:11','','images (13)','','inherit','open','closed','','images-13','','','2023-04-30 16:27:11','2023-04-30 16:27:11','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg',0,'attachment','image/jpeg',0),(331,1,'2023-04-30 16:32:05','2023-04-30 16:32:05','','el-leon-que-se-creia-cordero','','inherit','open','closed','','el-leon-que-se-creia-cordero','','','2023-04-30 16:32:05','2023-04-30 16:32:05','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg',0,'attachment','image/jpeg',0),(330,1,'2023-04-30 16:29:11','2023-04-30 16:29:11','','descarga (13)','','inherit','open','closed','','descarga-13','','','2023-04-30 16:29:11','2023-04-30 16:29:11','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg',0,'attachment','image/jpeg',0),(333,1,'2023-04-30 16:32:27','2023-04-30 16:32:27','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 16:32:27','2023-04-30 16:32:27','',276,'https://divyayogamonteregie.org/ca/?p=333',0,'revision','',0),(340,1,'2023-04-30 16:39:47','2023-04-30 16:39:47','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 16:39:47','2023-04-30 16:39:47','',276,'https://divyayogamonteregie.org/ca/?p=340',0,'revision','',0),(336,1,'2023-04-30 16:34:51','2023-04-30 16:34:51','','sddefault','','inherit','open','closed','','sddefault','','','2023-04-30 16:34:51','2023-04-30 16:34:51','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg',0,'attachment','image/jpeg',0),(337,1,'2023-04-30 16:39:10','2023-04-30 16:39:10','','descarga (14)','','inherit','open','closed','','descarga-14','','','2023-04-30 16:39:10','2023-04-30 16:39:10','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg',0,'attachment','image/jpeg',0),(338,1,'2023-04-30 16:39:46','2023-04-30 16:39:46','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 16:39:46','2023-04-30 16:39:46','',276,'https://divyayogamonteregie.org/ca/?p=338',0,'revision','',0),(339,1,'2023-04-30 16:39:46','2023-04-30 16:39:46','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 16:39:46','2023-04-30 16:39:46','',276,'https://divyayogamonteregie.org/ca/?p=339',0,'revision','',0),(341,1,'2023-04-30 17:01:46','2023-04-30 17:01:46','','descarga (15)','','inherit','open','closed','','descarga-15','','','2023-04-30 17:01:46','2023-04-30 17:01:46','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg',0,'attachment','image/jpeg',0),(348,1,'2023-04-30 17:07:55','2023-04-30 17:07:55','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:07:55','2023-04-30 17:07:55','',276,'https://divyayogamonteregie.org/ca/?p=348',0,'revision','',0),(343,1,'2023-04-30 17:03:32','2023-04-30 17:03:32','','descarga (16)','','inherit','open','closed','','descarga-16','','','2023-04-30 17:03:32','2023-04-30 17:03:32','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg',0,'attachment','image/jpeg',0),(344,1,'2023-04-30 17:05:19','2023-04-30 17:05:19','','descarga (17)','','inherit','open','closed','','descarga-17','','','2023-04-30 17:05:19','2023-04-30 17:05:19','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg',0,'attachment','image/jpeg',0),(345,1,'2023-04-30 17:07:38','2023-04-30 17:07:38','','descarga (18)','','inherit','open','closed','','descarga-18','','','2023-04-30 17:07:38','2023-04-30 17:07:38','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg',0,'attachment','image/jpeg',0),(346,1,'2023-04-30 17:07:55','2023-04-30 17:07:55','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:07:55','2023-04-30 17:07:55','',276,'https://divyayogamonteregie.org/ca/?p=346',0,'revision','',0),(347,1,'2023-04-30 17:07:55','2023-04-30 17:07:55','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:07:55','2023-04-30 17:07:55','',276,'https://divyayogamonteregie.org/ca/?p=347',0,'revision','',0),(353,1,'2023-04-30 17:11:36','2023-04-30 17:11:36','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:11:36','2023-04-30 17:11:36','',276,'https://divyayogamonteregie.org/ca/?p=353',0,'revision','',0),(350,1,'2023-04-30 17:11:02','2023-04-30 17:11:02','','descarga (19)','','inherit','open','closed','','descarga-19','','','2023-04-30 17:11:02','2023-04-30 17:11:02','',276,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg',0,'attachment','image/jpeg',0),(351,1,'2023-04-30 17:11:36','2023-04-30 17:11:36','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:11:36','2023-04-30 17:11:36','',276,'https://divyayogamonteregie.org/ca/?p=351',0,'revision','',0),(352,1,'2023-04-30 17:11:36','2023-04-30 17:11:36','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:11:36','2023-04-30 17:11:36','',276,'https://divyayogamonteregie.org/ca/?p=352',0,'revision','',0),(354,1,'2023-04-30 17:13:47','2023-04-30 17:13:47','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">There is this story about a famous research scientist who had made several very important medical breakthroughs. He was being interviewed by a newspaper reporter who asked him why he thought he was able to be so much more creative than the average person. What set him so far apart from others?</p><p style=\"text-align: justify;\">He responded that, in his opinion, it all came from an experience with his mother that occurred when he was about two years old. He had been trying to remove a bottle of milk from the refrigerator when he lost his grip on the slippery bottle and it fell, spilling its contents all over the kitchen floor - a veritable sea of milk!</p><p style=\"text-align: justify;\">When his mother came into the kitchen, instead of yelling at him, giving him a lecture, or punishing him, she said, \"Robert, what a great and wonderful mess you have made! I have rarely seen such a huge puddle of milk. Well, the damage has already been done. Would you like to get down and play in the milk for a few minutes before we clean it up?\"</p><p style=\"text-align: justify;\">Indeed, he did. After a few minutes, his mother said, \"You know, Robert, whenever you make a mess like this, eventually you have to clean it up and restore everything to its proper order. So, how would you like to do that? We could use a sponge, a towel, or a mop. Which do you prefer?\"</p><p style=\"text-align: justify;\">He chose the sponge and together they cleaned up the spilled milk.</p><p style=\"text-align: justify;\">His mother then said, \"You know, what we have here is a failed experiment in how to effectively carry a big milk bottle with two tiny hands. Let\'s go out in the back yard and fill the bottle with water and see if you can discover a way to carry it without dropping it.\"</p><p style=\"text-align: justify;\">The little boy learned that if he grasped the bottle at the top near the lip with both hands, he could carry it without dropping it. This renowned scientist then remarked that it was at that moment that he knew he didn\'t need to be afraid to make mistakes. Instead, he learned that mistakes were just opportunities for learning something new, which is, after all, what scientific experiments are all about. Even if the experiment \"doesn\'t work,\" we usually learn something valuable from it.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Motivate','','publish','closed','closed','','motivate','','','2023-06-14 18:55:44','2023-06-14 18:55:44','',0,'https://divyayogamonteregie.org/ca/?page_id=354',0,'page','',0),(355,1,'2023-04-30 17:14:16','2023-04-30 17:14:16','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMETETE A TI MISMO</h1>		\n		<p>(uno de los poemas motivacionales más clásicos)</p><p>Prométete a ti mismo ser tan fuerte que nada pueda<br />perturbar tu tranquilidad.</p><p>Para hablar de salud, felicidad y prosperidad a<br />cada persona que conozcas.</p><p>Para hacer que todos tus amigos sientan que hay<br />algo en ellos.</p><p>Para mirar el lado soleado de todo y hacer realidad tu<br />optimismo.</p><p>Pensar sólo en lo mejor, trabajar sólo para lo mejor,<br />y esperar sólo lo mejor.</p><p>Estar tan entusiasmado con el éxito de los demás<br />como lo eres con el tuyo propio.</p><p>Olvidar los errores del pasado y presionar sobre los<br />mayores logros del futuro.</p><p>Llevar un semblante alegre en todo momento y dar<br />una sonrisa a cada persona viva que conozcas.</p><p>Dedicar tanto tiempo a la mejora de ti mismo<br />que no tengas tiempo para criticar a los demás.</p><p>Ser demasiado grande para la preocupación, demasiado noble para la ira, y demasiado fuerte para el miedo, y demasiado<br />feliz para permitir la<br />presencia de problemas.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Motivar','','inherit','closed','closed','','354-revision-v1','','','2023-04-30 17:14:16','2023-04-30 17:14:16','',354,'https://divyayogamonteregie.org/ca/?p=355',0,'revision','',0),(356,1,'2023-04-30 17:16:18','2023-04-30 17:16:18','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMETETE A TI MISMO</h1>		\n		<p>(uno de los poemas motivacionales más clásicos)</p><p>Prométete a ti mismo ser tan fuerte que nada pueda<br />perturbar tu tranquilidad.</p><p>Para hablar de salud, felicidad y prosperidad a<br />cada persona que conozcas.</p><p>Para hacer que todos tus amigos sientan que hay<br />algo en ellos.</p><p>Para mirar el lado soleado de todo y hacer realidad tu<br />optimismo.</p><p>Pensar sólo en lo mejor, trabajar sólo para lo mejor,<br />y esperar sólo lo mejor.</p><p>Estar tan entusiasmado con el éxito de los demás<br />como lo eres con el tuyo propio.</p><p>Olvidar los errores del pasado y presionar sobre los<br />mayores logros del futuro.</p><p>Llevar un semblante alegre en todo momento y dar<br />una sonrisa a cada persona viva que conozcas.</p><p>Dedicar tanto tiempo a la mejora de ti mismo<br />que no tengas tiempo para criticar a los demás.</p><p>Ser demasiado grande para la preocupación, demasiado noble para la ira, y demasiado fuerte para el miedo, y demasiado<br />feliz para permitir la<br />presencia de problemas.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Motivar','','inherit','closed','closed','','354-revision-v1','','','2023-04-30 17:16:18','2023-04-30 17:16:18','',354,'https://divyayogamonteregie.org/ca/?p=356',0,'revision','',0),(357,1,'2023-04-30 17:16:19','2023-04-30 17:16:19','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMETETE A TI MISMO</h1>		\n		<p>(uno de los poemas motivacionales más clásicos)</p><p>Prométete a ti mismo ser tan fuerte que nada pueda<br />perturbar tu tranquilidad.</p><p>Para hablar de salud, felicidad y prosperidad a<br />cada persona que conozcas.</p><p>Para hacer que todos tus amigos sientan que hay<br />algo en ellos.</p><p>Para mirar el lado soleado de todo y hacer realidad tu<br />optimismo.</p><p>Pensar sólo en lo mejor, trabajar sólo para lo mejor,<br />y esperar sólo lo mejor.</p><p>Estar tan entusiasmado con el éxito de los demás<br />como lo eres con el tuyo propio.</p><p>Olvidar los errores del pasado y presionar sobre los<br />mayores logros del futuro.</p><p>Llevar un semblante alegre en todo momento y dar<br />una sonrisa a cada persona viva que conozcas.</p><p>Dedicar tanto tiempo a la mejora de ti mismo<br />que no tengas tiempo para criticar a los demás.</p><p>Ser demasiado grande para la preocupación, demasiado noble para la ira, y demasiado fuerte para el miedo, y demasiado<br />feliz para permitir la<br />presencia de problemas.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Motivar','','inherit','closed','closed','','354-revision-v1','','','2023-04-30 17:16:19','2023-04-30 17:16:19','',354,'https://divyayogamonteregie.org/ca/?p=357',0,'revision','',0),(358,1,'2023-04-30 17:16:19','2023-04-30 17:16:19','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Motivar','','inherit','closed','closed','','354-revision-v1','','','2023-04-30 17:16:19','2023-04-30 17:16:19','',354,'https://divyayogamonteregie.org/ca/?p=358',0,'revision','',0),(359,1,'2023-04-30 17:18:04','2023-04-30 17:18:04','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h3>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</h3><h3>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</h3><h3>Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</h3><h3>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</h3><h3>No response.</h3><h3>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</h3><h3>Still no response.</h3><h3>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</h3><h3>Again he gets no response.</h3><h3>So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</h3><h3>Again there is no response.</h3><h3>So he walks right up behind her. \"Honey, what\'s for dinner?\"</h3><h3>\"James, for the FIFTH time I\'ve said, Lima Beans!\"</h3><h3>The problem may not be with the other person as we always think, could be very much within us!</h3>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','publish','closed','closed','','a-problem-may-be-me-not-other','','','2023-06-14 18:57:07','2023-06-14 18:57:07','',0,'https://divyayogamonteregie.org/ca/?page_id=359',0,'page','',0),(929,1,'2023-06-08 23:49:12','2023-06-08 23:49:12','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p><b><br /></b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</p><p>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</p><p>Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</p><p>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</p><p>No response.</p><p>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</p><p>Still no response.</p><p>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</p><p>Again he gets no response.</p><p>So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</p><p>Again there is no response.</p><p>So he walks right up behind her. \"Honey, what\'s for dinner?\"</p><p>\"James, for the FIFTH time I\'ve said, Lima Beans!\"</p><p><b>The problem may not be with the other person as we always think, could be very much within us!</b></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','inherit','closed','closed','','359-revision-v1','','','2023-06-08 23:49:12','2023-06-08 23:49:12','',359,'https://divyayogamonteregie.org/ca/?p=929',0,'revision','',0),(363,1,'2023-04-30 17:19:33','2023-04-30 17:19:33','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un hombre temía que su esposa no estuviera escuchando tan bien como solía hacerlo y pensó que podría necesitar un audífono. Sin estar muy seguro de cómo acercarse a ella, llamó al médico de familia para discutir el problema.</p><p>El Doctor le dijo que hay una simple prueba informal que el marido podría realizar para darle al Doctor una mejor idea sobre su pérdida auditiva.</p><p>Esto es lo que haces\", dijo el Doctor, \"párate a unos 40 pies de distancia de ella, y en un tono de conversación normal mira si te escucha. Si no, ve a 30 pies, luego a 20 pies, y así sucesivamente hasta que obtengas una respuesta\".</p><p>Esa noche, la esposa está en la cocina cocinando la cena, y él estaba en el estudio. Se dice a sí mismo: \"Estoy a unos 40 pies de distancia, veamos qué pasa\". Luego, en un tono normal, pregunta: \'Cariño, ¿qué hay para cenar?\'</p><p>Sin respuesta.</p><p>Así que el esposo se acerca a la cocina, a unos 30 pies de su esposa y repite: \"Cariño, ¿qué hay para cenar?\"</p><p>Todavía no hay respuesta.</p><p>Luego se muda al comedor donde está a unos 20 pies de su esposa y pregunta: \"Cariño, ¿qué hay para cenar?\"</p><p>Una vez más no obtiene respuesta.</p><p>Así que camina hacia la puerta de la cocina, a unos 10 pies de distancia. \"Cariño, ¿qué hay para cenar?\"</p><p>Una vez más, no hay respuesta.</p><p>Así que camina justo detrás de ella. \"Cariño, ¿qué hay para cenar?\"</p><p>\"James, por QUINTA vez he dicho, ¡Frijoles Lima!\"</p><p><strong>El problema puede no ser con la otra persona como siempre pensamos, ¡podría estar muy dentro de nosotros!</strong></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Un problema puede ser yo, no otro','','inherit','closed','closed','','359-revision-v1','','','2023-04-30 17:19:33','2023-04-30 17:19:33','',359,'https://divyayogamonteregie.org/ca/?p=363',0,'revision','',0),(360,1,'2023-04-30 17:18:28','2023-04-30 17:18:28','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Un problema puede ser yo, no otro','','inherit','closed','closed','','359-revision-v1','','','2023-04-30 17:18:28','2023-04-30 17:18:28','',359,'https://divyayogamonteregie.org/ca/?p=360',0,'revision','',0),(361,1,'2023-04-30 17:19:33','2023-04-30 17:19:33','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Un problema puede ser yo, no otro','','inherit','closed','closed','','359-revision-v1','','','2023-04-30 17:19:33','2023-04-30 17:19:33','',359,'https://divyayogamonteregie.org/ca/?p=361',0,'revision','',0),(362,1,'2023-04-30 17:19:33','2023-04-30 17:19:33','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Un problema puede ser yo, no otro','','inherit','closed','closed','','359-revision-v1','','','2023-04-30 17:19:33','2023-04-30 17:19:33','',359,'https://divyayogamonteregie.org/ca/?p=362',0,'revision','',0),(364,1,'2023-04-30 17:20:09','2023-04-30 17:20:09','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \"Who would like this $20 bill?\"</p><p style=\"text-align: justify;\">Hands started going up.</p><p style=\"text-align: justify;\">He said, \"I am going to give this $20 to one of you but first, let me do this.\" He proceeded to crumple the dollar bill up.</p><p style=\"text-align: justify;\">He then asked, \"Who still wants it?\"</p><p style=\"text-align: justify;\">Still the hands were up in the air.</p><p style=\"text-align: justify;\">\"Well,\" he replied, \"What if I do this?\" And he dropped it on the ground and started to grind it into the floor with his shoe.</p><p style=\"text-align: justify;\">He picked it up, now all crumpled and dirty. \"Now who still wants it?\" Still the hands went into the air.</p><p style=\"text-align: justify;\">\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.</p><p style=\"text-align: justify;\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.</p><p style=\"text-align: justify;\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A value','','publish','closed','closed','','a-value','','','2023-06-14 18:58:10','2023-06-14 18:58:10','',0,'https://divyayogamonteregie.org/ca/?page_id=364',0,'page','',0),(368,1,'2023-04-30 17:22:20','2023-04-30 17:22:20','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un conocido orador comenzó su seminario sosteniendo un billete de $ 20. En la sala de 200, preguntó: \"¿A quién le gustaría este billete de 20 dólares?\"</p><p>Las manos comenzaron a subir.</p><p>Él dijo: \"Voy a darle estos $ 20 a uno de ustedes, pero primero, déjenme hacer esto\". Procedió a arrugar el billete de un dólar.</p><p>Luego preguntó: \"¿Quién todavía lo quiere?\"</p><p>Aún así, las manos estaban en el aire.</p><p>\"Bueno\", respondió, \"¿y si hago esto?\" Y lo dejó caer al suelo y comenzó a molerlo en el suelo con su zapato.</p><p>Lo recogió, ahora todo arrugado y sucio. \"Ahora, ¿quién todavía lo quiere?\" Aún así, las manos se elevaron en el aire.</p><p>\"Mis amigos, todos ustedes han aprendido una lección muy valiosa. No importa lo que le hiciera al dinero, todavía lo querías porque no disminuía su valor. Todavía valía $ 20.</p><p>Muchas veces en nuestras vidas, somos dejados caer, arrugados y molidos en la tierra por las decisiones que tomamos y las circunstancias que se nos presentan.</p><p>Sentimos que no valemos nada. Pero no importa lo que haya sucedido o lo que suceda, nunca perderá su valor. Tienes alma divina. Eres especial, ¡nunca lo olvides!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Un valor','','inherit','closed','closed','','364-revision-v1','','','2023-04-30 17:22:20','2023-04-30 17:22:20','',364,'https://divyayogamonteregie.org/ca/?p=368',0,'revision','',0),(365,1,'2023-04-30 17:20:42','2023-04-30 17:20:42','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Un valor','','inherit','closed','closed','','364-revision-v1','','','2023-04-30 17:20:42','2023-04-30 17:20:42','',364,'https://divyayogamonteregie.org/ca/?p=365',0,'revision','',0),(366,1,'2023-04-30 17:22:20','2023-04-30 17:22:20','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Un valor','','inherit','closed','closed','','364-revision-v1','','','2023-04-30 17:22:20','2023-04-30 17:22:20','',364,'https://divyayogamonteregie.org/ca/?p=366',0,'revision','',0),(367,1,'2023-04-30 17:22:20','2023-04-30 17:22:20','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Un valor','','inherit','closed','closed','','364-revision-v1','','','2023-04-30 17:22:20','2023-04-30 17:22:20','',364,'https://divyayogamonteregie.org/ca/?p=367',0,'revision','',0),(369,1,'2023-04-30 17:23:48','2023-04-30 17:23:48','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:23:48','2023-04-30 17:23:48','',276,'https://divyayogamonteregie.org/ca/?p=369',0,'revision','',0),(370,1,'2023-04-30 17:23:48','2023-04-30 17:23:48','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:23:48','2023-04-30 17:23:48','',276,'https://divyayogamonteregie.org/ca/?p=370',0,'revision','',0),(371,1,'2023-04-30 17:23:49','2023-04-30 17:23:49','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:23:49','2023-04-30 17:23:49','',276,'https://divyayogamonteregie.org/ca/?p=371',0,'revision','',0),(372,1,'2023-04-30 17:24:11','2023-04-30 17:24:11','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:24:11','2023-04-30 17:24:11','',276,'https://divyayogamonteregie.org/ca/?p=372',0,'revision','',0),(373,1,'2023-04-30 17:24:11','2023-04-30 17:24:11','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:24:11','2023-04-30 17:24:11','',276,'https://divyayogamonteregie.org/ca/?p=373',0,'revision','',0),(374,1,'2023-04-30 17:24:12','2023-04-30 17:24:12','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:24:12','2023-04-30 17:24:12','',276,'https://divyayogamonteregie.org/ca/?p=374',0,'revision','',0),(375,1,'2023-04-30 17:24:31','2023-04-30 17:24:31','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:24:31','2023-04-30 17:24:31','',276,'https://divyayogamonteregie.org/ca/?p=375',0,'revision','',0),(376,1,'2023-04-30 17:24:31','2023-04-30 17:24:31','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:24:31','2023-04-30 17:24:31','',276,'https://divyayogamonteregie.org/ca/?p=376',0,'revision','',0),(377,1,'2023-04-30 17:24:31','2023-04-30 17:24:31','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:24:31','2023-04-30 17:24:31','',276,'https://divyayogamonteregie.org/ca/?p=377',0,'revision','',0),(378,1,'2023-04-30 17:25:54','2023-04-30 17:25:54','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Three farmers gathered to evaluate and share their experiences from the year passed. Each had a hundred square meter of land on which they farmed. At the end of the meeting, the first farmer said, \"The situation was very hard and it will be much worse for next year.\"</p><p style=\"text-align: justify;\">The second replied, \"You are certainly right. As a matter of fact, after working very hard the whole year, from sunrise to sunset, I only gained 1% profit after all expenses.\"</p><p style=\"text-align: justify;\">Calculating his own numbers, the first farmer replied, \"I believe that my total profit is exactly the same as yours, which is 1%.\"</p><p style=\"text-align: justify;\">The two of them looked at the third farmer and asked, \"How much profit did you make during this year?\"</p><p style=\"text-align: justify;\">The third farmer kindly replied, \"Gentleman, with all due respect, I obtained a 5% profit during this year.\"</p><p style=\"text-align: justify;\">That was followed by a long silence...</p><p style=\"text-align: justify;\">\"How come? 5% profit?? That is impossible!!!! How did you do that???\"</p><p style=\"text-align: justify;\">\"Very easy and simple math,\" said the third farmer. \"I made the very same 1% profit as you did. ... plus 4% that represents the immense pleasure to be able to enjoy this view, milk my cows and enjoy the most of my farm. That gives me 5% total profit.\"</p><p style=\"text-align: justify;\"><b>Moral Of the Story:</b> All of us have to take care of our farm (that is our hundred square meter land) and get the maximum profit while enjoying every instant of our lives and work!!!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Beginning A New Year','','publish','closed','closed','','beginning-a-new-year','','','2023-06-14 19:03:19','2023-06-14 19:03:19','',0,'https://divyayogamonteregie.org/ca/?page_id=378',0,'page','',0);
INSERT INTO `wpjv_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (379,1,'2023-04-30 17:26:33','2023-04-30 17:26:33','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Motivar - Copy','','inherit','closed','closed','','378-revision-v1','','','2023-04-30 17:26:33','2023-04-30 17:26:33','',378,'https://divyayogamonteregie.org/ca/?p=379',0,'revision','',0),(383,1,'2023-04-30 17:27:45','2023-04-30 17:27:45','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Tres agricultores se reunieron para evaluar y compartir sus experiencias del año pasado. Cada uno tenía cien metros cuadrados de tierra en la que cultivaban. Al final de la reunión, el primer agricultor dijo: \"La situación era muy difícil y será mucho peor para el próximo año\".</p><p>El segundo respondió: \"Ciertamente tienes razón. De hecho, después de trabajar muy duro todo el año, desde el amanecer hasta el atardecer, solo obtuve un 1% de ganancias después de todos los gastos\".</p><p>Calculando sus propios números, el primer agricultor respondió: \"Creo que mi ganancia total es exactamente la misma que la suya, que es del 1%\".</p><p>Los dos miraron al tercer agricultor y le preguntaron: \"¿Cuántas ganancias obtuviste durante este año?\"</p><p>El tercer agricultor respondió amablemente: \"Caballero, con el debido respeto, obtuve una ganancia del 5% durante este año\".</p><p>Eso fue seguido por un largo silencio ...</p><p>\"¿Cómo es que? 5% de ganancia?? Eso es imposible!!!! ¿Cómo lo hiciste???\"</p><p>\"Matemáticas muy fáciles y simples\", dijo el tercer agricultor. \"Obtuve el mismo beneficio del 1% que tú. ... más un 4% que representa el inmenso placer de poder disfrutar de esta vista, ordeñar mis vacas y disfrutar al máximo de mi granja. Eso me da un 5% de ganancia total\".</p><p><strong>Moraleja de la historia:</strong> Todos tenemos que cuidar nuestra granja (que es nuestra tierra de cien metros cuadrados) y obtener el máximo beneficio mientras disfrutamos de cada instante de nuestras vidas y trabajo!!!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Comenzando un nuevo año','','inherit','closed','closed','','378-revision-v1','','','2023-04-30 17:27:45','2023-04-30 17:27:45','',378,'https://divyayogamonteregie.org/ca/?p=383',0,'revision','',0),(380,1,'2023-04-30 17:27:09','2023-04-30 17:27:09','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Comenzando un nuevo año','','inherit','closed','closed','','378-revision-v1','','','2023-04-30 17:27:09','2023-04-30 17:27:09','',378,'https://divyayogamonteregie.org/ca/?p=380',0,'revision','',0),(381,1,'2023-04-30 17:27:45','2023-04-30 17:27:45','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Comenzando un nuevo año','','inherit','closed','closed','','378-revision-v1','','','2023-04-30 17:27:45','2023-04-30 17:27:45','',378,'https://divyayogamonteregie.org/ca/?p=381',0,'revision','',0),(382,1,'2023-04-30 17:27:45','2023-04-30 17:27:45','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Comenzando un nuevo año','','inherit','closed','closed','','378-revision-v1','','','2023-04-30 17:27:45','2023-04-30 17:27:45','',378,'https://divyayogamonteregie.org/ca/?p=382',0,'revision','',0),(384,1,'2023-04-30 17:28:36','2023-04-30 17:28:36','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Bringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \"A View from the Zoo\", Gary Richmond describes</p><p style=\"text-align: justify;\">how a newborn giraffe learns its first lesson.<br />The mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing. She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.</p><p style=\"text-align: justify;\">When it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.</p><p style=\"text-align: justify;\">Then the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.</p><p style=\"text-align: justify;\">The late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.</p><p style=\"text-align: justify;\">Stone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.</p><p style=\"text-align: justify;\">\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\"</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Giraffe-mother and baby','','publish','closed','closed','','giraffe-mother-and-baby','','','2023-06-14 19:04:43','2023-06-14 19:04:43','',0,'https://divyayogamonteregie.org/ca/?page_id=384',0,'page','',0),(385,1,'2023-04-30 17:29:06','2023-04-30 17:29:06','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Jirafa-madre y bebé','','inherit','closed','closed','','384-revision-v1','','','2023-04-30 17:29:06','2023-04-30 17:29:06','',384,'https://divyayogamonteregie.org/ca/?p=385',0,'revision','',0),(386,1,'2023-04-30 17:30:43','2023-04-30 17:30:43','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Jirafa-madre y bebé','','inherit','closed','closed','','384-revision-v1','','','2023-04-30 17:30:43','2023-04-30 17:30:43','',384,'https://divyayogamonteregie.org/ca/?p=386',0,'revision','',0),(387,1,'2023-04-30 17:30:43','2023-04-30 17:30:43','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Jirafa-madre y bebé','','inherit','closed','closed','','384-revision-v1','','','2023-04-30 17:30:43','2023-04-30 17:30:43','',384,'https://divyayogamonteregie.org/ca/?p=387',0,'revision','',0),(388,1,'2023-04-30 17:30:43','2023-04-30 17:30:43','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Traer una jirafa al mundo es una tarea difícil. Una jirafa bebé cae a 10 pies del útero de su madre y generalmente aterriza sobre su espalda. En cuestión de segundos se da la vuelta y mete las piernas debajo de su cuerpo. Desde esta posición considera el mundo por primera vez y se sacude los últimos vestigios del fluido de parto de sus ojos y oídos. Luego, la madre jirafa presenta groseramente a su descendencia la realidad de la vida. En su libro, \"A View from the Zoo\", Gary Richmond describe</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Cómo una jirafa recién nacida aprende su primera lección.<br />La jirafa madre baja la cabeza el tiempo suficiente para echar un vistazo rápido. Luego se posiciona directamente sobre su pantorrilla. Ella espera aproximadamente un minuto, y luego hace lo más irrazonable. Ella balancea su pierna larga y colgante hacia afuera y patea a su bebé, de modo que se envía con la cabeza extendida sobre los talones.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Cuando no se levanta, el proceso violento se repite una y otra vez. La lucha por levantarse es trascendental. A medida que el ternero se cansa, la madre lo patea nuevamente para estimular sus esfuerzos. Finalmente, la pantorrilla se para por primera vez sobre sus patas tambaleantes.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Entonces la jirafa madre hace lo más notable. Ella lo patea de sus pies de nuevo. ¿Por qué? Ella quiere que recuerde cómo se levantó. En la naturaleza, las jirafas bebés deben poder levantarse lo más rápido posible para permanecer con la manada, donde hay seguridad. Leones, hienas, leopardos y perros de caza salvajes disfrutan de jirafas jóvenes, y también lo conseguirían, si la madre no le enseñara a su cría a levantarse rápidamente y seguir adelante.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">El difunto Irving Stone entendió esto. Pasó toda una vida estudiando la grandeza, escribiendo biografías noveladas de hombres como Miguel Ángel, Vincent van Gogh, Sigmund Freud y Charles Darwin.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Una vez le preguntaron a Stone si había encontrado un hilo que recorriera la vida de todas estas personas excepcionales. Él dijo: \"Escribo sobre personas que en algún momento de su vida tienen una visión o sueño de algo que debería lograrse y van a trabajar.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">\"Son golpeados en la cabeza, derribados, vilipendiados, y durante años no llegan a ninguna parte. Pero cada vez que son derribados se ponen de pie. No puedes destruir a estas personas. Y al final de sus vidas han logrado una parte modesta de lo que se propusieron hacer\".</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Jirafa-madre y bebé','','inherit','closed','closed','','384-revision-v1','','','2023-04-30 17:30:43','2023-04-30 17:30:43','',384,'https://divyayogamonteregie.org/ca/?p=388',0,'revision','',0),(389,1,'2023-04-30 17:31:37','2023-04-30 17:31:37','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Sir Winston Churchill took three years getting through eighth grade because he had trouble learning English. It seems ironic that years later Oxford University asked him to address its commencement exercises.</p><p style=\"text-align: justify;\">He arrived with his usual props. A cigar, a cane and a top hat accompanied Churchill wherever he went. As Churchill approached the podium, the crowd rose in appreciative applause. With unmatched dignity, he settled the crowd and stood confident before his admirers. Removing the cigar and carefully placing the top hat on the podium, Churchill gazed at his waiting audience. Authority rang in Churchill\'s voice as he shouted, \"Never give up!\"</p><p style=\"text-align: justify;\">Several seconds passed before he rose to his toes and repeated: \"Never give up!\" His words thundered in their ears. There was a deafening silence as Churchill reached for his hat and cigar, steadied himself with his cane and left the platform. His commencement address was finished</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Never give up','','publish','closed','closed','','never-give-up','','','2023-06-14 19:06:41','2023-06-14 19:06:41','',0,'https://divyayogamonteregie.org/ca/?page_id=389',0,'page','',0),(700,1,'2023-05-24 12:46:46','2023-05-24 12:46:46','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Sir Winston Churchill took three years getting through eighth grade because he had trouble learning English. It seems ironic that years later Oxford University asked him to address its commencement exercises.</p><p style=\"text-align: justify;\">He arrived with his usual props. A cigar, a cane and a top hat accompanied Churchill wherever he went. As Churchill approached the podium, the crowd rose in appreciative applause. With unmatched dignity, he settled the crowd and stood confident before his admirers. Removing the cigar and carefully placing the top hat on the podium, Churchill gazed at his waiting audience. Authority rang in Churchill\'s voice as he shouted, \"Never give up!\"</p><p style=\"text-align: justify;\">Several seconds passed before he rose to his toes and repeated: \"Never give up!\" His words thundered in their ears. There was a deafening silence as Churchill reached for his hat and cigar, steadied himself with his cane and left the platform. His commencement address was finished</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Never give up','','inherit','closed','closed','','389-revision-v1','','','2023-05-24 12:46:46','2023-05-24 12:46:46','',389,'https://divyayogamonteregie.org/ca/?p=700',0,'revision','',0),(393,1,'2023-04-30 17:32:25','2023-04-30 17:32:25','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Sir Winston Churchill tardó tres años en terminar el octavo grado porque tenía problemas para aprender inglés. Parece irónico que años más tarde la Universidad de Oxford le pidiera que abordara sus ejercicios de graduación.</p><p>Llegó con sus accesorios habituales. Un cigarro, un bastón y un sombrero de copa acompañaban a Churchill dondequiera que iba. Cuando Churchill se acercó al podio, la multitud se levantó en aplausos agradecidos. Con una dignidad inigualable, acomodó a la multitud y se mantuvo confiado ante sus admiradores. Quitando el cigarro y colocando cuidadosamente el sombrero de copa en el podio, Churchill miró a su audiencia que esperaba. La autoridad sonó en la voz de Churchill mientras gritaba: \"¡Nunca te rindas!\"</p><p>Pasaron varios segundos antes de que se pusiera de pie y repitiera: \"¡Nunca te rindas!\" Sus palabras tronaron en sus oídos. Hubo un silencio ensordecedor cuando Churchill tomó su sombrero y cigarro, se estabilizó con su bastón y abandonó la plataforma. Su discurso de graduación había terminado</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Nunca te rindas','','inherit','closed','closed','','389-revision-v1','','','2023-04-30 17:32:25','2023-04-30 17:32:25','',389,'https://divyayogamonteregie.org/ca/?p=393',0,'revision','',0),(390,1,'2023-04-30 17:31:58','2023-04-30 17:31:58','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Nunca te rindas','','inherit','closed','closed','','389-revision-v1','','','2023-04-30 17:31:58','2023-04-30 17:31:58','',389,'https://divyayogamonteregie.org/ca/?p=390',0,'revision','',0),(391,1,'2023-04-30 17:32:25','2023-04-30 17:32:25','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Nunca te rindas','','inherit','closed','closed','','389-revision-v1','','','2023-04-30 17:32:25','2023-04-30 17:32:25','',389,'https://divyayogamonteregie.org/ca/?p=391',0,'revision','',0),(392,1,'2023-04-30 17:32:25','2023-04-30 17:32:25','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Nunca te rindas','','inherit','closed','closed','','389-revision-v1','','','2023-04-30 17:32:25','2023-04-30 17:32:25','',389,'https://divyayogamonteregie.org/ca/?p=392',0,'revision','',0),(394,1,'2023-04-30 17:33:13','2023-04-30 17:33:13','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">This is a  parable of a farmer who owned an old mule. The mule fell into the farmer\'s well. The farmer heard the mule \'braying\' -- or whatever mules do when they fall into wells. After carefully assessing the situation, the farmer felt sorry for the mule, but decided that neither the mule nor the well was worth saving. Instead, he called his neighbors together and told them what had happened and asked them to help haul dirt to bury the old mule in the well and put him out of his misery.</p><p style=\"text-align: justify;\">Initially, the old mule was hysterical! But as the farmer and his neighbors continued shoveling and the dirt hit his back, a thought struck him. It suddenly dawned on him that every time a shovel load of dirt landed on his back: he should shake it off and step up! This is what the old mule did, blow after blow. \"Shake it off and step up... shake it off and step up... shake it off and step up!\" he repeated to encourage himself.</p><p style=\"text-align: justify;\">No matter how painful the blows, or distressing the situation seemed, the old mule fought \"panic\" and just kept right on shaking it off and stepping up! You guessed it! It wasn\'t long before the old mule, battered and exhausted, stepped triumphantly over the wall of that well! What seemed like it would bury him, actually end up blessing him. All because of the manner in which he handled his adversity.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Shake it off and step up','','publish','closed','closed','','shake-it-off-and-step-up','','','2023-06-15 18:41:18','2023-06-15 18:41:18','',0,'https://divyayogamonteregie.org/ca/?page_id=394',0,'page','',0),(704,1,'2023-05-24 12:48:53','2023-05-24 12:48:53','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">This is a  parable of a farmer who owned an old mule. The mule fell into the farmer\'s well. The farmer heard the mule \'braying\' -- or whatever mules do when they fall into wells. After carefully assessing the situation, the farmer felt sorry for the mule, but decided that neither the mule nor the well was worth saving. Instead, he called his neighbors together and told them what had happened and asked them to help haul dirt to bury the old mule in the well and put him out of his misery.</p><p style=\"text-align: justify;\">Initially, the old mule was hysterical! But as the farmer and his neighbors continued shoveling and the dirt hit his back, a thought struck him. It suddenly dawned on him that every time a shovel load of dirt landed on his back: he should shake it off and step up! This is what the old mule did, blow after blow. \"Shake it off and step up... shake it off and step up... shake it off and step up!\" he repeated to encourage himself.</p><p style=\"text-align: justify;\">No matter how painful the blows, or distressing the situation seemed, the old mule fought \"panic\" and just kept right on shaking it off and stepping up! You guessed it! It wasn\'t long before the old mule, battered and exhausted, stepped triumphantly over the wall of that well! What seemed like it would bury him, actually end up blessing him. All because of the manner in which he handled his adversity.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Shake it off and step up','','inherit','closed','closed','','394-revision-v1','','','2023-05-24 12:48:53','2023-05-24 12:48:53','',394,'https://divyayogamonteregie.org/ca/?p=704',0,'revision','',0),(398,1,'2023-04-30 17:34:12','2023-04-30 17:34:12','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Esta es una parábola de un granjero que poseía una vieja mula. La mula cayó en el pozo del granjero. El granjero escuchó a la mula \"rebuznar\", o lo que sea que hagan las mulas cuando caen en pozos. Después de evaluar cuidadosamente la situación, el granjero sintió lástima por la mula, pero decidió que no valía la pena salvar ni la mula ni el pozo. En cambio, llamó a sus vecinos y les contó lo que había sucedido y les pidió que ayudaran a acarrear tierra para enterrar a la vieja mula en el pozo y sacarlo de su miseria.</p><p>¡Inicialmente, la vieja mula estaba histérica! Pero cuando el granjero y sus vecinos continuaron paleando y la tierra golpeó su espalda, un pensamiento lo golpeó. De repente se dio cuenta de que cada vez que una pala cargada de tierra aterrizaba en su espalda: ¡debería sacudirla y dar un paso adelante! Esto es lo que hizo la vieja mula, golpe tras golpe. \"Sacude y da un paso adelante ... Agítalo y da un paso adelante ... ¡Sacude y da un paso adelante!\", repitió para animarse.</p><p>No importa cuán dolorosos fueran los golpes o angustiante que pareciera la situación, ¡la vieja mula luchó contra el \"pánico\" y siguió sacudiéndose y dando un paso adelante! ¡Lo has adivinado! ¡No pasó mucho tiempo antes de que la vieja mula, maltratada y exhausta, pisara triunfalmente la pared de ese pozo! Lo que parecía que lo enterraría, en realidad terminaría bendiciéndole. Todo por la manera en que manejó su adversidad.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Sacude y da un paso adelante','','inherit','closed','closed','','394-revision-v1','','','2023-04-30 17:34:12','2023-04-30 17:34:12','',394,'https://divyayogamonteregie.org/ca/?p=398',0,'revision','',0),(395,1,'2023-04-30 17:33:38','2023-04-30 17:33:38','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Sacude y da un paso adelante','','inherit','closed','closed','','394-revision-v1','','','2023-04-30 17:33:38','2023-04-30 17:33:38','',394,'https://divyayogamonteregie.org/ca/?p=395',0,'revision','',0),(396,1,'2023-04-30 17:34:12','2023-04-30 17:34:12','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Sacude y da un paso adelante','','inherit','closed','closed','','394-revision-v1','','','2023-04-30 17:34:12','2023-04-30 17:34:12','',394,'https://divyayogamonteregie.org/ca/?p=396',0,'revision','',0),(397,1,'2023-04-30 17:34:12','2023-04-30 17:34:12','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Sacude y da un paso adelante','','inherit','closed','closed','','394-revision-v1','','','2023-04-30 17:34:12','2023-04-30 17:34:12','',394,'https://divyayogamonteregie.org/ca/?p=397',0,'revision','',0),(399,1,'2023-04-30 17:35:16','2023-04-30 17:35:16','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">On a beautiful morning, an older gentleman, aged 75, was sitting with his son when he asked his son what was sitting in the window. He himself was not able to recognize what it was, due to his weak eyesight.</p><p style=\"text-align: justify;\">His son replied, \"That is the crow.\"</p><p style=\"text-align: justify;\">Due to his age, the older man forgot and asked again.</p><p style=\"text-align: justify;\">His son again replied the same thing, \"That is the crow.\"</p><p style=\"text-align: justify;\">This exchange continued for seven to eight times when, and at last, his son got annoyed and replied with anger, \"Why are you asking the same thing again and again?\"</p><p style=\"text-align: justify;\">The old man replied with tears in his eyes. \"Son, don\'t get angry. When you were at the age of 4 years you asked me the same question 40 times and I never got angry</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Sometimes We Forget... Remember To Be Kind','','publish','closed','closed','','sometimes-we-forget-remember-to-be-kind','','','2023-06-15 18:42:34','2023-06-15 18:42:34','',0,'https://divyayogamonteregie.org/ca/?page_id=399',0,'page','',0),(403,1,'2023-04-30 17:36:02','2023-04-30 17:36:02','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>En una hermosa mañana, un caballero mayor, de 75 años, estaba sentado con su hijo cuando le preguntó qué estaba sentado en la ventana. Él mismo no fue capaz de reconocer lo que era, debido a su débil vista.</p><p>Su hijo respondió: \"Ese es el cuervo\".</p><p>Debido a su edad, el hombre mayor se olvidó y volvió a preguntar.</p><p>Su hijo volvió a responder lo mismo: \"Ese es el cuervo\".</p><p>Este intercambio continuó de siete a ocho veces cuando, y al final, su hijo se molestó y respondió con ira: \"¿Por qué preguntas lo mismo una y otra vez?\"</p><p>El anciano respondió con lágrimas en los ojos. \"Hijo, no te enojes. Cuando tenías 4 años me hiciste la misma pregunta 40 veces y nunca me enojé.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A veces nos olvidamos... Recuerda ser amable','','inherit','closed','closed','','399-revision-v1','','','2023-04-30 17:36:02','2023-04-30 17:36:02','',399,'https://divyayogamonteregie.org/ca/?p=403',0,'revision','',0),(400,1,'2023-04-30 17:35:34','2023-04-30 17:35:34','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A veces nos olvidamos... Recuerda ser amable','','inherit','closed','closed','','399-revision-v1','','','2023-04-30 17:35:34','2023-04-30 17:35:34','',399,'https://divyayogamonteregie.org/ca/?p=400',0,'revision','',0),(401,1,'2023-04-30 17:36:02','2023-04-30 17:36:02','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A veces nos olvidamos... Recuerda ser amable','','inherit','closed','closed','','399-revision-v1','','','2023-04-30 17:36:02','2023-04-30 17:36:02','',399,'https://divyayogamonteregie.org/ca/?p=401',0,'revision','',0),(402,1,'2023-04-30 17:36:02','2023-04-30 17:36:02','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A veces nos olvidamos... Recuerda ser amable','','inherit','closed','closed','','399-revision-v1','','','2023-04-30 17:36:02','2023-04-30 17:36:02','',399,'https://divyayogamonteregie.org/ca/?p=402',0,'revision','',0),(404,1,'2023-04-30 17:47:45','2023-04-30 17:47:45','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:47:45','2023-04-30 17:47:45','',276,'https://divyayogamonteregie.org/ca/?p=404',0,'revision','',0),(405,1,'2023-04-30 17:47:45','2023-04-30 17:47:45','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:47:45','2023-04-30 17:47:45','',276,'https://divyayogamonteregie.org/ca/?p=405',0,'revision','',0),(406,1,'2023-04-30 17:47:45','2023-04-30 17:47:45','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:47:45','2023-04-30 17:47:45','',276,'https://divyayogamonteregie.org/ca/?p=406',0,'revision','',0),(407,1,'2023-04-30 17:48:01','2023-04-30 17:48:01','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:48:01','2023-04-30 17:48:01','',276,'https://divyayogamonteregie.org/ca/?p=407',0,'revision','',0),(408,1,'2023-04-30 17:48:01','2023-04-30 17:48:01','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:48:01','2023-04-30 17:48:01','',276,'https://divyayogamonteregie.org/ca/?p=408',0,'revision','',0),(409,1,'2023-04-30 17:48:01','2023-04-30 17:48:01','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:48:01','2023-04-30 17:48:01','',276,'https://divyayogamonteregie.org/ca/?p=409',0,'revision','',0),(410,1,'2023-04-30 17:48:16','2023-04-30 17:48:16','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:48:16','2023-04-30 17:48:16','',276,'https://divyayogamonteregie.org/ca/?p=410',0,'revision','',0),(411,1,'2023-04-30 17:48:16','2023-04-30 17:48:16','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:48:16','2023-04-30 17:48:16','',276,'https://divyayogamonteregie.org/ca/?p=411',0,'revision','',0),(412,1,'2023-04-30 17:48:16','2023-04-30 17:48:16','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:48:16','2023-04-30 17:48:16','',276,'https://divyayogamonteregie.org/ca/?p=412',0,'revision','',0),(413,1,'2023-04-30 17:48:32','2023-04-30 17:48:32','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:48:32','2023-04-30 17:48:32','',276,'https://divyayogamonteregie.org/ca/?p=413',0,'revision','',0),(414,1,'2023-04-30 17:48:32','2023-04-30 17:48:32','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:48:32','2023-04-30 17:48:32','',276,'https://divyayogamonteregie.org/ca/?p=414',0,'revision','',0),(415,1,'2023-04-30 17:48:32','2023-04-30 17:48:32','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:48:32','2023-04-30 17:48:32','',276,'https://divyayogamonteregie.org/ca/?p=415',0,'revision','',0),(416,1,'2023-04-30 17:49:00','2023-04-30 17:49:00','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:49:00','2023-04-30 17:49:00','',276,'https://divyayogamonteregie.org/ca/?p=416',0,'revision','',0),(417,1,'2023-04-30 17:49:00','2023-04-30 17:49:00','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:49:00','2023-04-30 17:49:00','',276,'https://divyayogamonteregie.org/ca/?p=417',0,'revision','',0),(418,1,'2023-04-30 17:49:01','2023-04-30 17:49:01','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 17:49:01','2023-04-30 17:49:01','',276,'https://divyayogamonteregie.org/ca/?p=418',0,'revision','',0),(419,1,'2023-04-30 17:50:15','2023-04-30 17:50:15','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>One day all the employees of a very unusual company reached their office and all saw a big sign on the main door which said this:</p><p>\"Yesterday, the person who has been hindering your growth in this company passed away. We invite you to join the funeral in the room that has been prepared in the gym.\"</p><p>In the beginning, they all got sad for the death of one of their colleagues, but after a while they started getting curious to know who was that person who hindered the growth of their colleagues and the company itself?</p><p>The excitement in the gym was such that security agents were ordered to control the crowd within the room. The more people reached the coffin, the more the excitement heated up.</p><p><b>Everyone thought - \"Who is this person who was hindering my progress?\"</b></p><p>One by one the intrigued employees got closer to the coffin, and when they looked inside it, they suddenly became speechless.</p><p>They all got to stand near the coffin, and all ended up shocked and in silence, as if someone had touched the deepest part of their soul.</p><p><b>There was a mirror inside the coffin: everyone who looked inside it could see themselves!</b></p><p><b>There was also a sign next to the mirror that said:</b></p><p><b>There is only one person who is capable of setting limits to your growth and IT IS YOU!</b></p><p>Your life does not change when your boss changes, when your friends change, when your parents change, when your husband or wife changes, when your company changes, when your church changes, when your location changes, when your money changes, when your status changes.</p><p><b>No, your life changes when YOU change</b>, when you go beyond your limiting beliefs.</p><p>Examine yourself, watch yourself. Don\'t be afraid of difficulties, impossibilities and losses. Be a winner, build yourself and your reality. It\'s the way you face life itself that makes the difference.</p><p>A few years ago a college student, who was struggling to build his career, appeared for his professional examination. He attempted his first paper excellently but he imagined that he performed badly.</p><p>Keeping this in mind, he lost concentration for the rest of the subjects and in turn, didn\'t write the other subjects well. Later on, the results came out that the paper he thought was poorly written had secured top marks in the college but in the other subjects, he failed. Why did this happen? The reason is simple: lack of belief in himself</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','An Interesting Funeral','','publish','closed','closed','','an-interesting-funeral','','','2023-06-15 19:03:05','2023-06-15 19:03:05','',0,'https://divyayogamonteregie.org/ca/?page_id=419',0,'page','',0),(420,1,'2023-04-30 17:50:49','2023-04-30 17:50:49','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">A vacationing American businessman standing on the pier of a quaint coastal fishing village in southern Mexico watched as a small boat with just one young Mexican fisherman pulled into the dock. Inside the small boat were several large yellowfin tuna. Enjoying the warmth of the early afternoon sun, the American complimented the Mexican on the quality of his fish.</p><p style=\"text-align: justify;\">\"How long did it take you to catch them?\" the American casually asked.</p><p style=\"text-align: justify;\">\"Oh, a few hours,\" the Mexican fisherman replied.</p><p style=\"text-align: justify;\">\"Why don\'t you stay out longer and catch more fish?\" the American businessman then asked.</p><p style=\"text-align: justify;\">The Mexican warmly replied, \"With this I have more than enough to support my family\'s needs.\"</p><p style=\"text-align: justify;\">The businessman then became serious, \"But what do you do with the rest of your time?\"</p><p style=\"text-align: justify;\">Responding with a smile, the Mexican fisherman answered, \"I sleep late, play with my children, watch ballgames, and take siesta with my wife. Sometimes in the evenings I take a stroll into the village to see my friends, play the guitar, sing a few songs...\"</p><p style=\"text-align: justify;\">The American businessman impatiently interrupted, \"Look, I have an MBA from Harvard, and I can help you to be more profitable. You can start by fishing several hours longer every day. You can then sell the extra fish you catch. With the extra money, you can buy a bigger boat. With the additional income that larger boat will bring, before long you can buy a second boat, then a third one, and so on, until you have an entire fleet of fishing boats.\"</p><p style=\"text-align: justify;\">Proud of his own sharp thinking, he excitedly elaborated a grand scheme which could bring even bigger profits, \"Then, instead of selling your catch to a middleman you\'ll be able to sell your fish directly to the processor, or even open your own cannery. Eventually, you could control the product, processing and distribution. You could leave this tiny coastal village and move to Mexico City, or possibly even Los Angeles or New York City, where you could even further expand your enterprise.\"</p><p style=\"text-align: justify;\">Having never thought of such things, the Mexican fisherman asked, \"But how long will all this take?\"</p><p style=\"text-align: justify;\">After a rapid mental calculation, the Harvard MBA pronounced, \"Probably about 15-20 years, maybe less if you work really hard.\"</p><p style=\"text-align: justify;\">\"And then what, señor?\" asked the fisherman.</p><p style=\"text-align: justify;\">\"Why, that\'s the best part!\" answered the businessman with a laugh. \"When the time is right, you would sell your company stock to the public and become very rich. You would make millions.\"</p><p style=\"text-align: justify;\">\"Millions? Really? What would I do with it all?\" asked the young fisherman in disbelief.</p><p style=\"text-align: justify;\">The businessman boasted, \"Then you could happily retire with all the money you\'ve made. You could move to a quaint coastal fishing village where you could sleep late, play with your grandchildren, watch ballgames, and take siesta with your wife. You could stroll to the village in the evenings where you could play the guitar and sing with your friends all you want.\"<br />The moral of the story is: <strong>Know what really matters in life, and you may find that it is already much closer than you think</strong></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The  Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?','','publish','closed','closed','','the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life','','','2023-06-15 18:43:44','2023-06-15 18:43:44','',0,'https://divyayogamonteregie.org/ca/?page_id=420',0,'page','',0),(421,1,'2023-04-30 17:51:28','2023-04-30 17:51:28','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?','','inherit','closed','closed','','420-revision-v1','','','2023-04-30 17:51:28','2023-04-30 17:51:28','',420,'https://divyayogamonteregie.org/ca/?p=421',0,'revision','',0),(422,1,'2023-04-30 17:52:24','2023-04-30 17:52:24','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?','','inherit','closed','closed','','420-revision-v1','','','2023-04-30 17:52:24','2023-04-30 17:52:24','',420,'https://divyayogamonteregie.org/ca/?p=422',0,'revision','',0),(423,1,'2023-04-30 17:52:24','2023-04-30 17:52:24','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?','','inherit','closed','closed','','420-revision-v1','','','2023-04-30 17:52:24','2023-04-30 17:52:24','',420,'https://divyayogamonteregie.org/ca/?p=423',0,'revision','',0),(424,1,'2023-04-30 17:52:24','2023-04-30 17:52:24','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un hombre de negocios estadounidense de vacaciones parado en el muelle de un pintoresco pueblo pesquero costero en el sur de México observó cómo un pequeño bote con solo un joven pescador mexicano se detuvo en el muelle. Dentro del pequeño bote había varios atunes aleta amarilla grandes. Disfrutando del calor del sol de la tarde, el estadounidense felicitó al mexicano por la calidad de su pescado.</p><p>\"¿Cuánto tiempo te llevó atraparlos?\", Preguntó casualmente el estadounidense.</p><p>\"Oh, unas horas\", respondió el pescador mexicano.</p><p>\"¿Por qué no te quedas más tiempo y pescas más peces?\", preguntó entonces el empresario estadounidense.</p><p>El mexicano respondió calurosamente: \"Con esto tengo más que suficiente para apoyar las necesidades de mi familia\".</p><p>El hombre de negocios entonces se puso serio, \"¿Pero qué haces con el resto de tu tiempo?\"</p><p>Respondiendo con una sonrisa, el pescador mexicano respondió: \"Duermo hasta tarde, juego con mis hijos, veo juegos de pelota y tomo una siesta con mi esposa. A veces por las noches doy un paseo por el pueblo para ver a mis amigos, tocar la guitarra, cantar algunas canciones...\"</p><p>El empresario estadounidense interrumpió con impaciencia: \"Mira, tengo un MBA de Harvard y puedo ayudarte a ser más rentable. Puede comenzar pescando varias horas más todos los días. A continuación, puede vender el pescado extra que captura. Con el dinero extra, puedes comprar un barco más grande. Con los ingresos adicionales que traerá un barco más grande, en poco tiempo puede comprar un segundo barco, luego un tercero, y así sucesivamente, hasta que tenga una flota completa de barcos de pesca\".</p><p>Orgulloso de su propio pensamiento agudo, elaboró con entusiasmo un gran plan que podría generar ganancias aún mayores: \"Entonces, en lugar de vender su captura a un intermediario, podrá vender su pescado directamente al procesador, o incluso abrir su propia fábrica de conservas. Eventualmente, podría controlar el producto, el procesamiento y la distribución. Podrías dejar este pequeño pueblo costero y mudarte a la Ciudad de México, o posiblemente incluso a Los Ángeles o Nueva York, donde podrías expandir aún más tu empresa\".</p><p>Como nunca había pensado en tales cosas, el pescador mexicano preguntó: \"¿Pero cuánto tiempo tomará todo esto?\"</p><p>Después de un rápido cálculo mental, el MBA de Harvard pronunció: \"Probablemente unos 15-20 años, tal vez menos si trabajas muy duro\".</p><p>\"¿Y luego qué, señor?\", preguntó el pescador.</p><p>\"¡Por qué, esa es la mejor parte!\", Respondió el empresario con una sonrisa. \"Cuando sea el momento adecuado, venderías las acciones de tu empresa al público y te volverías muy rico. Ganarías millones\".</p><p>\"¿Millones? ¿Realmente? ¿Qué haría yo con todo esto?\", preguntó el joven pescador con incredulidad.</p><p>El empresario se jactó: \"Entonces podrías jubilarte felizmente con todo el dinero que has ganado. Podrías mudarte a un pintoresco pueblo pesquero costero donde podrías dormir hasta tarde, jugar con tus nietos, ver juegos de pelota y tomar la siesta con tu esposa. Podías pasear hasta el pueblo por las noches, donde podías tocar la guitarra y cantar con tus amigos todo lo que quisieras\".<br />La moraleja de la historia es: <strong>Sepa lo que realmente importa en la vida, y puede encontrar que ya está mucho más cerca de lo que piensa.</strong></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?','','inherit','closed','closed','','420-revision-v1','','','2023-04-30 17:52:24','2023-04-30 17:52:24','',420,'https://divyayogamonteregie.org/ca/?p=424',0,'revision','',0),(425,1,'2023-04-30 17:53:40','2023-04-30 17:53:40','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">This is a powerful message for our modern society. We seem to have lost our bearing and our sense of direction.</p><p style=\"text-align: justify;\">One young academically excellent person went to apply for a managerial position in a big company. He passed the first interview; the director did the last interview. The director discovered from the CV that the youth\'s academic achievements were excellent all the way, from the secondary school until the postgraduate research, never had a year when he did not score.</p><p style=\"text-align: justify;\">The director asked, \"Did you obtain any scholarships in school?\"</p><p style=\"text-align: justify;\">The youth answered, \"None.\"</p><p style=\"text-align: justify;\">The director asked, \"Was it your father who paid for your school fees?\"</p><p style=\"text-align: justify;\">The youth answered, \"My father passed away when I was one year old, it was my mother who paid for my school fees.\"</p><p style=\"text-align: justify;\">The director asked, \"Where did your mother work?\"</p><p style=\"text-align: justify;\">The youth answered, \"My mother worked as laundry woman.\"</p><p style=\"text-align: justify;\">The director requested the youth to show his hands. The youth showed a pair of hands that were smooth and perfect.</p><p style=\"text-align: justify;\">The director asked, \"Have you ever helped your mother wash the clothes before?\"</p><p style=\"text-align: justify;\">The youth answered, \"Never, my mother always wanted me to study and read more books. Furthermore, my mother can wash clothes faster than me.\"</p><p style=\"text-align: justify;\">The director said, \"I have a request. When you go back today, go and clean your mother\'s hands, and then see me tomorrow morning.\"</p><p style=\"text-align: justify;\">The youth felt that his chance of landing the job was high. When he went back, he happily requested his mother to let him clean her hands. His mother felt strange. Happy but with mixed feelings, she showed her hands to the young man.</p><p style=\"text-align: justify;\">The youth cleaned his mother\'s hands slowly. His tear fell as he did that. It was the first time he noticed that his mother\'s hands were so wrinkled, and there were so many bruises in her hands. Some bruises were so painful that his mother shivered when they were cleaned with water.</p><p style=\"text-align: justify;\">This was the first time the youth realized that it was this pair of hands that washed the clothes everyday to enable him to pay the school fee. The bruises in the mother\'s hands were the price that the mother had to pay for his graduation, academic excellence and his future.</p><p style=\"text-align: justify;\">After finishing the cleaning of his mother\'s hands, the youth quietly washed all the remaining clothes for his mother.</p><p style=\"text-align: justify;\">That night, mother and son talked for a very long time.</p><p style=\"text-align: justify;\">Next morning, the youth went to the director\'s office.</p><p style=\"text-align: justify;\">The Director noticed the tears in the youth\'s eyes, asked: \"Can you tell me what have you done and learned yesterday in your house?\"</p><p style=\"text-align: justify;\">The youth answered, \"I cleaned my mother\'s hands and also finished cleaning all the remaining clothes.\"</p><p style=\"text-align: justify;\">The Director asked, \"Please tell me your feelings.\"</p><p style=\"text-align: justify;\">The youth said:</p><ol style=\"text-align: justify;\" start=\"1\"><li>I know now what appreciation is. Without my mother, there would not have been the successful me today.</li><li>By working together and helping my mother, only now I realize how difficult and tough it is to get something done.</li><li>I have come to appreciate the importance and value of family relationships.</li></ol><p style=\"text-align: justify;\">The director said, \"This is what I am looking for to be my manager. I want to recruit a person who can appreciate the help of others, a person who knows the sufferings of others to get things done, and a person who would not put money as his only goal in life. You are hired.\"</p><p style=\"text-align: justify;\">Later on, this young person worked very hard and received the respect of his subordinates. Every employee worked diligently and as a team. The company\'s performance improved tremendously</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The appriciation','','publish','closed','closed','','the-appriciation','','','2023-06-15 18:45:03','2023-06-15 18:45:03','',0,'https://divyayogamonteregie.org/ca/?page_id=425',0,'page','',0),(426,1,'2023-04-30 17:54:01','2023-04-30 17:54:01','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','La apreciación','','inherit','closed','closed','','425-revision-v1','','','2023-04-30 17:54:01','2023-04-30 17:54:01','',425,'https://divyayogamonteregie.org/ca/?p=426',0,'revision','',0),(427,1,'2023-04-30 17:54:43','2023-04-30 17:54:43','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','La apreciación','','inherit','closed','closed','','425-revision-v1','','','2023-04-30 17:54:43','2023-04-30 17:54:43','',425,'https://divyayogamonteregie.org/ca/?p=427',0,'revision','',0),(428,1,'2023-04-30 17:54:43','2023-04-30 17:54:43','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','La apreciación','','inherit','closed','closed','','425-revision-v1','','','2023-04-30 17:54:43','2023-04-30 17:54:43','',425,'https://divyayogamonteregie.org/ca/?p=428',0,'revision','',0),(429,1,'2023-04-30 17:54:43','2023-04-30 17:54:43','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Este es un mensaje poderoso para nuestra sociedad moderna. Parece que hemos perdido nuestro rumbo y nuestro sentido de dirección.</p><p>Una persona joven académicamente excelente fue a solicitar un puesto directivo en una gran empresa. Pasó la primera entrevista; El director hizo la última entrevista. El director descubrió en el CV que los logros académicos del joven fueron excelentes hasta el final, desde la escuela secundaria hasta la investigación de posgrado, nunca tuvo un año en el que no puntuó.</p><p>El director preguntó: \"¿Obtuviste alguna beca en la escuela?\"</p><p>El joven respondió: \"Ninguno\".</p><p>El director preguntó: \"¿Fue tu padre quien pagó tus cuotas escolares?\"</p><p>El joven respondió: \"Mi padre falleció cuando yo tenía un año, fue mi madre quien pagó mis cuotas escolares\".</p><p>El director preguntó: \"¿Dónde trabajaba tu madre?\"</p><p>El joven respondió: \"Mi madre trabajaba como lavandera\".</p><p>El director le pidió al joven que mostrara sus manos. El joven mostró un par de manos que eran suaves y perfectas.</p><p>El director preguntó: \"¿Alguna vez has ayudado a tu madre a lavar la ropa antes?\"</p><p>El joven respondió: \"Nunca, mi madre siempre quiso que estudiara y leyera más libros. Además, mi madre puede lavar la ropa más rápido que yo\".</p><p>El director dijo: \"Tengo una solicitud. Cuando regreses hoy, ve y limpia las manos de tu madre, y luego mírame mañana por la mañana\".</p><p>El joven sintió que sus posibilidades de conseguir el trabajo eran altas. Cuando regresó, felizmente le pidió a su madre que le permitiera limpiarse las manos. Su madre se sintió extraña. Feliz pero con sentimientos encontrados, mostró sus manos al joven.</p><p>El joven limpió las manos de su madre lentamente. Su lágrima cayó mientras lo hacía. Fue la primera vez que notó que las manos de su madre estaban tan arrugadas y había tantos moretones en sus manos. Algunos moretones eran tan dolorosos que su madre se estremeció cuando los limpiaron con agua.</p><p>Esta fue la primera vez que el joven se dio cuenta de que era este par de manos las que lavaban la ropa todos los días para permitirle pagar la cuota escolar. Los moretones en las manos de la madre fueron el precio que la madre tuvo que pagar por su graduación, excelencia académica y su futuro.</p><p>Después de terminar la limpieza de las manos de su madre, el joven lavó en silencio toda la ropa restante para su madre.</p><p>Esa noche, madre e hijo hablaron durante mucho tiempo.</p><p>A la mañana siguiente, el joven fue a la oficina del director.</p><p>El director notó las lágrimas en los ojos del joven y preguntó: \"¿Puede decirme qué ha hecho y aprendido ayer en su casa?\"</p><p>El joven respondió: \"Limpié las manos de mi madre y también terminé de limpiar toda la ropa restante\".</p><p>El director preguntó: \"Por favor, dígame sus sentimientos\".</p><p>El joven dijo:</p><ol><li>Ahora sé lo que es el aprecio. Sin mi madre, no habría habido el éxito de mí hoy.</li><li>Al trabajar juntos y ayudar a mi madre, solo ahora me doy cuenta de lo difícil y difícil que es hacer algo.</li><li>He llegado a apreciar la importancia y el valor de las relaciones familiares.</li></ol><p>El director dijo: \"Esto es lo que estoy buscando para ser mi gerente. Quiero reclutar a una persona que pueda apreciar la ayuda de los demás, una persona que conozca los sufrimientos de los demás para hacer las cosas, y una persona que no ponga el dinero como su único objetivo en la vida. Estás contratado\".</p><p>Más tarde, este joven trabajó muy duro y recibió el respeto de sus subordinados. Cada empleado trabajó diligentemente y en equipo. El rendimiento de la compañía mejoró enormemente</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','La apreciación','','inherit','closed','closed','','425-revision-v1','','','2023-04-30 17:54:43','2023-04-30 17:54:43','',425,'https://divyayogamonteregie.org/ca/?p=429',0,'revision','',0),(430,1,'2023-04-30 17:55:22','2023-04-30 17:55:22','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>A disciple and his teacher were walking through the forest. The disciple was disturbed by the fact that his mind was in constant unrest.</p><p>He asked his teacher: \"Why most people\'s minds are restless, and only a few possess a calm mind? What can one do to still the mind?\"</p><p>The teacher looked at the disciple, smiled and said:<br />\"I will tell you a story. An elephant was standing and picking leaves from a tree. A small fly came, flying and buzzing near his ear. The elephant waved it away with his long ears. Then the fly came again, and the elephant waved it away once more.\"</p><p>This was repeated several times. Then the elephant asked the fly:<br />\"Why are you so restless and noisy? Why can\'t you stay for a while in one place?\"</p><p>The fly answered: \"I am attracted to whatever I see, hear or smell. My five senses, and everything that happens around me, pull me constantly in all directions, and I cannot resist them. What is your secret? How can you stay so calm and still?\"</p><p>The elephant stopped eating and said:<br />\"My five senses do not rule my attention. I am in control of my attention, and I can direct it wherever I want. This helps me to get immersed in whatever I do, and therefore, keep my mind focused and calm. Now that I am eating, I am completely immersed in eating. In this way, I can enjoy my food and chew it better. I control my attention, and not the other way around, and this helps me stay peaceful.\"</p><p>Upon hearing these words, the disciple\'s eyes opened wide, and a smile appeared on his face. He looked at his teacher and said:<br />\"I understand! My mind will be in constant unrest, if my five senses, and whatever is happening in the world around me are in control of it. On the other hand, if I am in command of my five senses, able to disregard sense impressions, my mind would become calm, and I will be able to disregard its restlessness.\"</p><p>\"Yes, that\'s right,\" answered the teacher,\" The mind is restless and goes wherever the attention is. Control your attention, and you control your mind.\"</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Elephant and the Fly','','publish','closed','closed','','the-elephant-and-the-fly','','','2023-06-15 18:46:57','2023-06-15 18:46:57','',0,'https://divyayogamonteregie.org/ca/?page_id=430',0,'page','',0),(431,1,'2023-04-30 17:55:36','2023-04-30 17:55:36','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','El elefante y la mosca','','inherit','closed','closed','','430-revision-v1','','','2023-04-30 17:55:36','2023-04-30 17:55:36','',430,'https://divyayogamonteregie.org/ca/?p=431',0,'revision','',0),(432,1,'2023-04-30 17:56:00','2023-04-30 17:56:00','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','El elefante y la mosca','','inherit','closed','closed','','430-revision-v1','','','2023-04-30 17:56:00','2023-04-30 17:56:00','',430,'https://divyayogamonteregie.org/ca/?p=432',0,'revision','',0),(433,1,'2023-04-30 17:56:00','2023-04-30 17:56:00','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','El elefante y la mosca','','inherit','closed','closed','','430-revision-v1','','','2023-04-30 17:56:00','2023-04-30 17:56:00','',430,'https://divyayogamonteregie.org/ca/?p=433',0,'revision','',0),(434,1,'2023-04-30 17:56:00','2023-04-30 17:56:00','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un discípulo y su maestro caminaban por el bosque. El discípulo estaba perturbado por el hecho de que su mente estaba en constante inquietud.</p><p>Le preguntó a su maestro: \"¿Por qué la mente de la mayoría de las personas están inquietas y solo unos pocos poseen una mente tranquila? ¿Qué puede uno hacer para calmar la mente?\"</p><p>El maestro miró al discípulo, sonrió y dijo:<br />\"Te contaré una historia. Un elefante estaba de pie y recogiendo hojas de un árbol. Llegó una pequeña mosca, volando y zumbando cerca de su oído. El elefante lo agitó con sus largas orejas. Entonces la mosca volvió y el elefante la despidió una vez más\".</p><p>Esto se repitió varias veces. Entonces el elefante le preguntó a la mosca:<br />\"¿Por qué estás tan inquieta y ruidosa? ¿Por qué no puedes quedarte un rato en un solo lugar?\"</p><p>La mosca respondió: \"Me atrae todo lo que veo, oigo u huelo. Mis cinco sentidos, y todo lo que sucede a mi alrededor, me tiran constantemente en todas direcciones, y no puedo resistirme a ellos. ¿Cuál es tu secreto? ¿Cómo puedes mantenerte tan tranquilo y quieto?\"</p><p>El elefante dejó de comer y dijo:<br />\"Mis cinco sentidos no gobiernan mi atención. Tengo el control de mi atención y puedo dirigirla a donde quiera. Esto me ayuda a sumergirme en todo lo que hago y, por lo tanto, mantener mi mente enfocada y tranquila. Ahora que estoy comiendo, estoy completamente inmerso en comer. De esta manera, puedo disfrutar de mi comida y masticarla mejor. Controlo mi atención, y no al revés, y esto me ayuda a mantenerme en paz\".</p><p>Al escuchar estas palabras, los ojos del discípulo se abrieron de par en par y una sonrisa apareció en su rostro. Miró a su maestro y dijo:<br />\"¡Entiendo! Mi mente estará en constante inquietud, si mis cinco sentidos, y lo que sea que esté sucediendo en el mundo que me rodea están en control de ella. Por otro lado, si estoy al mando de mis cinco sentidos, capaz de ignorar las impresiones sensoriales, mi mente se calmaría y podré ignorar su inquietud\".</p><p>\"Sí, es cierto\", respondió el maestro, \"La mente está inquieta y va a donde esté la atención. Controla tu atención y controlas tu mente\".</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','El elefante y la mosca','','inherit','closed','closed','','430-revision-v1','','','2023-04-30 17:56:00','2023-04-30 17:56:00','',430,'https://divyayogamonteregie.org/ca/?p=434',0,'revision','',0),(435,1,'2023-04-30 17:56:44','2023-04-30 17:56:44','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">There once was a little boy who had a bad temper. His father gave him a bag of nails and told him that every time he lost his temper, he must hammer a nail into the fence. The first day the boy had driven 37 nails into the fence. Over the next few weeks as he learned to control his anger, the number of nails hammered daily, gradually dwindled down. He discovered it was easier to hold his temper than to drive those nails into the fence.</p><p style=\"text-align: justify;\">Finally the day came when the boy didn\'t lose his temper at all. He told his father about it and the father suggested that the boy now pull out one nail for each day that he was able to hold his temper. The days passed and the young boy was finally able to tell his father that all the nails were gone.</p><p style=\"text-align: justify;\">The father took his son by the hand and led him to the fence. He said \"you have done well, my son, but look at the holes in the fence. The fence will never be the same. When you say things in anger, they leave a scar just like this one.\" You can put a knife in a man and draw it out. It won\'t matter how many times you say I\'m sorry, the wound is still there. Make sure you control your temper the next time you are tempted to say something you will regret later.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The fence','','publish','closed','closed','','the-fence','','','2023-06-15 18:48:22','2023-06-15 18:48:22','',0,'https://divyayogamonteregie.org/ca/?page_id=435',0,'page','',0),(439,1,'2023-04-30 17:57:46','2023-04-30 17:57:46','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Había una vez un niño pequeño que tenía mal genio. Su padre le dio una bolsa de clavos y le dijo que cada vez que perdiera los estribos, debía clavar un clavo en la cerca. El primer día el niño había clavado 37 clavos en la cerca. Durante las siguientes semanas, a medida que aprendió a controlar su ira, el número de clavos martillados diariamente, disminuyó gradualmente. Descubrió que era más fácil mantener el temperamento que clavar esos clavos en la cerca.</p><p>Finalmente llegó el día en que el niño no perdió los estribos en absoluto. Se lo contó a su padre y el padre sugirió que el niño ahora sacara un clavo por cada día que pudiera mantener su temperamento. Los días pasaron y el niño finalmente pudo decirle a su padre que todas las uñas habían desaparecido.</p><p>El padre tomó a su hijo de la mano y lo llevó a la cerca. Él dijo: \"Lo has hecho bien, hijo mío, pero mira los agujeros en la cerca. La valla nunca será la misma. Cuando dices cosas con ira, dejan una cicatriz como esta\". Puedes poner un cuchillo en un hombre y sacarlo. No importará cuántas veces digas que lo siento, la herida todavía está allí. Asegúrate de controlar tu temperamento la próxima vez que te sientas tentado a decir algo de lo que te arrepentirás más tarde.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','La valla','','inherit','closed','closed','','435-revision-v1','','','2023-04-30 17:57:46','2023-04-30 17:57:46','',435,'https://divyayogamonteregie.org/ca/?p=439',0,'revision','',0),(436,1,'2023-04-30 17:57:02','2023-04-30 17:57:02','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','La valla','','inherit','closed','closed','','435-revision-v1','','','2023-04-30 17:57:02','2023-04-30 17:57:02','',435,'https://divyayogamonteregie.org/ca/?p=436',0,'revision','',0),(437,1,'2023-04-30 17:57:46','2023-04-30 17:57:46','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','La valla','','inherit','closed','closed','','435-revision-v1','','','2023-04-30 17:57:46','2023-04-30 17:57:46','',435,'https://divyayogamonteregie.org/ca/?p=437',0,'revision','',0),(438,1,'2023-04-30 17:57:46','2023-04-30 17:57:46','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','La valla','','inherit','closed','closed','','435-revision-v1','','','2023-04-30 17:57:46','2023-04-30 17:57:46','',435,'https://divyayogamonteregie.org/ca/?p=438',0,'revision','',0),(440,1,'2023-04-30 17:58:37','2023-04-30 17:58:37','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">When I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up.</p><p style=\"text-align: justify;\">I wrote down</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Happiness','','publish','closed','closed','','the-happiness','','','2023-06-15 18:49:16','2023-06-15 18:49:16','',0,'https://divyayogamonteregie.org/ca/?page_id=440',0,'page','',0),(729,1,'2023-05-24 12:58:42','2023-05-24 12:58:42','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">When I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up.</p><p style=\"text-align: justify;\">I wrote down</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Happiness','','inherit','closed','closed','','440-revision-v1','','','2023-05-24 12:58:42','2023-05-24 12:58:42','',440,'https://divyayogamonteregie.org/ca/?p=729',0,'revision','',0),(445,1,'2023-04-30 17:59:58','2023-04-30 17:59:58','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Two men, both seriously ill, occupied the same hospital room. One man was allowed to sit up in his bed for an hour each afternoon to help drain the fluid from his lungs. His bed was next to the room\'s only window. The other man had to spend all his time flat on his back.</p><p style=\"text-align: justify;\">The men talked for hours on end. They spoke of their wives and families, their homes, their jobs, their involvement in the military service, where they had been on vacation.</p><p style=\"text-align: justify;\">And every afternoon when the man in the bed by the window could sit up, he would pass the time by describing to his roommate all the things he could see outside the window. The man in the other bed began to live for those one-hour periods where his world would be broadened and enlivened by all the activity and color of the world outside.</p><p style=\"text-align: justify;\">The window overlooked a park with a lovely lake. Ducks and swans played on the water while children sailed their model boats. Young lovers walked arm in arm amidst flowers of every color of the rainbow. Grand old trees graced the landscape, and a fine view of the city skyline could be seen in the distance.</p><p style=\"text-align: justify;\">As the man by the window described all this in exquisite detail, the man on the other side of the room would close his eyes and imagine the picturesque scene.</p><p style=\"text-align: justify;\">One warm afternoon the man by the window described a parade passing by. Although the other man couldn\'t hear the band - he could see it in his mind\'s eye as the gentleman by the window portrayed it with descriptive words.</p><p style=\"text-align: justify;\">Days and weeks passed. One morning, the day nurse arrived to bring water for their baths only to find the lifeless body of the man by the window, who had died peacefully in his sleep. She was saddened and called the hospital attendants to take the body away.</p><p style=\"text-align: justify;\">As soon as it seemed appropriate, the other man asked if he could be moved next to the window. The nurse was happy to make the switch, and after making sure he was comfortable, she left him alone. Slowly, painfully, he propped himself up on one elbow to take his first look at the world outside. Finally, he would have the joy of seeing it for himself.</p><p style=\"text-align: justify;\">He strained to slowly turn to look out the window beside the bed. It faced a blank wall. The man asked the nurse what could have compelled his deceased roommate who had described such wonderful things outside this window. The nurse responded that the man was blind and could not even see the wall. She said, \"Perhaps he just wanted to encourage you.\"</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The hospital window','','publish','closed','closed','','the-hospital-window','','','2023-06-15 18:50:10','2023-06-15 18:50:10','',0,'https://divyayogamonteregie.org/ca/?page_id=445',0,'page','',0),(441,1,'2023-04-30 17:58:49','2023-04-30 17:58:49','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','La felicidad','','inherit','closed','closed','','440-revision-v1','','','2023-04-30 17:58:49','2023-04-30 17:58:49','',440,'https://divyayogamonteregie.org/ca/?p=441',0,'revision','',0),(444,1,'2023-04-30 17:59:09','2023-04-30 17:59:09','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Cuando tenía 5 años, mi madre siempre me decía que la felicidad era la clave de la vida. Cuando fui a la escuela, me preguntaron qué quería ser cuando creciera.</p><p>Escribí \'feliz\'. Me dijeron que no entendía la tarea, y les dije que no entendían la vida.</p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','La felicidad','','inherit','closed','closed','','440-revision-v1','','','2023-04-30 17:59:09','2023-04-30 17:59:09','',440,'https://divyayogamonteregie.org/ca/?p=444',0,'revision','',0),(442,1,'2023-04-30 17:59:09','2023-04-30 17:59:09','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','La felicidad','','inherit','closed','closed','','440-revision-v1','','','2023-04-30 17:59:09','2023-04-30 17:59:09','',440,'https://divyayogamonteregie.org/ca/?p=442',0,'revision','',0),(443,1,'2023-04-30 17:59:09','2023-04-30 17:59:09','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','La felicidad','','inherit','closed','closed','','440-revision-v1','','','2023-04-30 17:59:09','2023-04-30 17:59:09','',440,'https://divyayogamonteregie.org/ca/?p=443',0,'revision','',0),(446,1,'2023-04-30 18:00:18','2023-04-30 18:00:18','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','La ventana del hospital','','inherit','closed','closed','','445-revision-v1','','','2023-04-30 18:00:18','2023-04-30 18:00:18','',445,'https://divyayogamonteregie.org/ca/?p=446',0,'revision','',0),(447,1,'2023-04-30 18:00:45','2023-04-30 18:00:45','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','La ventana del hospital','','inherit','closed','closed','','445-revision-v1','','','2023-04-30 18:00:45','2023-04-30 18:00:45','',445,'https://divyayogamonteregie.org/ca/?p=447',0,'revision','',0),(448,1,'2023-04-30 18:00:45','2023-04-30 18:00:45','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','La ventana del hospital','','inherit','closed','closed','','445-revision-v1','','','2023-04-30 18:00:45','2023-04-30 18:00:45','',445,'https://divyayogamonteregie.org/ca/?p=448',0,'revision','',0),(733,1,'2023-05-24 13:00:11','2023-05-24 13:00:11','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Two men, both seriously ill, occupied the same hospital room. One man was allowed to sit up in his bed for an hour each afternoon to help drain the fluid from his lungs. His bed was next to the room\'s only window. The other man had to spend all his time flat on his back.</p><p style=\"text-align: justify;\">The men talked for hours on end. They spoke of their wives and families, their homes, their jobs, their involvement in the military service, where they had been on vacation.</p><p style=\"text-align: justify;\">And every afternoon when the man in the bed by the window could sit up, he would pass the time by describing to his roommate all the things he could see outside the window. The man in the other bed began to live for those one-hour periods where his world would be broadened and enlivened by all the activity and color of the world outside.</p><p style=\"text-align: justify;\">The window overlooked a park with a lovely lake. Ducks and swans played on the water while children sailed their model boats. Young lovers walked arm in arm amidst flowers of every color of the rainbow. Grand old trees graced the landscape, and a fine view of the city skyline could be seen in the distance.</p><p style=\"text-align: justify;\">As the man by the window described all this in exquisite detail, the man on the other side of the room would close his eyes and imagine the picturesque scene.</p><p style=\"text-align: justify;\">One warm afternoon the man by the window described a parade passing by. Although the other man couldn\'t hear the band - he could see it in his mind\'s eye as the gentleman by the window portrayed it with descriptive words.</p><p style=\"text-align: justify;\">Days and weeks passed. One morning, the day nurse arrived to bring water for their baths only to find the lifeless body of the man by the window, who had died peacefully in his sleep. She was saddened and called the hospital attendants to take the body away.</p><p style=\"text-align: justify;\">As soon as it seemed appropriate, the other man asked if he could be moved next to the window. The nurse was happy to make the switch, and after making sure he was comfortable, she left him alone. Slowly, painfully, he propped himself up on one elbow to take his first look at the world outside. Finally, he would have the joy of seeing it for himself.</p><p style=\"text-align: justify;\">He strained to slowly turn to look out the window beside the bed. It faced a blank wall. The man asked the nurse what could have compelled his deceased roommate who had described such wonderful things outside this window. The nurse responded that the man was blind and could not even see the wall. She said, \"Perhaps he just wanted to encourage you.\"</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The hospital window','','inherit','closed','closed','','445-revision-v1','','','2023-05-24 13:00:11','2023-05-24 13:00:11','',445,'https://divyayogamonteregie.org/ca/?p=733',0,'revision','',0),(449,1,'2023-04-30 18:00:45','2023-04-30 18:00:45','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Dos hombres, ambos gravemente enfermos, ocuparon la misma habitación del hospital. A un hombre se le permitió sentarse en su cama durante una hora cada tarde para ayudar a drenar el líquido de sus pulmones. Su cama estaba al lado de la única ventana de la habitación. El otro hombre tenía que pasar todo su tiempo boca arriba.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Los hombres hablaron durante horas y horas. Hablaron de sus esposas y familias, sus hogares, sus trabajos, su participación en el servicio militar, donde habían estado de vacaciones.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Y todas las tardes, cuando el hombre en la cama junto a la ventana podía sentarse, pasaba el tiempo describiendo a su compañero de cuarto todas las cosas que podía ver fuera de la ventana. El hombre en la otra cama comenzó a vivir durante esos períodos de una hora en los que su mundo se ampliaría y animaría por toda la actividad y el color del mundo exterior.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">La ventana daba a un parque con un hermoso lago. Patos y cisnes jugaban en el agua mientras los niños navegaban en sus modelos de barcos. Los jóvenes amantes caminaron del brazo en medio de flores de todos los colores del arco iris. Grandes árboles viejos adornaban el paisaje, y una hermosa vista del horizonte de la ciudad se podía ver en la distancia.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Mientras el hombre junto a la ventana describía todo esto con exquisito detalle, el hombre al otro lado de la habitación cerraba los ojos e imaginaba la pintoresca escena.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Una cálida tarde, el hombre junto a la ventana describió un desfile que pasaba. Aunque el otro hombre no podía escuchar a la banda, podía verla en su mente mientras el caballero junto a la ventana la retrataba con palabras descriptivas.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Pasaron días y semanas. Una mañana, la enfermera de día llegó para traer agua para sus baños solo para encontrar el cuerpo sin vida del hombre junto a la ventana, que había muerto pacíficamente mientras dormía. Se entristeció y llamó a los asistentes del hospital para que se llevaran el cuerpo.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Tan pronto como pareció apropiado, el otro hombre preguntó si podía ser movido al lado de la ventana. La enfermera estaba feliz de hacer el cambio, y después de asegurarse de que estaba cómodo, lo dejó solo. Lentamente, dolorosamente, se apoyó en un codo para echar un primer vistazo al mundo exterior. Finalmente, tendría la alegría de verlo por sí mismo.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Se esforzó por girar lentamente para mirar por la ventana al lado de la cama. Se enfrentaba a una pared en blanco. El hombre le preguntó a la enfermera qué podría haber obligado a su compañero de cuarto fallecido que había descrito cosas tan maravillosas fuera de esta ventana. La enfermera respondió que el hombre era ciego y ni siquiera podía ver la pared. Ella dijo: \"Tal vez él solo quería animarte\".</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','La ventana del hospital','','inherit','closed','closed','','445-revision-v1','','','2023-04-30 18:00:45','2023-04-30 18:00:45','',445,'https://divyayogamonteregie.org/ca/?p=449',0,'revision','',0),(450,1,'2023-04-30 18:01:36','2023-04-30 18:01:36','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Once upon a time there was a rich king who had four wives. He loved the fourth wife the most and adorned her with rich robes and treated her to the finest delicacies. He gave her nothing but the best.</p><p>He also loved the third wife very much and showed her off to neighboring kingdoms. However, he feared that one day she would leave him for another.</p><p>He also loved his second wife. She was his confidante and she was always kind, considerate and patient with him. Whenever the king faced a problem, he could confide in her to help him get through the difficult times.</p><p>The king\'s first wife was a very loyal partner and had made great contributions in maintaining his wealth and kingdom. However, he did not love the first wife but although she loved him deeply, he hardly took notice of her.</p><p>One day, the King fell ill and he knew that his time was short. Thus, he asked the 4th wife, \"I have loved you the most endowed you with the finest clothing and showered great care over you. Now that I\'m dying, will you follow me and keep me company?\"</p><p>\"No way!\" replied the 4th wife and she walked away without another word.</p><p>Her answer cut like a sharp knife right into his heart.</p><p> </p><p>The sad king asked the third wife, \"I have loved you all my life. Now that I\'m dying, will you follow me and keep me company?\"</p><p>\"No!\" replied the 3rd wife. \"Life is too good! When you die, I am going to remarry!\"</p><p>His heart sank and turned cold.</p><p>He then asked the 2nd wife, \"I have always turned to you for help and you\'ve always been there for me. When I die, will you follow me and keep me company?\"</p><p>\"I\'m sorry, I can\'t help you out of this time!\" replied the 2nd wife. \"The very most, I can only send you to your grave.\"</p><p>Her answer came like a bolt of thunder and the King was devastated.</p><p>Then a voice called out: \"I\'ll leave with you and follow you no matter where you go.\"</p><p>The king looked up and there was his first wife. She was so skinny, because she suffered from malnutrition. Greatly grieved the King said, \"I should have taken better care of you when I had a chance!\"</p><p>Our 4th wife is our BODY. No matter how much time and effort we lavish in making it look great, it\'ll leave us when we die.</p><p>Our 3rd wife is our POSSESSIONS, STATUS and WEALTH. When we die, it will all go to others.</p><p>Our 2nd wife is our FAMILY and friends. No matter how much they have been there for us, the furthest they can stay by us is up to the grave.</p><p>Our 1st wife is our SOUL, often neglected in pursuit of wealth, power and pleasures of the ego. However, our Soul is the only thing that will follow us wherever we go. So cultivate, strengthen and cherish it now! It is your greatest gift to offer the world.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The king with four wives','','publish','closed','closed','','the-king-with-four-wives','','','2023-06-15 18:51:06','2023-06-15 18:51:06','',0,'https://divyayogamonteregie.org/ca/?page_id=450',0,'page','',0),(451,1,'2023-04-30 18:01:53','2023-04-30 18:01:53','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','El rey con cuatro esposas','','inherit','closed','closed','','450-revision-v1','','','2023-04-30 18:01:53','2023-04-30 18:01:53','',450,'https://divyayogamonteregie.org/ca/?p=451',0,'revision','',0),(452,1,'2023-04-30 18:02:16','2023-04-30 18:02:16','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','El rey con cuatro esposas','','inherit','closed','closed','','450-revision-v1','','','2023-04-30 18:02:16','2023-04-30 18:02:16','',450,'https://divyayogamonteregie.org/ca/?p=452',0,'revision','',0),(453,1,'2023-04-30 18:02:16','2023-04-30 18:02:16','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','El rey con cuatro esposas','','inherit','closed','closed','','450-revision-v1','','','2023-04-30 18:02:16','2023-04-30 18:02:16','',450,'https://divyayogamonteregie.org/ca/?p=453',0,'revision','',0),(737,1,'2023-05-24 13:01:26','2023-05-24 13:01:26','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Once upon a time there was a rich king who had four wives. He loved the fourth wife the most and adorned her with rich robes and treated her to the finest delicacies. He gave her nothing but the best.</p><p>He also loved the third wife very much and showed her off to neighboring kingdoms. However, he feared that one day she would leave him for another.</p><p>He also loved his second wife. She was his confidante and she was always kind, considerate and patient with him. Whenever the king faced a problem, he could confide in her to help him get through the difficult times.</p><p>The king\'s first wife was a very loyal partner and had made great contributions in maintaining his wealth and kingdom. However, he did not love the first wife but although she loved him deeply, he hardly took notice of her.</p><p>One day, the King fell ill and he knew that his time was short. Thus, he asked the 4th wife, \"I have loved you the most endowed you with the finest clothing and showered great care over you. Now that I\'m dying, will you follow me and keep me company?\"</p><p>\"No way!\" replied the 4th wife and she walked away without another word.</p><p>Her answer cut like a sharp knife right into his heart.</p><p> </p><p>The sad king asked the third wife, \"I have loved you all my life. Now that I\'m dying, will you follow me and keep me company?\"</p><p>\"No!\" replied the 3rd wife. \"Life is too good! When you die, I am going to remarry!\"</p><p>His heart sank and turned cold.</p><p>He then asked the 2nd wife, \"I have always turned to you for help and you\'ve always been there for me. When I die, will you follow me and keep me company?\"</p><p>\"I\'m sorry, I can\'t help you out of this time!\" replied the 2nd wife. \"The very most, I can only send you to your grave.\"</p><p>Her answer came like a bolt of thunder and the King was devastated.</p><p>Then a voice called out: \"I\'ll leave with you and follow you no matter where you go.\"</p><p>The king looked up and there was his first wife. She was so skinny, because she suffered from malnutrition. Greatly grieved the King said, \"I should have taken better care of you when I had a chance!\"</p><p>Our 4th wife is our BODY. No matter how much time and effort we lavish in making it look great, it\'ll leave us when we die.</p><p>Our 3rd wife is our POSSESSIONS, STATUS and WEALTH. When we die, it will all go to others.</p><p>Our 2nd wife is our FAMILY and friends. No matter how much they have been there for us, the furthest they can stay by us is up to the grave.</p><p>Our 1st wife is our SOUL, often neglected in pursuit of wealth, power and pleasures of the ego. However, our Soul is the only thing that will follow us wherever we go. So cultivate, strengthen and cherish it now! It is your greatest gift to offer the world.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The king with four wives','','inherit','closed','closed','','450-revision-v1','','','2023-05-24 13:01:26','2023-05-24 13:01:26','',450,'https://divyayogamonteregie.org/ca/?p=737',0,'revision','',0),(454,1,'2023-04-30 18:02:16','2023-04-30 18:02:16','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Había una vez un rey rico que tenía cuatro esposas. Amaba más a la cuarta esposa y la adornaba con ricas túnicas y la trataba con las mejores delicias. Él no le dio nada más que lo mejor.</p><p>También amaba mucho a la tercera esposa y la mostró a los reinos vecinos. Sin embargo, temía que un día ella lo dejara por otro.</p><p>También amaba a su segunda esposa. Ella era su confidente y siempre fue amable, considerada y paciente con él. Cada vez que el rey enfrentaba un problema, podía confiar en ella para ayudarlo a superar los tiempos difíciles.</p><p>La primera esposa del rey era una compañera muy leal y había hecho grandes contribuciones en el mantenimiento de su riqueza y reino. Sin embargo, él no amaba a la primera esposa, pero aunque ella lo amaba profundamente, apenas se fijaba en ella.</p><p>Un día, el rey cayó enfermo y supo que su tiempo era corto. Por lo tanto, le preguntó a la 4ª esposa: \"Te he amado más bien con la mejor ropa y he derramado gran cuidado sobre ti. Ahora que me estoy muriendo, ¿me seguirás y me harás compañía?\"</p><p>\"¡De ninguna manera!\", respondió la 4ª esposa y ella se alejó sin decir otra palabra.</p><p>Su respuesta cortó como un cuchillo afilado directamente en su corazón.</p><p> </p><p>El triste rey le preguntó a la tercera esposa: \"Te he amado toda mi vida. Ahora que me estoy muriendo, ¿me seguirás y me harás compañía?\"</p><p>\"¡No!\", Respondió la 3ª esposa. \"¡La vida es demasiado buena! ¡Cuando mueras, me voy a volver a casar!\"</p><p>Su corazón se hundió y se enfrió.</p><p>Luego le preguntó a la 2ª esposa: \"Siempre he recurrido a ti en busca de ayuda y siempre has estado ahí para mí. Cuando muera, ¿me seguirás y me harás compañía?\"</p><p>\"¡Lo siento, no puedo ayudarte a salir de este tiempo!\", Respondió la 2ª esposa. \"Lo más, solo puedo enviarte a tu tumba\".</p><p>Su respuesta llegó como un trueno y el rey quedó devastado.</p><p>Entonces una voz gritó: \"Me iré contigo y te seguiré sin importar a dónde vayas\".</p><p>El rey levantó la vista y allí estaba su primera esposa. Estaba tan delgada, porque sufría de desnutrición. Muy afligido, el rey dijo: \"¡Debería haberte cuidado mejor cuando tuve la oportunidad!\"</p><p>Nuestra 4ª esposa es nuestro CUERPO. No importa cuánto tiempo y esfuerzo prodigemos para que se vea genial, nos dejará cuando muramos.</p><p>Nuestra 3ª esposa es nuestras POSESIONES, ESTATUS y RIQUEZA. Cuando morimos, todo irá a otros.</p><p>Nuestra 2ª esposa es nuestra FAMILIA y amigos. No importa cuánto hayan estado allí para nosotros, lo más lejos que pueden quedarse con nosotros es hasta la tumba.</p><p>Nuestra 1ª esposa es nuestra ALMA, a menudo descuidada en la búsqueda de riqueza, poder y placeres del ego. Sin embargo, nuestra Alma es lo único que nos seguirá dondequiera que vayamos. ¡Así que cultiva, fortalece y aprecia ahora! Es tu mayor regalo ofrecer al mundo.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','El rey con cuatro esposas','','inherit','closed','closed','','450-revision-v1','','','2023-04-30 18:02:16','2023-04-30 18:02:16','',450,'https://divyayogamonteregie.org/ca/?p=454',0,'revision','',0),(455,1,'2023-04-30 18:03:34','2023-04-30 18:03:34','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>By Remez Sasson</p><p>One day, a yogi and his disciple arrived in the big city. They had no money with them, but they needed food and a place to stay. The disciple was sure that they were going to beg for their food, and sleep in the park at night.</p><p>\"There is a big park not far from here. We can sleep there at night\", said the disciple.<br />\"In the open air?\" Asked the yogi.<br />\"Yes\", responded the student.</p><p>The yogi smiled and said: \"No, tonight we are going to sleep in a hotel and eat there too\".</p><p>The student was amazed and exclaimed, \"We cannot afford that!\"<br />\"Come and sit down\", said the yogi.</p><p>They both sat down on the ground, and the yogi said:<br />\"When you focus your mind intently on any subject, it comes to pass.\"</p><p>The yogi closed his eyes and started to meditate with full concentration. After about ten minutes he got up and started to walk, with his disciple following him. They walked through several streets and alleys, until they arrived at a hotel.</p><p>\"Come, let\'s enter inside\", the yogi said to his disciple.</p><p>They just set foot in the entrance, when a well-dressed man approached them.</p><p>\"I am the manager of this hotel. You look like traveling swamis, and I believe you have no money. Would you like to work in the kitchen, and in return I\'ll give you food and a place to stay?\"</p><p>\"Fine\", the yogi responded.</p><p>The disciple was perplexed and asked the yogi: \"Did you use any magic? How did you do that?\"</p><p>The yogi smiled and said, \"I wanted to show you how the power of thoughts works. When you think with full and strong concentration about something that you want to happen, and your mind does not resist the subject of your thought, your thought materializes.\"</p><p>\"The secret is concentrating, visualizing, seeing details, having faith and projecting mental and emotional energy into the mental scene. These are the general prerequisites. When your mind is empty from thoughts, and only one single thought is allowed to enter, it gains a very great power. One should be very careful with what he thinks. A concentrated thought is powerful, and exerts a very strong influence.\"</p><p>The disciple looked at his teacher and said: \"I see that I have to sharpen my concentration in order to be able to use this power.\"</p><p>\"Yes, this is the first step\", the yogi replied.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The power of thoughts','','publish','closed','closed','','the-power-of-thoughts','','','2023-06-15 18:51:57','2023-06-15 18:51:57','',0,'https://divyayogamonteregie.org/ca/?page_id=455',0,'page','',0),(456,1,'2023-04-30 18:03:48','2023-04-30 18:03:48','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','El poder de los pensamientos','','inherit','closed','closed','','455-revision-v1','','','2023-04-30 18:03:48','2023-04-30 18:03:48','',455,'https://divyayogamonteregie.org/ca/?p=456',0,'revision','',0),(457,1,'2023-04-30 18:04:20','2023-04-30 18:04:20','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','El poder de los pensamientos','','inherit','closed','closed','','455-revision-v1','','','2023-04-30 18:04:20','2023-04-30 18:04:20','',455,'https://divyayogamonteregie.org/ca/?p=457',0,'revision','',0),(458,1,'2023-04-30 18:04:20','2023-04-30 18:04:20','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','El poder de los pensamientos','','inherit','closed','closed','','455-revision-v1','','','2023-04-30 18:04:20','2023-04-30 18:04:20','',455,'https://divyayogamonteregie.org/ca/?p=458',0,'revision','',0),(459,1,'2023-04-30 18:04:21','2023-04-30 18:04:21','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Por Remez Sasson</p><p>Un día, un yogui y su discípulo llegaron a la gran ciudad. No tenían dinero con ellos, pero necesitaban comida y un lugar para quedarse. El discípulo estaba seguro de que iban a mendigar por su comida y dormir en el parque por la noche.</p><p>\"Hay un gran parque no muy lejos de aquí. Podemos dormir allí por la noche\", dijo el discípulo.<br />\"¿Al aire libre?\" Preguntó el yogui.<br />\"Sí\", respondió el estudiante.</p><p>El yogui sonrió y dijo: \"No, esta noche vamos a dormir en un hotel y comer allí también\".</p><p>El estudiante se sorprendió y exclamó: \"¡No podemos permitirnos eso!\"<br />\"Ven y siéntate\", dijo el yogui.</p><p>Ambos se sentaron en el suelo, y el yogui dijo:<br />\"Cuando enfocas tu mente intensamente en cualquier tema, sucede todo\".</p><p>El yogui cerró los ojos y comenzó a meditar con plena concentración. Después de unos diez minutos se levantó y comenzó a caminar, con su discípulo siguiéndole. Caminaron por varias calles y callejones, hasta que llegaron a un hotel.</p><p>\"Ven, entremos dentro\", le dijo el yogui a su discípulo.</p><p>Acaban de poner un pie en la entrada, cuando un hombre bien vestido se les acercó.</p><p>\"Soy el gerente de este hotel. Pareces swamis viajeros, y creo que no tienes dinero. ¿Te gustaría trabajar en la cocina y, a cambio, te daré comida y un lugar para quedarte?\"</p><p>\"Bien\", respondió el yogui.</p><p>El discípulo estaba perplejo y le preguntó al yogui: \"¿Usaste alguna magia? ¿Cómo hiciste eso?\"</p><p>El yogui sonrió y dijo: \"Quería mostrarte cómo funciona el poder de los pensamientos. Cuando piensas con plena y fuerte concentración sobre algo que quieres que suceda, y tu mente no se resiste al tema de tu pensamiento, tu pensamiento se materializa.</p><p>\"El secreto es concentrarse, visualizar, ver detalles, tener fe y proyectar energía mental y emocional en la escena mental. Estos son los requisitos previos generales. Cuando tu mente está vacía de pensamientos, y solo un pensamiento puede entrar, gana un poder muy grande. Uno debe tener mucho cuidado con lo que piensa. Un pensamiento concentrado es poderoso y ejerce una influencia muy fuerte\".</p><p>El discípulo miró a su maestro y dijo: \"Veo que tengo que agudizar mi concentración para poder usar este poder\".</p><p>\"Sí, este es el primer paso\", respondió el yogui.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','El poder de los pensamientos','','inherit','closed','closed','','455-revision-v1','','','2023-04-30 18:04:21','2023-04-30 18:04:21','',455,'https://divyayogamonteregie.org/ca/?p=459',0,'revision','',0),(460,1,'2023-04-30 18:05:03','2023-04-30 18:05:03','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Remember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.</p><p style=\"text-align: justify;\">Well, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.</p><p style=\"text-align: justify;\">The race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.</p><p style=\"text-align: justify;\">The Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.</p><p style=\"text-align: justify;\">The Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.</p><p style=\"text-align: justify;\">After some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.</p><p style=\"text-align: justify;\">The story does not end here.</p><p style=\"text-align: justify;\">After the first race, the Rabbit learned that he lost it because of his laziness.</p><p style=\"text-align: justify;\">After second race, the Turtle learned that he lost the race because his opponent was actually good at running.</p><p style=\"text-align: justify;\">After the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.</p><p style=\"text-align: justify;\">The Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.</p><p style=\"text-align: justify;\">While running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.</p><p style=\"text-align: justify;\"><b>What did they learn?</b></p><p style=\"text-align: justify;\">They both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Rabbit and The Turtle Race','','publish','closed','closed','','the-rabbit-and-the-turtle-race','','','2023-06-15 18:52:50','2023-06-15 18:52:50','',0,'https://divyayogamonteregie.org/ca/?page_id=460',0,'page','',0),(461,1,'2023-04-30 18:05:14','2023-04-30 18:05:14','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','El conejo y la carrera de las tortugas','','inherit','closed','closed','','460-revision-v1','','','2023-04-30 18:05:14','2023-04-30 18:05:14','',460,'https://divyayogamonteregie.org/ca/?p=461',0,'revision','',0),(462,1,'2023-04-30 18:05:43','2023-04-30 18:05:43','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','El conejo y la carrera de las tortugas','','inherit','closed','closed','','460-revision-v1','','','2023-04-30 18:05:43','2023-04-30 18:05:43','',460,'https://divyayogamonteregie.org/ca/?p=462',0,'revision','',0),(463,1,'2023-04-30 18:05:43','2023-04-30 18:05:43','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','El conejo y la carrera de las tortugas','','inherit','closed','closed','','460-revision-v1','','','2023-04-30 18:05:43','2023-04-30 18:05:43','',460,'https://divyayogamonteregie.org/ca/?p=463',0,'revision','',0),(464,1,'2023-04-30 18:05:43','2023-04-30 18:05:43','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>¿Recuerdas la famosa raza Conejo-Tortuga (Tortuga y Liebre)? Todos sabemos que al final de la historia el Conejo no fue capaz de ganar la carrera contra la Tortuga.</p><p>Bueno, este no es realmente el final de la historia. Después de una vergonzosa derrota ante la Tortuga, el Conejo decidió tener una carrera nuevamente. Esta vez, decidió, no tomaría una siesta.</p><p>La carrera comenzó y pronto el Conejo estaba lejos de la vista de la Tortuga y todos los espectadores. Esta vez no se detuvo y derrotó a la Tortuga por un gran margen.</p><p>La Tortuga perdió la carrera esta vez; Sin embargo, no se rindió. Desafió al Conejo de nuevo en una pista de carreras diferente. El Conejo, lleno de confianza, lo aceptó. Sabía la razón por la que perdió antes: su pereza durante la primera carrera. Pudo ganar la segunda carrera porque pudo trabajar en ella.</p><p>La Tercera Carrera comenzó. El Conejo, como siempre, pronto desapareció. Todos se reían de la tortuga, pero el conejo no quería detenerse para ver por qué y siguió corriendo tan rápido como pudo. Quería derrotar a la Tortuga por un margen mucho mayor que la raza anterior. De repente, llegó a un río. No pudo distinguir cómo cruzarlo y se vio obligado a detenerse.</p><p>Después de algún tiempo, la tortuga llegó al río y entró con mucha confianza en él. Nadó mucho más rápido de lo que podría correr. En poco tiempo cruzó el río y se dirigió hacia el punto final mientras el Conejo miraba impotente mientras la Tortuga ganaba la carrera.</p><p>La historia no termina aquí.</p><p>Después de la primera carrera, el Conejo se enteró de que lo perdió debido a su pereza.</p><p>Después de la segunda carrera, la Tortuga se enteró de que perdió la carrera porque su oponente era realmente bueno corriendo.</p><p>Después de la tercera carrera, el Conejo aprendió que ser más rápido no es suficiente; Uno también debe tener cerebro para completar la tarea.</p><p>El Conejo y la Tortuga decidieron correr de nuevo. Esta vez fue solo correr y no una carrera.</p><p>Mientras corrían, hasta que llegaron al río, el Conejo puso a la Tortuga en su espalda. Una vez que tuvieron que cruzar el río, la Tortuga puso al Conejo en su espalda. Después de cruzar el río, el Conejo volvió a poner a la Tortuga en su espalda y ambos llegaron al punto final en menos tiempo que nunca.</p><p><strong>¿Qué aprendieron?</strong></p><p>Ambos aprendieron que con el trabajo en equipo pueden terminar la misma tarea más rápido y ambos pueden disfrutar de la recompensa. Durante el tiempo que estuvieron compitiendo entre sí, solo uno de ellos pudo ganar después de perder mucho tiempo y energía.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','El conejo y la carrera de las tortugas','','inherit','closed','closed','','460-revision-v1','','','2023-04-30 18:05:43','2023-04-30 18:05:43','',460,'https://divyayogamonteregie.org/ca/?p=464',0,'revision','',0),(465,1,'2023-04-30 18:06:31','2023-04-30 18:06:31','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">An old farmer had plowed around a large rock in one of his fields for years. He had broken several plowshares and a cultivator on it and had grown rather morbid about the rock.</p><p style=\"text-align: justify;\">After breaking another plowshare one day, and remembering all the trouble the rock had caused him through the years, he finally decided to do something about it.</p><p style=\"text-align: justify;\">When he put the crowbar under the rock, he was surprised to discover that it was only about six inches thick and that he could break it up easily with a sledgehammer. As he was carting the pieces away he had to smile, remembering all the trouble that the rock had caused him over the years and how easy it would have been to get rid of it sooner.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Rock','','publish','closed','closed','','the-rock','','','2023-06-15 18:55:18','2023-06-15 18:55:18','',0,'https://divyayogamonteregie.org/ca/?page_id=465',0,'page','',0),(469,1,'2023-04-30 18:07:07','2023-04-30 18:07:07','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un viejo granjero había arado alrededor de una gran roca en uno de sus campos durante años. Había roto varias rejas de arado y un cultivador en él y se había vuelto bastante morboso sobre la roca.</p><p>Después de romper otra reja de arado un día, y recordando todos los problemas que la roca le había causado a través de los años, finalmente decidió hacer algo al respecto.</p><p>Cuando puso la palanca debajo de la roca, se sorprendió al descubrir que solo tenía unas seis pulgadas de grosor y que podía romperla fácilmente con un mazo. Mientras se llevaba las piezas, tuvo que sonreír, recordando todos los problemas que la roca le había causado a lo largo de los años y lo fácil que habría sido deshacerse de ella antes.</p><p>.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','La Roca','','inherit','closed','closed','','465-revision-v1','','','2023-04-30 18:07:07','2023-04-30 18:07:07','',465,'https://divyayogamonteregie.org/ca/?p=469',0,'revision','',0),(466,1,'2023-04-30 18:06:45','2023-04-30 18:06:45','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','La Roca','','inherit','closed','closed','','465-revision-v1','','','2023-04-30 18:06:45','2023-04-30 18:06:45','',465,'https://divyayogamonteregie.org/ca/?p=466',0,'revision','',0),(467,1,'2023-04-30 18:07:07','2023-04-30 18:07:07','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','La Roca','','inherit','closed','closed','','465-revision-v1','','','2023-04-30 18:07:07','2023-04-30 18:07:07','',465,'https://divyayogamonteregie.org/ca/?p=467',0,'revision','',0),(468,1,'2023-04-30 18:07:07','2023-04-30 18:07:07','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','La Roca','','inherit','closed','closed','','465-revision-v1','','','2023-04-30 18:07:07','2023-04-30 18:07:07','',465,'https://divyayogamonteregie.org/ca/?p=468',0,'revision','',0),(470,1,'2023-04-30 18:08:16','2023-04-30 18:08:16','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">About the hidden nature of Atman [Soul]:</p><p style=\"text-align: justify;\">\"We are like a king, who falling victim to amnesia, wanders his kingdom in tatters, not knowing who he really is. We are like a lion cub who, having become lost from his mother at birth, grows up by accident among sheep and takes to grazing and bleating like them, assuming that he is like them.\" - Themes from Hindu literature.</p><p style=\"text-align: justify;\">A LIONESS was big with young and going about in search of prey when she saw a flock of sheep. She jumped upon them and died in that effort. But her little baby lion was born, motherless. The sheep took care of it, and the sheep brought it up. It grew up with them, ate grass, and bleated like the sheep. In time it became a big, full-grown lion, and still it bleated like a sheep and thought it was a sheep.</p><p style=\"text-align: justify;\">One day another lion came in search of prey, and was astonished to find that in the middle of this flock of sheep was a lion who fled like the sheep at the approach of danger. He tried to get near the sheep-lion, to tell it that it was not a sheep but a lion, but the poor animal fled at his approach.</p><p style=\"text-align: justify;\">However, he watched his opportunity, and one day found the sheep-lion sleeping. He approached it and said, \"You are a lion.\"</p><p style=\"text-align: justify;\">\"I am the sheep\" cried and bleated the other lion, and could not believe otherwise.</p><p style=\"text-align: justify;\">The lion dragged him towards a lake and said, \"Look here, there is my reflection and yours.\"</p><p style=\"text-align: justify;\">Then came the comparison. The bleating lion looked at the lion and then at its own reflection, and in a moment came the idea that it was a lion. The lion roared, the bleating was gone. [Adapted from a tale by Vivekananda in the lecture \"The real nature of man\", given in London, 1899 or near by]</p><p style=\"text-align: justify;\">❖ \"You are lions . . . and perfect.\" - Swami Vivekananda</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The sheep lion','','publish','closed','closed','','the-sheep-lion','','','2023-06-15 18:56:22','2023-06-15 18:56:22','',0,'https://divyayogamonteregie.org/ca/?page_id=470',0,'page','',0),(474,1,'2023-04-30 18:09:08','2023-04-30 18:09:08','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Sobre la naturaleza oculta de Atman [Alma]:</p><p>\"Somos como un rey, que siendo víctima de la amnesia, vaga por su reino hecho jirones, sin saber quién es realmente. Somos como un cachorro de león que, habiéndose perdido de su madre al nacer, crece por accidente entre ovejas y se dedica a pastar y balar como ellas, asumiendo que él es como ellos\".</p><p>Una leona era grande con crías y andaba en busca de presas cuando vio un rebaño de ovejas. Ella saltó sobre ellos y murió en ese esfuerzo. Pero su pequeño león nació, sin madre. Las ovejas lo cuidaron y las ovejas lo criaron. Creció con ellos, comía hierba y balaba como las ovejas. Con el tiempo se convirtió en un león grande y adulto, y todavía balaba como una oveja y pensaba que era una oveja.</p><p>Un día otro león vino en busca de presas, y se sorprendió al descubrir que en medio de este rebaño de ovejas había un león que huía como las ovejas al acercarse el peligro. Trató de acercarse al león-oveja, para decirle que no era una oveja sino un león, pero el pobre animal huyó al acercarse.</p><p>Sin embargo, vio su oportunidad, y un día encontró al león oveja durmiendo. Se acercó y dijo: \"Eres un león\".</p><p>\"Yo soy la oveja\" gritó y baló el otro león, y no podía creer lo contrario.</p><p>El león lo arrastró hacia un lago y dijo: \"Mira aquí, ahí está mi reflejo y el tuyo\".</p><p>Luego vino la comparación. El león balando miró al león y luego a su propio reflejo, y en un momento surgió la idea de que era un león. El león rugió, el balido se había ido. [Adaptado de un cuento de Vivekananda en la conferencia \"La verdadera naturaleza del hombre\", dada en Londres, 1899 o cerca]</p><p>❖ \"Ustedes son leones... y perfecto.\" – Swami Vivekananda</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','El león oveja','','inherit','closed','closed','','470-revision-v1','','','2023-04-30 18:09:08','2023-04-30 18:09:08','',470,'https://divyayogamonteregie.org/ca/?p=474',0,'revision','',0),(471,1,'2023-04-30 18:08:27','2023-04-30 18:08:27','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','El león oveja','','inherit','closed','closed','','470-revision-v1','','','2023-04-30 18:08:27','2023-04-30 18:08:27','',470,'https://divyayogamonteregie.org/ca/?p=471',0,'revision','',0),(472,1,'2023-04-30 18:09:08','2023-04-30 18:09:08','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','El león oveja','','inherit','closed','closed','','470-revision-v1','','','2023-04-30 18:09:08','2023-04-30 18:09:08','',470,'https://divyayogamonteregie.org/ca/?p=472',0,'revision','',0),(473,1,'2023-04-30 18:09:08','2023-04-30 18:09:08','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','El león oveja','','inherit','closed','closed','','470-revision-v1','','','2023-04-30 18:09:08','2023-04-30 18:09:08','',470,'https://divyayogamonteregie.org/ca/?p=473',0,'revision','',0),(475,1,'2023-04-30 18:09:45','2023-04-30 18:09:45','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>A man found a cocoon of a butterfly.<br />One day a small opening appeared.<br />He sat and watched the butterfly for several hours<br />as it struggled to squeeze its body through the tiny hole.<br />Then it stopped, as if it couldn\'t go further.</p><p>So the man decided to help the butterfly.<br />He took a pair of scissors and<br />snipped off the remaining bits of cocoon.<br />The butterfly emerged easily but<br />it had a swollen body and shriveled wings.</p><p>The man continued to watch it,<br />expecting that any minute the wings would enlarge<br />and expand enough to support the body,<br />Neither happened!<br />In fact the butterfly spent the rest of its life<br />crawling around.<br />It was never able to fly.</p><p>What the man in his kindness<br />and haste did not understand:<br />The restricting cocoon and the struggle<br />required by the butterfly to get through the opening<br />was a way of forcing the fluid from the body<br />into the wings so that it would be ready<br />for flight once that was achieved.</p><p>Sometimes struggles are exactly<br />what we need in our lives.<br />Going through life with no obstacles would cripple us.<br />We will not be as strong as we could have been<br />and we would never fly.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The story of the butterfly.','','publish','closed','closed','','the-story-of-the-butterfly','','','2023-06-15 18:57:08','2023-06-15 18:57:08','',0,'https://divyayogamonteregie.org/ca/?page_id=475',0,'page','',0),(757,1,'2023-05-24 13:08:16','2023-05-24 13:08:16','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>A man found a cocoon of a butterfly.<br />One day a small opening appeared.<br />He sat and watched the butterfly for several hours<br />as it struggled to squeeze its body through the tiny hole.<br />Then it stopped, as if it couldn\'t go further.</p><p>So the man decided to help the butterfly.<br />He took a pair of scissors and<br />snipped off the remaining bits of cocoon.<br />The butterfly emerged easily but<br />it had a swollen body and shriveled wings.</p><p>The man continued to watch it,<br />expecting that any minute the wings would enlarge<br />and expand enough to support the body,<br />Neither happened!<br />In fact the butterfly spent the rest of its life<br />crawling around.<br />It was never able to fly.</p><p>What the man in his kindness<br />and haste did not understand:<br />The restricting cocoon and the struggle<br />required by the butterfly to get through the opening<br />was a way of forcing the fluid from the body<br />into the wings so that it would be ready<br />for flight once that was achieved.</p><p>Sometimes struggles are exactly<br />what we need in our lives.<br />Going through life with no obstacles would cripple us.<br />We will not be as strong as we could have been<br />and we would never fly.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The story of the butterfly.','','inherit','closed','closed','','475-revision-v1','','','2023-05-24 13:08:16','2023-05-24 13:08:16','',475,'https://divyayogamonteregie.org/ca/?p=757',0,'revision','',0),(476,1,'2023-04-30 18:10:01','2023-04-30 18:10:01','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','La historia de la mariposa','','inherit','closed','closed','','475-revision-v1','','','2023-04-30 18:10:01','2023-04-30 18:10:01','',475,'https://divyayogamonteregie.org/ca/?p=476',0,'revision','',0),(479,1,'2023-04-30 18:10:21','2023-04-30 18:10:21','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un hombre encontró un capullo de una mariposa.<br />Un día apareció una pequeña abertura.<br />Se sentó y observó a la mariposa durante varias horas<br />mientras luchaba por apretar su cuerpo a través del pequeño agujero.<br />Luego se detuvo, como si no pudiera ir más allá.</p><p>Entonces el hombre decidió ayudar a la mariposa.<br />Tomó un par de tijeras y<br />cortó los trozos restantes de capullo.<br />La mariposa emergió fácilmente, pero<br />tenía un cuerpo hinchado y alas arrugadas.</p><p>El hombre continuó observándolo, esperando que en cualquier momento las alas se agrandaran<br />y expandieran lo suficiente como para sostener el cuerpo,<br /><br />¡Ninguno de los dos sucedió!<br />De hecho, la mariposa pasó el resto de su vida<br />arrastrándose.<br />Nunca fue capaz de volar.</p><p>Lo que el hombre en su amabilidad y prisa no entendió:<br />El capullo restrictivo<br />y la lucha<br />requerida por la mariposa para atravesar la abertura era una forma de forzar el fluido del cuerpo<br />hacia las alas<br />para que estuviera listo<br />para volar una vez que se lograra.</p><p>A veces las luchas son exactamente<br />lo que necesitamos en nuestras vidas.<br />Ir por la vida sin obstáculos nos paralizaría.<br />No seremos tan fuertes como podríamos haber sido<br />y nunca volaríamos.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','La historia de la mariposa','','inherit','closed','closed','','475-revision-v1','','','2023-04-30 18:10:21','2023-04-30 18:10:21','',475,'https://divyayogamonteregie.org/ca/?p=479',0,'revision','',0),(477,1,'2023-04-30 18:10:21','2023-04-30 18:10:21','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','La historia de la mariposa','','inherit','closed','closed','','475-revision-v1','','','2023-04-30 18:10:21','2023-04-30 18:10:21','',475,'https://divyayogamonteregie.org/ca/?p=477',0,'revision','',0),(478,1,'2023-04-30 18:10:21','2023-04-30 18:10:21','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','La historia de la mariposa','','inherit','closed','closed','','475-revision-v1','','','2023-04-30 18:10:21','2023-04-30 18:10:21','',475,'https://divyayogamonteregie.org/ca/?p=478',0,'revision','',0),(480,1,'2023-04-30 18:11:05','2023-04-30 18:11:05','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">An old story is told of a king in Africa who had a close friend with whom he grew up. The friend had a habit of looking at every situation that ever occurred in his life (positive or negative) and remarking, \"This is good!\"</p><p style=\"text-align: justify;\">One day the king and his friend were out on a hunting expedition. The friend would load and prepare the guns for the king. The friend had apparently done something wrong in preparing one of the guns, for after taking the gun from his friend, the king fired it and his thumb was blown off. Examining the situation the friend remarked as usual, \"This is good!\" To which the king replied, \"No, this is NOT good!\" and proceeded to send his friend to jail.</p><p style=\"text-align: justify;\">About a year later, the king was hunting in an area that he should have known to stay clear of. Cannibals captured him and took him to their village. They tied his hands, stacked some wood, set up a stake and bound him to the stake. As they came near to set fire to the wood, they noticed that the king was missing a thumb. Being superstitious, they never ate anyone that was less than whole. So untying the king, they sent him on his way.</p><p style=\"text-align: justify;\">As he returned home, he was reminded of the event that had taken his thumb and felt remorse for his treatment of his friend. He went immediately to the jail to speak with his friend. \"You were right,\" he said, \"it was good that my thumb was blown off.\" And he proceeded to tell the friend all that had just happened. \"And so I am very sorry for sending you to jail for so long. It was bad for me to do this.\"</p><p style=\"text-align: justify;\">\"No,\" his friend replied, \"This is good!\" \"What do you mean,\'This is good\'? How could it be good that I sent my friend to jail for a year?\" \"If I had NOT been in jail, I would have been with you.\"</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','This is good','','publish','closed','closed','','this-is-good','','','2023-06-15 18:57:59','2023-06-15 18:57:59','',0,'https://divyayogamonteregie.org/ca/?page_id=480',0,'page','',0),(484,1,'2023-04-30 18:11:44','2023-04-30 18:11:44','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Se cuenta una vieja historia de un rey en África que tenía un amigo cercano con quien creció. El amigo tenía la costumbre de mirar cada situación que ocurría en su vida (positiva o negativa) y comentar: \"¡Esto es bueno!\"</p><p>Un día, el rey y su amigo estaban en una expedición de caza. El amigo cargaría y prepararía las armas para el rey. El amigo aparentemente había hecho algo mal al preparar una de las armas, porque después de quitarle el arma a su amigo, el rey la disparó y le volaron el pulgar. Al examinar la situación, el amigo comentó como de costumbre: \"¡Esto es bueno!\" A lo que el rey respondió: \"¡No, esto NO es bueno!\" y procedió a enviar a su amigo a la cárcel.</p><p>Aproximadamente un año después, el rey estaba cazando en un área de la que debería haber sabido mantenerse alejado. Los caníbales lo capturaron y lo llevaron a su aldea. Le ataron las manos, apilaron madera, colocaron una estaca y lo ataron a la estaca. Cuando se acercaron para prender fuego a la madera, notaron que al rey le faltaba un pulgar. Siendo supersticiosos, nunca comieron a nadie que fuera menos que completo. Así que desatando al rey, lo enviaron en su camino.</p><p>Cuando regresó a casa, recordó el evento que le había quitado el pulgar y sintió remordimiento por el trato que había dado a su amigo. Fue inmediatamente a la cárcel para hablar con su amigo. \"Tenías razón\", dijo, \"fue bueno que me volaran el pulgar\". Y procedió a contarle al amigo todo lo que acababa de suceder. \"Y por eso lamento mucho haberte enviado a la cárcel durante tanto tiempo. Fue malo para mí hacer esto\".</p><p>\"No\", respondió su amigo, \"¡Esto es bueno!\" \"¿Qué quieres decir, \'Esto es bueno\'? ¿Cómo podría ser bueno que enviara a mi amigo a la cárcel por un año?\" \"Si NO hubiera estado en la cárcel, habría estado contigo\".</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Está bueno','','inherit','closed','closed','','480-revision-v1','','','2023-04-30 18:11:44','2023-04-30 18:11:44','',480,'https://divyayogamonteregie.org/ca/?p=484',0,'revision','',0),(481,1,'2023-04-30 18:11:22','2023-04-30 18:11:22','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Está bueno','','inherit','closed','closed','','480-revision-v1','','','2023-04-30 18:11:22','2023-04-30 18:11:22','',480,'https://divyayogamonteregie.org/ca/?p=481',0,'revision','',0),(482,1,'2023-04-30 18:11:44','2023-04-30 18:11:44','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Está bueno','','inherit','closed','closed','','480-revision-v1','','','2023-04-30 18:11:44','2023-04-30 18:11:44','',480,'https://divyayogamonteregie.org/ca/?p=482',0,'revision','',0),(483,1,'2023-04-30 18:11:44','2023-04-30 18:11:44','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Está bueno','','inherit','closed','closed','','480-revision-v1','','','2023-04-30 18:11:44','2023-04-30 18:11:44','',480,'https://divyayogamonteregie.org/ca/?p=483',0,'revision','',0),(485,1,'2023-04-30 18:12:19','2023-04-30 18:12:19','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">There once was a wise sage who wandered the countryside. One day, as he passed near a village, he was approached by a woman who told him of a sick child nearby. She beseeched him to help this child.</p><p style=\"text-align: justify;\">So the sage came to the village, and a crowd gathered around him, for such a man was a rare sight. One woman brought the sick child to him, and he said a prayer over her.</p><p style=\"text-align: justify;\">\"Do you really think your prayer will help her, when medicine has failed?\" yelled a man from the crowd.</p><p style=\"text-align: justify;\">\"You know nothing of such things! You are a stupid fool!\" said the sage to the man.</p><p style=\"text-align: justify;\">The man became very angry with these words and his face grew hot and red. He was about to say something, or perhaps strike out, when the sage walked over to him and said: \"If one word has such power as to make you so angry and hot, may not another have the power to heal?\"</p><p style=\"text-align: justify;\">And thus, the sage healed two people that day.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Wise Saint','','publish','closed','closed','','wise-saint','','','2023-06-15 18:58:43','2023-06-15 18:58:43','',0,'https://divyayogamonteregie.org/ca/?page_id=485',0,'page','',0),(489,1,'2023-04-30 18:12:54','2023-04-30 18:12:54','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Había una vez un sabio sabio que vagaba por el campo. Un día, cuando pasaba cerca de un pueblo, se le acercó una mujer que le habló de un niño enfermo cerca. Ella le suplicó que ayudara a este niño.</p><p>Entonces el sabio llegó a la aldea, y una multitud se reunió a su alrededor, porque un hombre así era una vista rara. Una mujer le trajo al niño enfermo y él dijo una oración por ella.</p><p>\"¿De verdad crees que tu oración la ayudará, cuando la medicina ha fallado?\", Gritó un hombre de la multitud.</p><p>\"¡No sabes nada de tales cosas! ¡Eres un tonto estúpido!\", le dijo el sabio al hombre.</p><p>El hombre se enojó mucho con estas palabras y su rostro se puso caliente y rojo. Estaba a punto de decir algo, o tal vez atacar, cuando el sabio se acercó a él y le dijo: \"Si una palabra tiene tal poder como para hacerte enojar y ardiente tanto, ¿no puede otra tener el poder de sanar?\"</p><p>Y así, el sabio sanó a dos personas ese día.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Santo Sabio','','inherit','closed','closed','','485-revision-v1','','','2023-04-30 18:12:54','2023-04-30 18:12:54','',485,'https://divyayogamonteregie.org/ca/?p=489',0,'revision','',0),(486,1,'2023-04-30 18:12:30','2023-04-30 18:12:30','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Santo Sabio','','inherit','closed','closed','','485-revision-v1','','','2023-04-30 18:12:30','2023-04-30 18:12:30','',485,'https://divyayogamonteregie.org/ca/?p=486',0,'revision','',0),(487,1,'2023-04-30 18:12:54','2023-04-30 18:12:54','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Santo Sabio','','inherit','closed','closed','','485-revision-v1','','','2023-04-30 18:12:54','2023-04-30 18:12:54','',485,'https://divyayogamonteregie.org/ca/?p=487',0,'revision','',0),(488,1,'2023-04-30 18:12:54','2023-04-30 18:12:54','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Santo Sabio','','inherit','closed','closed','','485-revision-v1','','','2023-04-30 18:12:54','2023-04-30 18:12:54','',485,'https://divyayogamonteregie.org/ca/?p=488',0,'revision','',0),(490,1,'2023-04-30 18:13:30','2023-04-30 18:13:30','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">TWO FROGS - a big one and a small one - hopped into a pail of milk. The sides of the pail were shiny and smooth. The frogs were swimming round and round without being able to get out of the pail again, and every time they lifted their mouths to catch a little air to breathe, down they went. They kept on swimming and gasping like this till the big frog gave up and drowned. Then the little frog said to himself,</p><p style=\"text-align: justify;\">\"Well, well. I will hang on as long as I can, too.\"</p><p style=\"text-align: justify;\">It kept on for hours, when suddenly it found something solid under its feet - milk was churned to butter! Out jumped the little frog!</p><p style=\"text-align: justify;\">❖ <i>Said Yogananda: \"Be like the little frog. By all means keep battling.\" </i></p><p style=\"text-align: justify;\">❖ <i>Churn your difficulty well or it may be to your loss.</i></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The two Frogs in Trouble','','publish','closed','closed','','the-two-frogs-in-trouble','','','2023-06-15 18:59:30','2023-06-15 18:59:30','',0,'https://divyayogamonteregie.org/ca/?page_id=490',0,'page','',0),(491,1,'2023-04-30 18:13:43','2023-04-30 18:13:43','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Las dos ranas en problemas','','inherit','closed','closed','','490-revision-v1','','','2023-04-30 18:13:43','2023-04-30 18:13:43','',490,'https://divyayogamonteregie.org/ca/?p=491',0,'revision','',0),(494,1,'2023-04-30 18:14:08','2023-04-30 18:14:08','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>DOS RANAS, una grande y otra pequeña, saltaron a un cubo de leche. Los lados del cubo eran brillantes y lisos. Las ranas nadaban dando vueltas y vueltas sin poder volver a salir del cubo, y cada vez que levantaban la boca para coger un poco de aire para respirar, bajaban. Siguieron nadando y jadeando así hasta que la gran rana se rindió y se ahogó. Entonces la ranita se dijo a sí misma:</p><p>\"Bueno, bueno. Yo también aguantaré todo el tiempo que pueda\".</p><p>Continuó durante horas, cuando de repente encontró algo sólido bajo sus pies: ¡la leche se batió en mantequilla! ¡Salió la ranita!</p><p>❖ <em>Dijo Yogananda: \"Sé como la ranita. Por supuesto, sigue luchando\".</em></p><p>❖ <em>Agite bien su dificultad o puede ser para su pérdida.</em></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Las dos ranas en problemas','','inherit','closed','closed','','490-revision-v1','','','2023-04-30 18:14:08','2023-04-30 18:14:08','',490,'https://divyayogamonteregie.org/ca/?p=494',0,'revision','',0),(492,1,'2023-04-30 18:14:08','2023-04-30 18:14:08','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Las dos ranas en problemas','','inherit','closed','closed','','490-revision-v1','','','2023-04-30 18:14:08','2023-04-30 18:14:08','',490,'https://divyayogamonteregie.org/ca/?p=492',0,'revision','',0),(493,1,'2023-04-30 18:14:08','2023-04-30 18:14:08','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Las dos ranas en problemas','','inherit','closed','closed','','490-revision-v1','','','2023-04-30 18:14:08','2023-04-30 18:14:08','',490,'https://divyayogamonteregie.org/ca/?p=493',0,'revision','',0),(495,1,'2023-04-30 18:14:50','2023-04-30 18:14:50','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Please do not stand too close to the trees! You will not be able to enjoy the forest...</p><p style=\"text-align: justify;\">A few years before hurricane Katrina hit New Orleans, a new expensive automobile stopped at the top of the Mississippi River Bridge and a gentleman stepped out of the car wearing very expensive clothing.</p><p style=\"text-align: justify;\">He climbed over the rail and under the bridge onto a platform below the roadway preparing to jump. Cars started stopping and the traffic backed up for miles. The police arrived with the fire department, ministers and mental health professionals.</p><p style=\"text-align: justify;\">They began talking to the man and telling him not to jump. They told him that he may not die; he may break all of his bones and be paralyzed for life. About half mile back in traffic was an old truck with lawn mowers, rakes, and shovels. An elderly gardener got out of his truck and walked up to where the crowd was gathered.</p><p style=\"text-align: justify;\">He made his way through the people, looked over the side and hollered down to the man on the ledge, \"Hey, I got to go to work. Either jump or get off the bridge. If you decide not to jump, tomorrow is going to be better!\"</p><p style=\"text-align: justify;\">With that the man climbed up onto the bridge. The police handcuffed him and placed him in the back seat of the police car. The gardener walked back to his truck waiting for the traffic to move.</p><p style=\"text-align: justify;\">The minister asked the fireman, \"Who was that?\" The fireman said, \"He said he has to go to work!\"</p><p style=\"text-align: justify;\">The police reported to the press that all the way to the hospital the man kept saying over and over, \"Tomorrow is going to be better.\"</p><p style=\"text-align: justify;\">One must see a future, to have a future</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Tomorrow is going to be better','','publish','closed','closed','','tomorrow-is-going-to-be-better','','','2023-06-15 19:00:28','2023-06-15 19:00:28','',0,'https://divyayogamonteregie.org/ca/?page_id=495',0,'page','',0),(496,1,'2023-04-30 18:15:03','2023-04-30 18:15:03','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Mañana va a ser mejor','','inherit','closed','closed','','495-revision-v1','','','2023-04-30 18:15:03','2023-04-30 18:15:03','',495,'https://divyayogamonteregie.org/ca/?p=496',0,'revision','',0),(499,1,'2023-04-30 18:15:29','2023-04-30 18:15:29','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>¡Por favor, no te pares demasiado cerca de los árboles! No podrás disfrutar del bosque...</p><p>Unos años antes de que el huracán Katrina azotara Nueva Orleans, un automóvil nuevo y caro se detuvo en la parte superior del puente del río Mississippi y un caballero salió del automóvil con ropa muy cara.</p><p>Se subió por encima de la barandilla y debajo del puente a una plataforma debajo de la carretera preparándose para saltar. Los autos comenzaron a detenerse y el tráfico retrocedió por millas. La policía llegó con el departamento de bomberos, ministros y profesionales de la salud mental.</p><p>Comenzaron a hablar con el hombre y le dijeron que no saltara. Le dijeron que no podía morir; Puede romperse todos los huesos y quedar paralizado de por vida. Alrededor de media milla atrás en el tráfico había un viejo camión con cortadoras de césped, rastrillos y palas. Un jardinero anciano salió de su camioneta y caminó hasta donde estaba reunida la multitud.</p><p>Se abrió paso entre la gente, miró a un lado y gritó al hombre en la cornisa: \"Oye, tengo que ir a trabajar. Salta o bájate del puente. ¡Si decides no saltar, mañana va a ser mejor!\"</p><p>Con eso el hombre subió al puente. La policía lo esposó y lo colocó en el asiento trasero del coche de policía. El jardinero regresó a su camioneta esperando que el tráfico se moviera.</p><p>El ministro le preguntó al bombero: \"¿Quién era ese?\" El bombero dijo: \"¡Dijo que tiene que ir a trabajar!\"</p><p>La policía informó a la prensa que durante todo el camino hasta el hospital el hombre seguía diciendo una y otra vez: \"Mañana va a ser mejor\".</p><p>Uno debe ver un futuro, tener un futuro</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Mañana va a ser mejor','','inherit','closed','closed','','495-revision-v1','','','2023-04-30 18:15:29','2023-04-30 18:15:29','',495,'https://divyayogamonteregie.org/ca/?p=499',0,'revision','',0),(497,1,'2023-04-30 18:15:29','2023-04-30 18:15:29','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Mañana va a ser mejor','','inherit','closed','closed','','495-revision-v1','','','2023-04-30 18:15:29','2023-04-30 18:15:29','',495,'https://divyayogamonteregie.org/ca/?p=497',0,'revision','',0),(498,1,'2023-04-30 18:15:29','2023-04-30 18:15:29','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Mañana va a ser mejor','','inherit','closed','closed','','495-revision-v1','','','2023-04-30 18:15:29','2023-04-30 18:15:29','',495,'https://divyayogamonteregie.org/ca/?p=498',0,'revision','',0),(500,1,'2023-04-30 18:16:11','2023-04-30 18:16:11','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Sometimes it sounds foolish or frustrating to think positive when times are really bad and a few people make it worse for you, doesn\'t it?</p><p>But just tell me, if I call you tomorrow morning, while you are still in bed and say, \"You are an Angel for me and I\'m blessed to have such a good person in my life. May God bless you\".</p><p><b>How would you feel?</b></p><p>Won\'t it be a great feeling and a great way to start a fantastic day?</p><p>Next morning I again call you but this time I say, \"You Rascal! You are the dumbest and most foolish person on the earth I\'ve ever met. You screwed me and you will be screwed...etc\".</p><p><b>How would you feel now?</b></p><p>Of course it would be a frustrating day, with a sad feeling, because you heard all the crap in the morning while you were still in bed!</p><p>Now answer my question - <b>\"Who is controlling \'your\' life?\" </b></p><p><b>Am I supposed to control YOUR life? Is that right?</b></p><p><b>When I say something good about you, does it makes you a good person and vice versa?</b></p><p><b>NO, YOU ARE THE MASTER OF YOUR OWN LIFE!</b></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Who\'s In Charge Of Your Life?','','publish','closed','closed','','whos-in-charge-of-your-life','','','2023-06-15 19:01:24','2023-06-15 19:01:24','',0,'https://divyayogamonteregie.org/ca/?page_id=500',0,'page','',0),(773,1,'2023-05-24 13:13:40','2023-05-24 13:13:40','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Sometimes it sounds foolish or frustrating to think positive when times are really bad and a few people make it worse for you, doesn\'t it?</p><p>But just tell me, if I call you tomorrow morning, while you are still in bed and say, \"You are an Angel for me and I\'m blessed to have such a good person in my life. May God bless you\".</p><p><b>How would you feel?</b></p><p>Won\'t it be a great feeling and a great way to start a fantastic day?</p><p>Next morning I again call you but this time I say, \"You Rascal! You are the dumbest and most foolish person on the earth I\'ve ever met. You screwed me and you will be screwed...etc\".</p><p><b>How would you feel now?</b></p><p>Of course it would be a frustrating day, with a sad feeling, because you heard all the crap in the morning while you were still in bed!</p><p>Now answer my question - <b>\"Who is controlling \'your\' life?\" </b></p><p><b>Am I supposed to control YOUR life? Is that right?</b></p><p><b>When I say something good about you, does it makes you a good person and vice versa?</b></p><p><b>NO, YOU ARE THE MASTER OF YOUR OWN LIFE!</b></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Who\'s In Charge Of Your Life?','','inherit','closed','closed','','500-revision-v1','','','2023-05-24 13:13:40','2023-05-24 13:13:40','',500,'https://divyayogamonteregie.org/ca/?p=773',0,'revision','',0),(501,1,'2023-04-30 18:16:23','2023-04-30 18:16:23','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','¿Quién está a cargo de tu vida?','','inherit','closed','closed','','500-revision-v1','','','2023-04-30 18:16:23','2023-04-30 18:16:23','',500,'https://divyayogamonteregie.org/ca/?p=501',0,'revision','',0),(504,1,'2023-04-30 18:16:47','2023-04-30 18:16:47','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>A veces suena tonto o frustrante pensar en positivo cuando los tiempos son realmente malos y algunas personas lo empeoran para ti, ¿no es así?</p><p>Pero solo dime, si te llamo mañana por la mañana, mientras todavía estás en la cama y te digo: \"Eres un ángel para mí y tengo la bendición de tener una persona tan buena en mi vida. Que Dios los bendiga\".</p><p><strong>¿Cómo te sentirías?</strong></p><p>¿No será una gran sensación y una gran manera de comenzar un día fantástico?</p><p>A la mañana siguiente te llamo de nuevo, pero esta vez te digo: \"¡Tú sinvergüenza! Eres la persona más tonta y tonta de la tierra que he conocido. Me jodiste y serás... etc\".</p><p><strong>¿Cómo te sentirías ahora?</strong></p><p>¡Por supuesto que sería un día frustrante, con un sentimiento triste, porque escuchaste toda la mierda en la mañana mientras aún estabas en la cama!</p><p>Ahora responde a mi pregunta: <strong>\"¿Quién está controlando \'tu\' vida?\"</strong></p><p><strong>¿Se supone que debo controlar TU vida? ¿Es eso correcto?</strong></p><p><strong>Cuando digo algo bueno sobre ti, ¿te convierte en una buena persona y viceversa?</strong></p><p><strong>¡NO, ERES EL DUEÑO DE TU PROPIA VIDA!</strong></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','¿Quién está a cargo de tu vida?','','inherit','closed','closed','','500-revision-v1','','','2023-04-30 18:16:47','2023-04-30 18:16:47','',500,'https://divyayogamonteregie.org/ca/?p=504',0,'revision','',0),(502,1,'2023-04-30 18:16:46','2023-04-30 18:16:46','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','¿Quién está a cargo de tu vida?','','inherit','closed','closed','','500-revision-v1','','','2023-04-30 18:16:46','2023-04-30 18:16:46','',500,'https://divyayogamonteregie.org/ca/?p=502',0,'revision','',0),(503,1,'2023-04-30 18:16:46','2023-04-30 18:16:46','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','¿Quién está a cargo de tu vida?','','inherit','closed','closed','','500-revision-v1','','','2023-04-30 18:16:46','2023-04-30 18:16:46','',500,'https://divyayogamonteregie.org/ca/?p=503',0,'revision','',0),(505,1,'2023-04-30 18:17:36','2023-04-30 18:17:36','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Un funeral interesante','','inherit','closed','closed','','419-revision-v1','','','2023-04-30 18:17:36','2023-04-30 18:17:36','',419,'https://divyayogamonteregie.org/ca/?p=505',0,'revision','',0),(506,1,'2023-04-30 18:18:10','2023-04-30 18:18:10','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Un funeral interesante','','inherit','closed','closed','','419-revision-v1','','','2023-04-30 18:18:10','2023-04-30 18:18:10','',419,'https://divyayogamonteregie.org/ca/?p=506',0,'revision','',0),(507,1,'2023-04-30 18:18:10','2023-04-30 18:18:10','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Existe esta historia sobre un famoso científico investigador que había hecho varios avances médicos muy importantes. Estaba siendo entrevistado por un reportero de un periódico que le preguntó por qué pensaba que era capaz de ser mucho más creativo que la persona promedio. ¿Qué lo diferenció tanto de los demás?</p><p>Él respondió que, en su opinión, todo provenía de una experiencia con su madre que ocurrió cuando tenía unos dos años. Había estado tratando de sacar una botella de leche del refrigerador cuando perdió el control de la botella resbaladiza y cayó, derramando su contenido por todo el piso de la cocina, ¡un verdadero mar de leche!</p><p>Cuando su madre entró en la cocina, en lugar de gritarle, darle una conferencia o castigarlo, dijo: \"¡Robert, ¡qué gran y maravilloso desastre has hecho! Rara vez he visto un charco de leche tan grande. Bueno, el daño ya está hecho. ¿Te gustaría bajar y jugar en la leche durante unos minutos antes de limpiarla?\"</p><p>De hecho, lo hizo. Después de unos minutos, su madre dijo: \"Sabes, Robert, cada vez que haces un desastre como este, eventualmente tienes que limpiarlo y restaurar todo a su orden. Entonces, ¿cómo te gustaría hacer eso? Podríamos usar una esponja, una toalla o un trapeador. ¿Cuál prefieres?\"</p><p>Eligió la esponja y juntos limpiaron la leche derramada.</p><p>Su madre luego dijo: \"Sabes, lo que tenemos aquí es un experimento fallido sobre cómo llevar efectivamente una botella de leche grande con dos manos pequeñas. Salgamos al patio trasero y llenemos la botella con agua y veamos si puedes encontrar una manera de llevarla sin dejarla caer\".</p><p>El niño aprendió que si agarraba la botella en la parte superior cerca del labio con ambas manos, podía llevarla sin dejarla caer. Este renombrado científico comentó que fue en ese momento que supo que no tenía que tener miedo de cometer errores. En cambio, aprendió que los errores eran solo oportunidades para aprender algo nuevo, que es, después de todo, de lo que se tratan los experimentos científicos. Incluso si el experimento \"no funciona\", generalmente aprendemos algo valioso de él.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Un funeral interesante','','inherit','closed','closed','','419-revision-v1','','','2023-04-30 18:18:10','2023-04-30 18:18:10','',419,'https://divyayogamonteregie.org/ca/?p=507',0,'revision','',0),(688,1,'2023-05-24 03:37:37','2023-05-24 03:37:37','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>One day all the employees of a very unusual company reached their office and all saw a big sign on the main door which said this:</p><p>\"Yesterday, the person who has been hindering your growth in this company passed away. We invite you to join the funeral in the room that has been prepared in the gym.\"</p><p>In the beginning, they all got sad for the death of one of their colleagues, but after a while they started getting curious to know who was that person who hindered the growth of their colleagues and the company itself?</p><p>The excitement in the gym was such that security agents were ordered to control the crowd within the room. The more people reached the coffin, the more the excitement heated up.</p><p><b>Everyone thought - \"Who is this person who was hindering my progress?\"</b></p><p>One by one the intrigued employees got closer to the coffin, and when they looked inside it, they suddenly became speechless.</p><p>They all got to stand near the coffin, and all ended up shocked and in silence, as if someone had touched the deepest part of their soul.</p><p><b>There was a mirror inside the coffin: everyone who looked inside it could see themselves!</b></p><p><b>There was also a sign next to the mirror that said:</b></p><p><b>There is only one person who is capable of setting limits to your growth and IT IS YOU!</b></p><p>Your life does not change when your boss changes, when your friends change, when your parents change, when your husband or wife changes, when your company changes, when your church changes, when your location changes, when your money changes, when your status changes.</p><p><b>No, your life changes when YOU change</b>, when you go beyond your limiting beliefs.</p><p>Examine yourself, watch yourself. Don\'t be afraid of difficulties, impossibilities and losses. Be a winner, build yourself and your reality. It\'s the way you face life itself that makes the difference.</p><p>A few years ago a college student, who was struggling to build his career, appeared for his professional examination. He attempted his first paper excellently but he imagined that he performed badly.</p><p>Keeping this in mind, he lost concentration for the rest of the subjects and in turn, didn\'t write the other subjects well. Later on, the results came out that the paper he thought was poorly written had secured top marks in the college but in the other subjects, he failed. Why did this happen? The reason is simple: lack of belief in himself</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','An Interesting Funeral','','inherit','closed','closed','','419-revision-v1','','','2023-05-24 03:37:37','2023-05-24 03:37:37','',419,'https://divyayogamonteregie.org/ca/?p=688',0,'revision','',0),(508,1,'2023-04-30 18:18:10','2023-04-30 18:18:10','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un día, todos los empleados de una empresa muy inusual llegaron a su oficina y todos vieron un gran letrero en la puerta principal que decía esto:</p><p>\"Ayer, la persona que ha estado obstaculizando su crecimiento en esta empresa falleció. Te invitamos a unirte al funeral en la sala que se ha preparado en el gimnasio\".</p><p>Al principio, todos se pusieron tristes por la muerte de uno de sus colegas, pero después de un tiempo comenzaron a sentir curiosidad por saber quién era esa persona que obstaculizaba el crecimiento de sus colegas y de la propia empresa.</p><p>La emoción en el gimnasio era tal que se ordenó a los agentes de seguridad que controlaran a la multitud dentro de la sala. Cuanta más gente llegaba al ataúd, más se calentaba la emoción.</p><p><strong>Todos pensaron: \"¿Quién es esta persona que estaba obstaculizando mi progreso?\"</strong></p><p>Uno por uno, los empleados intrigados se acercaron al ataúd, y cuando miraron dentro de él, de repente se quedaron sin palabras.</p><p>Todos llegaron a pararse cerca del ataúd, y todos terminaron conmocionados y en silencio, como si alguien hubiera tocado la parte más profunda de su alma.</p><p><strong>Había un espejo dentro del ataúd: ¡todos los que miraban dentro de él podían verse a sí mismos!</strong></p><p><strong>También había un letrero al lado del espejo que decía:</strong></p><p><strong>Sólo hay una persona que es capaz de poner límites a tu crecimiento y ¡ERES TÚ!</strong></p><p>Tu vida no cambia cuando cambia tu jefe, cuando cambian tus amigos, cuando cambian tus padres, cuando cambia tu esposo o esposa, cuando cambia tu compañía, cuando cambia tu iglesia, cuando cambia tu ubicación, cuando cambia tu dinero, cuando cambia tu estatus.</p><p><strong>No, tu vida cambia cuando TÚ cambias, cuando</strong> vas más allá de tus creencias limitantes.</p><p>Examínate a ti mismo, obsérvate a ti mismo. No tengas miedo de las dificultades, imposibilidades y pérdidas. Sé un ganador, constrúyete a ti mismo y a tu realidad. Es la forma en que enfrentas la vida misma lo que marca la diferencia.</p><p>Hace unos años, un estudiante universitario, que luchaba por construir su carrera, se presentó para su examen profesional. Intentó su primer trabajo excelentemente, pero imaginó que se desempeñó mal.</p><p>Teniendo esto en cuenta, perdió la concentración para el resto de las asignaturas y, a su vez, no escribió bien las otras asignaturas. Más tarde, los resultados salieron que el documento que pensaba que estaba mal escrito había obtenido las mejores calificaciones en la universidad, pero en las otras materias, falló. ¿Por qué sucedió esto? La razón es simple: falta de creencia en sí mismo</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Un funeral interesante','','inherit','closed','closed','','419-revision-v1','','','2023-04-30 18:18:10','2023-04-30 18:18:10','',419,'https://divyayogamonteregie.org/ca/?p=508',0,'revision','',0),(509,1,'2023-04-30 18:20:21','2023-04-30 18:20:21','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:20:21','2023-04-30 18:20:21','',276,'https://divyayogamonteregie.org/ca/?p=509',0,'revision','',0),(510,1,'2023-04-30 18:20:21','2023-04-30 18:20:21','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:20:21','2023-04-30 18:20:21','',276,'https://divyayogamonteregie.org/ca/?p=510',0,'revision','',0),(511,1,'2023-04-30 18:20:21','2023-04-30 18:20:21','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:20:21','2023-04-30 18:20:21','',276,'https://divyayogamonteregie.org/ca/?p=511',0,'revision','',0),(512,1,'2023-04-30 18:20:44','2023-04-30 18:20:44','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:20:44','2023-04-30 18:20:44','',276,'https://divyayogamonteregie.org/ca/?p=512',0,'revision','',0),(513,1,'2023-04-30 18:20:44','2023-04-30 18:20:44','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:20:44','2023-04-30 18:20:44','',276,'https://divyayogamonteregie.org/ca/?p=513',0,'revision','',0),(514,1,'2023-04-30 18:20:45','2023-04-30 18:20:45','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:20:45','2023-04-30 18:20:45','',276,'https://divyayogamonteregie.org/ca/?p=514',0,'revision','',0),(515,1,'2023-04-30 18:21:08','2023-04-30 18:21:08','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:21:08','2023-04-30 18:21:08','',276,'https://divyayogamonteregie.org/ca/?p=515',0,'revision','',0),(516,1,'2023-04-30 18:21:08','2023-04-30 18:21:08','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:21:08','2023-04-30 18:21:08','',276,'https://divyayogamonteregie.org/ca/?p=516',0,'revision','',0),(517,1,'2023-04-30 18:21:08','2023-04-30 18:21:08','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:21:08','2023-04-30 18:21:08','',276,'https://divyayogamonteregie.org/ca/?p=517',0,'revision','',0),(518,1,'2023-04-30 18:21:26','2023-04-30 18:21:26','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:21:26','2023-04-30 18:21:26','',276,'https://divyayogamonteregie.org/ca/?p=518',0,'revision','',0),(519,1,'2023-04-30 18:21:26','2023-04-30 18:21:26','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:21:26','2023-04-30 18:21:26','',276,'https://divyayogamonteregie.org/ca/?p=519',0,'revision','',0),(520,1,'2023-04-30 18:21:26','2023-04-30 18:21:26','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:21:26','2023-04-30 18:21:26','',276,'https://divyayogamonteregie.org/ca/?p=520',0,'revision','',0),(521,1,'2023-04-30 18:21:42','2023-04-30 18:21:42','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:21:42','2023-04-30 18:21:42','',276,'https://divyayogamonteregie.org/ca/?p=521',0,'revision','',0),(522,1,'2023-04-30 18:21:42','2023-04-30 18:21:42','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:21:42','2023-04-30 18:21:42','',276,'https://divyayogamonteregie.org/ca/?p=522',0,'revision','',0),(523,1,'2023-04-30 18:21:42','2023-04-30 18:21:42','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:21:42','2023-04-30 18:21:42','',276,'https://divyayogamonteregie.org/ca/?p=523',0,'revision','',0),(524,1,'2023-04-30 18:22:01','2023-04-30 18:22:01','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:22:01','2023-04-30 18:22:01','',276,'https://divyayogamonteregie.org/ca/?p=524',0,'revision','',0),(525,1,'2023-04-30 18:22:01','2023-04-30 18:22:01','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:22:01','2023-04-30 18:22:01','',276,'https://divyayogamonteregie.org/ca/?p=525',0,'revision','',0),(526,1,'2023-04-30 18:22:01','2023-04-30 18:22:01','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:22:01','2023-04-30 18:22:01','',276,'https://divyayogamonteregie.org/ca/?p=526',0,'revision','',0),(527,1,'2023-04-30 18:22:28','2023-04-30 18:22:28','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:22:28','2023-04-30 18:22:28','',276,'https://divyayogamonteregie.org/ca/?p=527',0,'revision','',0),(528,1,'2023-04-30 18:22:28','2023-04-30 18:22:28','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:22:28','2023-04-30 18:22:28','',276,'https://divyayogamonteregie.org/ca/?p=528',0,'revision','',0),(529,1,'2023-04-30 18:22:28','2023-04-30 18:22:28','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:22:28','2023-04-30 18:22:28','',276,'https://divyayogamonteregie.org/ca/?p=529',0,'revision','',0),(530,1,'2023-04-30 18:23:40','2023-04-30 18:23:40','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:23:40','2023-04-30 18:23:40','',276,'https://divyayogamonteregie.org/ca/?p=530',0,'revision','',0),(531,1,'2023-04-30 18:23:40','2023-04-30 18:23:40','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:23:40','2023-04-30 18:23:40','',276,'https://divyayogamonteregie.org/ca/?p=531',0,'revision','',0);
INSERT INTO `wpjv_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (532,1,'2023-04-30 18:23:41','2023-04-30 18:23:41','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:23:41','2023-04-30 18:23:41','',276,'https://divyayogamonteregie.org/ca/?p=532',0,'revision','',0),(533,1,'2023-04-30 18:24:20','2023-04-30 18:24:20','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:24:20','2023-04-30 18:24:20','',276,'https://divyayogamonteregie.org/ca/?p=533',0,'revision','',0),(534,1,'2023-04-30 18:24:20','2023-04-30 18:24:20','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:24:20','2023-04-30 18:24:20','',276,'https://divyayogamonteregie.org/ca/?p=534',0,'revision','',0),(535,1,'2023-04-30 18:24:20','2023-04-30 18:24:20','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:24:20','2023-04-30 18:24:20','',276,'https://divyayogamonteregie.org/ca/?p=535',0,'revision','',0),(536,1,'2023-04-30 18:24:34','2023-04-30 18:24:34','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:24:34','2023-04-30 18:24:34','',276,'https://divyayogamonteregie.org/ca/?p=536',0,'revision','',0),(537,1,'2023-04-30 18:24:34','2023-04-30 18:24:34','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:24:34','2023-04-30 18:24:34','',276,'https://divyayogamonteregie.org/ca/?p=537',0,'revision','',0),(538,1,'2023-04-30 18:24:35','2023-04-30 18:24:35','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:24:35','2023-04-30 18:24:35','',276,'https://divyayogamonteregie.org/ca/?p=538',0,'revision','',0),(539,1,'2023-04-30 18:24:55','2023-04-30 18:24:55','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:24:55','2023-04-30 18:24:55','',276,'https://divyayogamonteregie.org/ca/?p=539',0,'revision','',0),(540,1,'2023-04-30 18:24:55','2023-04-30 18:24:55','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:24:55','2023-04-30 18:24:55','',276,'https://divyayogamonteregie.org/ca/?p=540',0,'revision','',0),(541,1,'2023-04-30 18:24:55','2023-04-30 18:24:55','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:24:55','2023-04-30 18:24:55','',276,'https://divyayogamonteregie.org/ca/?p=541',0,'revision','',0),(542,1,'2023-04-30 18:25:09','2023-04-30 18:25:09','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:25:09','2023-04-30 18:25:09','',276,'https://divyayogamonteregie.org/ca/?p=542',0,'revision','',0),(543,1,'2023-04-30 18:25:10','2023-04-30 18:25:10','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:25:10','2023-04-30 18:25:10','',276,'https://divyayogamonteregie.org/ca/?p=543',0,'revision','',0),(544,1,'2023-04-30 18:25:10','2023-04-30 18:25:10','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:25:10','2023-04-30 18:25:10','',276,'https://divyayogamonteregie.org/ca/?p=544',0,'revision','',0),(545,1,'2023-04-30 18:25:37','2023-04-30 18:25:37','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:25:37','2023-04-30 18:25:37','',276,'https://divyayogamonteregie.org/ca/?p=545',0,'revision','',0),(546,1,'2023-04-30 18:25:37','2023-04-30 18:25:37','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:25:37','2023-04-30 18:25:37','',276,'https://divyayogamonteregie.org/ca/?p=546',0,'revision','',0),(827,1,'2023-05-24 13:38:57','2023-05-24 13:38:57','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:38:57','2023-05-24 13:38:57','',276,'https://divyayogamonteregie.org/ca/?p=827',0,'revision','',0),(547,1,'2023-04-30 18:25:38','2023-04-30 18:25:38','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:25:38','2023-04-30 18:25:38','',276,'https://divyayogamonteregie.org/ca/?p=547',0,'revision','',0),(548,1,'2023-04-30 18:25:55','2023-04-30 18:25:55','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:25:55','2023-04-30 18:25:55','',276,'https://divyayogamonteregie.org/ca/?p=548',0,'revision','',0),(549,1,'2023-04-30 18:25:55','2023-04-30 18:25:55','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:25:55','2023-04-30 18:25:55','',276,'https://divyayogamonteregie.org/ca/?p=549',0,'revision','',0),(793,1,'2023-05-24 13:25:29','2023-05-24 13:25:29','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:25:29','2023-05-24 13:25:29','',276,'https://divyayogamonteregie.org/ca/?p=793',0,'revision','',0),(550,1,'2023-04-30 18:25:55','2023-04-30 18:25:55','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:25:55','2023-04-30 18:25:55','',276,'https://divyayogamonteregie.org/ca/?p=550',0,'revision','',0),(551,1,'2023-04-30 18:26:13','2023-04-30 18:26:13','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:26:13','2023-04-30 18:26:13','',276,'https://divyayogamonteregie.org/ca/?p=551',0,'revision','',0),(552,1,'2023-04-30 18:26:13','2023-04-30 18:26:13','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:26:13','2023-04-30 18:26:13','',276,'https://divyayogamonteregie.org/ca/?p=552',0,'revision','',0),(790,1,'2023-05-24 13:24:40','2023-05-24 13:24:40','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:24:40','2023-05-24 13:24:40','',276,'https://divyayogamonteregie.org/ca/?p=790',0,'revision','',0),(553,1,'2023-04-30 18:26:13','2023-04-30 18:26:13','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Historias','','inherit','closed','closed','','276-revision-v1','','','2023-04-30 18:26:13','2023-04-30 18:26:13','',276,'https://divyayogamonteregie.org/ca/?p=553',0,'revision','',0),(556,1,'2023-05-13 20:13:11','2023-05-13 20:13:11','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SE LO QUE QUIERAS SER!</h1>		\n		<p>¡Puedes ser <strong>lo que</strong><br /><strong>quieras ser!</strong></p><p>Hay dentro de ti<br />todo el potencial<br />para ser lo que quieras ser,<br />toda la energía<br />para hacer lo que quieras hacer.</p><p>Imagínate como te gustaría ser, haciendo lo que quieres hacer, y cada día,<br /><br />da un paso<br />hacia tu sueño.</p><p>Y aunque a veces parezca demasiado<br />difícil continuar,<br />aférrate a tu sueño.</p><p>Una mañana te despertarás para descubrir<br />que eres la persona con la que soñaste, haciendo lo que querías hacer, simplemente porque tuviste el coraje<br />de creer en tu potencial<br />y aferrarte a tu sueño.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Se lo que quieras ser','','inherit','closed','closed','','175-revision-v1','','','2023-05-13 20:13:11','2023-05-13 20:13:11','',175,'https://divyayogamonteregie.org/ca/?p=556',0,'revision','',0),(557,1,'2023-05-13 20:13:11','2023-05-13 20:13:11','<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SE LO QUE QUIERAS SER!</h1>		\n		<p>¡Puedes ser <strong>lo que</strong><br /><strong>quieras ser!</strong></p><p>Hay dentro de ti<br />todo el potencial<br />para ser lo que quieras ser,<br />toda la energía<br />para hacer lo que quieras hacer.</p><p>Imagínate como te gustaría ser, haciendo lo que quieres hacer, y cada día,<br /><br />da un paso<br />hacia tu sueño.</p><p>Y aunque a veces parezca demasiado<br />difícil continuar,<br />aférrate a tu sueño.</p><p>Una mañana te despertarás para descubrir<br />que eres la persona con la que soñaste, haciendo lo que querías hacer, simplemente porque tuviste el coraje<br />de creer en tu potencial<br />y aferrarte a tu sueño.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Se lo que quieras ser','','inherit','closed','closed','','175-revision-v1','','','2023-05-13 20:13:11','2023-05-13 20:13:11','',175,'https://divyayogamonteregie.org/ca/?p=557',0,'revision','',0),(558,1,'2023-05-13 20:14:51','2023-05-13 20:14:51','<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SE LO QUE QUIERAS SER!</h1>		\n		<p>¡Puedes ser <strong>lo que</strong><br /><strong>quieras ser!</strong></p><p>Hay dentro de ti<br />todo el potencial<br />para ser lo que quieras ser,<br />toda la energía<br />para hacer lo que quieras hacer.</p><p>Imagínate como te gustaría ser, haciendo lo que quieres hacer, y cada día,<br /><br />da un paso<br />hacia tu sueño.</p><p>Y aunque a veces parezca demasiado<br />difícil continuar,<br />aférrate a tu sueño.</p><p>Una mañana te despertarás para descubrir<br />que eres la persona con la que soñaste, haciendo lo que querías hacer, simplemente porque tuviste el coraje<br />de creer en tu potencial<br />y aferrarte a tu sueño.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Se lo que quieras ser','','inherit','closed','closed','','175-revision-v1','','','2023-05-13 20:14:51','2023-05-13 20:14:51','',175,'https://divyayogamonteregie.org/ca/?p=558',0,'revision','',0),(559,1,'2023-05-13 20:14:51','2023-05-13 20:14:51','<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SE LO QUE QUIERAS SER!</h1>		\n		<p>¡Puedes ser <strong>lo que</strong><br /><strong>quieras ser!</strong></p><p>Hay dentro de ti<br />todo el potencial<br />para ser lo que quieras ser,<br />toda la energía<br />para hacer lo que quieras hacer.</p><p>Imagínate como te gustaría ser, haciendo lo que quieres hacer, y cada día,<br /><br />da un paso<br />hacia tu sueño.</p><p>Y aunque a veces parezca demasiado<br />difícil continuar,<br />aférrate a tu sueño.</p><p>Una mañana te despertarás para descubrir<br />que eres la persona con la que soñaste, haciendo lo que querías hacer, simplemente porque tuviste el coraje<br />de creer en tu potencial<br />y aferrarte a tu sueño.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Se lo que quieras ser','','inherit','closed','closed','','175-revision-v1','','','2023-05-13 20:14:51','2023-05-13 20:14:51','',175,'https://divyayogamonteregie.org/ca/?p=559',0,'revision','',0),(560,1,'2023-05-13 20:14:51','2023-05-13 20:14:51','<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SE LO QUE QUIERAS SER!</h1>		\n		<p>¡Puedes ser <strong>lo que</strong><br /><strong>quieras ser!</strong></p><p>Hay dentro de ti<br />todo el potencial<br />para ser lo que quieras ser,<br />toda la energía<br />para hacer lo que quieras hacer.</p><p>Imagínate como te gustaría ser, haciendo lo que quieres hacer, y cada día,<br /><br />da un paso<br />hacia tu sueño.</p><p>Y aunque a veces parezca demasiado<br />difícil continuar,<br />aférrate a tu sueño.</p><p>Una mañana te despertarás para descubrir<br />que eres la persona con la que soñaste, haciendo lo que querías hacer, simplemente porque tuviste el coraje<br />de creer en tu potencial<br />y aferrarte a tu sueño.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Se lo que quieras ser','','inherit','closed','closed','','175-revision-v1','','','2023-05-13 20:14:51','2023-05-13 20:14:51','',175,'https://divyayogamonteregie.org/ca/?p=560',0,'revision','',0),(561,1,'2023-05-13 20:16:16','2023-05-13 20:16:16','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SI TIENES UN SUEÑO</h1>		\n		<p><strong>Si tienes un sueño</strong></p><p>No esperes a que llegue un día lejano,<br />puede ser demasiado tarde antes de que hayas comenzado.<br />No todos estarán de acuerdo con todo lo que decidas.</p><p>Sé fiel a ti mismo ante todo.<br />Lo único importante en la vida es lo que haces<br />con el tiempo que pasas aquí en la tierra.</p><p>No tengas miedo de seguir tus deseos,<br />no son tontos ni egoístas.<br />Tómate el tiempo y haz lo que te haga sentir vivo.</p><p>Deja tus miedos y remordimientos en el pasado,<br />porque aquí es donde pertenecen.<br />No te nubles hoy con cosas que no se pueden deshacer.</p><p>No tienes más control sobre el ayer o el mañana,<br />que sobre la furia de tus pasiones.<br />No calmes estos sueños ni sacies tus deseos.</p><p>Porque si lo haces, tu viaje ha terminado.<br />Sólo tienes hoy para comenzar de nuevo y seguir tus sueños.<br />Porque al final todo lo que tenemos son nuestros recuerdos.</p><p>Cuando el crepúsculo venga a nosotros, que haya, ¡Sin excusas, sin explicaciones,<br />sin arrepentimientos!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Si tienes un sueño','','inherit','closed','closed','','183-revision-v1','','','2023-05-13 20:16:16','2023-05-13 20:16:16','',183,'https://divyayogamonteregie.org/ca/?p=561',0,'revision','',0),(562,1,'2023-05-13 20:16:16','2023-05-13 20:16:16','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SI TIENES UN SUEÑO</h1>		\n		<p><strong>Si tienes un sueño</strong></p><p>No esperes a que llegue un día lejano,<br />puede ser demasiado tarde antes de que hayas comenzado.<br />No todos estarán de acuerdo con todo lo que decidas.</p><p>Sé fiel a ti mismo ante todo.<br />Lo único importante en la vida es lo que haces<br />con el tiempo que pasas aquí en la tierra.</p><p>No tengas miedo de seguir tus deseos,<br />no son tontos ni egoístas.<br />Tómate el tiempo y haz lo que te haga sentir vivo.</p><p>Deja tus miedos y remordimientos en el pasado,<br />porque aquí es donde pertenecen.<br />No te nubles hoy con cosas que no se pueden deshacer.</p><p>No tienes más control sobre el ayer o el mañana,<br />que sobre la furia de tus pasiones.<br />No calmes estos sueños ni sacies tus deseos.</p><p>Porque si lo haces, tu viaje ha terminado.<br />Sólo tienes hoy para comenzar de nuevo y seguir tus sueños.<br />Porque al final todo lo que tenemos son nuestros recuerdos.</p><p>Cuando el crepúsculo venga a nosotros, que haya, ¡Sin excusas, sin explicaciones,<br />sin arrepentimientos!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Si tienes un sueño','','inherit','closed','closed','','183-revision-v1','','','2023-05-13 20:16:16','2023-05-13 20:16:16','',183,'https://divyayogamonteregie.org/ca/?p=562',0,'revision','',0),(563,1,'2023-05-13 20:16:16','2023-05-13 20:16:16','<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SI TIENES UN SUEÑO</h1>		\n		<p><strong>Si tienes un sueño</strong></p><p>No esperes a que llegue un día lejano,<br />puede ser demasiado tarde antes de que hayas comenzado.<br />No todos estarán de acuerdo con todo lo que decidas.</p><p>Sé fiel a ti mismo ante todo.<br />Lo único importante en la vida es lo que haces<br />con el tiempo que pasas aquí en la tierra.</p><p>No tengas miedo de seguir tus deseos,<br />no son tontos ni egoístas.<br />Tómate el tiempo y haz lo que te haga sentir vivo.</p><p>Deja tus miedos y remordimientos en el pasado,<br />porque aquí es donde pertenecen.<br />No te nubles hoy con cosas que no se pueden deshacer.</p><p>No tienes más control sobre el ayer o el mañana,<br />que sobre la furia de tus pasiones.<br />No calmes estos sueños ni sacies tus deseos.</p><p>Porque si lo haces, tu viaje ha terminado.<br />Sólo tienes hoy para comenzar de nuevo y seguir tus sueños.<br />Porque al final todo lo que tenemos son nuestros recuerdos.</p><p>Cuando el crepúsculo venga a nosotros, que haya, ¡Sin excusas, sin explicaciones,<br />sin arrepentimientos!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Si tienes un sueño','','inherit','closed','closed','','183-revision-v1','','','2023-05-13 20:16:16','2023-05-13 20:16:16','',183,'https://divyayogamonteregie.org/ca/?p=563',0,'revision','',0),(564,1,'2023-05-13 20:18:00','2023-05-13 20:18:00','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>ES NUESTRA VIDA</h1>		\n		<p>En la vida hay personas que nos harán daño y nos causarán dolor,</p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.</p><p>En la vida hay errores que cometeremos,<br />pero debemos aprender de nuestros errores y crecer a partir de ellos.</p><p>En la vida hay remordimientos con los que tendremos que vivir,<br />pero debemos aprender a dejar atrás el pasado y darnos cuenta de que es algo que no podemos cambiar.</p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br />pero debemos aprender a dejar ir y seguir adelante.</p><p>En la vida habrá obstáculos que causarán interferencia,<br />pero debemos aprender a superar estos desafíos y fortalecernos.</p><p>En la vida hay miedos que nos frenarán de lo que queremos,<br />pero debemos aprender a combatirlos con el coraje de dentro.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','En nuestra vida','','inherit','closed','closed','','193-revision-v1','','','2023-05-13 20:18:00','2023-05-13 20:18:00','',193,'https://divyayogamonteregie.org/ca/?p=564',0,'revision','',0),(565,1,'2023-05-13 20:18:00','2023-05-13 20:18:00','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>ES NUESTRA VIDA</h1>		\n		<p>En la vida hay personas que nos harán daño y nos causarán dolor,</p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.</p><p>En la vida hay errores que cometeremos,<br />pero debemos aprender de nuestros errores y crecer a partir de ellos.</p><p>En la vida hay remordimientos con los que tendremos que vivir,<br />pero debemos aprender a dejar atrás el pasado y darnos cuenta de que es algo que no podemos cambiar.</p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br />pero debemos aprender a dejar ir y seguir adelante.</p><p>En la vida habrá obstáculos que causarán interferencia,<br />pero debemos aprender a superar estos desafíos y fortalecernos.</p><p>En la vida hay miedos que nos frenarán de lo que queremos,<br />pero debemos aprender a combatirlos con el coraje de dentro.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','En nuestra vida','','inherit','closed','closed','','193-revision-v1','','','2023-05-13 20:18:00','2023-05-13 20:18:00','',193,'https://divyayogamonteregie.org/ca/?p=565',0,'revision','',0),(566,1,'2023-05-13 20:18:01','2023-05-13 20:18:01','<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>ES NUESTRA VIDA</h1>		\n		<p>En la vida hay personas que nos harán daño y nos causarán dolor,</p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.</p><p>En la vida hay errores que cometeremos,<br />pero debemos aprender de nuestros errores y crecer a partir de ellos.</p><p>En la vida hay remordimientos con los que tendremos que vivir,<br />pero debemos aprender a dejar atrás el pasado y darnos cuenta de que es algo que no podemos cambiar.</p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br />pero debemos aprender a dejar ir y seguir adelante.</p><p>En la vida habrá obstáculos que causarán interferencia,<br />pero debemos aprender a superar estos desafíos y fortalecernos.</p><p>En la vida hay miedos que nos frenarán de lo que queremos,<br />pero debemos aprender a combatirlos con el coraje de dentro.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','En nuestra vida','','inherit','closed','closed','','193-revision-v1','','','2023-05-13 20:18:01','2023-05-13 20:18:01','',193,'https://divyayogamonteregie.org/ca/?p=566',0,'revision','',0),(567,1,'2023-05-13 20:19:55','2023-05-13 20:19:55','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SOLO UNA</h1>		\n		<p>Una canción puede provocar un momento, un árbol puede comenzar un bosque,<br /><br />un pájaro puede anunciar la primavera.</p><p>Una sonrisa comienza una amistad,<br />un apretón de manos levanta un alma.<br />Una estrella puede guiar un barco en el mar, Un voto puede cambiar una nación, Un rayo de sol ilumina una habitación<br />Una vela borra la oscuridad,<br /><br /><br />Una risa conquistará la tristeza.</p><p>Un paso debe comenzar cada viaje.<br />Una palabra debe comenzar cada oración.<br />Una esperanza elevará nuestro espíritu,<br />un toque puede mostrarte que te importa.</p><p>Una voz puede hablar con sabiduría, Un corazón puede saber lo que es verdad,</p><p>Una vida puede marcar la diferencia, ya ves,<br />¡depende de ti!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Sólo una','','inherit','closed','closed','','202-revision-v1','','','2023-05-13 20:19:55','2023-05-13 20:19:55','',202,'https://divyayogamonteregie.org/ca/?p=567',0,'revision','',0),(568,1,'2023-05-13 20:19:55','2023-05-13 20:19:55','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SOLO UNA</h1>		\n		<p>Una canción puede provocar un momento, un árbol puede comenzar un bosque,<br /><br />un pájaro puede anunciar la primavera.</p><p>Una sonrisa comienza una amistad,<br />un apretón de manos levanta un alma.<br />Una estrella puede guiar un barco en el mar, Un voto puede cambiar una nación, Un rayo de sol ilumina una habitación<br />Una vela borra la oscuridad,<br /><br /><br />Una risa conquistará la tristeza.</p><p>Un paso debe comenzar cada viaje.<br />Una palabra debe comenzar cada oración.<br />Una esperanza elevará nuestro espíritu,<br />un toque puede mostrarte que te importa.</p><p>Una voz puede hablar con sabiduría, Un corazón puede saber lo que es verdad,</p><p>Una vida puede marcar la diferencia, ya ves,<br />¡depende de ti!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Sólo una','','inherit','closed','closed','','202-revision-v1','','','2023-05-13 20:19:55','2023-05-13 20:19:55','',202,'https://divyayogamonteregie.org/ca/?p=568',0,'revision','',0),(569,1,'2023-05-13 20:19:55','2023-05-13 20:19:55','<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SOLO UNA</h1>		\n		<p>Una canción puede provocar un momento, un árbol puede comenzar un bosque,<br /><br />un pájaro puede anunciar la primavera.</p><p>Una sonrisa comienza una amistad,<br />un apretón de manos levanta un alma.<br />Una estrella puede guiar un barco en el mar, Un voto puede cambiar una nación, Un rayo de sol ilumina una habitación<br />Una vela borra la oscuridad,<br /><br /><br />Una risa conquistará la tristeza.</p><p>Un paso debe comenzar cada viaje.<br />Una palabra debe comenzar cada oración.<br />Una esperanza elevará nuestro espíritu,<br />un toque puede mostrarte que te importa.</p><p>Una voz puede hablar con sabiduría, Un corazón puede saber lo que es verdad,</p><p>Una vida puede marcar la diferencia, ya ves,<br />¡depende de ti!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Sólo una','','inherit','closed','closed','','202-revision-v1','','','2023-05-13 20:19:55','2023-05-13 20:19:55','',202,'https://divyayogamonteregie.org/ca/?p=569',0,'revision','',0),(571,1,'2023-05-23 19:42:38','2023-05-23 19:42:38','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg 290w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/elementor/thumbs/images-150x150.jpeg 500w\" sizes=\"(max-width: 290px) 100vw, 290px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \"persona hecha a sí misma\". Provenía de una familia modesta y trabajó duro para lograr sus objetivos. Obtuvo muchas becas de mérito mientras era estudiante. Tiene una Maestría en Ingeniería y una Maestría en Administración de Empresas junto con una designación de Contabilidad. Ha trabajado como ingeniero y ha enseñado a tiempo parcial en las universidades de Concordia y McGill.</p><p>Se retiró alrededor de los 50 años para perseguir su pasión. Ha establecido una fundación caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundación también \"Siete principios simples de la vida\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahmán, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiración alterna de fosas nasales. Después de hacer B.Sc con Biología y Química, se convirtió en profesora de biología en una escuela secundaria en la India. Al enseñar anatomía y fisiología humana y hacer yoga gradualmente, ella entendió la utilidad y los hechos científicos involucrados detrás del yoga. Emigró a Estados Unidos en 1994 y luego se casó y emigró a Canadá. Actualmente trabaja en el laboratorio de la Academia Chambly.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Ella cree que el yoga en la esterilla como los aeróbicos tiene efectos terapéuticos y fisioterapéuticos, pero al mismo tiempo también cree en el yoga más allá de la esterilla. Si hacemos yoga y también llevamos una vida piadosa y libre de culpa, entonces nuestros órganos funcionarán correctamente. Porque en el momento en que hacemos algo mal, nuestro corazón late aumenta, así que ¿por qué hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas añaden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el súper yoga del cerebro pueden hacer una gran contribución. También trata de seguir ocho ramas del yoga tanto como pueda.</p>		\n															<img width=\"183\" height=\"275\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-4.jpeg\" alt=\"\" loading=\"lazy\" />','Instructores','','inherit','closed','closed','','21-revision-v1','','','2023-05-23 19:42:38','2023-05-23 19:42:38','',21,'https://divyayogamonteregie.org/ca/?p=571',0,'revision','',0),(572,1,'2023-05-23 19:42:38','2023-05-23 19:42:38','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg 290w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/elementor/thumbs/images-150x150.jpeg 500w\" sizes=\"(max-width: 290px) 100vw, 290px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p>Es un instructor de yoga entrenado por Patanjali Yoga peeth. Ha estado practicando Yoga desde su infancia. El Sr. Saxena es una \"persona hecha a sí misma\". Provenía de una familia modesta y trabajó duro para lograr sus objetivos. Obtuvo muchas becas de mérito mientras era estudiante. Tiene una Maestría en Ingeniería y una Maestría en Administración de Empresas junto con una designación de Contabilidad. Ha trabajado como ingeniero y ha enseñado a tiempo parcial en las universidades de Concordia y McGill.</p><p>Se retiró alrededor de los 50 años para perseguir su pasión. Ha establecido una fundación caritativa privada que ayuda a las personas necesitadas. En el sitio web de su fundación también \"Siete principios simples de la vida\". Si las personas siguen estos principios, pueden obtener el control de sus vidas, ser seres felices y autosuficientes.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahmán, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiración alterna de fosas nasales. Después de hacer B.Sc con Biología y Química, se convirtió en profesora de biología en una escuela secundaria en la India. Al enseñar anatomía y fisiología humana y hacer yoga gradualmente, ella entendió la utilidad y los hechos científicos involucrados detrás del yoga. Emigró a Estados Unidos en 1994 y luego se casó y emigró a Canadá. Actualmente trabaja en el laboratorio de la Academia Chambly.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Ella cree que el yoga en la esterilla como los aeróbicos tiene efectos terapéuticos y fisioterapéuticos, pero al mismo tiempo también cree en el yoga más allá de la esterilla. Si hacemos yoga y también llevamos una vida piadosa y libre de culpa, entonces nuestros órganos funcionarán correctamente. Porque en el momento en que hacemos algo mal, nuestro corazón late aumenta, así que ¿por qué hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas añaden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el súper yoga del cerebro pueden hacer una gran contribución. También trata de seguir ocho ramas del yoga tanto como pueda.</p>		\n															<img width=\"183\" height=\"275\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-4.jpeg\" alt=\"\" loading=\"lazy\" />','Instructores','','inherit','closed','closed','','21-revision-v1','','','2023-05-23 19:42:38','2023-05-23 19:42:38','',21,'https://divyayogamonteregie.org/ca/?p=572',0,'revision','',0),(576,1,'2023-05-23 19:43:46','2023-05-23 19:43:46','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg 290w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/elementor/thumbs/images-150x150.jpeg 500w\" sizes=\"(max-width: 290px) 100vw, 290px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"183\" height=\"275\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-4.jpeg\" alt=\"\" loading=\"lazy\" />','Instructores','','inherit','closed','closed','','21-revision-v1','','','2023-05-23 19:43:46','2023-05-23 19:43:46','',21,'https://divyayogamonteregie.org/ca/?p=576',0,'revision','',0),(573,1,'2023-05-23 19:42:38','2023-05-23 19:42:38','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg 290w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/elementor/thumbs/images-150x150.jpeg 500w\" sizes=\"(max-width: 290px) 100vw, 290px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahmán, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiración alterna de fosas nasales. Después de hacer B.Sc con Biología y Química, se convirtió en profesora de biología en una escuela secundaria en la India. Al enseñar anatomía y fisiología humana y hacer yoga gradualmente, ella entendió la utilidad y los hechos científicos involucrados detrás del yoga. Emigró a Estados Unidos en 1994 y luego se casó y emigró a Canadá. Actualmente trabaja en el laboratorio de la Academia Chambly.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Ella cree que el yoga en la esterilla como los aeróbicos tiene efectos terapéuticos y fisioterapéuticos, pero al mismo tiempo también cree en el yoga más allá de la esterilla. Si hacemos yoga y también llevamos una vida piadosa y libre de culpa, entonces nuestros órganos funcionarán correctamente. Porque en el momento en que hacemos algo mal, nuestro corazón late aumenta, así que ¿por qué hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas añaden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el súper yoga del cerebro pueden hacer una gran contribución. También trata de seguir ocho ramas del yoga tanto como pueda.</p>		\n															<img width=\"183\" height=\"275\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-4.jpeg\" alt=\"\" loading=\"lazy\" />','Instructores','','inherit','closed','closed','','21-revision-v1','','','2023-05-23 19:42:38','2023-05-23 19:42:38','',21,'https://divyayogamonteregie.org/ca/?p=573',0,'revision','',0),(574,1,'2023-05-23 19:43:46','2023-05-23 19:43:46','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg 290w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/elementor/thumbs/images-150x150.jpeg 500w\" sizes=\"(max-width: 290px) 100vw, 290px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahmán, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiración alterna de fosas nasales. Después de hacer B.Sc con Biología y Química, se convirtió en profesora de biología en una escuela secundaria en la India. Al enseñar anatomía y fisiología humana y hacer yoga gradualmente, ella entendió la utilidad y los hechos científicos involucrados detrás del yoga. Emigró a Estados Unidos en 1994 y luego se casó y emigró a Canadá. Actualmente trabaja en el laboratorio de la Academia Chambly.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Ella cree que el yoga en la esterilla como los aeróbicos tiene efectos terapéuticos y fisioterapéuticos, pero al mismo tiempo también cree en el yoga más allá de la esterilla. Si hacemos yoga y también llevamos una vida piadosa y libre de culpa, entonces nuestros órganos funcionarán correctamente. Porque en el momento en que hacemos algo mal, nuestro corazón late aumenta, así que ¿por qué hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas añaden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el súper yoga del cerebro pueden hacer una gran contribución. También trata de seguir ocho ramas del yoga tanto como pueda.</p>		\n															<img width=\"183\" height=\"275\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-4.jpeg\" alt=\"\" loading=\"lazy\" />','Instructores','','inherit','closed','closed','','21-revision-v1','','','2023-05-23 19:43:46','2023-05-23 19:43:46','',21,'https://divyayogamonteregie.org/ca/?p=574',0,'revision','',0),(575,1,'2023-05-23 19:43:46','2023-05-23 19:43:46','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg 290w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/elementor/thumbs/images-150x150.jpeg 500w\" sizes=\"(max-width: 290px) 100vw, 290px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"margin: 0cm; text-align: justify; background: white; vertical-align: baseline;\">Es instructora de yoga entrenada por Patanjali yoga peeth. Nacida en una familia brahmán, el yoga era su ritual diario hasta donde ella puede recordar. Ella era capaz de pararse la cabeza incluso cuando estaba en preescolar. Su primer profesor de yoga fue su padre. Ella puede recordar a su padre sentado en el patio en una esterilla de yoga y haciendo respiración alterna de fosas nasales. Después de hacer B.Sc con Biología y Química, se convirtió en profesora de biología en una escuela secundaria en la India. Al enseñar anatomía y fisiología humana y hacer yoga gradualmente, ella entendió la utilidad y los hechos científicos involucrados detrás del yoga. Emigró a Estados Unidos en 1994 y luego se casó y emigró a Canadá. Actualmente trabaja en el laboratorio de la Academia Chambly.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Ella cree que el yoga en la esterilla como los aeróbicos tiene efectos terapéuticos y fisioterapéuticos, pero al mismo tiempo también cree en el yoga más allá de la esterilla. Si hacemos yoga y también llevamos una vida piadosa y libre de culpa, entonces nuestros órganos funcionarán correctamente. Porque en el momento en que hacemos algo mal, nuestro corazón late aumenta, así que ¿por qué hacer algo mal en primer lugar? Ella cree y sigue el yoga devocional y karma primero y luego viene a hacer yoga en la esterilla. Todas estas cosas añaden mucho a nuestra longevidad, salud y alma. Ella cree que para el buen funcionamiento de la mente el yoga de la risa y el súper yoga del cerebro pueden hacer una gran contribución. También trata de seguir ocho ramas del yoga tanto como pueda.</p>		\n															<img width=\"183\" height=\"275\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-4.jpeg\" alt=\"\" loading=\"lazy\" />','Instructores','','inherit','closed','closed','','21-revision-v1','','','2023-05-23 19:43:46','2023-05-23 19:43:46','',21,'https://divyayogamonteregie.org/ca/?p=575',0,'revision','',0),(577,1,'2023-05-23 19:48:21','2023-05-23 19:48:21','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente\n		<p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Hacer que la práctica básica de yoga sea fácilmente accesible para todos sin cargo.</p><p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">El fundador de Divya Yoga Swami Ram Dev dice: \"La buena salud es un derecho de nacimiento de la humanidad\". Al realizar posturas de yoga, / asanas, ejercicios, mudras,<b>pranayams<i>, </i></b>meditación y al proporcionar un discurso motivacional práctico ayudan a desarrollar una mente libre de estrés y un cuerpo libre de enfermedades. Ayuda a cuidar el cuerpo, la mente y el alma y vivir una vida feliz, saludable y satisfactoria. Haga hincapié en que la clave para un cuerpo físico saludable y un estado mental sano está bajo el control de uno. Al ponernos en contacto con el ser interior podemos experimentar un estado de \"Bienaventuranza y Anand\".</p><p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Este Divya yoga es para personas de todas las edades. Comenzamos con ejercicios de calentamiento (12-15), saludo al sol y discurso motivacional. Luego practicamos 90-100 combinaciones de asanas, posturas y ejercicios. También realizamos algo de acupresión, 6 mudras, 7 pranayams y micro ejercicios para ojos, dedos de manos, pies, cara y cuello. También se incluye yoga de la risa y súper yoga cerebral. Terminamos con \'Shav Asana\', poema motivacional, mantra y oración, Después del yoga, la súper comida, es decir, las uvas y el plátano están disponibles para los yoguis.</p><p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">El yoga es un medio maravilloso de ejercitar, estirar y relajar el cuerpo / mente para que pueda ser saludable y duradero. Ayuda en la coordinación del cuerpo, la mente y el alma. También creamos un entorno donde las personas pueden interactuar para su mejoramiento y bien de la sociedad.</p>','Mision','','inherit','closed','closed','','43-revision-v1','','','2023-05-23 19:48:21','2023-05-23 19:48:21','',43,'https://divyayogamonteregie.org/ca/?p=577',0,'revision','',0),(578,1,'2023-05-23 19:48:21','2023-05-23 19:48:21','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente\n		<p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Hacer que la práctica básica de yoga sea fácilmente accesible para todos sin cargo.</p><p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">El fundador de Divya Yoga Swami Ram Dev dice: \"La buena salud es un derecho de nacimiento de la humanidad\". Al realizar posturas de yoga, / asanas, ejercicios, mudras,<b>pranayams<i>, </i></b>meditación y al proporcionar un discurso motivacional práctico ayudan a desarrollar una mente libre de estrés y un cuerpo libre de enfermedades. Ayuda a cuidar el cuerpo, la mente y el alma y vivir una vida feliz, saludable y satisfactoria. Haga hincapié en que la clave para un cuerpo físico saludable y un estado mental sano está bajo el control de uno. Al ponernos en contacto con el ser interior podemos experimentar un estado de \"Bienaventuranza y Anand\".</p><p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Este Divya yoga es para personas de todas las edades. Comenzamos con ejercicios de calentamiento (12-15), saludo al sol y discurso motivacional. Luego practicamos 90-100 combinaciones de asanas, posturas y ejercicios. También realizamos algo de acupresión, 6 mudras, 7 pranayams y micro ejercicios para ojos, dedos de manos, pies, cara y cuello. También se incluye yoga de la risa y súper yoga cerebral. Terminamos con \'Shav Asana\', poema motivacional, mantra y oración, Después del yoga, la súper comida, es decir, las uvas y el plátano están disponibles para los yoguis.</p><p style=\"text-align: justify; background: #F9F9F9; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">El yoga es un medio maravilloso de ejercitar, estirar y relajar el cuerpo / mente para que pueda ser saludable y duradero. Ayuda en la coordinación del cuerpo, la mente y el alma. También creamos un entorno donde las personas pueden interactuar para su mejoramiento y bien de la sociedad.</p>','Mision','','inherit','closed','closed','','43-revision-v1','','','2023-05-23 19:48:21','2023-05-23 19:48:21','',43,'https://divyayogamonteregie.org/ca/?p=578',0,'revision','',0),(580,1,'2023-05-23 19:50:22','2023-05-23 19:50:22','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Previous image\n												Next image\n		<p style=\"text-align: justify;\">To make basic yoga practice easily accessible to everyone without charge.</p><p style=\"text-align: justify;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p><p style=\"text-align: justify;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p><p style=\"text-align: justify;\">After yoga super food i. e. grapes and banana are available for Yogies.</p><p style=\"text-align: justify;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>','Mission','','inherit','closed','closed','','43-revision-v1','','','2023-05-23 19:50:22','2023-05-23 19:50:22','',43,'https://divyayogamonteregie.org/ca/?p=580',0,'revision','',0),(581,1,'2023-05-23 19:52:12','2023-05-23 19:52:12','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-6.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-7.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-5.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"251\" height=\"201\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-1.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Gallery','','inherit','closed','closed','','128-revision-v1','','','2023-05-23 19:52:12','2023-05-23 19:52:12','',128,'https://divyayogamonteregie.org/ca/?p=581',0,'revision','',0),(582,1,'2023-05-23 19:53:46','2023-05-23 19:53:46','','Poems','','inherit','closed','closed','','160-revision-v1','','','2023-05-23 19:53:46','2023-05-23 19:53:46','',160,'https://divyayogamonteregie.org/ca/?p=582',0,'revision','',0),(583,1,'2023-05-23 19:55:11','2023-05-23 19:55:11','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODO ES POSIBLE</h1>		\n		<h2><strong><em>Cree en ti mismo y recuerda que todo es posible</em></strong></h2><p>Cree en lo que te hace sentir bien.<br />Cree en lo que te hace feliz.<br />Cree en los sueños que siempre has querido que se hagan realidad<br />y dales todas las oportunidades para hacerlo.</p><p>La vida no tiene promesas de lo que vendrá en tu camino.<br />Debes buscar tus propios ideales<br />y trabajar para alcanzarlos.</p><p>La vida no da garantías en cuanto a lo que tendrás.<br />Simplemente te da tiempo para tomar decisiones<br />y arriesgarte<br />y descubrir cualquier secreto que pueda surgir en tu camino.</p><p>Si estás dispuesto a aprovechar las oportunidades que se te dan<br />y utilizar las habilidades que tienes,<br />constantemente llenarás tu vida<br />con momentos especiales y momentos inolvidables.</p><p>Nadie conoce los misterios de la vida o su significado último, pero para aquellos que están dispuestos<br />a creer en sus sueños y en sí mismos,<br /><br />la vida es un regalo precioso en el que todo es posible.</p><p>~ Dena DiIaconi ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Anything Is Possible','','inherit','closed','closed','','166-revision-v1','','','2023-05-23 19:55:11','2023-05-23 19:55:11','',166,'https://divyayogamonteregie.org/ca/?p=583',0,'revision','',0),(584,1,'2023-05-23 19:56:48','2023-05-23 19:56:48','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODO ES POSIBLE</h1>		\n		<h2><strong><em>Cree en ti mismo y recuerda que todo es posible</em></strong></h2><p>Cree en lo que te hace sentir bien.<br />Cree en lo que te hace feliz.<br />Cree en los sueños que siempre has querido que se hagan realidad<br />y dales todas las oportunidades para hacerlo.</p><p>La vida no tiene promesas de lo que vendrá en tu camino.<br />Debes buscar tus propios ideales<br />y trabajar para alcanzarlos.</p><p>La vida no da garantías en cuanto a lo que tendrás.<br />Simplemente te da tiempo para tomar decisiones<br />y arriesgarte<br />y descubrir cualquier secreto que pueda surgir en tu camino.</p><p>Si estás dispuesto a aprovechar las oportunidades que se te dan<br />y utilizar las habilidades que tienes,<br />constantemente llenarás tu vida<br />con momentos especiales y momentos inolvidables.</p><p>Nadie conoce los misterios de la vida o su significado último, pero para aquellos que están dispuestos<br />a creer en sus sueños y en sí mismos,<br /><br />la vida es un regalo precioso en el que todo es posible.</p><p>~ Dena DiIaconi ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Anything Is Possible','','inherit','closed','closed','','166-revision-v1','','','2023-05-23 19:56:48','2023-05-23 19:56:48','',166,'https://divyayogamonteregie.org/ca/?p=584',0,'revision','',0),(585,1,'2023-05-23 19:56:48','2023-05-23 19:56:48','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODO ES POSIBLE</h1>		\n		<h2><strong><em>Cree en ti mismo y recuerda que todo es posible</em></strong></h2><p>Cree en lo que te hace sentir bien.<br />Cree en lo que te hace feliz.<br />Cree en los sueños que siempre has querido que se hagan realidad<br />y dales todas las oportunidades para hacerlo.</p><p>La vida no tiene promesas de lo que vendrá en tu camino.<br />Debes buscar tus propios ideales<br />y trabajar para alcanzarlos.</p><p>La vida no da garantías en cuanto a lo que tendrás.<br />Simplemente te da tiempo para tomar decisiones<br />y arriesgarte<br />y descubrir cualquier secreto que pueda surgir en tu camino.</p><p>Si estás dispuesto a aprovechar las oportunidades que se te dan<br />y utilizar las habilidades que tienes,<br />constantemente llenarás tu vida<br />con momentos especiales y momentos inolvidables.</p><p>Nadie conoce los misterios de la vida o su significado último, pero para aquellos que están dispuestos<br />a creer en sus sueños y en sí mismos,<br /><br />la vida es un regalo precioso en el que todo es posible.</p><p>~ Dena DiIaconi ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Anything Is Possible','','inherit','closed','closed','','166-revision-v1','','','2023-05-23 19:56:48','2023-05-23 19:56:48','',166,'https://divyayogamonteregie.org/ca/?p=585',0,'revision','',0),(586,1,'2023-05-23 19:56:48','2023-05-23 19:56:48','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODO ES POSIBLE</h1>		\n		<h2 align=\"center\"><em><strong>Believe in Yourself,and Remember that Anything Is Possible</strong></em></h2><p align=\"center\">Believe in what makes you feel good.<br /> Believe in what makes you happy.<br /> Believe in the dreams you\'ve always wanted to come true,<br /> and give them every chance to.</p><p align=\"center\">Life holds no promises to what will come your way.<br /> You must search for your own ideals<br /> and work towards reaching them.</p><p align=\"center\">Life makes no guarantees as to what you\'ll have.<br /> It just gives you time to make choices<br /> and to take chances<br /> and to discover whatever secrets might come your way.</p><p align=\"center\">If you are willing to take the opportunities you are given<br /> and utilize the abilities you have,<br /> you will constantly fill your life<br /> with special moments and unforgettable times.</p><p align=\"center\">No one knows the mysteries of life or its ultimate meaning,<br /> but for those who are willing<br /> to believe in their dreams and in themselves,<br /> life is a precious gift in which anything is possible.</p><p align=\"center\">~ Dena DiIaconi ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Anything Is Possible','','inherit','closed','closed','','166-revision-v1','','','2023-05-23 19:56:48','2023-05-23 19:56:48','',166,'https://divyayogamonteregie.org/ca/?p=586',0,'revision','',0),(587,1,'2023-05-23 19:59:34','2023-05-23 19:59:34','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg 290w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/elementor/thumbs/images-150x150.jpeg 500w\" sizes=\"(max-width: 290px) 100vw, 290px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"183\" height=\"275\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-4.jpeg\" alt=\"\" loading=\"lazy\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-05-23 19:59:34','2023-05-23 19:59:34','',21,'https://divyayogamonteregie.org/ca/?p=587',0,'revision','',0),(588,1,'2023-05-23 20:00:42','2023-05-23 20:00:42','<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SE LO QUE QUIERAS SER!</h1>		\n		<p>¡Puedes ser <strong>lo que</strong><br /><strong>quieras ser!</strong></p><p>Hay dentro de ti<br />todo el potencial<br />para ser lo que quieras ser,<br />toda la energía<br />para hacer lo que quieras hacer.</p><p>Imagínate como te gustaría ser, haciendo lo que quieres hacer, y cada día,<br /><br />da un paso<br />hacia tu sueño.</p><p>Y aunque a veces parezca demasiado<br />difícil continuar,<br />aférrate a tu sueño.</p><p>Una mañana te despertarás para descubrir<br />que eres la persona con la que soñaste, haciendo lo que querías hacer, simplemente porque tuviste el coraje<br />de creer en tu potencial<br />y aferrarte a tu sueño.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Be Whatever  You Want To Be !','','inherit','closed','closed','','175-revision-v1','','','2023-05-23 20:00:42','2023-05-23 20:00:42','',175,'https://divyayogamonteregie.org/ca/?p=588',0,'revision','',0),(589,1,'2023-05-23 20:02:22','2023-05-23 20:02:22','<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SE LO QUE QUIERAS SER!</h1>		\n		<p>¡Puedes ser <strong>lo que</strong><br /><strong>quieras ser!</strong></p><p>Hay dentro de ti<br />todo el potencial<br />para ser lo que quieras ser,<br />toda la energía<br />para hacer lo que quieras hacer.</p><p>Imagínate como te gustaría ser, haciendo lo que quieres hacer, y cada día,<br /><br />da un paso<br />hacia tu sueño.</p><p>Y aunque a veces parezca demasiado<br />difícil continuar,<br />aférrate a tu sueño.</p><p>Una mañana te despertarás para descubrir<br />que eres la persona con la que soñaste, haciendo lo que querías hacer, simplemente porque tuviste el coraje<br />de creer en tu potencial<br />y aferrarte a tu sueño.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Be Whatever  You Want To Be !','','inherit','closed','closed','','175-revision-v1','','','2023-05-23 20:02:22','2023-05-23 20:02:22','',175,'https://divyayogamonteregie.org/ca/?p=589',0,'revision','',0),(590,1,'2023-05-23 20:02:22','2023-05-23 20:02:22','<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SE LO QUE QUIERAS SER!</h1>		\n		<p>¡Puedes ser <strong>lo que</strong><br /><strong>quieras ser!</strong></p><p>Hay dentro de ti<br />todo el potencial<br />para ser lo que quieras ser,<br />toda la energía<br />para hacer lo que quieras hacer.</p><p>Imagínate como te gustaría ser, haciendo lo que quieres hacer, y cada día,<br /><br />da un paso<br />hacia tu sueño.</p><p>Y aunque a veces parezca demasiado<br />difícil continuar,<br />aférrate a tu sueño.</p><p>Una mañana te despertarás para descubrir<br />que eres la persona con la que soñaste, haciendo lo que querías hacer, simplemente porque tuviste el coraje<br />de creer en tu potencial<br />y aferrarte a tu sueño.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Be Whatever  You Want To Be !','','inherit','closed','closed','','175-revision-v1','','','2023-05-23 20:02:22','2023-05-23 20:02:22','',175,'https://divyayogamonteregie.org/ca/?p=590',0,'revision','',0),(591,1,'2023-05-23 20:02:23','2023-05-23 20:02:23','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Be Whatever  You Want To Be !</h1>		\n		<p align=\"center\"><strong>You Can Be Whatever </strong><br /> <strong> You Want To Be!</strong></p><p align=\"center\">There is inside you<br /> all of the potential<br /> to be whatever you want to be,<br /> all of the energy<br /> to do whatever you want to do.</p><p align=\"center\">Imagine yourself as you would like to be,<br /> doing what you want to do,<br /> and each day, take one step<br /> towards your dream.</p><p align=\"center\">And though at times it may seem too<br /> difficult to continue,<br /> hold on to your dream.</p><p align=\"center\">One morning you will awake to find<br /> that you are the person you dreamed of,<br /> doing what you wanted to do,<br /> simply because you had the courage<br /> to believe in your potential<br /> and to hold on to your dream</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Be Whatever  You Want To Be !','','inherit','closed','closed','','175-revision-v1','','','2023-05-23 20:02:23','2023-05-23 20:02:23','',175,'https://divyayogamonteregie.org/ca/?p=591',0,'revision','',0),(592,1,'2023-05-23 20:08:19','2023-05-23 20:08:19','<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SI TIENES UN SUEÑO</h1>		\n		<p><strong>Si tienes un sueño</strong></p><p>No esperes a que llegue un día lejano,<br />puede ser demasiado tarde antes de que hayas comenzado.<br />No todos estarán de acuerdo con todo lo que decidas.</p><p>Sé fiel a ti mismo ante todo.<br />Lo único importante en la vida es lo que haces<br />con el tiempo que pasas aquí en la tierra.</p><p>No tengas miedo de seguir tus deseos,<br />no son tontos ni egoístas.<br />Tómate el tiempo y haz lo que te haga sentir vivo.</p><p>Deja tus miedos y remordimientos en el pasado,<br />porque aquí es donde pertenecen.<br />No te nubles hoy con cosas que no se pueden deshacer.</p><p>No tienes más control sobre el ayer o el mañana,<br />que sobre la furia de tus pasiones.<br />No calmes estos sueños ni sacies tus deseos.</p><p>Porque si lo haces, tu viaje ha terminado.<br />Sólo tienes hoy para comenzar de nuevo y seguir tus sueños.<br />Porque al final todo lo que tenemos son nuestros recuerdos.</p><p>Cuando el crepúsculo venga a nosotros, que haya, ¡Sin excusas, sin explicaciones,<br />sin arrepentimientos!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','If You Have A Dream','','inherit','closed','closed','','183-revision-v1','','','2023-05-23 20:08:19','2023-05-23 20:08:19','',183,'https://divyayogamonteregie.org/ca/?p=592',0,'revision','',0),(593,1,'2023-05-23 20:09:33','2023-05-23 20:09:33','<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SI TIENES UN SUEÑO</h1>		\n		<p><strong>Si tienes un sueño</strong></p><p>No esperes a que llegue un día lejano,<br />puede ser demasiado tarde antes de que hayas comenzado.<br />No todos estarán de acuerdo con todo lo que decidas.</p><p>Sé fiel a ti mismo ante todo.<br />Lo único importante en la vida es lo que haces<br />con el tiempo que pasas aquí en la tierra.</p><p>No tengas miedo de seguir tus deseos,<br />no son tontos ni egoístas.<br />Tómate el tiempo y haz lo que te haga sentir vivo.</p><p>Deja tus miedos y remordimientos en el pasado,<br />porque aquí es donde pertenecen.<br />No te nubles hoy con cosas que no se pueden deshacer.</p><p>No tienes más control sobre el ayer o el mañana,<br />que sobre la furia de tus pasiones.<br />No calmes estos sueños ni sacies tus deseos.</p><p>Porque si lo haces, tu viaje ha terminado.<br />Sólo tienes hoy para comenzar de nuevo y seguir tus sueños.<br />Porque al final todo lo que tenemos son nuestros recuerdos.</p><p>Cuando el crepúsculo venga a nosotros, que haya, ¡Sin excusas, sin explicaciones,<br />sin arrepentimientos!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','If You Have A Dream','','inherit','closed','closed','','183-revision-v1','','','2023-05-23 20:09:33','2023-05-23 20:09:33','',183,'https://divyayogamonteregie.org/ca/?p=593',0,'revision','',0),(594,1,'2023-05-23 20:09:34','2023-05-23 20:09:34','<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SI TIENES UN SUEÑO</h1>		\n		<p><strong>Si tienes un sueño</strong></p><p>No esperes a que llegue un día lejano,<br />puede ser demasiado tarde antes de que hayas comenzado.<br />No todos estarán de acuerdo con todo lo que decidas.</p><p>Sé fiel a ti mismo ante todo.<br />Lo único importante en la vida es lo que haces<br />con el tiempo que pasas aquí en la tierra.</p><p>No tengas miedo de seguir tus deseos,<br />no son tontos ni egoístas.<br />Tómate el tiempo y haz lo que te haga sentir vivo.</p><p>Deja tus miedos y remordimientos en el pasado,<br />porque aquí es donde pertenecen.<br />No te nubles hoy con cosas que no se pueden deshacer.</p><p>No tienes más control sobre el ayer o el mañana,<br />que sobre la furia de tus pasiones.<br />No calmes estos sueños ni sacies tus deseos.</p><p>Porque si lo haces, tu viaje ha terminado.<br />Sólo tienes hoy para comenzar de nuevo y seguir tus sueños.<br />Porque al final todo lo que tenemos son nuestros recuerdos.</p><p>Cuando el crepúsculo venga a nosotros, que haya, ¡Sin excusas, sin explicaciones,<br />sin arrepentimientos!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','If You Have A Dream','','inherit','closed','closed','','183-revision-v1','','','2023-05-23 20:09:34','2023-05-23 20:09:34','',183,'https://divyayogamonteregie.org/ca/?p=594',0,'revision','',0),(595,1,'2023-05-23 20:09:34','2023-05-23 20:09:34','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>IF YOU HAVE A DREAM</h1>		\n		<p align=\"center\"><b>If You Have A Dream</b></p><p align=\"center\">Don’t wait for some distant day to come,<br />it may be too late before you’ve even begun.<br />Not everyone will agree with all you decide.</p><p align=\"center\">Be true to yourself first and foremost.<br />The only important thing in life is what you do<br />with the time you spend here on earth.</p><p align=\"center\">Don’t be afraid to follow your desires,<br />they are not silly nor selfish.<br />Take the time and do what makes you feel alive.</p><p align=\"center\">Leave your fears and regrets in the past,<br />for this is where they belong.<br />Don’t cloud today with things that can’t be undone.</p><p align=\"center\">You have no more control over yesterday or tomorrow,<br />than you do the raging of your passions.<br />Do not quiet these dreams nor quench your desires.</p><p align=\"center\">For if you do, your journey is ended.<br />You have only today to begin anew and follow your dreams.<br />For in the end all we have are our memories.</p><p align=\"center\">When the twilight comes to us, let there be,<br />No excuses, no explanations, no regrets!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','If You Have A Dream','','inherit','closed','closed','','183-revision-v1','','','2023-05-23 20:09:34','2023-05-23 20:09:34','',183,'https://divyayogamonteregie.org/ca/?p=595',0,'revision','',0),(596,1,'2023-05-24 00:11:35','2023-05-24 00:11:35','<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>ES NUESTRA VIDA</h1>		\n		<p>En la vida hay personas que nos harán daño y nos causarán dolor,</p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.</p><p>En la vida hay errores que cometeremos,<br />pero debemos aprender de nuestros errores y crecer a partir de ellos.</p><p>En la vida hay remordimientos con los que tendremos que vivir,<br />pero debemos aprender a dejar atrás el pasado y darnos cuenta de que es algo que no podemos cambiar.</p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br />pero debemos aprender a dejar ir y seguir adelante.</p><p>En la vida habrá obstáculos que causarán interferencia,<br />pero debemos aprender a superar estos desafíos y fortalecernos.</p><p>En la vida hay miedos que nos frenarán de lo que queremos,<br />pero debemos aprender a combatirlos con el coraje de dentro.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','In our life','','inherit','closed','closed','','193-revision-v1','','','2023-05-24 00:11:35','2023-05-24 00:11:35','',193,'https://divyayogamonteregie.org/ca/?p=596',0,'revision','',0),(597,1,'2023-05-24 00:13:15','2023-05-24 00:13:15','<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>ES NUESTRA VIDA</h1>		\n		<p>En la vida hay personas que nos harán daño y nos causarán dolor,</p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.</p><p>En la vida hay errores que cometeremos,<br />pero debemos aprender de nuestros errores y crecer a partir de ellos.</p><p>En la vida hay remordimientos con los que tendremos que vivir,<br />pero debemos aprender a dejar atrás el pasado y darnos cuenta de que es algo que no podemos cambiar.</p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br />pero debemos aprender a dejar ir y seguir adelante.</p><p>En la vida habrá obstáculos que causarán interferencia,<br />pero debemos aprender a superar estos desafíos y fortalecernos.</p><p>En la vida hay miedos que nos frenarán de lo que queremos,<br />pero debemos aprender a combatirlos con el coraje de dentro.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','In our life','','inherit','closed','closed','','193-revision-v1','','','2023-05-24 00:13:15','2023-05-24 00:13:15','',193,'https://divyayogamonteregie.org/ca/?p=597',0,'revision','',0),(598,1,'2023-05-24 00:13:15','2023-05-24 00:13:15','<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>ES NUESTRA VIDA</h1>		\n		<p>En la vida hay personas que nos harán daño y nos causarán dolor,</p><p>Pero debemos aprender a perdonar y olvidar y no guardar rencor.</p><p>En la vida hay errores que cometeremos,<br />pero debemos aprender de nuestros errores y crecer a partir de ellos.</p><p>En la vida hay remordimientos con los que tendremos que vivir,<br />pero debemos aprender a dejar atrás el pasado y darnos cuenta de que es algo que no podemos cambiar.</p><p>En la vida hay personas que perderemos para siempre y no podemos tener de vuelta,<br />pero debemos aprender a dejar ir y seguir adelante.</p><p>En la vida habrá obstáculos que causarán interferencia,<br />pero debemos aprender a superar estos desafíos y fortalecernos.</p><p>En la vida hay miedos que nos frenarán de lo que queremos,<br />pero debemos aprender a combatirlos con el coraje de dentro.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','In our life','','inherit','closed','closed','','193-revision-v1','','','2023-05-24 00:13:15','2023-05-24 00:13:15','',193,'https://divyayogamonteregie.org/ca/?p=598',0,'revision','',0),(599,1,'2023-05-24 00:13:15','2023-05-24 00:13:15','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>IN OUR LIFE</h1>		\n		<p style=\"text-align: center;\" align=\"center\">In life there are people that will hurt us and cause us pain,</p><p style=\"text-align: center;\" align=\"center\">but we must learn to forgive and forget and not hold grudges.</p><p style=\"text-align: center;\">In life there are mistakes we will make,<br />but we must learn from our wrongs and grow from them.</p><p style=\"text-align: center;\">In life there are regrets we will have to live with,<br />but we must learn to leave the past behind and realize it is something we can\'t change.</p><p style=\"text-align: center;\">In life there are people we will loose forever and can\'t have back,<br />but we must learn to let go &amp; move on.</p><p style=\"text-align: center;\">In life there are going to be obstacles that will cause interference,<br />but we must learn to overcome these challenges and grow stronger.</p><p style=\"text-align: center;\">In life there are fears that will hold us back from what we want,<br />but we must learn to fight them with the courage from within.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','In our life','','inherit','closed','closed','','193-revision-v1','','','2023-05-24 00:13:15','2023-05-24 00:13:15','',193,'https://divyayogamonteregie.org/ca/?p=599',0,'revision','',0),(600,1,'2023-05-24 00:14:24','2023-05-24 00:14:24','<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SOLO UNA</h1>		\n		<p>Una canción puede provocar un momento, un árbol puede comenzar un bosque,<br /><br />un pájaro puede anunciar la primavera.</p><p>Una sonrisa comienza una amistad,<br />un apretón de manos levanta un alma.<br />Una estrella puede guiar un barco en el mar, Un voto puede cambiar una nación, Un rayo de sol ilumina una habitación<br />Una vela borra la oscuridad,<br /><br /><br />Una risa conquistará la tristeza.</p><p>Un paso debe comenzar cada viaje.<br />Una palabra debe comenzar cada oración.<br />Una esperanza elevará nuestro espíritu,<br />un toque puede mostrarte que te importa.</p><p>Una voz puede hablar con sabiduría, Un corazón puede saber lo que es verdad,</p><p>Una vida puede marcar la diferencia, ya ves,<br />¡depende de ti!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Just One','','inherit','closed','closed','','202-revision-v1','','','2023-05-24 00:14:24','2023-05-24 00:14:24','',202,'https://divyayogamonteregie.org/ca/?p=600',0,'revision','',0),(601,1,'2023-05-24 00:15:24','2023-05-24 00:15:24','<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SOLO UNA</h1>		\n		<p>Una canción puede provocar un momento, un árbol puede comenzar un bosque,<br /><br />un pájaro puede anunciar la primavera.</p><p>Una sonrisa comienza una amistad,<br />un apretón de manos levanta un alma.<br />Una estrella puede guiar un barco en el mar, Un voto puede cambiar una nación, Un rayo de sol ilumina una habitación<br />Una vela borra la oscuridad,<br /><br /><br />Una risa conquistará la tristeza.</p><p>Un paso debe comenzar cada viaje.<br />Una palabra debe comenzar cada oración.<br />Una esperanza elevará nuestro espíritu,<br />un toque puede mostrarte que te importa.</p><p>Una voz puede hablar con sabiduría, Un corazón puede saber lo que es verdad,</p><p>Una vida puede marcar la diferencia, ya ves,<br />¡depende de ti!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Just One','','inherit','closed','closed','','202-revision-v1','','','2023-05-24 00:15:24','2023-05-24 00:15:24','',202,'https://divyayogamonteregie.org/ca/?p=601',0,'revision','',0),(602,1,'2023-05-24 00:15:24','2023-05-24 00:15:24','<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.2 - 11-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>SOLO UNA</h1>		\n		<p>Una canción puede provocar un momento, un árbol puede comenzar un bosque,<br /><br />un pájaro puede anunciar la primavera.</p><p>Una sonrisa comienza una amistad,<br />un apretón de manos levanta un alma.<br />Una estrella puede guiar un barco en el mar, Un voto puede cambiar una nación, Un rayo de sol ilumina una habitación<br />Una vela borra la oscuridad,<br /><br /><br />Una risa conquistará la tristeza.</p><p>Un paso debe comenzar cada viaje.<br />Una palabra debe comenzar cada oración.<br />Una esperanza elevará nuestro espíritu,<br />un toque puede mostrarte que te importa.</p><p>Una voz puede hablar con sabiduría, Un corazón puede saber lo que es verdad,</p><p>Una vida puede marcar la diferencia, ya ves,<br />¡depende de ti!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Just One','','inherit','closed','closed','','202-revision-v1','','','2023-05-24 00:15:24','2023-05-24 00:15:24','',202,'https://divyayogamonteregie.org/ca/?p=602',0,'revision','',0),(604,1,'2023-05-24 00:16:50','2023-05-24 00:16:50','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>MI ZONA DE CONFORT</h1>		\n		<p>Solía tener una zona de confort donde sabía que no fallaría.<br />Las mismas cuatro paredes y el trabajo ocupado eran realmente más como la cárcel.</p><p>Anhelaba tanto hacer las cosas que nunca había hecho antes,<br />pero me quedé dentro de mi zona de confort y caminé por el mismo piso de siempre.</p><p>Decía estar tan ocupado con las cosas dentro de la zona,<br />pero en el fondo anhelaba algo especial propio.</p><p>No podía dejar pasar mi vida simplemente viendo ganar a otros.<br />Contuve la respiración; Salí y dejé que comenzara el cambio.<br />Di un paso y con nuevas fuerzas que nunca antes había sentido,<br />me despedí de mi zona de confort y cerré y cerré la puerta.</p><p>Si estás en una zona de confort, temeroso de aventurarte,<br />recuerda que todos los ganadores estuvieron en algún momento llenos de dudas.<br />Un paso o dos y la fuerza de voluntad pueden hacer realidad tus sueños.</p><p>Alcanza tu futuro con una sonrisa; ¡El éxito está ahí para ti!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','My Comfort Zone','','inherit','closed','closed','','208-revision-v1','','','2023-05-24 00:16:50','2023-05-24 00:16:50','',208,'https://divyayogamonteregie.org/ca/?p=604',0,'revision','',0),(605,1,'2023-05-24 00:17:30','2023-05-24 00:17:30','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>MI ZONA DE CONFORT</h1>		\n		<p>Solía tener una zona de confort donde sabía que no fallaría.<br />Las mismas cuatro paredes y el trabajo ocupado eran realmente más como la cárcel.</p><p>Anhelaba tanto hacer las cosas que nunca había hecho antes,<br />pero me quedé dentro de mi zona de confort y caminé por el mismo piso de siempre.</p><p>Decía estar tan ocupado con las cosas dentro de la zona,<br />pero en el fondo anhelaba algo especial propio.</p><p>No podía dejar pasar mi vida simplemente viendo ganar a otros.<br />Contuve la respiración; Salí y dejé que comenzara el cambio.<br />Di un paso y con nuevas fuerzas que nunca antes había sentido,<br />me despedí de mi zona de confort y cerré y cerré la puerta.</p><p>Si estás en una zona de confort, temeroso de aventurarte,<br />recuerda que todos los ganadores estuvieron en algún momento llenos de dudas.<br />Un paso o dos y la fuerza de voluntad pueden hacer realidad tus sueños.</p><p>Alcanza tu futuro con una sonrisa; ¡El éxito está ahí para ti!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','My Comfort Zone','','inherit','closed','closed','','208-revision-v1','','','2023-05-24 00:17:30','2023-05-24 00:17:30','',208,'https://divyayogamonteregie.org/ca/?p=605',0,'revision','',0),(606,1,'2023-05-24 00:17:30','2023-05-24 00:17:30','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>MI ZONA DE CONFORT</h1>		\n		<p>Solía tener una zona de confort donde sabía que no fallaría.<br />Las mismas cuatro paredes y el trabajo ocupado eran realmente más como la cárcel.</p><p>Anhelaba tanto hacer las cosas que nunca había hecho antes,<br />pero me quedé dentro de mi zona de confort y caminé por el mismo piso de siempre.</p><p>Decía estar tan ocupado con las cosas dentro de la zona,<br />pero en el fondo anhelaba algo especial propio.</p><p>No podía dejar pasar mi vida simplemente viendo ganar a otros.<br />Contuve la respiración; Salí y dejé que comenzara el cambio.<br />Di un paso y con nuevas fuerzas que nunca antes había sentido,<br />me despedí de mi zona de confort y cerré y cerré la puerta.</p><p>Si estás en una zona de confort, temeroso de aventurarte,<br />recuerda que todos los ganadores estuvieron en algún momento llenos de dudas.<br />Un paso o dos y la fuerza de voluntad pueden hacer realidad tus sueños.</p><p>Alcanza tu futuro con una sonrisa; ¡El éxito está ahí para ti!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','My Comfort Zone','','inherit','closed','closed','','208-revision-v1','','','2023-05-24 00:17:30','2023-05-24 00:17:30','',208,'https://divyayogamonteregie.org/ca/?p=606',0,'revision','',0),(607,1,'2023-05-24 00:17:30','2023-05-24 00:17:30','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>My Comfort Zone</h1>		\n		<p align=\"center\">I used to have a comfort zone where I knew I wouldn\'t fail.<br />The same four walls and busywork were really more like jail.</p><p align=\"center\">I longed so much to do the things I\'d never done before,<br />But stayed inside my comfort zone and paced the same old floor.</p><p align=\"center\">I claimed to be so busy with the things inside the zone,<br />But deep inside I longed for something special of my own.</p><p align=\"center\">I couldn\'t let my life go by just watching others win.<br />I held my breath; I stepped outside and let the change begin.<br />I took a step and with new strength I\'d never felt before,<br />I kissed my comfort zone goodbye and closed and locked the door.</p><p align=\"center\">If you\'re in a comfort zone, afraid to venture out,<br />Remember that all winners were at one time filled with doubt.<br />A step or two and will power can make your dreams come true.</p><p align=\"center\">Reach for your future with a smile; success is there for you!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','My Comfort Zone','','inherit','closed','closed','','208-revision-v1','','','2023-05-24 00:17:30','2023-05-24 00:17:30','',208,'https://divyayogamonteregie.org/ca/?p=607',0,'revision','',0),(608,1,'2023-05-24 00:19:51','2023-05-24 00:19:51','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>NUESTROS PENSAMIENTOS</h1>		\n		<p>Mantén tus pensamientos positivos,</p><p>Porque los pensamientos se convierten en tus palabras.</p><p>Mantén tus palabras positivas</p><p>Porque las palabras se convierten en tu acción.</p><p>Mantén tu acción positiva</p><p>Porque tu acción se convierte en tu hábito.</p><p>Mantén tu hábito positivo,</p><p>Porque tu hábito se convierte en tu estilo de vida.</p><p>Mantén tu estilo de vida positivo,</p><p>Porque tu estilo de vida se convierte en tu destino.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','OUR THOUGHTS','','inherit','closed','closed','','215-revision-v1','','','2023-05-24 00:19:51','2023-05-24 00:19:51','',215,'https://divyayogamonteregie.org/ca/?p=608',0,'revision','',0),(609,1,'2023-05-24 00:20:52','2023-05-24 00:20:52','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>NUESTROS PENSAMIENTOS</h1>		\n		<p>Mantén tus pensamientos positivos,</p><p>Porque los pensamientos se convierten en tus palabras.</p><p>Mantén tus palabras positivas</p><p>Porque las palabras se convierten en tu acción.</p><p>Mantén tu acción positiva</p><p>Porque tu acción se convierte en tu hábito.</p><p>Mantén tu hábito positivo,</p><p>Porque tu hábito se convierte en tu estilo de vida.</p><p>Mantén tu estilo de vida positivo,</p><p>Porque tu estilo de vida se convierte en tu destino.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','OUR THOUGHTS','','inherit','closed','closed','','215-revision-v1','','','2023-05-24 00:20:52','2023-05-24 00:20:52','',215,'https://divyayogamonteregie.org/ca/?p=609',0,'revision','',0),(610,1,'2023-05-24 00:20:52','2023-05-24 00:20:52','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>NUESTROS PENSAMIENTOS</h1>		\n		<p>Mantén tus pensamientos positivos,</p><p>Porque los pensamientos se convierten en tus palabras.</p><p>Mantén tus palabras positivas</p><p>Porque las palabras se convierten en tu acción.</p><p>Mantén tu acción positiva</p><p>Porque tu acción se convierte en tu hábito.</p><p>Mantén tu hábito positivo,</p><p>Porque tu hábito se convierte en tu estilo de vida.</p><p>Mantén tu estilo de vida positivo,</p><p>Porque tu estilo de vida se convierte en tu destino.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','OUR THOUGHTS','','inherit','closed','closed','','215-revision-v1','','','2023-05-24 00:20:52','2023-05-24 00:20:52','',215,'https://divyayogamonteregie.org/ca/?p=610',0,'revision','',0),(611,1,'2023-05-24 00:20:52','2023-05-24 00:20:52','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>OUR THOUGHTS</h1>		\n		<p align=\"center\">Keep your thoughts positive,</p><p align=\"center\">because thoughts become your words.</p><p align=\"center\">Keep your words positive</p><p align=\"center\">because words become your action.</p><p align=\"center\">Keep your action positive</p><p align=\"center\">Because your action becomes your habit.</p><p align=\"center\">Keep your habit positive,</p><p align=\"center\">because your habit becomes your lifestyle.</p><p align=\"center\">Keep your life style positive,</p><p align=\"center\">because your life style becomes your destiny.</p><p>.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','OUR THOUGHTS','','inherit','closed','closed','','215-revision-v1','','','2023-05-24 00:20:52','2023-05-24 00:20:52','',215,'https://divyayogamonteregie.org/ca/?p=611',0,'revision','',0),(612,1,'2023-05-24 00:21:55','2023-05-24 00:21:55','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMETETE A TI MISMO</h1>		\n		<p>(uno de los poemas motivacionales más clásicos)</p><p>Prométete a ti mismo ser tan fuerte que nada pueda<br />perturbar tu tranquilidad.</p><p>Para hablar de salud, felicidad y prosperidad a<br />cada persona que conozcas.</p><p>Para hacer que todos tus amigos sientan que hay<br />algo en ellos.</p><p>Para mirar el lado soleado de todo y hacer realidad tu<br />optimismo.</p><p>Pensar sólo en lo mejor, trabajar sólo para lo mejor,<br />y esperar sólo lo mejor.</p><p>Estar tan entusiasmado con el éxito de los demás<br />como lo eres con el tuyo propio.</p><p>Olvidar los errores del pasado y presionar sobre los<br />mayores logros del futuro.</p><p>Llevar un semblante alegre en todo momento y dar<br />una sonrisa a cada persona viva que conozcas.</p><p>Dedicar tanto tiempo a la mejora de ti mismo<br />que no tengas tiempo para criticar a los demás.</p><p>Ser demasiado grande para la preocupación, demasiado noble para la ira, y demasiado fuerte para el miedo, y demasiado<br />feliz para permitir la<br />presencia de problemas.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Promise Yourself','','inherit','closed','closed','','223-revision-v1','','','2023-05-24 00:21:55','2023-05-24 00:21:55','',223,'https://divyayogamonteregie.org/ca/?p=612',0,'revision','',0),(613,1,'2023-05-24 00:23:04','2023-05-24 00:23:04','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMETETE A TI MISMO</h1>		\n		<p>(uno de los poemas motivacionales más clásicos)</p><p>Prométete a ti mismo ser tan fuerte que nada pueda<br />perturbar tu tranquilidad.</p><p>Para hablar de salud, felicidad y prosperidad a<br />cada persona que conozcas.</p><p>Para hacer que todos tus amigos sientan que hay<br />algo en ellos.</p><p>Para mirar el lado soleado de todo y hacer realidad tu<br />optimismo.</p><p>Pensar sólo en lo mejor, trabajar sólo para lo mejor,<br />y esperar sólo lo mejor.</p><p>Estar tan entusiasmado con el éxito de los demás<br />como lo eres con el tuyo propio.</p><p>Olvidar los errores del pasado y presionar sobre los<br />mayores logros del futuro.</p><p>Llevar un semblante alegre en todo momento y dar<br />una sonrisa a cada persona viva que conozcas.</p><p>Dedicar tanto tiempo a la mejora de ti mismo<br />que no tengas tiempo para criticar a los demás.</p><p>Ser demasiado grande para la preocupación, demasiado noble para la ira, y demasiado fuerte para el miedo, y demasiado<br />feliz para permitir la<br />presencia de problemas.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Promise Yourself','','inherit','closed','closed','','223-revision-v1','','','2023-05-24 00:23:04','2023-05-24 00:23:04','',223,'https://divyayogamonteregie.org/ca/?p=613',0,'revision','',0),(614,1,'2023-05-24 00:23:04','2023-05-24 00:23:04','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMETETE A TI MISMO</h1>		\n		<p>(uno de los poemas motivacionales más clásicos)</p><p>Prométete a ti mismo ser tan fuerte que nada pueda<br />perturbar tu tranquilidad.</p><p>Para hablar de salud, felicidad y prosperidad a<br />cada persona que conozcas.</p><p>Para hacer que todos tus amigos sientan que hay<br />algo en ellos.</p><p>Para mirar el lado soleado de todo y hacer realidad tu<br />optimismo.</p><p>Pensar sólo en lo mejor, trabajar sólo para lo mejor,<br />y esperar sólo lo mejor.</p><p>Estar tan entusiasmado con el éxito de los demás<br />como lo eres con el tuyo propio.</p><p>Olvidar los errores del pasado y presionar sobre los<br />mayores logros del futuro.</p><p>Llevar un semblante alegre en todo momento y dar<br />una sonrisa a cada persona viva que conozcas.</p><p>Dedicar tanto tiempo a la mejora de ti mismo<br />que no tengas tiempo para criticar a los demás.</p><p>Ser demasiado grande para la preocupación, demasiado noble para la ira, y demasiado fuerte para el miedo, y demasiado<br />feliz para permitir la<br />presencia de problemas.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Promise Yourself','','inherit','closed','closed','','223-revision-v1','','','2023-05-24 00:23:04','2023-05-24 00:23:04','',223,'https://divyayogamonteregie.org/ca/?p=614',0,'revision','',0),(615,1,'2023-05-24 00:23:04','2023-05-24 00:23:04','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMISE YOURSELF</h1>		\n		<p align=\"center\">(one the most classic motivational poems)</p><p align=\"center\">Promise yourself to be so strong that nothing can<br />disturb your peace of mind.</p><p align=\"center\">To talk health, happiness, and prosperity to<br />every person you meet.</p><p align=\"center\">To make all your friends feel like there is<br />something in them.</p><p align=\"center\">To look at the sunny side of everything and make your<br />optimism come true.</p><p align=\"center\">To think only of the best, to work only for the best,<br />and expect only the best.</p><p align=\"center\">To be just as enthusiastic about the success of others<br />as you are about your own.</p><p align=\"center\">To forget the mistakes of the past and press on the<br />greater achievements of the future.</p><p align=\"center\">To wear a cheerful countenance at all times and give<br />every living person you meet a smile.</p><p align=\"center\">To give so much time to the improvement of yourself<br />that you have no time to criticize others.</p><p align=\"center\">To be too large for worry, too noble for anger, and too<br />strong for fear, and too happy to permit the<br />presence of trouble.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Promise Yourself','','inherit','closed','closed','','223-revision-v1','','','2023-05-24 00:23:04','2023-05-24 00:23:04','',223,'https://divyayogamonteregie.org/ca/?p=615',0,'revision','',0),(616,1,'2023-05-24 00:24:29','2023-05-24 00:24:29','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMETETE A TI MISMO, AHORA</h1>		\n		<p>De todas las cosas que puedes hacer,</p><p>Prométete a ti mismo que lo intentarás.</p><p>Ni siquiera importa si ganas,</p><p>siempre y cuando lo solicites.</p><p>Nadie puede pedirte nada excepto a ti mismo.</p><p>Si no quieres hacer un movimiento,</p><p>Eres tú quien se quedará fuera.</p><p>Así que no te permitas perderte cosas importantes.</p><p>Puede que no sientas que son dignos,</p><p>Sin embargo, pueden llegar a ser tus alas.</p><p>Las experiencias nos hacen completos,</p><p>y hacer que la vida se sienta plena.</p><p>Y cuando llega el momento de mirar hacia atrás,</p><p>No te dejes sentir inexperto.</p><p>Así que no te permitas parar,</p><p>sin razón aparente.</p><p>Prométete a ti mismo que lo intentarás,</p><p>y enfréntate a cualquier temporada.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Promise Yourself-now.','','inherit','closed','closed','','228-revision-v1','','','2023-05-24 00:24:29','2023-05-24 00:24:29','',228,'https://divyayogamonteregie.org/ca/?p=616',0,'revision','',0),(617,1,'2023-05-24 00:26:17','2023-05-24 00:26:17','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMETETE A TI MISMO, AHORA</h1>		\n		<p>De todas las cosas que puedes hacer,</p><p>Prométete a ti mismo que lo intentarás.</p><p>Ni siquiera importa si ganas,</p><p>siempre y cuando lo solicites.</p><p>Nadie puede pedirte nada excepto a ti mismo.</p><p>Si no quieres hacer un movimiento,</p><p>Eres tú quien se quedará fuera.</p><p>Así que no te permitas perderte cosas importantes.</p><p>Puede que no sientas que son dignos,</p><p>Sin embargo, pueden llegar a ser tus alas.</p><p>Las experiencias nos hacen completos,</p><p>y hacer que la vida se sienta plena.</p><p>Y cuando llega el momento de mirar hacia atrás,</p><p>No te dejes sentir inexperto.</p><p>Así que no te permitas parar,</p><p>sin razón aparente.</p><p>Prométete a ti mismo que lo intentarás,</p><p>y enfréntate a cualquier temporada.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Promise Yourself-now.','','inherit','closed','closed','','228-revision-v1','','','2023-05-24 00:26:17','2023-05-24 00:26:17','',228,'https://divyayogamonteregie.org/ca/?p=617',0,'revision','',0),(618,1,'2023-05-24 00:26:17','2023-05-24 00:26:17','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMETETE A TI MISMO, AHORA</h1>		\n		<p>De todas las cosas que puedes hacer,</p><p>Prométete a ti mismo que lo intentarás.</p><p>Ni siquiera importa si ganas,</p><p>siempre y cuando lo solicites.</p><p>Nadie puede pedirte nada excepto a ti mismo.</p><p>Si no quieres hacer un movimiento,</p><p>Eres tú quien se quedará fuera.</p><p>Así que no te permitas perderte cosas importantes.</p><p>Puede que no sientas que son dignos,</p><p>Sin embargo, pueden llegar a ser tus alas.</p><p>Las experiencias nos hacen completos,</p><p>y hacer que la vida se sienta plena.</p><p>Y cuando llega el momento de mirar hacia atrás,</p><p>No te dejes sentir inexperto.</p><p>Así que no te permitas parar,</p><p>sin razón aparente.</p><p>Prométete a ti mismo que lo intentarás,</p><p>y enfréntate a cualquier temporada.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Promise Yourself-now.','','inherit','closed','closed','','228-revision-v1','','','2023-05-24 00:26:17','2023-05-24 00:26:17','',228,'https://divyayogamonteregie.org/ca/?p=618',0,'revision','',0),(619,1,'2023-05-24 00:26:17','2023-05-24 00:26:17','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMISE YOURSELF -NOW</h1>		\n		<p align=\"center\">Of all the things you can do,</p><p align=\"center\">promise yourself you will try.</p><p align=\"center\">It doesn\'t even matter if you win,</p><p align=\"center\">as long as you apply.</p><p align=\"center\"> </p><p align=\"center\">No one can ask anything of you except yourself.</p><p align=\"center\">If you don\'t want to make a move,</p><p align=\"center\">it\'s you who\'ll be left out.</p><p align=\"center\"> </p><p align=\"center\">So don\'t allow yourself to miss out on important things.</p><p align=\"center\">You may not feel that they are worthy,</p><p align=\"center\">yet they can turn out to be your wings.</p><p align=\"center\"> </p><p align=\"center\">Experiences make us whole,</p><p align=\"center\">and make life feel fulfilled.</p><p align=\"center\">And when it\'s time to look back,</p><p align=\"center\">don\'t let yourself feel unskilled.</p><p align=\"center\"> </p><p align=\"center\">So don\'t allow yourself to stop,</p><p align=\"center\">for no apparent reason.</p><p align=\"center\">Promise yourself you will try,</p><p align=\"center\">and take on any season.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Promise Yourself-now.','','inherit','closed','closed','','228-revision-v1','','','2023-05-24 00:26:17','2023-05-24 00:26:17','',228,'https://divyayogamonteregie.org/ca/?p=619',0,'revision','',0),(620,1,'2023-05-24 00:28:25','2023-05-24 00:28:25','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>COMIENCE DONDE SE ENCUENTRA</h1>		\n		<p>Por Berton Braley</p><p>Comienza donde estás parado y no te preocupes por el pasado, El pasado no te ayudará a comenzar de nuevo, Si lo has dejado todo atrás por fin<br />Por qué, eso es suficiente, has terminado con eso,<br /><br />has terminado;<br />Este es otro capítulo del libro, Esta es otra carrera que has planeado, No mires hacia atrás los días desaparecidos,<br /><br /><br />Comienza donde estás parado.</p><p>Al mundo no le importarán tus viejas derrotas<br />Si puedes comenzar de nuevo y ganar el éxito;<br />El futuro es tu tiempo, y el tiempo es flota<br />Y hay mucho trabajo, tensión y estrés;<br />Olvídate de los males enterrados y las desesperaciones muertas, Aquí hay una nueva prueba a la mano, El futuro es para el que hace y se atreve,<br /><br /><br />Comienza donde estás parado.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Start Where You Stand','','inherit','closed','closed','','235-revision-v1','','','2023-05-24 00:28:25','2023-05-24 00:28:25','',235,'https://divyayogamonteregie.org/ca/?p=620',0,'revision','',0),(621,1,'2023-05-24 00:30:03','2023-05-24 00:30:03','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>COMIENCE DONDE SE ENCUENTRA</h1>		\n		<p>Por Berton Braley</p><p>Comienza donde estás parado y no te preocupes por el pasado, El pasado no te ayudará a comenzar de nuevo, Si lo has dejado todo atrás por fin<br />Por qué, eso es suficiente, has terminado con eso,<br /><br />has terminado;<br />Este es otro capítulo del libro, Esta es otra carrera que has planeado, No mires hacia atrás los días desaparecidos,<br /><br /><br />Comienza donde estás parado.</p><p>Al mundo no le importarán tus viejas derrotas<br />Si puedes comenzar de nuevo y ganar el éxito;<br />El futuro es tu tiempo, y el tiempo es flota<br />Y hay mucho trabajo, tensión y estrés;<br />Olvídate de los males enterrados y las desesperaciones muertas, Aquí hay una nueva prueba a la mano, El futuro es para el que hace y se atreve,<br /><br /><br />Comienza donde estás parado.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Start Where You Stand','','inherit','closed','closed','','235-revision-v1','','','2023-05-24 00:30:03','2023-05-24 00:30:03','',235,'https://divyayogamonteregie.org/ca/?p=621',0,'revision','',0),(622,1,'2023-05-24 00:30:03','2023-05-24 00:30:03','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>COMIENCE DONDE SE ENCUENTRA</h1>		\n		<p>Por Berton Braley</p><p>Comienza donde estás parado y no te preocupes por el pasado, El pasado no te ayudará a comenzar de nuevo, Si lo has dejado todo atrás por fin<br />Por qué, eso es suficiente, has terminado con eso,<br /><br />has terminado;<br />Este es otro capítulo del libro, Esta es otra carrera que has planeado, No mires hacia atrás los días desaparecidos,<br /><br /><br />Comienza donde estás parado.</p><p>Al mundo no le importarán tus viejas derrotas<br />Si puedes comenzar de nuevo y ganar el éxito;<br />El futuro es tu tiempo, y el tiempo es flota<br />Y hay mucho trabajo, tensión y estrés;<br />Olvídate de los males enterrados y las desesperaciones muertas, Aquí hay una nueva prueba a la mano, El futuro es para el que hace y se atreve,<br /><br /><br />Comienza donde estás parado.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Start Where You Stand','','inherit','closed','closed','','235-revision-v1','','','2023-05-24 00:30:03','2023-05-24 00:30:03','',235,'https://divyayogamonteregie.org/ca/?p=622',0,'revision','',0),(623,1,'2023-05-24 00:30:03','2023-05-24 00:30:03','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>START WHERE YOU STAND</h1>		\n		<p align=\"center\">By Berton Braley</p><p align=\"center\">Start where you stand and never mind the past,<br />The past won\'t help you in beginning new,<br />If you have left it all behind at last<br />Why, that\'s enough, you\'re done with it, you\'re through;<br />This is another chapter in the book,<br />This is another race that you have planned,<br />Don\'t give the vanished days a backward look,<br />Start where you stand.</p><p align=\"center\">The world won\'t care about your old defeats<br />If you can start anew and win success;<br />The future is your time, and time is fleet<br />And there is much of work and strain and stress;<br />Forget the buried woes and dead despairs,<br />Here is a brand-new trial right at hand,<br />The future is for him who does and dares,<br />Start where you stand.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Start Where You Stand','','inherit','closed','closed','','235-revision-v1','','','2023-05-24 00:30:03','2023-05-24 00:30:03','',235,'https://divyayogamonteregie.org/ca/?p=623',0,'revision','',0),(624,1,'2023-05-24 00:34:14','2023-05-24 00:34:14','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HOY</h1>		\n		<p>Hoy he decidido,</p><p>que es hora de tomar el control.</p><p>No habrá más sentado,</p><p>Y esperando, este es mi objetivo.</p><p>Hoy lo veo tan claramente,</p><p>Soy todo lo que tengo.</p><p>Si quiero hacer algo,</p><p>Depende de mí allanar mi propio camino.</p><p>Hoy voy a establecer mi meta,</p><p>y trabajar para llevarlo a cabo.</p><p>Estoy cansado de tener miedo,</p><p>Es hora de que mis sueños se hagan realidad.</p><p>Hoy estoy bastante feliz.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Today I','','inherit','closed','closed','','241-revision-v1','','','2023-05-24 00:34:14','2023-05-24 00:34:14','',241,'https://divyayogamonteregie.org/ca/?p=624',0,'revision','',0),(625,1,'2023-05-24 00:35:17','2023-05-24 00:35:17','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HOY</h1>		\n		<p>Hoy he decidido,</p><p>que es hora de tomar el control.</p><p>No habrá más sentado,</p><p>Y esperando, este es mi objetivo.</p><p>Hoy lo veo tan claramente,</p><p>Soy todo lo que tengo.</p><p>Si quiero hacer algo,</p><p>Depende de mí allanar mi propio camino.</p><p>Hoy voy a establecer mi meta,</p><p>y trabajar para llevarlo a cabo.</p><p>Estoy cansado de tener miedo,</p><p>Es hora de que mis sueños se hagan realidad.</p><p>Hoy estoy bastante feliz.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Today I','','inherit','closed','closed','','241-revision-v1','','','2023-05-24 00:35:17','2023-05-24 00:35:17','',241,'https://divyayogamonteregie.org/ca/?p=625',0,'revision','',0),(626,1,'2023-05-24 00:35:17','2023-05-24 00:35:17','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HOY</h1>		\n		<p>Hoy he decidido,</p><p>que es hora de tomar el control.</p><p>No habrá más sentado,</p><p>Y esperando, este es mi objetivo.</p><p>Hoy lo veo tan claramente,</p><p>Soy todo lo que tengo.</p><p>Si quiero hacer algo,</p><p>Depende de mí allanar mi propio camino.</p><p>Hoy voy a establecer mi meta,</p><p>y trabajar para llevarlo a cabo.</p><p>Estoy cansado de tener miedo,</p><p>Es hora de que mis sueños se hagan realidad.</p><p>Hoy estoy bastante feliz.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Today I','','inherit','closed','closed','','241-revision-v1','','','2023-05-24 00:35:17','2023-05-24 00:35:17','',241,'https://divyayogamonteregie.org/ca/?p=626',0,'revision','',0),(627,1,'2023-05-24 00:35:17','2023-05-24 00:35:17','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODAY I</h1>		\n		<p align=\"center\">Today I have decided,</p><p align=\"center\">that it\'s time to take control.</p><p align=\"center\">There won\'t be anymore sitting,</p><p align=\"center\">and waiting, this is my goal.</p><p align=\"center\"> </p><p align=\"center\">Today I see it so clearly,</p><p align=\"center\">I am all that I have.</p><p align=\"center\">If I want to get something done,</p><p align=\"center\">it\'s up to me to pave my own path.</p><p align=\"center\"> </p><p align=\"center\">Today I will set my goal,</p><p align=\"center\">and work to see it through.</p><p align=\"center\">I\'m tired of being afraid,</p><p align=\"center\">it\'s time for my dreams to come true.</p><p align=\"center\"> </p><p align=\"center\">Today I am quite happy,</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Today I','','inherit','closed','closed','','241-revision-v1','','','2023-05-24 00:35:17','2023-05-24 00:35:17','',241,'https://divyayogamonteregie.org/ca/?p=627',0,'revision','',0),(628,1,'2023-05-24 00:36:44','2023-05-24 00:36:44','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>LOS SUEÑOS DE HOY SON LOS EXITOS DE MAÑANA</h1>		\n		<p>No tengas miedo de grandes esperanzas<br />o planes que parecen estar fuera de tu alcance.<br />La vida está destinada a ser experimentada,<br />y cada situación permite el<br />aprendizaje y el crecimiento.</p><p>La motivación es un punto de partida positivo,<br />y la acción te coloca en un camino hacia adelante.<br />Un sueño es un plano<br />de una meta aún no alcanzada;<br />La única diferencia entre los dos<br />es el esfuerzo involucrado en lograr<br />lo que esperas lograr.</p><p>Deja que tu mente y tu corazón te impulsen;<br />Permite que el poder de tu voluntad<br />te lleve a tu destino.</p><p>No cuentes los pasos por delante;<br />Simplemente suma el total<br />de pasos ya cubiertos, y multiplícalo por<br />fe,<br />confianza y resistencia.</p><p>Recuerde siempre que para aquellos que<br />persisten,<br />los sueños de hoy se transforman<br />en éxitos de mañana.</p><p>~ Kelly D. Caron ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Today\'s Dreams Are Tomorrow\'s Successes','','inherit','closed','closed','','257-revision-v1','','','2023-05-24 00:36:44','2023-05-24 00:36:44','',257,'https://divyayogamonteregie.org/ca/?p=628',0,'revision','',0),(629,1,'2023-05-24 00:38:36','2023-05-24 00:38:36','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>LOS SUEÑOS DE HOY SON LOS EXITOS DE MAÑANA</h1>		\n		<p>No tengas miedo de grandes esperanzas<br />o planes que parecen estar fuera de tu alcance.<br />La vida está destinada a ser experimentada,<br />y cada situación permite el<br />aprendizaje y el crecimiento.</p><p>La motivación es un punto de partida positivo,<br />y la acción te coloca en un camino hacia adelante.<br />Un sueño es un plano<br />de una meta aún no alcanzada;<br />La única diferencia entre los dos<br />es el esfuerzo involucrado en lograr<br />lo que esperas lograr.</p><p>Deja que tu mente y tu corazón te impulsen;<br />Permite que el poder de tu voluntad<br />te lleve a tu destino.</p><p>No cuentes los pasos por delante;<br />Simplemente suma el total<br />de pasos ya cubiertos, y multiplícalo por<br />fe,<br />confianza y resistencia.</p><p>Recuerde siempre que para aquellos que<br />persisten,<br />los sueños de hoy se transforman<br />en éxitos de mañana.</p><p>~ Kelly D. Caron ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Today\'s Dreams Are Tomorrow\'s Successes','','inherit','closed','closed','','257-revision-v1','','','2023-05-24 00:38:36','2023-05-24 00:38:36','',257,'https://divyayogamonteregie.org/ca/?p=629',0,'revision','',0),(630,1,'2023-05-24 00:38:36','2023-05-24 00:38:36','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>LOS SUEÑOS DE HOY SON LOS EXITOS DE MAÑANA</h1>		\n		<p>No tengas miedo de grandes esperanzas<br />o planes que parecen estar fuera de tu alcance.<br />La vida está destinada a ser experimentada,<br />y cada situación permite el<br />aprendizaje y el crecimiento.</p><p>La motivación es un punto de partida positivo,<br />y la acción te coloca en un camino hacia adelante.<br />Un sueño es un plano<br />de una meta aún no alcanzada;<br />La única diferencia entre los dos<br />es el esfuerzo involucrado en lograr<br />lo que esperas lograr.</p><p>Deja que tu mente y tu corazón te impulsen;<br />Permite que el poder de tu voluntad<br />te lleve a tu destino.</p><p>No cuentes los pasos por delante;<br />Simplemente suma el total<br />de pasos ya cubiertos, y multiplícalo por<br />fe,<br />confianza y resistencia.</p><p>Recuerde siempre que para aquellos que<br />persisten,<br />los sueños de hoy se transforman<br />en éxitos de mañana.</p><p>~ Kelly D. Caron ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Today\'s Dreams Are Tomorrow\'s Successes','','inherit','closed','closed','','257-revision-v1','','','2023-05-24 00:38:36','2023-05-24 00:38:36','',257,'https://divyayogamonteregie.org/ca/?p=630',0,'revision','',0),(631,1,'2023-05-24 00:38:36','2023-05-24 00:38:36','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODAY\'S DREAMS ARE TOMORROW\'S SUCCESSES</h1>		\n		<p>No tengas miedo de grandes esperanzas<br />o planes que parecen estar fuera de tu alcance.<br />La vida está destinada a ser experimentada,<br />y cada situación permite el<br />aprendizaje y el crecimiento.</p><p>La motivación es un punto de partida positivo,<br />y la acción te coloca en un camino hacia adelante.<br />Un sueño es un plano<br />de una meta aún no alcanzada;<br />La única diferencia entre los dos<br />es el esfuerzo involucrado en lograr<br />lo que esperas lograr.</p><p>Deja que tu mente y tu corazón te impulsen;<br />Permite que el poder de tu voluntad<br />te lleve a tu destino.</p><p>No cuentes los pasos por delante;<br />Simplemente suma el total<br />de pasos ya cubiertos, y multiplícalo por<br />fe,<br />confianza y resistencia.</p><p>Recuerde siempre que para aquellos que<br />persisten,<br />los sueños de hoy se transforman<br />en éxitos de mañana.</p><p>~ Kelly D. Caron ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Today\'s Dreams Are Tomorrow\'s Successes','','inherit','closed','closed','','257-revision-v1','','','2023-05-24 00:38:36','2023-05-24 00:38:36','',257,'https://divyayogamonteregie.org/ca/?p=631',0,'revision','',0),(632,1,'2023-05-24 00:39:02','2023-05-24 00:39:02','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODAY\'S DREAMS ARE TOMORROW\'S SUCCESSES</h1>		\n		<p>No tengas miedo de grandes esperanzas<br />o planes que parecen estar fuera de tu alcance.<br />La vida está destinada a ser experimentada,<br />y cada situación permite el<br />aprendizaje y el crecimiento.</p><p>La motivación es un punto de partida positivo,<br />y la acción te coloca en un camino hacia adelante.<br />Un sueño es un plano<br />de una meta aún no alcanzada;<br />La única diferencia entre los dos<br />es el esfuerzo involucrado en lograr<br />lo que esperas lograr.</p><p>Deja que tu mente y tu corazón te impulsen;<br />Permite que el poder de tu voluntad<br />te lleve a tu destino.</p><p>No cuentes los pasos por delante;<br />Simplemente suma el total<br />de pasos ya cubiertos, y multiplícalo por<br />fe,<br />confianza y resistencia.</p><p>Recuerde siempre que para aquellos que<br />persisten,<br />los sueños de hoy se transforman<br />en éxitos de mañana.</p><p>~ Kelly D. Caron ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Today\'s Dreams Are Tomorrow\'s Successes','','inherit','closed','closed','','257-revision-v1','','','2023-05-24 00:39:02','2023-05-24 00:39:02','',257,'https://divyayogamonteregie.org/ca/?p=632',0,'revision','',0),(633,1,'2023-05-24 00:39:02','2023-05-24 00:39:02','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODAY\'S DREAMS ARE TOMORROW\'S SUCCESSES</h1>		\n		<p>No tengas miedo de grandes esperanzas<br />o planes que parecen estar fuera de tu alcance.<br />La vida está destinada a ser experimentada,<br />y cada situación permite el<br />aprendizaje y el crecimiento.</p><p>La motivación es un punto de partida positivo,<br />y la acción te coloca en un camino hacia adelante.<br />Un sueño es un plano<br />de una meta aún no alcanzada;<br />La única diferencia entre los dos<br />es el esfuerzo involucrado en lograr<br />lo que esperas lograr.</p><p>Deja que tu mente y tu corazón te impulsen;<br />Permite que el poder de tu voluntad<br />te lleve a tu destino.</p><p>No cuentes los pasos por delante;<br />Simplemente suma el total<br />de pasos ya cubiertos, y multiplícalo por<br />fe,<br />confianza y resistencia.</p><p>Recuerde siempre que para aquellos que<br />persisten,<br />los sueños de hoy se transforman<br />en éxitos de mañana.</p><p>~ Kelly D. Caron ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Today\'s Dreams Are Tomorrow\'s Successes','','inherit','closed','closed','','257-revision-v1','','','2023-05-24 00:39:02','2023-05-24 00:39:02','',257,'https://divyayogamonteregie.org/ca/?p=633',0,'revision','',0),(634,1,'2023-05-24 00:39:02','2023-05-24 00:39:02','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODAY\'S DREAMS ARE TOMORROW\'S SUCCESSES</h1>		\n		<p align=\"center\">Don\'t be afraid of high hopes<br />or plans that seem to be out of reach.<br />Life is meant to be experienced,<br />and every situation allows for<br />learning and growth.</p><p align=\"center\">Motivation is a positive starting point,<br />and action places you on a forward path.<br />A dream is a blueprint<br />of a goal not yet achieved;<br />the only difference between the two<br />is the effort involved in attaining<br />what you hope to accomplish.</p><p align=\"center\">Let your mind and heart urge you on;<br />allow the power of your will<br />to lead you to your destination.</p><p align=\"center\">Don\'t count the steps ahead;<br />just add up the total<br />of steps already covered,<br />and multiply it by<br />faith, confidence, and endurance.</p><p align=\"center\">Always remember that<br />for those who persist,<br />today\'s dreams are transformed<br />into tomorrow\'s successes.</p><p align=\"center\">~ Kelly D. Caron ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Today\'s Dreams Are Tomorrow\'s Successes','','inherit','closed','closed','','257-revision-v1','','','2023-05-24 00:39:02','2023-05-24 00:39:02','',257,'https://divyayogamonteregie.org/ca/?p=634',0,'revision','',0),(636,1,'2023-05-24 01:37:07','2023-05-24 01:37:07','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>¡DENTRO DE TI ESTA LA FUERZA PARA ENFRENTAR LOS DESAFIOS DE LA VIDA!</h1>		\n		<p>Eres más fuerte de lo que piensas,<br />recuerda mantenerte erguido.</p><p>Cada desafío en tu vida<br />te ayuda a crecer.</p><p>Cada problema que encuentras<br />fortalece tu mente y tu alma.</p><p>Cada problema que superas<br />aumenta tu comprensión de la vida.</p><p>Cuando todos tus problemas pesen<br />mucho sobre tus hombros, recuerda que debajo de la carga<br />puedes mantenerte erguido,<br /><br />porque nunca se te da<br />más de lo que puedes manejar ...<br />y eres más fuerte de lo que piensas.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Within You Is The Strength To Meet Life\'s Challenges !','','inherit','closed','closed','','262-revision-v1','','','2023-05-24 01:37:07','2023-05-24 01:37:07','',262,'https://divyayogamonteregie.org/ca/?p=636',0,'revision','',0),(637,1,'2023-05-24 01:37:07','2023-05-24 01:37:07','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>¡DENTRO DE TI ESTA LA FUERZA PARA ENFRENTAR LOS DESAFIOS DE LA VIDA!</h1>		\n		<p>Eres más fuerte de lo que piensas,<br />recuerda mantenerte erguido.</p><p>Cada desafío en tu vida<br />te ayuda a crecer.</p><p>Cada problema que encuentras<br />fortalece tu mente y tu alma.</p><p>Cada problema que superas<br />aumenta tu comprensión de la vida.</p><p>Cuando todos tus problemas pesen<br />mucho sobre tus hombros, recuerda que debajo de la carga<br />puedes mantenerte erguido,<br /><br />porque nunca se te da<br />más de lo que puedes manejar ...<br />y eres más fuerte de lo que piensas.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Within You Is The Strength To Meet Life\'s Challenges !','','inherit','closed','closed','','262-revision-v1','','','2023-05-24 01:37:07','2023-05-24 01:37:07','',262,'https://divyayogamonteregie.org/ca/?p=637',0,'revision','',0),(638,1,'2023-05-24 01:37:07','2023-05-24 01:37:07','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WITHIN YOU IS THE STENGHT TO MEET TO MEET LIFE\'S CHALLENGES !</h1>		\n		<p align=\"center\">You are stronger than you think,<br />remember to stand tall.</p><p align=\"center\">Every challenge in your life<br />helps you to grow.</p><p align=\"center\">Every problem you encounter<br />strengthens your mind and your soul.</p><p align=\"center\">Every trouble you overcome<br />increases your understanding of life.</p><p align=\"center\">When all your troubles weigh<br />heavily on your shoulders,<br />remember that beneath the burden<br />you can stand tall,<br />because you are never given<br />more than you can handle...<br />and you are stronger than you think</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Within You Is The Strength To Meet Life\'s Challenges !','','inherit','closed','closed','','262-revision-v1','','','2023-05-24 01:37:07','2023-05-24 01:37:07','',262,'https://divyayogamonteregie.org/ca/?p=638',0,'revision','',0),(639,1,'2023-05-24 01:39:09','2023-05-24 01:39:09','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TU POSEES LA ENERGIA</h1>		\n		<p>Lo semejante atrae a lo semejante.</p><p>Si te sientes derrotado, lo serás.</p><p>Si estás cansado, perderás impulso.</p><p>Si eres de enfoque alegre, lo negativo no tendrá más remedio que retroceder.</p><p>Decide reír ante la adversidad.</p><p>Sepa que es lo suficientemente poderoso como para superar toda dificultad.</p><p>No dejes que tus pensamientos divaguen.</p><p>Sé poderoso.</p><p>Conócete a ti mismo.</p><p>Decide tener el control de tu realidad.</p><p>No hay víctimas, excepto aquellos que han renunciado a su poder.</p><p>Posees la energía, creas y tomas el control de tu destino</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','You Possess The Energy','','inherit','closed','closed','','246-revision-v1','','','2023-05-24 01:39:09','2023-05-24 01:39:09','',246,'https://divyayogamonteregie.org/ca/?p=639',0,'revision','',0),(640,1,'2023-05-24 01:40:17','2023-05-24 01:40:17','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TU POSEES LA ENERGIA</h1>		\n		<p>Lo semejante atrae a lo semejante.</p><p>Si te sientes derrotado, lo serás.</p><p>Si estás cansado, perderás impulso.</p><p>Si eres de enfoque alegre, lo negativo no tendrá más remedio que retroceder.</p><p>Decide reír ante la adversidad.</p><p>Sepa que es lo suficientemente poderoso como para superar toda dificultad.</p><p>No dejes que tus pensamientos divaguen.</p><p>Sé poderoso.</p><p>Conócete a ti mismo.</p><p>Decide tener el control de tu realidad.</p><p>No hay víctimas, excepto aquellos que han renunciado a su poder.</p><p>Posees la energía, creas y tomas el control de tu destino</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','You Possess The Energy','','inherit','closed','closed','','246-revision-v1','','','2023-05-24 01:40:17','2023-05-24 01:40:17','',246,'https://divyayogamonteregie.org/ca/?p=640',0,'revision','',0),(641,1,'2023-05-24 01:40:17','2023-05-24 01:40:17','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TU POSEES LA ENERGIA</h1>		\n		<p>Lo semejante atrae a lo semejante.</p><p>Si te sientes derrotado, lo serás.</p><p>Si estás cansado, perderás impulso.</p><p>Si eres de enfoque alegre, lo negativo no tendrá más remedio que retroceder.</p><p>Decide reír ante la adversidad.</p><p>Sepa que es lo suficientemente poderoso como para superar toda dificultad.</p><p>No dejes que tus pensamientos divaguen.</p><p>Sé poderoso.</p><p>Conócete a ti mismo.</p><p>Decide tener el control de tu realidad.</p><p>No hay víctimas, excepto aquellos que han renunciado a su poder.</p><p>Posees la energía, creas y tomas el control de tu destino</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','You Possess The Energy','','inherit','closed','closed','','246-revision-v1','','','2023-05-24 01:40:17','2023-05-24 01:40:17','',246,'https://divyayogamonteregie.org/ca/?p=641',0,'revision','',0),(642,1,'2023-05-24 01:40:17','2023-05-24 01:40:17','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>YOU POSSESS TEHE ENERGY</h1>		\n		<p style=\"text-align: center;\" align=\"center\">Like attracts like.</p><p style=\"text-align: center;\" align=\"center\">If you feel defeated, you will be.</p><p style=\"text-align: center;\" align=\"center\">If you are weary, you will lose momentum.</p><p style=\"text-align: center;\" align=\"center\">If you are of joyful focus, the negative will have no choice but to recede.</p><p style=\"text-align: center;\" align=\"center\">Decide to laugh in the face of adversity.</p><p style=\"text-align: center;\" align=\"center\">Know you are powerful enough to supersede all difficulty.</p><p style=\"text-align: center;\" align=\"center\">Do not let your thoughts wander.</p><p style=\"text-align: center;\" align=\"center\">Be powerful.</p><p style=\"text-align: center;\" align=\"center\">Know yourself.</p><p style=\"text-align: center;\" align=\"center\"> Decide to be in control of your reality.</p><p style=\"text-align: center;\" align=\"center\">There are no victims except those who have given up their power.</p><p style=\"text-align: center;\" align=\"center\">You possess the energy, create and take control of your destiny</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','You Possess The Energy','','inherit','closed','closed','','246-revision-v1','','','2023-05-24 01:40:17','2023-05-24 01:40:17','',246,'https://divyayogamonteregie.org/ca/?p=642',0,'revision','',0),(643,1,'2023-05-24 01:46:27','2023-05-24 01:46:27','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','STORIES','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 01:46:27','2023-05-24 01:46:27','',276,'https://divyayogamonteregie.org/ca/?p=643',0,'revision','',0),(644,1,'2023-05-24 01:47:16','2023-05-24 01:47:16','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','STORIES','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 01:47:16','2023-05-24 01:47:16','',276,'https://divyayogamonteregie.org/ca/?p=644',0,'revision','',0),(645,1,'2023-05-24 01:47:16','2023-05-24 01:47:16','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>HISTORIAS</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','STORIES','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 01:47:16','2023-05-24 01:47:16','',276,'https://divyayogamonteregie.org/ca/?p=645',0,'revision','',0),(646,1,'2023-05-24 01:47:16','2023-05-24 01:47:16','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','STORIES','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 01:47:16','2023-05-24 01:47:16','',276,'https://divyayogamonteregie.org/ca/?p=646',0,'revision','',0),(647,1,'2023-05-24 01:47:55','2023-05-24 01:47:55','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 01:47:55','2023-05-24 01:47:55','',276,'https://divyayogamonteregie.org/ca/?p=647',0,'revision','',0),(670,1,'2023-05-24 03:25:09','2023-05-24 03:25:09','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Making the basic practice of yoga easily accessible to everyone at no charge.<br>Divya Yoga founder Swami Ram Dev says, \"Good health is a birthright of humanity.\" By performing yoga poses,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; / asanas, exercises, mudras, pranayamas, meditation and by providing practical motivational speech they help to develop a stress free mind and disease free body. It helps to take care of the body, mind and soul and live a happy, healthy and fulfilling life. Emphasize that the key to a healthy physical body and a healthy state of mind is in one\'s control. By getting in touch with the inner being we can experience a state of \"Bliss and Anand\".<br>This Divya yoga is for people of all ages. We start with warm-up exercises (12-15), salutation to the sun and motivational speech. Then we practice 90-100 combination of asanas, postures and exercises. We also do some acupressure, 6 mudras, 7 pranayamas and micro exercises for eyes, fingers, toes, face and neck. Laughter yoga and super brain yoga are also included. We finish with \'Shav Asana\', motivational poem, mantra and prayer,<br>After yoga, super food i.e. grapes and banana are available for yogis.<br>Yoga is a wonderful means of exercising, stretching and relaxing the body/mind so that it can be healthy and lasting. Helps in the coordination of the body, mind and soul. We also create an environment where people can interact for their betterment and the good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>','Home','','inherit','closed','closed','','652-revision-v1','','','2023-05-24 03:25:09','2023-05-24 03:25:09','',652,'https://divyayogamonteregie.org/ca/?p=670',0,'revision','',0),(671,1,'2023-05-24 03:25:09','2023-05-24 03:25:09','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Making the basic practice of yoga easily accessible to everyone at no charge.<br>Divya Yoga founder Swami Ram Dev says, \"Good health is a birthright of humanity.\" By performing yoga poses,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; / asanas, exercises, mudras, pranayamas, meditation and by providing practical motivational speech they help to develop a stress free mind and disease free body. It helps to take care of the body, mind and soul and live a happy, healthy and fulfilling life. Emphasize that the key to a healthy physical body and a healthy state of mind is in one\'s control. By getting in touch with the inner being we can experience a state of \"Bliss and Anand\".<br>This Divya yoga is for people of all ages. We start with warm-up exercises (12-15), salutation to the sun and motivational speech. Then we practice 90-100 combination of asanas, postures and exercises. We also do some acupressure, 6 mudras, 7 pranayamas and micro exercises for eyes, fingers, toes, face and neck. Laughter yoga and super brain yoga are also included. We finish with \'Shav Asana\', motivational poem, mantra and prayer,<br>After yoga, super food i.e. grapes and banana are available for yogis.<br>Yoga is a wonderful means of exercising, stretching and relaxing the body/mind so that it can be healthy and lasting. Helps in the coordination of the body, mind and soul. We also create an environment where people can interact for their betterment and the good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>','Home','','inherit','closed','closed','','652-revision-v1','','','2023-05-24 03:25:09','2023-05-24 03:25:09','',652,'https://divyayogamonteregie.org/ca/?p=671',0,'revision','',0),(649,0,'2023-05-24 02:40:00','2023-05-24 02:40:00','<!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page menu-item-home\",\"description\":\"\",\"id\":\"9\",\"kind\":\"post-type\",\"label\":\"Home\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://divyayogamonteregie.org/ca/\"} /--><!-- wp:navigation-submenu {\"className\":\" menu-item menu-item-type-taxonomy menu-item-object-category current-menu-item\",\"description\":\"\",\"id\":\"4\",\"kind\":\"taxonomy\",\"label\":\"Poems\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"category\",\"url\":\"https://divyayogamonteregie.org/ca/category/poems/\"} --><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"166\",\"kind\":\"post-type\",\"label\":\"Anything Is Possible\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://divyayogamonteregie.org/ca/anything-is-possible/\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"175\",\"kind\":\"post-type\",\"label\":\"Be Whatever  You Want To Be !\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://divyayogamonteregie.org/ca/be-whatever-you-want-to-be/\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"183\",\"kind\":\"post-type\",\"label\":\"If You Have A Dream\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://divyayogamonteregie.org/ca/if-you-have-a-dream/\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"193\",\"kind\":\"post-type\",\"label\":\"In our life\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://divyayogamonteregie.org/ca/in-our-life/\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"202\",\"kind\":\"post-type\",\"label\":\"Just One\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://divyayogamonteregie.org/ca/just-one/\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"208\",\"kind\":\"post-type\",\"label\":\"My Comfort Zone\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://divyayogamonteregie.org/ca/my-comfort-zone/\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"215\",\"kind\":\"post-type\",\"label\":\"OUR THOUGHTS\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://divyayogamonteregie.org/ca/our-thoughts/\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"223\",\"kind\":\"post-type\",\"label\":\"Promise Yourself\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://divyayogamonteregie.org/ca/promise-yourself/\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"228\",\"kind\":\"post-type\",\"label\":\"Promise Yourself-now.\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://divyayogamonteregie.org/ca/promise-yourself-now/\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"235\",\"kind\":\"post-type\",\"label\":\"Start Where You Stand\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://divyayogamonteregie.org/ca/start-where-you-stand/\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"241\",\"kind\":\"post-type\",\"label\":\"Today I\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://divyayogamonteregie.org/ca/today-i/\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"246\",\"kind\":\"post-type\",\"label\":\"You Possess The Energy\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://divyayogamonteregie.org/ca/you-possess-the-energy/\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"257\",\"kind\":\"post-type\",\"label\":\"Todayu0026#8217;s Dreams Are Tomorrowu0026#8217;s Successes\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://divyayogamonteregie.org/ca/todays-dreams-are-tomorrows-successes/\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"262\",\"kind\":\"post-type\",\"label\":\"Within You Is The Strength To Meet Lifeu0026#8217;s Challenges !\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://divyayogamonteregie.org/ca/within-you-is-the-strength-to-meet-lifes-challenges/\"} /--><!-- /wp:navigation-submenu --><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"43\",\"kind\":\"post-type\",\"label\":\"Mission\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://divyayogamonteregie.org/ca/mission/\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"21\",\"kind\":\"post-type\",\"label\":\"Instructors\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://divyayogamonteregie.org/ca/instructors/\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"128\",\"kind\":\"post-type\",\"label\":\"Gallery\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://divyayogamonteregie.org/ca/gallery/\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-post_type menu-item-object-page\",\"description\":\"\",\"id\":\"276\",\"kind\":\"post-type\",\"label\":\"Stories\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"page\",\"url\":\"https://divyayogamonteregie.org/ca/stories/\"} /-->','primary-menu','','publish','closed','closed','','primary-menu','','','2023-05-24 02:40:00','2023-05-24 02:40:00','',0,'https://divyayogamonteregie.org/ca/2023/05/24/primary-menu/',0,'wp_navigation','',0),(682,1,'2023-05-24 03:35:54','2023-05-24 03:35:54','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un conocido orador comenzó su seminario sosteniendo un billete de $ 20. En la sala de 200, preguntó: \"¿A quién le gustaría este billete de 20 dólares?\"</p><p>Las manos comenzaron a subir.</p><p>Él dijo: \"Voy a darle estos $ 20 a uno de ustedes, pero primero, déjenme hacer esto\". Procedió a arrugar el billete de un dólar.</p><p>Luego preguntó: \"¿Quién todavía lo quiere?\"</p><p>Aún así, las manos estaban en el aire.</p><p>\"Bueno\", respondió, \"¿y si hago esto?\" Y lo dejó caer al suelo y comenzó a molerlo en el suelo con su zapato.</p><p>Lo recogió, ahora todo arrugado y sucio. \"Ahora, ¿quién todavía lo quiere?\" Aún así, las manos se elevaron en el aire.</p><p>\"Mis amigos, todos ustedes han aprendido una lección muy valiosa. No importa lo que le hiciera al dinero, todavía lo querías porque no disminuía su valor. Todavía valía $ 20.</p><p>Muchas veces en nuestras vidas, somos dejados caer, arrugados y molidos en la tierra por las decisiones que tomamos y las circunstancias que se nos presentan.</p><p>Sentimos que no valemos nada. Pero no importa lo que haya sucedido o lo que suceda, nunca perderá su valor. Tienes alma divina. Eres especial, ¡nunca lo olvides!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A value','','inherit','closed','closed','','364-revision-v1','','','2023-05-24 03:35:54','2023-05-24 03:35:54','',364,'https://divyayogamonteregie.org/ca/?p=682',0,'revision','',0),(683,1,'2023-05-24 03:35:54','2023-05-24 03:35:54','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un conocido orador comenzó su seminario sosteniendo un billete de $ 20. En la sala de 200, preguntó: \"¿A quién le gustaría este billete de 20 dólares?\"</p><p>Las manos comenzaron a subir.</p><p>Él dijo: \"Voy a darle estos $ 20 a uno de ustedes, pero primero, déjenme hacer esto\". Procedió a arrugar el billete de un dólar.</p><p>Luego preguntó: \"¿Quién todavía lo quiere?\"</p><p>Aún así, las manos estaban en el aire.</p><p>\"Bueno\", respondió, \"¿y si hago esto?\" Y lo dejó caer al suelo y comenzó a molerlo en el suelo con su zapato.</p><p>Lo recogió, ahora todo arrugado y sucio. \"Ahora, ¿quién todavía lo quiere?\" Aún así, las manos se elevaron en el aire.</p><p>\"Mis amigos, todos ustedes han aprendido una lección muy valiosa. No importa lo que le hiciera al dinero, todavía lo querías porque no disminuía su valor. Todavía valía $ 20.</p><p>Muchas veces en nuestras vidas, somos dejados caer, arrugados y molidos en la tierra por las decisiones que tomamos y las circunstancias que se nos presentan.</p><p>Sentimos que no valemos nada. Pero no importa lo que haya sucedido o lo que suceda, nunca perderá su valor. Tienes alma divina. Eres especial, ¡nunca lo olvides!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A value','','inherit','closed','closed','','364-revision-v1','','','2023-05-24 03:35:54','2023-05-24 03:35:54','',364,'https://divyayogamonteregie.org/ca/?p=683',0,'revision','',0),(684,1,'2023-05-24 03:35:55','2023-05-24 03:35:55','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \"Who would like this $20 bill?\"</p><p style=\"text-align: justify;\">Hands started going up.</p><p style=\"text-align: justify;\">He said, \"I am going to give this $20 to one of you but first, let me do this.\" He proceeded to crumple the dollar bill up.</p><p style=\"text-align: justify;\">He then asked, \"Who still wants it?\"</p><p style=\"text-align: justify;\">Still the hands were up in the air.</p><p style=\"text-align: justify;\">\"Well,\" he replied, \"What if I do this?\" And he dropped it on the ground and started to grind it into the floor with his shoe.</p><p style=\"text-align: justify;\">He picked it up, now all crumpled and dirty. \"Now who still wants it?\" Still the hands went into the air.</p><p style=\"text-align: justify;\">\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.</p><p style=\"text-align: justify;\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.</p><p style=\"text-align: justify;\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A value','','inherit','closed','closed','','364-revision-v1','','','2023-05-24 03:35:55','2023-05-24 03:35:55','',364,'https://divyayogamonteregie.org/ca/?p=684',0,'revision','',0),(685,1,'2023-05-24 03:36:54','2023-05-24 03:36:54','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un día, todos los empleados de una empresa muy inusual llegaron a su oficina y todos vieron un gran letrero en la puerta principal que decía esto:</p><p>\"Ayer, la persona que ha estado obstaculizando su crecimiento en esta empresa falleció. Te invitamos a unirte al funeral en la sala que se ha preparado en el gimnasio\".</p><p>Al principio, todos se pusieron tristes por la muerte de uno de sus colegas, pero después de un tiempo comenzaron a sentir curiosidad por saber quién era esa persona que obstaculizaba el crecimiento de sus colegas y de la propia empresa.</p><p>La emoción en el gimnasio era tal que se ordenó a los agentes de seguridad que controlaran a la multitud dentro de la sala. Cuanta más gente llegaba al ataúd, más se calentaba la emoción.</p><p><strong>Todos pensaron: \"¿Quién es esta persona que estaba obstaculizando mi progreso?\"</strong></p><p>Uno por uno, los empleados intrigados se acercaron al ataúd, y cuando miraron dentro de él, de repente se quedaron sin palabras.</p><p>Todos llegaron a pararse cerca del ataúd, y todos terminaron conmocionados y en silencio, como si alguien hubiera tocado la parte más profunda de su alma.</p><p><strong>Había un espejo dentro del ataúd: ¡todos los que miraban dentro de él podían verse a sí mismos!</strong></p><p><strong>También había un letrero al lado del espejo que decía:</strong></p><p><strong>Sólo hay una persona que es capaz de poner límites a tu crecimiento y ¡ERES TÚ!</strong></p><p>Tu vida no cambia cuando cambia tu jefe, cuando cambian tus amigos, cuando cambian tus padres, cuando cambia tu esposo o esposa, cuando cambia tu compañía, cuando cambia tu iglesia, cuando cambia tu ubicación, cuando cambia tu dinero, cuando cambia tu estatus.</p><p><strong>No, tu vida cambia cuando TÚ cambias, cuando</strong> vas más allá de tus creencias limitantes.</p><p>Examínate a ti mismo, obsérvate a ti mismo. No tengas miedo de las dificultades, imposibilidades y pérdidas. Sé un ganador, constrúyete a ti mismo y a tu realidad. Es la forma en que enfrentas la vida misma lo que marca la diferencia.</p><p>Hace unos años, un estudiante universitario, que luchaba por construir su carrera, se presentó para su examen profesional. Intentó su primer trabajo excelentemente, pero imaginó que se desempeñó mal.</p><p>Teniendo esto en cuenta, perdió la concentración para el resto de las asignaturas y, a su vez, no escribió bien las otras asignaturas. Más tarde, los resultados salieron que el documento que pensaba que estaba mal escrito había obtenido las mejores calificaciones en la universidad, pero en las otras materias, falló. ¿Por qué sucedió esto? La razón es simple: falta de creencia en sí mismo</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','An Interesting Funeral','','inherit','closed','closed','','419-revision-v1','','','2023-05-24 03:36:54','2023-05-24 03:36:54','',419,'https://divyayogamonteregie.org/ca/?p=685',0,'revision','',0),(652,1,'2023-05-24 02:46:12','2023-05-24 02:46:12','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge</p>\n<p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i>&nbsp;</i></b>exercise<b>s<i>,&nbsp;</i></b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p>\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p>\n<p>After yoga super food i. e. grapes and banana are available for Yogies.</p>\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=St.%20Lambert%20International%20Hight%20School%20675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"St. Lambert International Hight School 675 Rue Green, Saint-Lambert, \"\n					aria-label=\"St. Lambert International Hight School 675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p>\n<ol>\n<li><b>Workout</b>&nbsp;– a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li>\n<li><b>Sun Salutation</b>&nbsp;– Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li>\n<li><b>Motivational discourse</b>&nbsp;– our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li>\n<li><b>Acupressure</b>&nbsp;(an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,&nbsp; middle of your palm for kidney problems and&nbsp; under the thumb for the well being of thyroid.</li>\n<li><b>Eyes and neck exercises</b>&nbsp;– we take care of every part of the body.<br>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>&nbsp;&nbsp;&nbsp;&nbsp;</b><br>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li>\n<li><b>Seven Pranayamas (</b>&nbsp;breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li>\n<li><b>6 mudras&nbsp;</b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li>\n<li><b>100 postures, exercises and asanas</b>&nbsp;– with these we increase flexibility from head to toe. We are also doing&nbsp;<b>stretching</b>&nbsp;exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li>\n<li><b>Laughter yoga&nbsp;</b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br>We also do&nbsp;<b>Super Brain yoga</b>&nbsp;to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li>\n<li><b>Shavasana&nbsp;</b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li>\n<li><b>Motivational poem</b>&nbsp;– is read at the end of the session to keep us motivated, focused and recharge our batteries.</li>\n<li><b>Mantra</b>&nbsp;– at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li>\n</ol>\n<p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00&nbsp;</strong><br><strong>at St.Lambert International Hight School, 675 Green, St. Lambert, QC, J4P 1V9</strong></p>		\n			<h2>Divya Yoga Monteregie - annual calendar 2024-2025 </h2>		\n                    <h2></h2>\n                    <p></p>\n                    <a> Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant </a>','Home','','publish','closed','closed','','home','','','2024-10-05 03:12:05','2024-10-05 03:12:05','',0,'https://divyayogamonteregie.org/ca/?page_id=652',0,'page','',0),(653,1,'2023-05-24 02:46:11','2023-05-24 02:46:11','','Home','','inherit','closed','closed','','652-revision-v1','','','2023-05-24 02:46:11','2023-05-24 02:46:11','',652,'https://divyayogamonteregie.org/ca/?p=653',0,'revision','',0),(654,1,'2023-05-24 02:47:32','2023-05-24 02:47:32','','cropped-banner111','','inherit','open','closed','','cropped-banner111-2','','','2023-05-24 02:47:32','2023-05-24 02:47:32','',652,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg',0,'attachment','image/jpeg',0),(655,1,'2023-05-24 02:47:43','2023-05-24 02:47:43','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"1000\" height=\"288\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />','Home','','inherit','closed','closed','','652-revision-v1','','','2023-05-24 02:47:43','2023-05-24 02:47:43','',652,'https://divyayogamonteregie.org/ca/?p=655',0,'revision','',0),(1180,1,'2023-08-08 23:01:24','2023-08-08 23:01:24','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge.</p>\n<p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i>&nbsp;</i></b>exercise<b>s<i>,&nbsp;</i></b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p>\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p>\n<p>After yoga super food i. e. grapes and banana are available for Yogies.</p>\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p><ol><li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li><li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li><li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li><li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li><li><b>Eyes and neck exercises</b> – we take care of every part of the body.<br />Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>    </b><br />Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li><li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li><li><b>6 mudras </b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li><li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br />We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li><li><b>Laughter yoga </b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br />We also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li><li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li><li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li><li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li></ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong><br /><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></p>','Home','','inherit','closed','closed','','652-revision-v1','','','2023-08-08 23:01:24','2023-08-08 23:01:24','',652,'https://divyayogamonteregie.org/ca/?p=1180',0,'revision','',0),(1181,1,'2023-08-08 23:01:24','2023-08-08 23:01:24','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge</p>\n<p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i>&nbsp;</i></b>exercise<b>s<i>,&nbsp;</i></b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p>\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p>\n<p>After yoga super food i. e. grapes and banana are available for Yogies.</p>\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p><ol><li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li><li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li><li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li><li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li><li><b>Eyes and neck exercises</b> – we take care of every part of the body.<br />Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>    </b><br />Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li><li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li><li><b>6 mudras </b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li><li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br />We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li><li><b>Laughter yoga </b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br />We also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li><li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li><li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li><li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li></ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong><br /><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></p>','Home','','inherit','closed','closed','','652-revision-v1','','','2023-08-08 23:01:24','2023-08-08 23:01:24','',652,'https://divyayogamonteregie.org/ca/?p=1181',0,'revision','',0),(696,1,'2023-05-24 12:44:46','2023-05-24 12:44:46','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Bringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \"A View from the Zoo\", Gary Richmond describes</p><p style=\"text-align: justify;\">how a newborn giraffe learns its first lesson.<br />The mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing. She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.</p><p style=\"text-align: justify;\">When it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.</p><p style=\"text-align: justify;\">Then the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.</p><p style=\"text-align: justify;\">The late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.</p><p style=\"text-align: justify;\">Stone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.</p><p style=\"text-align: justify;\">\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\"</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Giraffe-mother and baby','','inherit','closed','closed','','384-revision-v1','','','2023-05-24 12:44:46','2023-05-24 12:44:46','',384,'https://divyayogamonteregie.org/ca/?p=696',0,'revision','',0),(693,1,'2023-05-24 12:44:07','2023-05-24 12:44:07','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Traer una jirafa al mundo es una tarea difícil. Una jirafa bebé cae a 10 pies del útero de su madre y generalmente aterriza sobre su espalda. En cuestión de segundos se da la vuelta y mete las piernas debajo de su cuerpo. Desde esta posición considera el mundo por primera vez y se sacude los últimos vestigios del fluido de parto de sus ojos y oídos. Luego, la madre jirafa presenta groseramente a su descendencia la realidad de la vida. En su libro, \"A View from the Zoo\", Gary Richmond describe</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Cómo una jirafa recién nacida aprende su primera lección.<br />La jirafa madre baja la cabeza el tiempo suficiente para echar un vistazo rápido. Luego se posiciona directamente sobre su pantorrilla. Ella espera aproximadamente un minuto, y luego hace lo más irrazonable. Ella balancea su pierna larga y colgante hacia afuera y patea a su bebé, de modo que se envía con la cabeza extendida sobre los talones.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Cuando no se levanta, el proceso violento se repite una y otra vez. La lucha por levantarse es trascendental. A medida que el ternero se cansa, la madre lo patea nuevamente para estimular sus esfuerzos. Finalmente, la pantorrilla se para por primera vez sobre sus patas tambaleantes.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Entonces la jirafa madre hace lo más notable. Ella lo patea de sus pies de nuevo. ¿Por qué? Ella quiere que recuerde cómo se levantó. En la naturaleza, las jirafas bebés deben poder levantarse lo más rápido posible para permanecer con la manada, donde hay seguridad. Leones, hienas, leopardos y perros de caza salvajes disfrutan de jirafas jóvenes, y también lo conseguirían, si la madre no le enseñara a su cría a levantarse rápidamente y seguir adelante.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">El difunto Irving Stone entendió esto. Pasó toda una vida estudiando la grandeza, escribiendo biografías noveladas de hombres como Miguel Ángel, Vincent van Gogh, Sigmund Freud y Charles Darwin.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Una vez le preguntaron a Stone si había encontrado un hilo que recorriera la vida de todas estas personas excepcionales. Él dijo: \"Escribo sobre personas que en algún momento de su vida tienen una visión o sueño de algo que debería lograrse y van a trabajar.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">\"Son golpeados en la cabeza, derribados, vilipendiados, y durante años no llegan a ninguna parte. Pero cada vez que son derribados se ponen de pie. No puedes destruir a estas personas. Y al final de sus vidas han logrado una parte modesta de lo que se propusieron hacer\".</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Giraffe-mother and baby','','inherit','closed','closed','','384-revision-v1','','','2023-05-24 12:44:07','2023-05-24 12:44:07','',384,'https://divyayogamonteregie.org/ca/?p=693',0,'revision','',0),(694,1,'2023-05-24 12:44:46','2023-05-24 12:44:46','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Traer una jirafa al mundo es una tarea difícil. Una jirafa bebé cae a 10 pies del útero de su madre y generalmente aterriza sobre su espalda. En cuestión de segundos se da la vuelta y mete las piernas debajo de su cuerpo. Desde esta posición considera el mundo por primera vez y se sacude los últimos vestigios del fluido de parto de sus ojos y oídos. Luego, la madre jirafa presenta groseramente a su descendencia la realidad de la vida. En su libro, \"A View from the Zoo\", Gary Richmond describe</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Cómo una jirafa recién nacida aprende su primera lección.<br />La jirafa madre baja la cabeza el tiempo suficiente para echar un vistazo rápido. Luego se posiciona directamente sobre su pantorrilla. Ella espera aproximadamente un minuto, y luego hace lo más irrazonable. Ella balancea su pierna larga y colgante hacia afuera y patea a su bebé, de modo que se envía con la cabeza extendida sobre los talones.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Cuando no se levanta, el proceso violento se repite una y otra vez. La lucha por levantarse es trascendental. A medida que el ternero se cansa, la madre lo patea nuevamente para estimular sus esfuerzos. Finalmente, la pantorrilla se para por primera vez sobre sus patas tambaleantes.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Entonces la jirafa madre hace lo más notable. Ella lo patea de sus pies de nuevo. ¿Por qué? Ella quiere que recuerde cómo se levantó. En la naturaleza, las jirafas bebés deben poder levantarse lo más rápido posible para permanecer con la manada, donde hay seguridad. Leones, hienas, leopardos y perros de caza salvajes disfrutan de jirafas jóvenes, y también lo conseguirían, si la madre no le enseñara a su cría a levantarse rápidamente y seguir adelante.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">El difunto Irving Stone entendió esto. Pasó toda una vida estudiando la grandeza, escribiendo biografías noveladas de hombres como Miguel Ángel, Vincent van Gogh, Sigmund Freud y Charles Darwin.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Una vez le preguntaron a Stone si había encontrado un hilo que recorriera la vida de todas estas personas excepcionales. Él dijo: \"Escribo sobre personas que en algún momento de su vida tienen una visión o sueño de algo que debería lograrse y van a trabajar.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">\"Son golpeados en la cabeza, derribados, vilipendiados, y durante años no llegan a ninguna parte. Pero cada vez que son derribados se ponen de pie. No puedes destruir a estas personas. Y al final de sus vidas han logrado una parte modesta de lo que se propusieron hacer\".</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Giraffe-mother and baby','','inherit','closed','closed','','384-revision-v1','','','2023-05-24 12:44:46','2023-05-24 12:44:46','',384,'https://divyayogamonteregie.org/ca/?p=694',0,'revision','',0),(695,1,'2023-05-24 12:44:46','2023-05-24 12:44:46','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Traer una jirafa al mundo es una tarea difícil. Una jirafa bebé cae a 10 pies del útero de su madre y generalmente aterriza sobre su espalda. En cuestión de segundos se da la vuelta y mete las piernas debajo de su cuerpo. Desde esta posición considera el mundo por primera vez y se sacude los últimos vestigios del fluido de parto de sus ojos y oídos. Luego, la madre jirafa presenta groseramente a su descendencia la realidad de la vida. En su libro, \"A View from the Zoo\", Gary Richmond describe</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Cómo una jirafa recién nacida aprende su primera lección.<br />La jirafa madre baja la cabeza el tiempo suficiente para echar un vistazo rápido. Luego se posiciona directamente sobre su pantorrilla. Ella espera aproximadamente un minuto, y luego hace lo más irrazonable. Ella balancea su pierna larga y colgante hacia afuera y patea a su bebé, de modo que se envía con la cabeza extendida sobre los talones.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Cuando no se levanta, el proceso violento se repite una y otra vez. La lucha por levantarse es trascendental. A medida que el ternero se cansa, la madre lo patea nuevamente para estimular sus esfuerzos. Finalmente, la pantorrilla se para por primera vez sobre sus patas tambaleantes.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Entonces la jirafa madre hace lo más notable. Ella lo patea de sus pies de nuevo. ¿Por qué? Ella quiere que recuerde cómo se levantó. En la naturaleza, las jirafas bebés deben poder levantarse lo más rápido posible para permanecer con la manada, donde hay seguridad. Leones, hienas, leopardos y perros de caza salvajes disfrutan de jirafas jóvenes, y también lo conseguirían, si la madre no le enseñara a su cría a levantarse rápidamente y seguir adelante.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">El difunto Irving Stone entendió esto. Pasó toda una vida estudiando la grandeza, escribiendo biografías noveladas de hombres como Miguel Ángel, Vincent van Gogh, Sigmund Freud y Charles Darwin.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Una vez le preguntaron a Stone si había encontrado un hilo que recorriera la vida de todas estas personas excepcionales. Él dijo: \"Escribo sobre personas que en algún momento de su vida tienen una visión o sueño de algo que debería lograrse y van a trabajar.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">\"Son golpeados en la cabeza, derribados, vilipendiados, y durante años no llegan a ninguna parte. Pero cada vez que son derribados se ponen de pie. No puedes destruir a estas personas. Y al final de sus vidas han logrado una parte modesta de lo que se propusieron hacer\".</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Giraffe-mother and baby','','inherit','closed','closed','','384-revision-v1','','','2023-05-24 12:44:46','2023-05-24 12:44:46','',384,'https://divyayogamonteregie.org/ca/?p=695',0,'revision','',0),(697,1,'2023-05-24 12:46:15','2023-05-24 12:46:15','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Sir Winston Churchill tardó tres años en terminar el octavo grado porque tenía problemas para aprender inglés. Parece irónico que años más tarde la Universidad de Oxford le pidiera que abordara sus ejercicios de graduación.</p><p>Llegó con sus accesorios habituales. Un cigarro, un bastón y un sombrero de copa acompañaban a Churchill dondequiera que iba. Cuando Churchill se acercó al podio, la multitud se levantó en aplausos agradecidos. Con una dignidad inigualable, acomodó a la multitud y se mantuvo confiado ante sus admiradores. Quitando el cigarro y colocando cuidadosamente el sombrero de copa en el podio, Churchill miró a su audiencia que esperaba. La autoridad sonó en la voz de Churchill mientras gritaba: \"¡Nunca te rindas!\"</p><p>Pasaron varios segundos antes de que se pusiera de pie y repitiera: \"¡Nunca te rindas!\" Sus palabras tronaron en sus oídos. Hubo un silencio ensordecedor cuando Churchill tomó su sombrero y cigarro, se estabilizó con su bastón y abandonó la plataforma. Su discurso de graduación había terminado</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Never give up','','inherit','closed','closed','','389-revision-v1','','','2023-05-24 12:46:15','2023-05-24 12:46:15','',389,'https://divyayogamonteregie.org/ca/?p=697',0,'revision','',0),(698,1,'2023-05-24 12:46:46','2023-05-24 12:46:46','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Sir Winston Churchill tardó tres años en terminar el octavo grado porque tenía problemas para aprender inglés. Parece irónico que años más tarde la Universidad de Oxford le pidiera que abordara sus ejercicios de graduación.</p><p>Llegó con sus accesorios habituales. Un cigarro, un bastón y un sombrero de copa acompañaban a Churchill dondequiera que iba. Cuando Churchill se acercó al podio, la multitud se levantó en aplausos agradecidos. Con una dignidad inigualable, acomodó a la multitud y se mantuvo confiado ante sus admiradores. Quitando el cigarro y colocando cuidadosamente el sombrero de copa en el podio, Churchill miró a su audiencia que esperaba. La autoridad sonó en la voz de Churchill mientras gritaba: \"¡Nunca te rindas!\"</p><p>Pasaron varios segundos antes de que se pusiera de pie y repitiera: \"¡Nunca te rindas!\" Sus palabras tronaron en sus oídos. Hubo un silencio ensordecedor cuando Churchill tomó su sombrero y cigarro, se estabilizó con su bastón y abandonó la plataforma. Su discurso de graduación había terminado</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Never give up','','inherit','closed','closed','','389-revision-v1','','','2023-05-24 12:46:46','2023-05-24 12:46:46','',389,'https://divyayogamonteregie.org/ca/?p=698',0,'revision','',0),(699,1,'2023-05-24 12:46:46','2023-05-24 12:46:46','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Sir Winston Churchill tardó tres años en terminar el octavo grado porque tenía problemas para aprender inglés. Parece irónico que años más tarde la Universidad de Oxford le pidiera que abordara sus ejercicios de graduación.</p><p>Llegó con sus accesorios habituales. Un cigarro, un bastón y un sombrero de copa acompañaban a Churchill dondequiera que iba. Cuando Churchill se acercó al podio, la multitud se levantó en aplausos agradecidos. Con una dignidad inigualable, acomodó a la multitud y se mantuvo confiado ante sus admiradores. Quitando el cigarro y colocando cuidadosamente el sombrero de copa en el podio, Churchill miró a su audiencia que esperaba. La autoridad sonó en la voz de Churchill mientras gritaba: \"¡Nunca te rindas!\"</p><p>Pasaron varios segundos antes de que se pusiera de pie y repitiera: \"¡Nunca te rindas!\" Sus palabras tronaron en sus oídos. Hubo un silencio ensordecedor cuando Churchill tomó su sombrero y cigarro, se estabilizó con su bastón y abandonó la plataforma. Su discurso de graduación había terminado</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Never give up','','inherit','closed','closed','','389-revision-v1','','','2023-05-24 12:46:46','2023-05-24 12:46:46','',389,'https://divyayogamonteregie.org/ca/?p=699',0,'revision','',0),(701,1,'2023-05-24 12:48:09','2023-05-24 12:48:09','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Esta es una parábola de un granjero que poseía una vieja mula. La mula cayó en el pozo del granjero. El granjero escuchó a la mula \"rebuznar\", o lo que sea que hagan las mulas cuando caen en pozos. Después de evaluar cuidadosamente la situación, el granjero sintió lástima por la mula, pero decidió que no valía la pena salvar ni la mula ni el pozo. En cambio, llamó a sus vecinos y les contó lo que había sucedido y les pidió que ayudaran a acarrear tierra para enterrar a la vieja mula en el pozo y sacarlo de su miseria.</p><p>¡Inicialmente, la vieja mula estaba histérica! Pero cuando el granjero y sus vecinos continuaron paleando y la tierra golpeó su espalda, un pensamiento lo golpeó. De repente se dio cuenta de que cada vez que una pala cargada de tierra aterrizaba en su espalda: ¡debería sacudirla y dar un paso adelante! Esto es lo que hizo la vieja mula, golpe tras golpe. \"Sacude y da un paso adelante ... Agítalo y da un paso adelante ... ¡Sacude y da un paso adelante!\", repitió para animarse.</p><p>No importa cuán dolorosos fueran los golpes o angustiante que pareciera la situación, ¡la vieja mula luchó contra el \"pánico\" y siguió sacudiéndose y dando un paso adelante! ¡Lo has adivinado! ¡No pasó mucho tiempo antes de que la vieja mula, maltratada y exhausta, pisara triunfalmente la pared de ese pozo! Lo que parecía que lo enterraría, en realidad terminaría bendiciéndole. Todo por la manera en que manejó su adversidad.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Shake it off and step up','','inherit','closed','closed','','394-revision-v1','','','2023-05-24 12:48:09','2023-05-24 12:48:09','',394,'https://divyayogamonteregie.org/ca/?p=701',0,'revision','',0),(702,1,'2023-05-24 12:48:53','2023-05-24 12:48:53','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Esta es una parábola de un granjero que poseía una vieja mula. La mula cayó en el pozo del granjero. El granjero escuchó a la mula \"rebuznar\", o lo que sea que hagan las mulas cuando caen en pozos. Después de evaluar cuidadosamente la situación, el granjero sintió lástima por la mula, pero decidió que no valía la pena salvar ni la mula ni el pozo. En cambio, llamó a sus vecinos y les contó lo que había sucedido y les pidió que ayudaran a acarrear tierra para enterrar a la vieja mula en el pozo y sacarlo de su miseria.</p><p>¡Inicialmente, la vieja mula estaba histérica! Pero cuando el granjero y sus vecinos continuaron paleando y la tierra golpeó su espalda, un pensamiento lo golpeó. De repente se dio cuenta de que cada vez que una pala cargada de tierra aterrizaba en su espalda: ¡debería sacudirla y dar un paso adelante! Esto es lo que hizo la vieja mula, golpe tras golpe. \"Sacude y da un paso adelante ... Agítalo y da un paso adelante ... ¡Sacude y da un paso adelante!\", repitió para animarse.</p><p>No importa cuán dolorosos fueran los golpes o angustiante que pareciera la situación, ¡la vieja mula luchó contra el \"pánico\" y siguió sacudiéndose y dando un paso adelante! ¡Lo has adivinado! ¡No pasó mucho tiempo antes de que la vieja mula, maltratada y exhausta, pisara triunfalmente la pared de ese pozo! Lo que parecía que lo enterraría, en realidad terminaría bendiciéndole. Todo por la manera en que manejó su adversidad.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Shake it off and step up','','inherit','closed','closed','','394-revision-v1','','','2023-05-24 12:48:53','2023-05-24 12:48:53','',394,'https://divyayogamonteregie.org/ca/?p=702',0,'revision','',0),(703,1,'2023-05-24 12:48:53','2023-05-24 12:48:53','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Esta es una parábola de un granjero que poseía una vieja mula. La mula cayó en el pozo del granjero. El granjero escuchó a la mula \"rebuznar\", o lo que sea que hagan las mulas cuando caen en pozos. Después de evaluar cuidadosamente la situación, el granjero sintió lástima por la mula, pero decidió que no valía la pena salvar ni la mula ni el pozo. En cambio, llamó a sus vecinos y les contó lo que había sucedido y les pidió que ayudaran a acarrear tierra para enterrar a la vieja mula en el pozo y sacarlo de su miseria.</p><p>¡Inicialmente, la vieja mula estaba histérica! Pero cuando el granjero y sus vecinos continuaron paleando y la tierra golpeó su espalda, un pensamiento lo golpeó. De repente se dio cuenta de que cada vez que una pala cargada de tierra aterrizaba en su espalda: ¡debería sacudirla y dar un paso adelante! Esto es lo que hizo la vieja mula, golpe tras golpe. \"Sacude y da un paso adelante ... Agítalo y da un paso adelante ... ¡Sacude y da un paso adelante!\", repitió para animarse.</p><p>No importa cuán dolorosos fueran los golpes o angustiante que pareciera la situación, ¡la vieja mula luchó contra el \"pánico\" y siguió sacudiéndose y dando un paso adelante! ¡Lo has adivinado! ¡No pasó mucho tiempo antes de que la vieja mula, maltratada y exhausta, pisara triunfalmente la pared de ese pozo! Lo que parecía que lo enterraría, en realidad terminaría bendiciéndole. Todo por la manera en que manejó su adversidad.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Shake it off and step up','','inherit','closed','closed','','394-revision-v1','','','2023-05-24 12:48:53','2023-05-24 12:48:53','',394,'https://divyayogamonteregie.org/ca/?p=703',0,'revision','',0),(705,1,'2023-05-24 12:49:54','2023-05-24 12:49:54','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>En una hermosa mañana, un caballero mayor, de 75 años, estaba sentado con su hijo cuando le preguntó qué estaba sentado en la ventana. Él mismo no fue capaz de reconocer lo que era, debido a su débil vista.</p><p>Su hijo respondió: \"Ese es el cuervo\".</p><p>Debido a su edad, el hombre mayor se olvidó y volvió a preguntar.</p><p>Su hijo volvió a responder lo mismo: \"Ese es el cuervo\".</p><p>Este intercambio continuó de siete a ocho veces cuando, y al final, su hijo se molestó y respondió con ira: \"¿Por qué preguntas lo mismo una y otra vez?\"</p><p>El anciano respondió con lágrimas en los ojos. \"Hijo, no te enojes. Cuando tenías 4 años me hiciste la misma pregunta 40 veces y nunca me enojé.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Sometimes We Forget... Remember To Be Kind','','inherit','closed','closed','','399-revision-v1','','','2023-05-24 12:49:54','2023-05-24 12:49:54','',399,'https://divyayogamonteregie.org/ca/?p=705',0,'revision','',0),(706,1,'2023-05-24 12:50:13','2023-05-24 12:50:13','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>En una hermosa mañana, un caballero mayor, de 75 años, estaba sentado con su hijo cuando le preguntó qué estaba sentado en la ventana. Él mismo no fue capaz de reconocer lo que era, debido a su débil vista.</p><p>Su hijo respondió: \"Ese es el cuervo\".</p><p>Debido a su edad, el hombre mayor se olvidó y volvió a preguntar.</p><p>Su hijo volvió a responder lo mismo: \"Ese es el cuervo\".</p><p>Este intercambio continuó de siete a ocho veces cuando, y al final, su hijo se molestó y respondió con ira: \"¿Por qué preguntas lo mismo una y otra vez?\"</p><p>El anciano respondió con lágrimas en los ojos. \"Hijo, no te enojes. Cuando tenías 4 años me hiciste la misma pregunta 40 veces y nunca me enojé.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Sometimes We Forget... Remember To Be Kind','','inherit','closed','closed','','399-revision-v1','','','2023-05-24 12:50:13','2023-05-24 12:50:13','',399,'https://divyayogamonteregie.org/ca/?p=706',0,'revision','',0),(707,1,'2023-05-24 12:50:13','2023-05-24 12:50:13','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>En una hermosa mañana, un caballero mayor, de 75 años, estaba sentado con su hijo cuando le preguntó qué estaba sentado en la ventana. Él mismo no fue capaz de reconocer lo que era, debido a su débil vista.</p><p>Su hijo respondió: \"Ese es el cuervo\".</p><p>Debido a su edad, el hombre mayor se olvidó y volvió a preguntar.</p><p>Su hijo volvió a responder lo mismo: \"Ese es el cuervo\".</p><p>Este intercambio continuó de siete a ocho veces cuando, y al final, su hijo se molestó y respondió con ira: \"¿Por qué preguntas lo mismo una y otra vez?\"</p><p>El anciano respondió con lágrimas en los ojos. \"Hijo, no te enojes. Cuando tenías 4 años me hiciste la misma pregunta 40 veces y nunca me enojé.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Sometimes We Forget... Remember To Be Kind','','inherit','closed','closed','','399-revision-v1','','','2023-05-24 12:50:13','2023-05-24 12:50:13','',399,'https://divyayogamonteregie.org/ca/?p=707',0,'revision','',0),(708,1,'2023-05-24 12:50:13','2023-05-24 12:50:13','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">On a beautiful morning, an older gentleman, aged 75, was sitting with his son when he asked his son what was sitting in the window. He himself was not able to recognize what it was, due to his weak eyesight.</p><p style=\"text-align: justify;\">His son replied, \"That is the crow.\"</p><p style=\"text-align: justify;\">Due to his age, the older man forgot and asked again.</p><p style=\"text-align: justify;\">His son again replied the same thing, \"That is the crow.\"</p><p style=\"text-align: justify;\">This exchange continued for seven to eight times when, and at last, his son got annoyed and replied with anger, \"Why are you asking the same thing again and again?\"</p><p style=\"text-align: justify;\">The old man replied with tears in his eyes. \"Son, don\'t get angry. When you were at the age of 4 years you asked me the same question 40 times and I never got angry</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Sometimes We Forget... Remember To Be Kind','','inherit','closed','closed','','399-revision-v1','','','2023-05-24 12:50:13','2023-05-24 12:50:13','',399,'https://divyayogamonteregie.org/ca/?p=708',0,'revision','',0),(709,1,'2023-05-24 12:51:21','2023-05-24 12:51:21','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un hombre de negocios estadounidense de vacaciones parado en el muelle de un pintoresco pueblo pesquero costero en el sur de México observó cómo un pequeño bote con solo un joven pescador mexicano se detuvo en el muelle. Dentro del pequeño bote había varios atunes aleta amarilla grandes. Disfrutando del calor del sol de la tarde, el estadounidense felicitó al mexicano por la calidad de su pescado.</p><p>\"¿Cuánto tiempo te llevó atraparlos?\", Preguntó casualmente el estadounidense.</p><p>\"Oh, unas horas\", respondió el pescador mexicano.</p><p>\"¿Por qué no te quedas más tiempo y pescas más peces?\", preguntó entonces el empresario estadounidense.</p><p>El mexicano respondió calurosamente: \"Con esto tengo más que suficiente para apoyar las necesidades de mi familia\".</p><p>El hombre de negocios entonces se puso serio, \"¿Pero qué haces con el resto de tu tiempo?\"</p><p>Respondiendo con una sonrisa, el pescador mexicano respondió: \"Duermo hasta tarde, juego con mis hijos, veo juegos de pelota y tomo una siesta con mi esposa. A veces por las noches doy un paseo por el pueblo para ver a mis amigos, tocar la guitarra, cantar algunas canciones...\"</p><p>El empresario estadounidense interrumpió con impaciencia: \"Mira, tengo un MBA de Harvard y puedo ayudarte a ser más rentable. Puede comenzar pescando varias horas más todos los días. A continuación, puede vender el pescado extra que captura. Con el dinero extra, puedes comprar un barco más grande. Con los ingresos adicionales que traerá un barco más grande, en poco tiempo puede comprar un segundo barco, luego un tercero, y así sucesivamente, hasta que tenga una flota completa de barcos de pesca\".</p><p>Orgulloso de su propio pensamiento agudo, elaboró con entusiasmo un gran plan que podría generar ganancias aún mayores: \"Entonces, en lugar de vender su captura a un intermediario, podrá vender su pescado directamente al procesador, o incluso abrir su propia fábrica de conservas. Eventualmente, podría controlar el producto, el procesamiento y la distribución. Podrías dejar este pequeño pueblo costero y mudarte a la Ciudad de México, o posiblemente incluso a Los Ángeles o Nueva York, donde podrías expandir aún más tu empresa\".</p><p>Como nunca había pensado en tales cosas, el pescador mexicano preguntó: \"¿Pero cuánto tiempo tomará todo esto?\"</p><p>Después de un rápido cálculo mental, el MBA de Harvard pronunció: \"Probablemente unos 15-20 años, tal vez menos si trabajas muy duro\".</p><p>\"¿Y luego qué, señor?\", preguntó el pescador.</p><p>\"¡Por qué, esa es la mejor parte!\", Respondió el empresario con una sonrisa. \"Cuando sea el momento adecuado, venderías las acciones de tu empresa al público y te volverías muy rico. Ganarías millones\".</p><p>\"¿Millones? ¿Realmente? ¿Qué haría yo con todo esto?\", preguntó el joven pescador con incredulidad.</p><p>El empresario se jactó: \"Entonces podrías jubilarte felizmente con todo el dinero que has ganado. Podrías mudarte a un pintoresco pueblo pesquero costero donde podrías dormir hasta tarde, jugar con tus nietos, ver juegos de pelota y tomar la siesta con tu esposa. Podías pasear hasta el pueblo por las noches, donde podías tocar la guitarra y cantar con tus amigos todo lo que quisieras\".<br />La moraleja de la historia es: <strong>Sepa lo que realmente importa en la vida, y puede encontrar que ya está mucho más cerca de lo que piensa.</strong></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','El pescador mexicanoThe  Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?','','inherit','closed','closed','','420-revision-v1','','','2023-05-24 12:51:21','2023-05-24 12:51:21','',420,'https://divyayogamonteregie.org/ca/?p=709',0,'revision','',0),(710,1,'2023-05-24 12:51:51','2023-05-24 12:51:51','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un hombre de negocios estadounidense de vacaciones parado en el muelle de un pintoresco pueblo pesquero costero en el sur de México observó cómo un pequeño bote con solo un joven pescador mexicano se detuvo en el muelle. Dentro del pequeño bote había varios atunes aleta amarilla grandes. Disfrutando del calor del sol de la tarde, el estadounidense felicitó al mexicano por la calidad de su pescado.</p><p>\"¿Cuánto tiempo te llevó atraparlos?\", Preguntó casualmente el estadounidense.</p><p>\"Oh, unas horas\", respondió el pescador mexicano.</p><p>\"¿Por qué no te quedas más tiempo y pescas más peces?\", preguntó entonces el empresario estadounidense.</p><p>El mexicano respondió calurosamente: \"Con esto tengo más que suficiente para apoyar las necesidades de mi familia\".</p><p>El hombre de negocios entonces se puso serio, \"¿Pero qué haces con el resto de tu tiempo?\"</p><p>Respondiendo con una sonrisa, el pescador mexicano respondió: \"Duermo hasta tarde, juego con mis hijos, veo juegos de pelota y tomo una siesta con mi esposa. A veces por las noches doy un paseo por el pueblo para ver a mis amigos, tocar la guitarra, cantar algunas canciones...\"</p><p>El empresario estadounidense interrumpió con impaciencia: \"Mira, tengo un MBA de Harvard y puedo ayudarte a ser más rentable. Puede comenzar pescando varias horas más todos los días. A continuación, puede vender el pescado extra que captura. Con el dinero extra, puedes comprar un barco más grande. Con los ingresos adicionales que traerá un barco más grande, en poco tiempo puede comprar un segundo barco, luego un tercero, y así sucesivamente, hasta que tenga una flota completa de barcos de pesca\".</p><p>Orgulloso de su propio pensamiento agudo, elaboró con entusiasmo un gran plan que podría generar ganancias aún mayores: \"Entonces, en lugar de vender su captura a un intermediario, podrá vender su pescado directamente al procesador, o incluso abrir su propia fábrica de conservas. Eventualmente, podría controlar el producto, el procesamiento y la distribución. Podrías dejar este pequeño pueblo costero y mudarte a la Ciudad de México, o posiblemente incluso a Los Ángeles o Nueva York, donde podrías expandir aún más tu empresa\".</p><p>Como nunca había pensado en tales cosas, el pescador mexicano preguntó: \"¿Pero cuánto tiempo tomará todo esto?\"</p><p>Después de un rápido cálculo mental, el MBA de Harvard pronunció: \"Probablemente unos 15-20 años, tal vez menos si trabajas muy duro\".</p><p>\"¿Y luego qué, señor?\", preguntó el pescador.</p><p>\"¡Por qué, esa es la mejor parte!\", Respondió el empresario con una sonrisa. \"Cuando sea el momento adecuado, venderías las acciones de tu empresa al público y te volverías muy rico. Ganarías millones\".</p><p>\"¿Millones? ¿Realmente? ¿Qué haría yo con todo esto?\", preguntó el joven pescador con incredulidad.</p><p>El empresario se jactó: \"Entonces podrías jubilarte felizmente con todo el dinero que has ganado. Podrías mudarte a un pintoresco pueblo pesquero costero donde podrías dormir hasta tarde, jugar con tus nietos, ver juegos de pelota y tomar la siesta con tu esposa. Podías pasear hasta el pueblo por las noches, donde podías tocar la guitarra y cantar con tus amigos todo lo que quisieras\".<br />La moraleja de la historia es: <strong>Sepa lo que realmente importa en la vida, y puede encontrar que ya está mucho más cerca de lo que piensa.</strong></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The  Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?','','inherit','closed','closed','','420-revision-v1','','','2023-05-24 12:51:51','2023-05-24 12:51:51','',420,'https://divyayogamonteregie.org/ca/?p=710',0,'revision','',0),(711,1,'2023-05-24 12:52:29','2023-05-24 12:52:29','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un hombre de negocios estadounidense de vacaciones parado en el muelle de un pintoresco pueblo pesquero costero en el sur de México observó cómo un pequeño bote con solo un joven pescador mexicano se detuvo en el muelle. Dentro del pequeño bote había varios atunes aleta amarilla grandes. Disfrutando del calor del sol de la tarde, el estadounidense felicitó al mexicano por la calidad de su pescado.</p><p>\"¿Cuánto tiempo te llevó atraparlos?\", Preguntó casualmente el estadounidense.</p><p>\"Oh, unas horas\", respondió el pescador mexicano.</p><p>\"¿Por qué no te quedas más tiempo y pescas más peces?\", preguntó entonces el empresario estadounidense.</p><p>El mexicano respondió calurosamente: \"Con esto tengo más que suficiente para apoyar las necesidades de mi familia\".</p><p>El hombre de negocios entonces se puso serio, \"¿Pero qué haces con el resto de tu tiempo?\"</p><p>Respondiendo con una sonrisa, el pescador mexicano respondió: \"Duermo hasta tarde, juego con mis hijos, veo juegos de pelota y tomo una siesta con mi esposa. A veces por las noches doy un paseo por el pueblo para ver a mis amigos, tocar la guitarra, cantar algunas canciones...\"</p><p>El empresario estadounidense interrumpió con impaciencia: \"Mira, tengo un MBA de Harvard y puedo ayudarte a ser más rentable. Puede comenzar pescando varias horas más todos los días. A continuación, puede vender el pescado extra que captura. Con el dinero extra, puedes comprar un barco más grande. Con los ingresos adicionales que traerá un barco más grande, en poco tiempo puede comprar un segundo barco, luego un tercero, y así sucesivamente, hasta que tenga una flota completa de barcos de pesca\".</p><p>Orgulloso de su propio pensamiento agudo, elaboró con entusiasmo un gran plan que podría generar ganancias aún mayores: \"Entonces, en lugar de vender su captura a un intermediario, podrá vender su pescado directamente al procesador, o incluso abrir su propia fábrica de conservas. Eventualmente, podría controlar el producto, el procesamiento y la distribución. Podrías dejar este pequeño pueblo costero y mudarte a la Ciudad de México, o posiblemente incluso a Los Ángeles o Nueva York, donde podrías expandir aún más tu empresa\".</p><p>Como nunca había pensado en tales cosas, el pescador mexicano preguntó: \"¿Pero cuánto tiempo tomará todo esto?\"</p><p>Después de un rápido cálculo mental, el MBA de Harvard pronunció: \"Probablemente unos 15-20 años, tal vez menos si trabajas muy duro\".</p><p>\"¿Y luego qué, señor?\", preguntó el pescador.</p><p>\"¡Por qué, esa es la mejor parte!\", Respondió el empresario con una sonrisa. \"Cuando sea el momento adecuado, venderías las acciones de tu empresa al público y te volverías muy rico. Ganarías millones\".</p><p>\"¿Millones? ¿Realmente? ¿Qué haría yo con todo esto?\", preguntó el joven pescador con incredulidad.</p><p>El empresario se jactó: \"Entonces podrías jubilarte felizmente con todo el dinero que has ganado. Podrías mudarte a un pintoresco pueblo pesquero costero donde podrías dormir hasta tarde, jugar con tus nietos, ver juegos de pelota y tomar la siesta con tu esposa. Podías pasear hasta el pueblo por las noches, donde podías tocar la guitarra y cantar con tus amigos todo lo que quisieras\".<br />La moraleja de la historia es: <strong>Sepa lo que realmente importa en la vida, y puede encontrar que ya está mucho más cerca de lo que piensa.</strong></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The  Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?','','inherit','closed','closed','','420-revision-v1','','','2023-05-24 12:52:29','2023-05-24 12:52:29','',420,'https://divyayogamonteregie.org/ca/?p=711',0,'revision','',0),(712,1,'2023-05-24 12:52:29','2023-05-24 12:52:29','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un hombre de negocios estadounidense de vacaciones parado en el muelle de un pintoresco pueblo pesquero costero en el sur de México observó cómo un pequeño bote con solo un joven pescador mexicano se detuvo en el muelle. Dentro del pequeño bote había varios atunes aleta amarilla grandes. Disfrutando del calor del sol de la tarde, el estadounidense felicitó al mexicano por la calidad de su pescado.</p><p>\"¿Cuánto tiempo te llevó atraparlos?\", Preguntó casualmente el estadounidense.</p><p>\"Oh, unas horas\", respondió el pescador mexicano.</p><p>\"¿Por qué no te quedas más tiempo y pescas más peces?\", preguntó entonces el empresario estadounidense.</p><p>El mexicano respondió calurosamente: \"Con esto tengo más que suficiente para apoyar las necesidades de mi familia\".</p><p>El hombre de negocios entonces se puso serio, \"¿Pero qué haces con el resto de tu tiempo?\"</p><p>Respondiendo con una sonrisa, el pescador mexicano respondió: \"Duermo hasta tarde, juego con mis hijos, veo juegos de pelota y tomo una siesta con mi esposa. A veces por las noches doy un paseo por el pueblo para ver a mis amigos, tocar la guitarra, cantar algunas canciones...\"</p><p>El empresario estadounidense interrumpió con impaciencia: \"Mira, tengo un MBA de Harvard y puedo ayudarte a ser más rentable. Puede comenzar pescando varias horas más todos los días. A continuación, puede vender el pescado extra que captura. Con el dinero extra, puedes comprar un barco más grande. Con los ingresos adicionales que traerá un barco más grande, en poco tiempo puede comprar un segundo barco, luego un tercero, y así sucesivamente, hasta que tenga una flota completa de barcos de pesca\".</p><p>Orgulloso de su propio pensamiento agudo, elaboró con entusiasmo un gran plan que podría generar ganancias aún mayores: \"Entonces, en lugar de vender su captura a un intermediario, podrá vender su pescado directamente al procesador, o incluso abrir su propia fábrica de conservas. Eventualmente, podría controlar el producto, el procesamiento y la distribución. Podrías dejar este pequeño pueblo costero y mudarte a la Ciudad de México, o posiblemente incluso a Los Ángeles o Nueva York, donde podrías expandir aún más tu empresa\".</p><p>Como nunca había pensado en tales cosas, el pescador mexicano preguntó: \"¿Pero cuánto tiempo tomará todo esto?\"</p><p>Después de un rápido cálculo mental, el MBA de Harvard pronunció: \"Probablemente unos 15-20 años, tal vez menos si trabajas muy duro\".</p><p>\"¿Y luego qué, señor?\", preguntó el pescador.</p><p>\"¡Por qué, esa es la mejor parte!\", Respondió el empresario con una sonrisa. \"Cuando sea el momento adecuado, venderías las acciones de tu empresa al público y te volverías muy rico. Ganarías millones\".</p><p>\"¿Millones? ¿Realmente? ¿Qué haría yo con todo esto?\", preguntó el joven pescador con incredulidad.</p><p>El empresario se jactó: \"Entonces podrías jubilarte felizmente con todo el dinero que has ganado. Podrías mudarte a un pintoresco pueblo pesquero costero donde podrías dormir hasta tarde, jugar con tus nietos, ver juegos de pelota y tomar la siesta con tu esposa. Podías pasear hasta el pueblo por las noches, donde podías tocar la guitarra y cantar con tus amigos todo lo que quisieras\".<br />La moraleja de la historia es: <strong>Sepa lo que realmente importa en la vida, y puede encontrar que ya está mucho más cerca de lo que piensa.</strong></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The  Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?','','inherit','closed','closed','','420-revision-v1','','','2023-05-24 12:52:29','2023-05-24 12:52:29','',420,'https://divyayogamonteregie.org/ca/?p=712',0,'revision','',0),(713,1,'2023-05-24 12:52:29','2023-05-24 12:52:29','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">A vacationing American businessman standing on the pier of a quaint coastal fishing village in southern Mexico watched as a small boat with just one young Mexican fisherman pulled into the dock. Inside the small boat were several large yellowfin tuna. Enjoying the warmth of the early afternoon sun, the American complimented the Mexican on the quality of his fish.</p><p style=\"text-align: justify;\">\"How long did it take you to catch them?\" the American casually asked.</p><p style=\"text-align: justify;\">\"Oh, a few hours,\" the Mexican fisherman replied.</p><p style=\"text-align: justify;\">\"Why don\'t you stay out longer and catch more fish?\" the American businessman then asked.</p><p style=\"text-align: justify;\">The Mexican warmly replied, \"With this I have more than enough to support my family\'s needs.\"</p><p style=\"text-align: justify;\">The businessman then became serious, \"But what do you do with the rest of your time?\"</p><p style=\"text-align: justify;\">Responding with a smile, the Mexican fisherman answered, \"I sleep late, play with my children, watch ballgames, and take siesta with my wife. Sometimes in the evenings I take a stroll into the village to see my friends, play the guitar, sing a few songs...\"</p><p style=\"text-align: justify;\">The American businessman impatiently interrupted, \"Look, I have an MBA from Harvard, and I can help you to be more profitable. You can start by fishing several hours longer every day. You can then sell the extra fish you catch. With the extra money, you can buy a bigger boat. With the additional income that larger boat will bring, before long you can buy a second boat, then a third one, and so on, until you have an entire fleet of fishing boats.\"</p><p style=\"text-align: justify;\">Proud of his own sharp thinking, he excitedly elaborated a grand scheme which could bring even bigger profits, \"Then, instead of selling your catch to a middleman you\'ll be able to sell your fish directly to the processor, or even open your own cannery. Eventually, you could control the product, processing and distribution. You could leave this tiny coastal village and move to Mexico City, or possibly even Los Angeles or New York City, where you could even further expand your enterprise.\"</p><p style=\"text-align: justify;\">Having never thought of such things, the Mexican fisherman asked, \"But how long will all this take?\"</p><p style=\"text-align: justify;\">After a rapid mental calculation, the Harvard MBA pronounced, \"Probably about 15-20 years, maybe less if you work really hard.\"</p><p style=\"text-align: justify;\">\"And then what, señor?\" asked the fisherman.</p><p style=\"text-align: justify;\">\"Why, that\'s the best part!\" answered the businessman with a laugh. \"When the time is right, you would sell your company stock to the public and become very rich. You would make millions.\"</p><p style=\"text-align: justify;\">\"Millions? Really? What would I do with it all?\" asked the young fisherman in disbelief.</p><p style=\"text-align: justify;\">The businessman boasted, \"Then you could happily retire with all the money you\'ve made. You could move to a quaint coastal fishing village where you could sleep late, play with your grandchildren, watch ballgames, and take siesta with your wife. You could stroll to the village in the evenings where you could play the guitar and sing with your friends all you want.\"<br />The moral of the story is: <strong>Know what really matters in life, and you may find that it is already much closer than you think</strong></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The  Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?','','inherit','closed','closed','','420-revision-v1','','','2023-05-24 12:52:29','2023-05-24 12:52:29','',420,'https://divyayogamonteregie.org/ca/?p=713',0,'revision','',0),(714,1,'2023-05-24 12:53:16','2023-05-24 12:53:16','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Este es un mensaje poderoso para nuestra sociedad moderna. Parece que hemos perdido nuestro rumbo y nuestro sentido de dirección.</p><p>Una persona joven académicamente excelente fue a solicitar un puesto directivo en una gran empresa. Pasó la primera entrevista; El director hizo la última entrevista. El director descubrió en el CV que los logros académicos del joven fueron excelentes hasta el final, desde la escuela secundaria hasta la investigación de posgrado, nunca tuvo un año en el que no puntuó.</p><p>El director preguntó: \"¿Obtuviste alguna beca en la escuela?\"</p><p>El joven respondió: \"Ninguno\".</p><p>El director preguntó: \"¿Fue tu padre quien pagó tus cuotas escolares?\"</p><p>El joven respondió: \"Mi padre falleció cuando yo tenía un año, fue mi madre quien pagó mis cuotas escolares\".</p><p>El director preguntó: \"¿Dónde trabajaba tu madre?\"</p><p>El joven respondió: \"Mi madre trabajaba como lavandera\".</p><p>El director le pidió al joven que mostrara sus manos. El joven mostró un par de manos que eran suaves y perfectas.</p><p>El director preguntó: \"¿Alguna vez has ayudado a tu madre a lavar la ropa antes?\"</p><p>El joven respondió: \"Nunca, mi madre siempre quiso que estudiara y leyera más libros. Además, mi madre puede lavar la ropa más rápido que yo\".</p><p>El director dijo: \"Tengo una solicitud. Cuando regreses hoy, ve y limpia las manos de tu madre, y luego mírame mañana por la mañana\".</p><p>El joven sintió que sus posibilidades de conseguir el trabajo eran altas. Cuando regresó, felizmente le pidió a su madre que le permitiera limpiarse las manos. Su madre se sintió extraña. Feliz pero con sentimientos encontrados, mostró sus manos al joven.</p><p>El joven limpió las manos de su madre lentamente. Su lágrima cayó mientras lo hacía. Fue la primera vez que notó que las manos de su madre estaban tan arrugadas y había tantos moretones en sus manos. Algunos moretones eran tan dolorosos que su madre se estremeció cuando los limpiaron con agua.</p><p>Esta fue la primera vez que el joven se dio cuenta de que era este par de manos las que lavaban la ropa todos los días para permitirle pagar la cuota escolar. Los moretones en las manos de la madre fueron el precio que la madre tuvo que pagar por su graduación, excelencia académica y su futuro.</p><p>Después de terminar la limpieza de las manos de su madre, el joven lavó en silencio toda la ropa restante para su madre.</p><p>Esa noche, madre e hijo hablaron durante mucho tiempo.</p><p>A la mañana siguiente, el joven fue a la oficina del director.</p><p>El director notó las lágrimas en los ojos del joven y preguntó: \"¿Puede decirme qué ha hecho y aprendido ayer en su casa?\"</p><p>El joven respondió: \"Limpié las manos de mi madre y también terminé de limpiar toda la ropa restante\".</p><p>El director preguntó: \"Por favor, dígame sus sentimientos\".</p><p>El joven dijo:</p><ol><li>Ahora sé lo que es el aprecio. Sin mi madre, no habría habido el éxito de mí hoy.</li><li>Al trabajar juntos y ayudar a mi madre, solo ahora me doy cuenta de lo difícil y difícil que es hacer algo.</li><li>He llegado a apreciar la importancia y el valor de las relaciones familiares.</li></ol><p>El director dijo: \"Esto es lo que estoy buscando para ser mi gerente. Quiero reclutar a una persona que pueda apreciar la ayuda de los demás, una persona que conozca los sufrimientos de los demás para hacer las cosas, y una persona que no ponga el dinero como su único objetivo en la vida. Estás contratado\".</p><p>Más tarde, este joven trabajó muy duro y recibió el respeto de sus subordinados. Cada empleado trabajó diligentemente y en equipo. El rendimiento de la compañía mejoró enormemente</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The appriciation','','inherit','closed','closed','','425-revision-v1','','','2023-05-24 12:53:16','2023-05-24 12:53:16','',425,'https://divyayogamonteregie.org/ca/?p=714',0,'revision','',0),(715,1,'2023-05-24 12:53:55','2023-05-24 12:53:55','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Este es un mensaje poderoso para nuestra sociedad moderna. Parece que hemos perdido nuestro rumbo y nuestro sentido de dirección.</p><p>Una persona joven académicamente excelente fue a solicitar un puesto directivo en una gran empresa. Pasó la primera entrevista; El director hizo la última entrevista. El director descubrió en el CV que los logros académicos del joven fueron excelentes hasta el final, desde la escuela secundaria hasta la investigación de posgrado, nunca tuvo un año en el que no puntuó.</p><p>El director preguntó: \"¿Obtuviste alguna beca en la escuela?\"</p><p>El joven respondió: \"Ninguno\".</p><p>El director preguntó: \"¿Fue tu padre quien pagó tus cuotas escolares?\"</p><p>El joven respondió: \"Mi padre falleció cuando yo tenía un año, fue mi madre quien pagó mis cuotas escolares\".</p><p>El director preguntó: \"¿Dónde trabajaba tu madre?\"</p><p>El joven respondió: \"Mi madre trabajaba como lavandera\".</p><p>El director le pidió al joven que mostrara sus manos. El joven mostró un par de manos que eran suaves y perfectas.</p><p>El director preguntó: \"¿Alguna vez has ayudado a tu madre a lavar la ropa antes?\"</p><p>El joven respondió: \"Nunca, mi madre siempre quiso que estudiara y leyera más libros. Además, mi madre puede lavar la ropa más rápido que yo\".</p><p>El director dijo: \"Tengo una solicitud. Cuando regreses hoy, ve y limpia las manos de tu madre, y luego mírame mañana por la mañana\".</p><p>El joven sintió que sus posibilidades de conseguir el trabajo eran altas. Cuando regresó, felizmente le pidió a su madre que le permitiera limpiarse las manos. Su madre se sintió extraña. Feliz pero con sentimientos encontrados, mostró sus manos al joven.</p><p>El joven limpió las manos de su madre lentamente. Su lágrima cayó mientras lo hacía. Fue la primera vez que notó que las manos de su madre estaban tan arrugadas y había tantos moretones en sus manos. Algunos moretones eran tan dolorosos que su madre se estremeció cuando los limpiaron con agua.</p><p>Esta fue la primera vez que el joven se dio cuenta de que era este par de manos las que lavaban la ropa todos los días para permitirle pagar la cuota escolar. Los moretones en las manos de la madre fueron el precio que la madre tuvo que pagar por su graduación, excelencia académica y su futuro.</p><p>Después de terminar la limpieza de las manos de su madre, el joven lavó en silencio toda la ropa restante para su madre.</p><p>Esa noche, madre e hijo hablaron durante mucho tiempo.</p><p>A la mañana siguiente, el joven fue a la oficina del director.</p><p>El director notó las lágrimas en los ojos del joven y preguntó: \"¿Puede decirme qué ha hecho y aprendido ayer en su casa?\"</p><p>El joven respondió: \"Limpié las manos de mi madre y también terminé de limpiar toda la ropa restante\".</p><p>El director preguntó: \"Por favor, dígame sus sentimientos\".</p><p>El joven dijo:</p><ol><li>Ahora sé lo que es el aprecio. Sin mi madre, no habría habido el éxito de mí hoy.</li><li>Al trabajar juntos y ayudar a mi madre, solo ahora me doy cuenta de lo difícil y difícil que es hacer algo.</li><li>He llegado a apreciar la importancia y el valor de las relaciones familiares.</li></ol><p>El director dijo: \"Esto es lo que estoy buscando para ser mi gerente. Quiero reclutar a una persona que pueda apreciar la ayuda de los demás, una persona que conozca los sufrimientos de los demás para hacer las cosas, y una persona que no ponga el dinero como su único objetivo en la vida. Estás contratado\".</p><p>Más tarde, este joven trabajó muy duro y recibió el respeto de sus subordinados. Cada empleado trabajó diligentemente y en equipo. El rendimiento de la compañía mejoró enormemente</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The appriciation','','inherit','closed','closed','','425-revision-v1','','','2023-05-24 12:53:55','2023-05-24 12:53:55','',425,'https://divyayogamonteregie.org/ca/?p=715',0,'revision','',0),(716,1,'2023-05-24 12:53:55','2023-05-24 12:53:55','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Este es un mensaje poderoso para nuestra sociedad moderna. Parece que hemos perdido nuestro rumbo y nuestro sentido de dirección.</p><p>Una persona joven académicamente excelente fue a solicitar un puesto directivo en una gran empresa. Pasó la primera entrevista; El director hizo la última entrevista. El director descubrió en el CV que los logros académicos del joven fueron excelentes hasta el final, desde la escuela secundaria hasta la investigación de posgrado, nunca tuvo un año en el que no puntuó.</p><p>El director preguntó: \"¿Obtuviste alguna beca en la escuela?\"</p><p>El joven respondió: \"Ninguno\".</p><p>El director preguntó: \"¿Fue tu padre quien pagó tus cuotas escolares?\"</p><p>El joven respondió: \"Mi padre falleció cuando yo tenía un año, fue mi madre quien pagó mis cuotas escolares\".</p><p>El director preguntó: \"¿Dónde trabajaba tu madre?\"</p><p>El joven respondió: \"Mi madre trabajaba como lavandera\".</p><p>El director le pidió al joven que mostrara sus manos. El joven mostró un par de manos que eran suaves y perfectas.</p><p>El director preguntó: \"¿Alguna vez has ayudado a tu madre a lavar la ropa antes?\"</p><p>El joven respondió: \"Nunca, mi madre siempre quiso que estudiara y leyera más libros. Además, mi madre puede lavar la ropa más rápido que yo\".</p><p>El director dijo: \"Tengo una solicitud. Cuando regreses hoy, ve y limpia las manos de tu madre, y luego mírame mañana por la mañana\".</p><p>El joven sintió que sus posibilidades de conseguir el trabajo eran altas. Cuando regresó, felizmente le pidió a su madre que le permitiera limpiarse las manos. Su madre se sintió extraña. Feliz pero con sentimientos encontrados, mostró sus manos al joven.</p><p>El joven limpió las manos de su madre lentamente. Su lágrima cayó mientras lo hacía. Fue la primera vez que notó que las manos de su madre estaban tan arrugadas y había tantos moretones en sus manos. Algunos moretones eran tan dolorosos que su madre se estremeció cuando los limpiaron con agua.</p><p>Esta fue la primera vez que el joven se dio cuenta de que era este par de manos las que lavaban la ropa todos los días para permitirle pagar la cuota escolar. Los moretones en las manos de la madre fueron el precio que la madre tuvo que pagar por su graduación, excelencia académica y su futuro.</p><p>Después de terminar la limpieza de las manos de su madre, el joven lavó en silencio toda la ropa restante para su madre.</p><p>Esa noche, madre e hijo hablaron durante mucho tiempo.</p><p>A la mañana siguiente, el joven fue a la oficina del director.</p><p>El director notó las lágrimas en los ojos del joven y preguntó: \"¿Puede decirme qué ha hecho y aprendido ayer en su casa?\"</p><p>El joven respondió: \"Limpié las manos de mi madre y también terminé de limpiar toda la ropa restante\".</p><p>El director preguntó: \"Por favor, dígame sus sentimientos\".</p><p>El joven dijo:</p><ol><li>Ahora sé lo que es el aprecio. Sin mi madre, no habría habido el éxito de mí hoy.</li><li>Al trabajar juntos y ayudar a mi madre, solo ahora me doy cuenta de lo difícil y difícil que es hacer algo.</li><li>He llegado a apreciar la importancia y el valor de las relaciones familiares.</li></ol><p>El director dijo: \"Esto es lo que estoy buscando para ser mi gerente. Quiero reclutar a una persona que pueda apreciar la ayuda de los demás, una persona que conozca los sufrimientos de los demás para hacer las cosas, y una persona que no ponga el dinero como su único objetivo en la vida. Estás contratado\".</p><p>Más tarde, este joven trabajó muy duro y recibió el respeto de sus subordinados. Cada empleado trabajó diligentemente y en equipo. El rendimiento de la compañía mejoró enormemente</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The appriciation','','inherit','closed','closed','','425-revision-v1','','','2023-05-24 12:53:55','2023-05-24 12:53:55','',425,'https://divyayogamonteregie.org/ca/?p=716',0,'revision','',0),(717,1,'2023-05-24 12:53:56','2023-05-24 12:53:56','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">This is a powerful message for our modern society. We seem to have lost our bearing and our sense of direction.</p><p style=\"text-align: justify;\">One young academically excellent person went to apply for a managerial position in a big company. He passed the first interview; the director did the last interview. The director discovered from the CV that the youth\'s academic achievements were excellent all the way, from the secondary school until the postgraduate research, never had a year when he did not score.</p><p style=\"text-align: justify;\">The director asked, \"Did you obtain any scholarships in school?\"</p><p style=\"text-align: justify;\">The youth answered, \"None.\"</p><p style=\"text-align: justify;\">The director asked, \"Was it your father who paid for your school fees?\"</p><p style=\"text-align: justify;\">The youth answered, \"My father passed away when I was one year old, it was my mother who paid for my school fees.\"</p><p style=\"text-align: justify;\">The director asked, \"Where did your mother work?\"</p><p style=\"text-align: justify;\">The youth answered, \"My mother worked as laundry woman.\"</p><p style=\"text-align: justify;\">The director requested the youth to show his hands. The youth showed a pair of hands that were smooth and perfect.</p><p style=\"text-align: justify;\">The director asked, \"Have you ever helped your mother wash the clothes before?\"</p><p style=\"text-align: justify;\">The youth answered, \"Never, my mother always wanted me to study and read more books. Furthermore, my mother can wash clothes faster than me.\"</p><p style=\"text-align: justify;\">The director said, \"I have a request. When you go back today, go and clean your mother\'s hands, and then see me tomorrow morning.\"</p><p style=\"text-align: justify;\">The youth felt that his chance of landing the job was high. When he went back, he happily requested his mother to let him clean her hands. His mother felt strange. Happy but with mixed feelings, she showed her hands to the young man.</p><p style=\"text-align: justify;\">The youth cleaned his mother\'s hands slowly. His tear fell as he did that. It was the first time he noticed that his mother\'s hands were so wrinkled, and there were so many bruises in her hands. Some bruises were so painful that his mother shivered when they were cleaned with water.</p><p style=\"text-align: justify;\">This was the first time the youth realized that it was this pair of hands that washed the clothes everyday to enable him to pay the school fee. The bruises in the mother\'s hands were the price that the mother had to pay for his graduation, academic excellence and his future.</p><p style=\"text-align: justify;\">After finishing the cleaning of his mother\'s hands, the youth quietly washed all the remaining clothes for his mother.</p><p style=\"text-align: justify;\">That night, mother and son talked for a very long time.</p><p style=\"text-align: justify;\">Next morning, the youth went to the director\'s office.</p><p style=\"text-align: justify;\">The Director noticed the tears in the youth\'s eyes, asked: \"Can you tell me what have you done and learned yesterday in your house?\"</p><p style=\"text-align: justify;\">The youth answered, \"I cleaned my mother\'s hands and also finished cleaning all the remaining clothes.\"</p><p style=\"text-align: justify;\">The Director asked, \"Please tell me your feelings.\"</p><p style=\"text-align: justify;\">The youth said:</p><ol style=\"text-align: justify;\" start=\"1\"><li>I know now what appreciation is. Without my mother, there would not have been the successful me today.</li><li>By working together and helping my mother, only now I realize how difficult and tough it is to get something done.</li><li>I have come to appreciate the importance and value of family relationships.</li></ol><p style=\"text-align: justify;\">The director said, \"This is what I am looking for to be my manager. I want to recruit a person who can appreciate the help of others, a person who knows the sufferings of others to get things done, and a person who would not put money as his only goal in life. You are hired.\"</p><p style=\"text-align: justify;\">Later on, this young person worked very hard and received the respect of his subordinates. Every employee worked diligently and as a team. The company\'s performance improved tremendously</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The appriciation','','inherit','closed','closed','','425-revision-v1','','','2023-05-24 12:53:56','2023-05-24 12:53:56','',425,'https://divyayogamonteregie.org/ca/?p=717',0,'revision','',0),(721,1,'2023-05-24 12:55:30','2023-05-24 12:55:30','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>A disciple and his teacher were walking through the forest. The disciple was disturbed by the fact that his mind was in constant unrest.</p><p>He asked his teacher: \"Why most people\'s minds are restless, and only a few possess a calm mind? What can one do to still the mind?\"</p><p>The teacher looked at the disciple, smiled and said:<br />\"I will tell you a story. An elephant was standing and picking leaves from a tree. A small fly came, flying and buzzing near his ear. The elephant waved it away with his long ears. Then the fly came again, and the elephant waved it away once more.\"</p><p>This was repeated several times. Then the elephant asked the fly:<br />\"Why are you so restless and noisy? Why can\'t you stay for a while in one place?\"</p><p>The fly answered: \"I am attracted to whatever I see, hear or smell. My five senses, and everything that happens around me, pull me constantly in all directions, and I cannot resist them. What is your secret? How can you stay so calm and still?\"</p><p>The elephant stopped eating and said:<br />\"My five senses do not rule my attention. I am in control of my attention, and I can direct it wherever I want. This helps me to get immersed in whatever I do, and therefore, keep my mind focused and calm. Now that I am eating, I am completely immersed in eating. In this way, I can enjoy my food and chew it better. I control my attention, and not the other way around, and this helps me stay peaceful.\"</p><p>Upon hearing these words, the disciple\'s eyes opened wide, and a smile appeared on his face. He looked at his teacher and said:<br />\"I understand! My mind will be in constant unrest, if my five senses, and whatever is happening in the world around me are in control of it. On the other hand, if I am in command of my five senses, able to disregard sense impressions, my mind would become calm, and I will be able to disregard its restlessness.\"</p><p>\"Yes, that\'s right,\" answered the teacher,\" The mind is restless and goes wherever the attention is. Control your attention, and you control your mind.\"</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Elephant and the Fly','','inherit','closed','closed','','430-revision-v1','','','2023-05-24 12:55:30','2023-05-24 12:55:30','',430,'https://divyayogamonteregie.org/ca/?p=721',0,'revision','',0),(718,1,'2023-05-24 12:55:09','2023-05-24 12:55:09','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un discípulo y su maestro caminaban por el bosque. El discípulo estaba perturbado por el hecho de que su mente estaba en constante inquietud.</p><p>Le preguntó a su maestro: \"¿Por qué la mente de la mayoría de las personas están inquietas y solo unos pocos poseen una mente tranquila? ¿Qué puede uno hacer para calmar la mente?\"</p><p>El maestro miró al discípulo, sonrió y dijo:<br />\"Te contaré una historia. Un elefante estaba de pie y recogiendo hojas de un árbol. Llegó una pequeña mosca, volando y zumbando cerca de su oído. El elefante lo agitó con sus largas orejas. Entonces la mosca volvió y el elefante la despidió una vez más\".</p><p>Esto se repitió varias veces. Entonces el elefante le preguntó a la mosca:<br />\"¿Por qué estás tan inquieta y ruidosa? ¿Por qué no puedes quedarte un rato en un solo lugar?\"</p><p>La mosca respondió: \"Me atrae todo lo que veo, oigo u huelo. Mis cinco sentidos, y todo lo que sucede a mi alrededor, me tiran constantemente en todas direcciones, y no puedo resistirme a ellos. ¿Cuál es tu secreto? ¿Cómo puedes mantenerte tan tranquilo y quieto?\"</p><p>El elefante dejó de comer y dijo:<br />\"Mis cinco sentidos no gobiernan mi atención. Tengo el control de mi atención y puedo dirigirla a donde quiera. Esto me ayuda a sumergirme en todo lo que hago y, por lo tanto, mantener mi mente enfocada y tranquila. Ahora que estoy comiendo, estoy completamente inmerso en comer. De esta manera, puedo disfrutar de mi comida y masticarla mejor. Controlo mi atención, y no al revés, y esto me ayuda a mantenerme en paz\".</p><p>Al escuchar estas palabras, los ojos del discípulo se abrieron de par en par y una sonrisa apareció en su rostro. Miró a su maestro y dijo:<br />\"¡Entiendo! Mi mente estará en constante inquietud, si mis cinco sentidos, y lo que sea que esté sucediendo en el mundo que me rodea están en control de ella. Por otro lado, si estoy al mando de mis cinco sentidos, capaz de ignorar las impresiones sensoriales, mi mente se calmaría y podré ignorar su inquietud\".</p><p>\"Sí, es cierto\", respondió el maestro, \"La mente está inquieta y va a donde esté la atención. Controla tu atención y controlas tu mente\".</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Elephant and the Fly','','inherit','closed','closed','','430-revision-v1','','','2023-05-24 12:55:09','2023-05-24 12:55:09','',430,'https://divyayogamonteregie.org/ca/?p=718',0,'revision','',0),(719,1,'2023-05-24 12:55:29','2023-05-24 12:55:29','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un discípulo y su maestro caminaban por el bosque. El discípulo estaba perturbado por el hecho de que su mente estaba en constante inquietud.</p><p>Le preguntó a su maestro: \"¿Por qué la mente de la mayoría de las personas están inquietas y solo unos pocos poseen una mente tranquila? ¿Qué puede uno hacer para calmar la mente?\"</p><p>El maestro miró al discípulo, sonrió y dijo:<br />\"Te contaré una historia. Un elefante estaba de pie y recogiendo hojas de un árbol. Llegó una pequeña mosca, volando y zumbando cerca de su oído. El elefante lo agitó con sus largas orejas. Entonces la mosca volvió y el elefante la despidió una vez más\".</p><p>Esto se repitió varias veces. Entonces el elefante le preguntó a la mosca:<br />\"¿Por qué estás tan inquieta y ruidosa? ¿Por qué no puedes quedarte un rato en un solo lugar?\"</p><p>La mosca respondió: \"Me atrae todo lo que veo, oigo u huelo. Mis cinco sentidos, y todo lo que sucede a mi alrededor, me tiran constantemente en todas direcciones, y no puedo resistirme a ellos. ¿Cuál es tu secreto? ¿Cómo puedes mantenerte tan tranquilo y quieto?\"</p><p>El elefante dejó de comer y dijo:<br />\"Mis cinco sentidos no gobiernan mi atención. Tengo el control de mi atención y puedo dirigirla a donde quiera. Esto me ayuda a sumergirme en todo lo que hago y, por lo tanto, mantener mi mente enfocada y tranquila. Ahora que estoy comiendo, estoy completamente inmerso en comer. De esta manera, puedo disfrutar de mi comida y masticarla mejor. Controlo mi atención, y no al revés, y esto me ayuda a mantenerme en paz\".</p><p>Al escuchar estas palabras, los ojos del discípulo se abrieron de par en par y una sonrisa apareció en su rostro. Miró a su maestro y dijo:<br />\"¡Entiendo! Mi mente estará en constante inquietud, si mis cinco sentidos, y lo que sea que esté sucediendo en el mundo que me rodea están en control de ella. Por otro lado, si estoy al mando de mis cinco sentidos, capaz de ignorar las impresiones sensoriales, mi mente se calmaría y podré ignorar su inquietud\".</p><p>\"Sí, es cierto\", respondió el maestro, \"La mente está inquieta y va a donde esté la atención. Controla tu atención y controlas tu mente\".</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Elephant and the Fly','','inherit','closed','closed','','430-revision-v1','','','2023-05-24 12:55:29','2023-05-24 12:55:29','',430,'https://divyayogamonteregie.org/ca/?p=719',0,'revision','',0),(720,1,'2023-05-24 12:55:29','2023-05-24 12:55:29','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un discípulo y su maestro caminaban por el bosque. El discípulo estaba perturbado por el hecho de que su mente estaba en constante inquietud.</p><p>Le preguntó a su maestro: \"¿Por qué la mente de la mayoría de las personas están inquietas y solo unos pocos poseen una mente tranquila? ¿Qué puede uno hacer para calmar la mente?\"</p><p>El maestro miró al discípulo, sonrió y dijo:<br />\"Te contaré una historia. Un elefante estaba de pie y recogiendo hojas de un árbol. Llegó una pequeña mosca, volando y zumbando cerca de su oído. El elefante lo agitó con sus largas orejas. Entonces la mosca volvió y el elefante la despidió una vez más\".</p><p>Esto se repitió varias veces. Entonces el elefante le preguntó a la mosca:<br />\"¿Por qué estás tan inquieta y ruidosa? ¿Por qué no puedes quedarte un rato en un solo lugar?\"</p><p>La mosca respondió: \"Me atrae todo lo que veo, oigo u huelo. Mis cinco sentidos, y todo lo que sucede a mi alrededor, me tiran constantemente en todas direcciones, y no puedo resistirme a ellos. ¿Cuál es tu secreto? ¿Cómo puedes mantenerte tan tranquilo y quieto?\"</p><p>El elefante dejó de comer y dijo:<br />\"Mis cinco sentidos no gobiernan mi atención. Tengo el control de mi atención y puedo dirigirla a donde quiera. Esto me ayuda a sumergirme en todo lo que hago y, por lo tanto, mantener mi mente enfocada y tranquila. Ahora que estoy comiendo, estoy completamente inmerso en comer. De esta manera, puedo disfrutar de mi comida y masticarla mejor. Controlo mi atención, y no al revés, y esto me ayuda a mantenerme en paz\".</p><p>Al escuchar estas palabras, los ojos del discípulo se abrieron de par en par y una sonrisa apareció en su rostro. Miró a su maestro y dijo:<br />\"¡Entiendo! Mi mente estará en constante inquietud, si mis cinco sentidos, y lo que sea que esté sucediendo en el mundo que me rodea están en control de ella. Por otro lado, si estoy al mando de mis cinco sentidos, capaz de ignorar las impresiones sensoriales, mi mente se calmaría y podré ignorar su inquietud\".</p><p>\"Sí, es cierto\", respondió el maestro, \"La mente está inquieta y va a donde esté la atención. Controla tu atención y controlas tu mente\".</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Elephant and the Fly','','inherit','closed','closed','','430-revision-v1','','','2023-05-24 12:55:29','2023-05-24 12:55:29','',430,'https://divyayogamonteregie.org/ca/?p=720',0,'revision','',0),(722,1,'2023-05-24 12:56:30','2023-05-24 12:56:30','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Había una vez un niño pequeño que tenía mal genio. Su padre le dio una bolsa de clavos y le dijo que cada vez que perdiera los estribos, debía clavar un clavo en la cerca. El primer día el niño había clavado 37 clavos en la cerca. Durante las siguientes semanas, a medida que aprendió a controlar su ira, el número de clavos martillados diariamente, disminuyó gradualmente. Descubrió que era más fácil mantener el temperamento que clavar esos clavos en la cerca.</p><p>Finalmente llegó el día en que el niño no perdió los estribos en absoluto. Se lo contó a su padre y el padre sugirió que el niño ahora sacara un clavo por cada día que pudiera mantener su temperamento. Los días pasaron y el niño finalmente pudo decirle a su padre que todas las uñas habían desaparecido.</p><p>El padre tomó a su hijo de la mano y lo llevó a la cerca. Él dijo: \"Lo has hecho bien, hijo mío, pero mira los agujeros en la cerca. La valla nunca será la misma. Cuando dices cosas con ira, dejan una cicatriz como esta\". Puedes poner un cuchillo en un hombre y sacarlo. No importará cuántas veces digas que lo siento, la herida todavía está allí. Asegúrate de controlar tu temperamento la próxima vez que te sientas tentado a decir algo de lo que te arrepentirás más tarde.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The fence','','inherit','closed','closed','','435-revision-v1','','','2023-05-24 12:56:30','2023-05-24 12:56:30','',435,'https://divyayogamonteregie.org/ca/?p=722',0,'revision','',0),(723,1,'2023-05-24 12:57:01','2023-05-24 12:57:01','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Había una vez un niño pequeño que tenía mal genio. Su padre le dio una bolsa de clavos y le dijo que cada vez que perdiera los estribos, debía clavar un clavo en la cerca. El primer día el niño había clavado 37 clavos en la cerca. Durante las siguientes semanas, a medida que aprendió a controlar su ira, el número de clavos martillados diariamente, disminuyó gradualmente. Descubrió que era más fácil mantener el temperamento que clavar esos clavos en la cerca.</p><p>Finalmente llegó el día en que el niño no perdió los estribos en absoluto. Se lo contó a su padre y el padre sugirió que el niño ahora sacara un clavo por cada día que pudiera mantener su temperamento. Los días pasaron y el niño finalmente pudo decirle a su padre que todas las uñas habían desaparecido.</p><p>El padre tomó a su hijo de la mano y lo llevó a la cerca. Él dijo: \"Lo has hecho bien, hijo mío, pero mira los agujeros en la cerca. La valla nunca será la misma. Cuando dices cosas con ira, dejan una cicatriz como esta\". Puedes poner un cuchillo en un hombre y sacarlo. No importará cuántas veces digas que lo siento, la herida todavía está allí. Asegúrate de controlar tu temperamento la próxima vez que te sientas tentado a decir algo de lo que te arrepentirás más tarde.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The fence','','inherit','closed','closed','','435-revision-v1','','','2023-05-24 12:57:01','2023-05-24 12:57:01','',435,'https://divyayogamonteregie.org/ca/?p=723',0,'revision','',0),(724,1,'2023-05-24 12:57:01','2023-05-24 12:57:01','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Había una vez un niño pequeño que tenía mal genio. Su padre le dio una bolsa de clavos y le dijo que cada vez que perdiera los estribos, debía clavar un clavo en la cerca. El primer día el niño había clavado 37 clavos en la cerca. Durante las siguientes semanas, a medida que aprendió a controlar su ira, el número de clavos martillados diariamente, disminuyó gradualmente. Descubrió que era más fácil mantener el temperamento que clavar esos clavos en la cerca.</p><p>Finalmente llegó el día en que el niño no perdió los estribos en absoluto. Se lo contó a su padre y el padre sugirió que el niño ahora sacara un clavo por cada día que pudiera mantener su temperamento. Los días pasaron y el niño finalmente pudo decirle a su padre que todas las uñas habían desaparecido.</p><p>El padre tomó a su hijo de la mano y lo llevó a la cerca. Él dijo: \"Lo has hecho bien, hijo mío, pero mira los agujeros en la cerca. La valla nunca será la misma. Cuando dices cosas con ira, dejan una cicatriz como esta\". Puedes poner un cuchillo en un hombre y sacarlo. No importará cuántas veces digas que lo siento, la herida todavía está allí. Asegúrate de controlar tu temperamento la próxima vez que te sientas tentado a decir algo de lo que te arrepentirás más tarde.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The fence','','inherit','closed','closed','','435-revision-v1','','','2023-05-24 12:57:01','2023-05-24 12:57:01','',435,'https://divyayogamonteregie.org/ca/?p=724',0,'revision','',0),(725,1,'2023-05-24 12:57:01','2023-05-24 12:57:01','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">There once was a little boy who had a bad temper. His father gave him a bag of nails and told him that every time he lost his temper, he must hammer a nail into the fence. The first day the boy had driven 37 nails into the fence. Over the next few weeks as he learned to control his anger, the number of nails hammered daily, gradually dwindled down. He discovered it was easier to hold his temper than to drive those nails into the fence.</p><p style=\"text-align: justify;\">Finally the day came when the boy didn\'t lose his temper at all. He told his father about it and the father suggested that the boy now pull out one nail for each day that he was able to hold his temper. The days passed and the young boy was finally able to tell his father that all the nails were gone.</p><p style=\"text-align: justify;\">The father took his son by the hand and led him to the fence. He said \"you have done well, my son, but look at the holes in the fence. The fence will never be the same. When you say things in anger, they leave a scar just like this one.\" You can put a knife in a man and draw it out. It won\'t matter how many times you say I\'m sorry, the wound is still there. Make sure you control your temper the next time you are tempted to say something you will regret later.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The fence','','inherit','closed','closed','','435-revision-v1','','','2023-05-24 12:57:01','2023-05-24 12:57:01','',435,'https://divyayogamonteregie.org/ca/?p=725',0,'revision','',0),(726,1,'2023-05-24 12:58:15','2023-05-24 12:58:15','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Cuando tenía 5 años, mi madre siempre me decía que la felicidad era la clave de la vida. Cuando fui a la escuela, me preguntaron qué quería ser cuando creciera.</p><p>Escribí \'feliz\'. Me dijeron que no entendía la tarea, y les dije que no entendían la vida.</p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Happiness','','inherit','closed','closed','','440-revision-v1','','','2023-05-24 12:58:15','2023-05-24 12:58:15','',440,'https://divyayogamonteregie.org/ca/?p=726',0,'revision','',0),(727,1,'2023-05-24 12:58:42','2023-05-24 12:58:42','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Cuando tenía 5 años, mi madre siempre me decía que la felicidad era la clave de la vida. Cuando fui a la escuela, me preguntaron qué quería ser cuando creciera.</p><p>Escribí \'feliz\'. Me dijeron que no entendía la tarea, y les dije que no entendían la vida.</p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Happiness','','inherit','closed','closed','','440-revision-v1','','','2023-05-24 12:58:42','2023-05-24 12:58:42','',440,'https://divyayogamonteregie.org/ca/?p=727',0,'revision','',0),(728,1,'2023-05-24 12:58:42','2023-05-24 12:58:42','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Cuando tenía 5 años, mi madre siempre me decía que la felicidad era la clave de la vida. Cuando fui a la escuela, me preguntaron qué quería ser cuando creciera.</p><p>Escribí \'feliz\'. Me dijeron que no entendía la tarea, y les dije que no entendían la vida.</p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Happiness','','inherit','closed','closed','','440-revision-v1','','','2023-05-24 12:58:42','2023-05-24 12:58:42','',440,'https://divyayogamonteregie.org/ca/?p=728',0,'revision','',0),(730,1,'2023-05-24 12:59:37','2023-05-24 12:59:37','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Dos hombres, ambos gravemente enfermos, ocuparon la misma habitación del hospital. A un hombre se le permitió sentarse en su cama durante una hora cada tarde para ayudar a drenar el líquido de sus pulmones. Su cama estaba al lado de la única ventana de la habitación. El otro hombre tenía que pasar todo su tiempo boca arriba.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Los hombres hablaron durante horas y horas. Hablaron de sus esposas y familias, sus hogares, sus trabajos, su participación en el servicio militar, donde habían estado de vacaciones.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Y todas las tardes, cuando el hombre en la cama junto a la ventana podía sentarse, pasaba el tiempo describiendo a su compañero de cuarto todas las cosas que podía ver fuera de la ventana. El hombre en la otra cama comenzó a vivir durante esos períodos de una hora en los que su mundo se ampliaría y animaría por toda la actividad y el color del mundo exterior.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">La ventana daba a un parque con un hermoso lago. Patos y cisnes jugaban en el agua mientras los niños navegaban en sus modelos de barcos. Los jóvenes amantes caminaron del brazo en medio de flores de todos los colores del arco iris. Grandes árboles viejos adornaban el paisaje, y una hermosa vista del horizonte de la ciudad se podía ver en la distancia.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Mientras el hombre junto a la ventana describía todo esto con exquisito detalle, el hombre al otro lado de la habitación cerraba los ojos e imaginaba la pintoresca escena.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Una cálida tarde, el hombre junto a la ventana describió un desfile que pasaba. Aunque el otro hombre no podía escuchar a la banda, podía verla en su mente mientras el caballero junto a la ventana la retrataba con palabras descriptivas.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Pasaron días y semanas. Una mañana, la enfermera de día llegó para traer agua para sus baños solo para encontrar el cuerpo sin vida del hombre junto a la ventana, que había muerto pacíficamente mientras dormía. Se entristeció y llamó a los asistentes del hospital para que se llevaran el cuerpo.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Tan pronto como pareció apropiado, el otro hombre preguntó si podía ser movido al lado de la ventana. La enfermera estaba feliz de hacer el cambio, y después de asegurarse de que estaba cómodo, lo dejó solo. Lentamente, dolorosamente, se apoyó en un codo para echar un primer vistazo al mundo exterior. Finalmente, tendría la alegría de verlo por sí mismo.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Se esforzó por girar lentamente para mirar por la ventana al lado de la cama. Se enfrentaba a una pared en blanco. El hombre le preguntó a la enfermera qué podría haber obligado a su compañero de cuarto fallecido que había descrito cosas tan maravillosas fuera de esta ventana. La enfermera respondió que el hombre era ciego y ni siquiera podía ver la pared. Ella dijo: \"Tal vez él solo quería animarte\".</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The hospital window','','inherit','closed','closed','','445-revision-v1','','','2023-05-24 12:59:37','2023-05-24 12:59:37','',445,'https://divyayogamonteregie.org/ca/?p=730',0,'revision','',0),(731,1,'2023-05-24 13:00:11','2023-05-24 13:00:11','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Dos hombres, ambos gravemente enfermos, ocuparon la misma habitación del hospital. A un hombre se le permitió sentarse en su cama durante una hora cada tarde para ayudar a drenar el líquido de sus pulmones. Su cama estaba al lado de la única ventana de la habitación. El otro hombre tenía que pasar todo su tiempo boca arriba.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Los hombres hablaron durante horas y horas. Hablaron de sus esposas y familias, sus hogares, sus trabajos, su participación en el servicio militar, donde habían estado de vacaciones.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Y todas las tardes, cuando el hombre en la cama junto a la ventana podía sentarse, pasaba el tiempo describiendo a su compañero de cuarto todas las cosas que podía ver fuera de la ventana. El hombre en la otra cama comenzó a vivir durante esos períodos de una hora en los que su mundo se ampliaría y animaría por toda la actividad y el color del mundo exterior.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">La ventana daba a un parque con un hermoso lago. Patos y cisnes jugaban en el agua mientras los niños navegaban en sus modelos de barcos. Los jóvenes amantes caminaron del brazo en medio de flores de todos los colores del arco iris. Grandes árboles viejos adornaban el paisaje, y una hermosa vista del horizonte de la ciudad se podía ver en la distancia.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Mientras el hombre junto a la ventana describía todo esto con exquisito detalle, el hombre al otro lado de la habitación cerraba los ojos e imaginaba la pintoresca escena.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Una cálida tarde, el hombre junto a la ventana describió un desfile que pasaba. Aunque el otro hombre no podía escuchar a la banda, podía verla en su mente mientras el caballero junto a la ventana la retrataba con palabras descriptivas.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Pasaron días y semanas. Una mañana, la enfermera de día llegó para traer agua para sus baños solo para encontrar el cuerpo sin vida del hombre junto a la ventana, que había muerto pacíficamente mientras dormía. Se entristeció y llamó a los asistentes del hospital para que se llevaran el cuerpo.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Tan pronto como pareció apropiado, el otro hombre preguntó si podía ser movido al lado de la ventana. La enfermera estaba feliz de hacer el cambio, y después de asegurarse de que estaba cómodo, lo dejó solo. Lentamente, dolorosamente, se apoyó en un codo para echar un primer vistazo al mundo exterior. Finalmente, tendría la alegría de verlo por sí mismo.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Se esforzó por girar lentamente para mirar por la ventana al lado de la cama. Se enfrentaba a una pared en blanco. El hombre le preguntó a la enfermera qué podría haber obligado a su compañero de cuarto fallecido que había descrito cosas tan maravillosas fuera de esta ventana. La enfermera respondió que el hombre era ciego y ni siquiera podía ver la pared. Ella dijo: \"Tal vez él solo quería animarte\".</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The hospital window','','inherit','closed','closed','','445-revision-v1','','','2023-05-24 13:00:11','2023-05-24 13:00:11','',445,'https://divyayogamonteregie.org/ca/?p=731',0,'revision','',0),(732,1,'2023-05-24 13:00:11','2023-05-24 13:00:11','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Dos hombres, ambos gravemente enfermos, ocuparon la misma habitación del hospital. A un hombre se le permitió sentarse en su cama durante una hora cada tarde para ayudar a drenar el líquido de sus pulmones. Su cama estaba al lado de la única ventana de la habitación. El otro hombre tenía que pasar todo su tiempo boca arriba.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Los hombres hablaron durante horas y horas. Hablaron de sus esposas y familias, sus hogares, sus trabajos, su participación en el servicio militar, donde habían estado de vacaciones.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Y todas las tardes, cuando el hombre en la cama junto a la ventana podía sentarse, pasaba el tiempo describiendo a su compañero de cuarto todas las cosas que podía ver fuera de la ventana. El hombre en la otra cama comenzó a vivir durante esos períodos de una hora en los que su mundo se ampliaría y animaría por toda la actividad y el color del mundo exterior.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">La ventana daba a un parque con un hermoso lago. Patos y cisnes jugaban en el agua mientras los niños navegaban en sus modelos de barcos. Los jóvenes amantes caminaron del brazo en medio de flores de todos los colores del arco iris. Grandes árboles viejos adornaban el paisaje, y una hermosa vista del horizonte de la ciudad se podía ver en la distancia.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Mientras el hombre junto a la ventana describía todo esto con exquisito detalle, el hombre al otro lado de la habitación cerraba los ojos e imaginaba la pintoresca escena.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Una cálida tarde, el hombre junto a la ventana describió un desfile que pasaba. Aunque el otro hombre no podía escuchar a la banda, podía verla en su mente mientras el caballero junto a la ventana la retrataba con palabras descriptivas.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Pasaron días y semanas. Una mañana, la enfermera de día llegó para traer agua para sus baños solo para encontrar el cuerpo sin vida del hombre junto a la ventana, que había muerto pacíficamente mientras dormía. Se entristeció y llamó a los asistentes del hospital para que se llevaran el cuerpo.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Tan pronto como pareció apropiado, el otro hombre preguntó si podía ser movido al lado de la ventana. La enfermera estaba feliz de hacer el cambio, y después de asegurarse de que estaba cómodo, lo dejó solo. Lentamente, dolorosamente, se apoyó en un codo para echar un primer vistazo al mundo exterior. Finalmente, tendría la alegría de verlo por sí mismo.</p><p style=\"text-align: justify; background: white; vertical-align: baseline; margin: 0cm 0cm 19.5pt 0cm;\">Se esforzó por girar lentamente para mirar por la ventana al lado de la cama. Se enfrentaba a una pared en blanco. El hombre le preguntó a la enfermera qué podría haber obligado a su compañero de cuarto fallecido que había descrito cosas tan maravillosas fuera de esta ventana. La enfermera respondió que el hombre era ciego y ni siquiera podía ver la pared. Ella dijo: \"Tal vez él solo quería animarte\".</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The hospital window','','inherit','closed','closed','','445-revision-v1','','','2023-05-24 13:00:11','2023-05-24 13:00:11','',445,'https://divyayogamonteregie.org/ca/?p=732',0,'revision','',0),(734,1,'2023-05-24 13:01:04','2023-05-24 13:01:04','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Había una vez un rey rico que tenía cuatro esposas. Amaba más a la cuarta esposa y la adornaba con ricas túnicas y la trataba con las mejores delicias. Él no le dio nada más que lo mejor.</p><p>También amaba mucho a la tercera esposa y la mostró a los reinos vecinos. Sin embargo, temía que un día ella lo dejara por otro.</p><p>También amaba a su segunda esposa. Ella era su confidente y siempre fue amable, considerada y paciente con él. Cada vez que el rey enfrentaba un problema, podía confiar en ella para ayudarlo a superar los tiempos difíciles.</p><p>La primera esposa del rey era una compañera muy leal y había hecho grandes contribuciones en el mantenimiento de su riqueza y reino. Sin embargo, él no amaba a la primera esposa, pero aunque ella lo amaba profundamente, apenas se fijaba en ella.</p><p>Un día, el rey cayó enfermo y supo que su tiempo era corto. Por lo tanto, le preguntó a la 4ª esposa: \"Te he amado más bien con la mejor ropa y he derramado gran cuidado sobre ti. Ahora que me estoy muriendo, ¿me seguirás y me harás compañía?\"</p><p>\"¡De ninguna manera!\", respondió la 4ª esposa y ella se alejó sin decir otra palabra.</p><p>Su respuesta cortó como un cuchillo afilado directamente en su corazón.</p><p> </p><p>El triste rey le preguntó a la tercera esposa: \"Te he amado toda mi vida. Ahora que me estoy muriendo, ¿me seguirás y me harás compañía?\"</p><p>\"¡No!\", Respondió la 3ª esposa. \"¡La vida es demasiado buena! ¡Cuando mueras, me voy a volver a casar!\"</p><p>Su corazón se hundió y se enfrió.</p><p>Luego le preguntó a la 2ª esposa: \"Siempre he recurrido a ti en busca de ayuda y siempre has estado ahí para mí. Cuando muera, ¿me seguirás y me harás compañía?\"</p><p>\"¡Lo siento, no puedo ayudarte a salir de este tiempo!\", Respondió la 2ª esposa. \"Lo más, solo puedo enviarte a tu tumba\".</p><p>Su respuesta llegó como un trueno y el rey quedó devastado.</p><p>Entonces una voz gritó: \"Me iré contigo y te seguiré sin importar a dónde vayas\".</p><p>El rey levantó la vista y allí estaba su primera esposa. Estaba tan delgada, porque sufría de desnutrición. Muy afligido, el rey dijo: \"¡Debería haberte cuidado mejor cuando tuve la oportunidad!\"</p><p>Nuestra 4ª esposa es nuestro CUERPO. No importa cuánto tiempo y esfuerzo prodigemos para que se vea genial, nos dejará cuando muramos.</p><p>Nuestra 3ª esposa es nuestras POSESIONES, ESTATUS y RIQUEZA. Cuando morimos, todo irá a otros.</p><p>Nuestra 2ª esposa es nuestra FAMILIA y amigos. No importa cuánto hayan estado allí para nosotros, lo más lejos que pueden quedarse con nosotros es hasta la tumba.</p><p>Nuestra 1ª esposa es nuestra ALMA, a menudo descuidada en la búsqueda de riqueza, poder y placeres del ego. Sin embargo, nuestra Alma es lo único que nos seguirá dondequiera que vayamos. ¡Así que cultiva, fortalece y aprecia ahora! Es tu mayor regalo ofrecer al mundo.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The king with four wives','','inherit','closed','closed','','450-revision-v1','','','2023-05-24 13:01:04','2023-05-24 13:01:04','',450,'https://divyayogamonteregie.org/ca/?p=734',0,'revision','',0),(735,1,'2023-05-24 13:01:26','2023-05-24 13:01:26','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Había una vez un rey rico que tenía cuatro esposas. Amaba más a la cuarta esposa y la adornaba con ricas túnicas y la trataba con las mejores delicias. Él no le dio nada más que lo mejor.</p><p>También amaba mucho a la tercera esposa y la mostró a los reinos vecinos. Sin embargo, temía que un día ella lo dejara por otro.</p><p>También amaba a su segunda esposa. Ella era su confidente y siempre fue amable, considerada y paciente con él. Cada vez que el rey enfrentaba un problema, podía confiar en ella para ayudarlo a superar los tiempos difíciles.</p><p>La primera esposa del rey era una compañera muy leal y había hecho grandes contribuciones en el mantenimiento de su riqueza y reino. Sin embargo, él no amaba a la primera esposa, pero aunque ella lo amaba profundamente, apenas se fijaba en ella.</p><p>Un día, el rey cayó enfermo y supo que su tiempo era corto. Por lo tanto, le preguntó a la 4ª esposa: \"Te he amado más bien con la mejor ropa y he derramado gran cuidado sobre ti. Ahora que me estoy muriendo, ¿me seguirás y me harás compañía?\"</p><p>\"¡De ninguna manera!\", respondió la 4ª esposa y ella se alejó sin decir otra palabra.</p><p>Su respuesta cortó como un cuchillo afilado directamente en su corazón.</p><p> </p><p>El triste rey le preguntó a la tercera esposa: \"Te he amado toda mi vida. Ahora que me estoy muriendo, ¿me seguirás y me harás compañía?\"</p><p>\"¡No!\", Respondió la 3ª esposa. \"¡La vida es demasiado buena! ¡Cuando mueras, me voy a volver a casar!\"</p><p>Su corazón se hundió y se enfrió.</p><p>Luego le preguntó a la 2ª esposa: \"Siempre he recurrido a ti en busca de ayuda y siempre has estado ahí para mí. Cuando muera, ¿me seguirás y me harás compañía?\"</p><p>\"¡Lo siento, no puedo ayudarte a salir de este tiempo!\", Respondió la 2ª esposa. \"Lo más, solo puedo enviarte a tu tumba\".</p><p>Su respuesta llegó como un trueno y el rey quedó devastado.</p><p>Entonces una voz gritó: \"Me iré contigo y te seguiré sin importar a dónde vayas\".</p><p>El rey levantó la vista y allí estaba su primera esposa. Estaba tan delgada, porque sufría de desnutrición. Muy afligido, el rey dijo: \"¡Debería haberte cuidado mejor cuando tuve la oportunidad!\"</p><p>Nuestra 4ª esposa es nuestro CUERPO. No importa cuánto tiempo y esfuerzo prodigemos para que se vea genial, nos dejará cuando muramos.</p><p>Nuestra 3ª esposa es nuestras POSESIONES, ESTATUS y RIQUEZA. Cuando morimos, todo irá a otros.</p><p>Nuestra 2ª esposa es nuestra FAMILIA y amigos. No importa cuánto hayan estado allí para nosotros, lo más lejos que pueden quedarse con nosotros es hasta la tumba.</p><p>Nuestra 1ª esposa es nuestra ALMA, a menudo descuidada en la búsqueda de riqueza, poder y placeres del ego. Sin embargo, nuestra Alma es lo único que nos seguirá dondequiera que vayamos. ¡Así que cultiva, fortalece y aprecia ahora! Es tu mayor regalo ofrecer al mundo.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The king with four wives','','inherit','closed','closed','','450-revision-v1','','','2023-05-24 13:01:26','2023-05-24 13:01:26','',450,'https://divyayogamonteregie.org/ca/?p=735',0,'revision','',0),(736,1,'2023-05-24 13:01:26','2023-05-24 13:01:26','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Había una vez un rey rico que tenía cuatro esposas. Amaba más a la cuarta esposa y la adornaba con ricas túnicas y la trataba con las mejores delicias. Él no le dio nada más que lo mejor.</p><p>También amaba mucho a la tercera esposa y la mostró a los reinos vecinos. Sin embargo, temía que un día ella lo dejara por otro.</p><p>También amaba a su segunda esposa. Ella era su confidente y siempre fue amable, considerada y paciente con él. Cada vez que el rey enfrentaba un problema, podía confiar en ella para ayudarlo a superar los tiempos difíciles.</p><p>La primera esposa del rey era una compañera muy leal y había hecho grandes contribuciones en el mantenimiento de su riqueza y reino. Sin embargo, él no amaba a la primera esposa, pero aunque ella lo amaba profundamente, apenas se fijaba en ella.</p><p>Un día, el rey cayó enfermo y supo que su tiempo era corto. Por lo tanto, le preguntó a la 4ª esposa: \"Te he amado más bien con la mejor ropa y he derramado gran cuidado sobre ti. Ahora que me estoy muriendo, ¿me seguirás y me harás compañía?\"</p><p>\"¡De ninguna manera!\", respondió la 4ª esposa y ella se alejó sin decir otra palabra.</p><p>Su respuesta cortó como un cuchillo afilado directamente en su corazón.</p><p> </p><p>El triste rey le preguntó a la tercera esposa: \"Te he amado toda mi vida. Ahora que me estoy muriendo, ¿me seguirás y me harás compañía?\"</p><p>\"¡No!\", Respondió la 3ª esposa. \"¡La vida es demasiado buena! ¡Cuando mueras, me voy a volver a casar!\"</p><p>Su corazón se hundió y se enfrió.</p><p>Luego le preguntó a la 2ª esposa: \"Siempre he recurrido a ti en busca de ayuda y siempre has estado ahí para mí. Cuando muera, ¿me seguirás y me harás compañía?\"</p><p>\"¡Lo siento, no puedo ayudarte a salir de este tiempo!\", Respondió la 2ª esposa. \"Lo más, solo puedo enviarte a tu tumba\".</p><p>Su respuesta llegó como un trueno y el rey quedó devastado.</p><p>Entonces una voz gritó: \"Me iré contigo y te seguiré sin importar a dónde vayas\".</p><p>El rey levantó la vista y allí estaba su primera esposa. Estaba tan delgada, porque sufría de desnutrición. Muy afligido, el rey dijo: \"¡Debería haberte cuidado mejor cuando tuve la oportunidad!\"</p><p>Nuestra 4ª esposa es nuestro CUERPO. No importa cuánto tiempo y esfuerzo prodigemos para que se vea genial, nos dejará cuando muramos.</p><p>Nuestra 3ª esposa es nuestras POSESIONES, ESTATUS y RIQUEZA. Cuando morimos, todo irá a otros.</p><p>Nuestra 2ª esposa es nuestra FAMILIA y amigos. No importa cuánto hayan estado allí para nosotros, lo más lejos que pueden quedarse con nosotros es hasta la tumba.</p><p>Nuestra 1ª esposa es nuestra ALMA, a menudo descuidada en la búsqueda de riqueza, poder y placeres del ego. Sin embargo, nuestra Alma es lo único que nos seguirá dondequiera que vayamos. ¡Así que cultiva, fortalece y aprecia ahora! Es tu mayor regalo ofrecer al mundo.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The king with four wives','','inherit','closed','closed','','450-revision-v1','','','2023-05-24 13:01:26','2023-05-24 13:01:26','',450,'https://divyayogamonteregie.org/ca/?p=736',0,'revision','',0),(738,1,'2023-05-24 13:02:34','2023-05-24 13:02:34','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Por Remez Sasson</p><p>Un día, un yogui y su discípulo llegaron a la gran ciudad. No tenían dinero con ellos, pero necesitaban comida y un lugar para quedarse. El discípulo estaba seguro de que iban a mendigar por su comida y dormir en el parque por la noche.</p><p>\"Hay un gran parque no muy lejos de aquí. Podemos dormir allí por la noche\", dijo el discípulo.<br />\"¿Al aire libre?\" Preguntó el yogui.<br />\"Sí\", respondió el estudiante.</p><p>El yogui sonrió y dijo: \"No, esta noche vamos a dormir en un hotel y comer allí también\".</p><p>El estudiante se sorprendió y exclamó: \"¡No podemos permitirnos eso!\"<br />\"Ven y siéntate\", dijo el yogui.</p><p>Ambos se sentaron en el suelo, y el yogui dijo:<br />\"Cuando enfocas tu mente intensamente en cualquier tema, sucede todo\".</p><p>El yogui cerró los ojos y comenzó a meditar con plena concentración. Después de unos diez minutos se levantó y comenzó a caminar, con su discípulo siguiéndole. Caminaron por varias calles y callejones, hasta que llegaron a un hotel.</p><p>\"Ven, entremos dentro\", le dijo el yogui a su discípulo.</p><p>Acaban de poner un pie en la entrada, cuando un hombre bien vestido se les acercó.</p><p>\"Soy el gerente de este hotel. Pareces swamis viajeros, y creo que no tienes dinero. ¿Te gustaría trabajar en la cocina y, a cambio, te daré comida y un lugar para quedarte?\"</p><p>\"Bien\", respondió el yogui.</p><p>El discípulo estaba perplejo y le preguntó al yogui: \"¿Usaste alguna magia? ¿Cómo hiciste eso?\"</p><p>El yogui sonrió y dijo: \"Quería mostrarte cómo funciona el poder de los pensamientos. Cuando piensas con plena y fuerte concentración sobre algo que quieres que suceda, y tu mente no se resiste al tema de tu pensamiento, tu pensamiento se materializa.</p><p>\"El secreto es concentrarse, visualizar, ver detalles, tener fe y proyectar energía mental y emocional en la escena mental. Estos son los requisitos previos generales. Cuando tu mente está vacía de pensamientos, y solo un pensamiento puede entrar, gana un poder muy grande. Uno debe tener mucho cuidado con lo que piensa. Un pensamiento concentrado es poderoso y ejerce una influencia muy fuerte\".</p><p>El discípulo miró a su maestro y dijo: \"Veo que tengo que agudizar mi concentración para poder usar este poder\".</p><p>\"Sí, este es el primer paso\", respondió el yogui.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The power of thoughts','','inherit','closed','closed','','455-revision-v1','','','2023-05-24 13:02:34','2023-05-24 13:02:34','',455,'https://divyayogamonteregie.org/ca/?p=738',0,'revision','',0),(739,1,'2023-05-24 13:03:09','2023-05-24 13:03:09','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Por Remez Sasson</p><p>Un día, un yogui y su discípulo llegaron a la gran ciudad. No tenían dinero con ellos, pero necesitaban comida y un lugar para quedarse. El discípulo estaba seguro de que iban a mendigar por su comida y dormir en el parque por la noche.</p><p>\"Hay un gran parque no muy lejos de aquí. Podemos dormir allí por la noche\", dijo el discípulo.<br />\"¿Al aire libre?\" Preguntó el yogui.<br />\"Sí\", respondió el estudiante.</p><p>El yogui sonrió y dijo: \"No, esta noche vamos a dormir en un hotel y comer allí también\".</p><p>El estudiante se sorprendió y exclamó: \"¡No podemos permitirnos eso!\"<br />\"Ven y siéntate\", dijo el yogui.</p><p>Ambos se sentaron en el suelo, y el yogui dijo:<br />\"Cuando enfocas tu mente intensamente en cualquier tema, sucede todo\".</p><p>El yogui cerró los ojos y comenzó a meditar con plena concentración. Después de unos diez minutos se levantó y comenzó a caminar, con su discípulo siguiéndole. Caminaron por varias calles y callejones, hasta que llegaron a un hotel.</p><p>\"Ven, entremos dentro\", le dijo el yogui a su discípulo.</p><p>Acaban de poner un pie en la entrada, cuando un hombre bien vestido se les acercó.</p><p>\"Soy el gerente de este hotel. Pareces swamis viajeros, y creo que no tienes dinero. ¿Te gustaría trabajar en la cocina y, a cambio, te daré comida y un lugar para quedarte?\"</p><p>\"Bien\", respondió el yogui.</p><p>El discípulo estaba perplejo y le preguntó al yogui: \"¿Usaste alguna magia? ¿Cómo hiciste eso?\"</p><p>El yogui sonrió y dijo: \"Quería mostrarte cómo funciona el poder de los pensamientos. Cuando piensas con plena y fuerte concentración sobre algo que quieres que suceda, y tu mente no se resiste al tema de tu pensamiento, tu pensamiento se materializa.</p><p>\"El secreto es concentrarse, visualizar, ver detalles, tener fe y proyectar energía mental y emocional en la escena mental. Estos son los requisitos previos generales. Cuando tu mente está vacía de pensamientos, y solo un pensamiento puede entrar, gana un poder muy grande. Uno debe tener mucho cuidado con lo que piensa. Un pensamiento concentrado es poderoso y ejerce una influencia muy fuerte\".</p><p>El discípulo miró a su maestro y dijo: \"Veo que tengo que agudizar mi concentración para poder usar este poder\".</p><p>\"Sí, este es el primer paso\", respondió el yogui.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The power of thoughts','','inherit','closed','closed','','455-revision-v1','','','2023-05-24 13:03:09','2023-05-24 13:03:09','',455,'https://divyayogamonteregie.org/ca/?p=739',0,'revision','',0),(740,1,'2023-05-24 13:03:09','2023-05-24 13:03:09','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Por Remez Sasson</p><p>Un día, un yogui y su discípulo llegaron a la gran ciudad. No tenían dinero con ellos, pero necesitaban comida y un lugar para quedarse. El discípulo estaba seguro de que iban a mendigar por su comida y dormir en el parque por la noche.</p><p>\"Hay un gran parque no muy lejos de aquí. Podemos dormir allí por la noche\", dijo el discípulo.<br />\"¿Al aire libre?\" Preguntó el yogui.<br />\"Sí\", respondió el estudiante.</p><p>El yogui sonrió y dijo: \"No, esta noche vamos a dormir en un hotel y comer allí también\".</p><p>El estudiante se sorprendió y exclamó: \"¡No podemos permitirnos eso!\"<br />\"Ven y siéntate\", dijo el yogui.</p><p>Ambos se sentaron en el suelo, y el yogui dijo:<br />\"Cuando enfocas tu mente intensamente en cualquier tema, sucede todo\".</p><p>El yogui cerró los ojos y comenzó a meditar con plena concentración. Después de unos diez minutos se levantó y comenzó a caminar, con su discípulo siguiéndole. Caminaron por varias calles y callejones, hasta que llegaron a un hotel.</p><p>\"Ven, entremos dentro\", le dijo el yogui a su discípulo.</p><p>Acaban de poner un pie en la entrada, cuando un hombre bien vestido se les acercó.</p><p>\"Soy el gerente de este hotel. Pareces swamis viajeros, y creo que no tienes dinero. ¿Te gustaría trabajar en la cocina y, a cambio, te daré comida y un lugar para quedarte?\"</p><p>\"Bien\", respondió el yogui.</p><p>El discípulo estaba perplejo y le preguntó al yogui: \"¿Usaste alguna magia? ¿Cómo hiciste eso?\"</p><p>El yogui sonrió y dijo: \"Quería mostrarte cómo funciona el poder de los pensamientos. Cuando piensas con plena y fuerte concentración sobre algo que quieres que suceda, y tu mente no se resiste al tema de tu pensamiento, tu pensamiento se materializa.</p><p>\"El secreto es concentrarse, visualizar, ver detalles, tener fe y proyectar energía mental y emocional en la escena mental. Estos son los requisitos previos generales. Cuando tu mente está vacía de pensamientos, y solo un pensamiento puede entrar, gana un poder muy grande. Uno debe tener mucho cuidado con lo que piensa. Un pensamiento concentrado es poderoso y ejerce una influencia muy fuerte\".</p><p>El discípulo miró a su maestro y dijo: \"Veo que tengo que agudizar mi concentración para poder usar este poder\".</p><p>\"Sí, este es el primer paso\", respondió el yogui.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The power of thoughts','','inherit','closed','closed','','455-revision-v1','','','2023-05-24 13:03:09','2023-05-24 13:03:09','',455,'https://divyayogamonteregie.org/ca/?p=740',0,'revision','',0),(741,1,'2023-05-24 13:03:10','2023-05-24 13:03:10','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>By Remez Sasson</p><p>One day, a yogi and his disciple arrived in the big city. They had no money with them, but they needed food and a place to stay. The disciple was sure that they were going to beg for their food, and sleep in the park at night.</p><p>\"There is a big park not far from here. We can sleep there at night\", said the disciple.<br />\"In the open air?\" Asked the yogi.<br />\"Yes\", responded the student.</p><p>The yogi smiled and said: \"No, tonight we are going to sleep in a hotel and eat there too\".</p><p>The student was amazed and exclaimed, \"We cannot afford that!\"<br />\"Come and sit down\", said the yogi.</p><p>They both sat down on the ground, and the yogi said:<br />\"When you focus your mind intently on any subject, it comes to pass.\"</p><p>The yogi closed his eyes and started to meditate with full concentration. After about ten minutes he got up and started to walk, with his disciple following him. They walked through several streets and alleys, until they arrived at a hotel.</p><p>\"Come, let\'s enter inside\", the yogi said to his disciple.</p><p>They just set foot in the entrance, when a well-dressed man approached them.</p><p>\"I am the manager of this hotel. You look like traveling swamis, and I believe you have no money. Would you like to work in the kitchen, and in return I\'ll give you food and a place to stay?\"</p><p>\"Fine\", the yogi responded.</p><p>The disciple was perplexed and asked the yogi: \"Did you use any magic? How did you do that?\"</p><p>The yogi smiled and said, \"I wanted to show you how the power of thoughts works. When you think with full and strong concentration about something that you want to happen, and your mind does not resist the subject of your thought, your thought materializes.\"</p><p>\"The secret is concentrating, visualizing, seeing details, having faith and projecting mental and emotional energy into the mental scene. These are the general prerequisites. When your mind is empty from thoughts, and only one single thought is allowed to enter, it gains a very great power. One should be very careful with what he thinks. A concentrated thought is powerful, and exerts a very strong influence.\"</p><p>The disciple looked at his teacher and said: \"I see that I have to sharpen my concentration in order to be able to use this power.\"</p><p>\"Yes, this is the first step\", the yogi replied.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The power of thoughts','','inherit','closed','closed','','455-revision-v1','','','2023-05-24 13:03:10','2023-05-24 13:03:10','',455,'https://divyayogamonteregie.org/ca/?p=741',0,'revision','',0),(742,1,'2023-05-24 13:03:54','2023-05-24 13:03:54','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>¿Recuerdas la famosa raza Conejo-Tortuga (Tortuga y Liebre)? Todos sabemos que al final de la historia el Conejo no fue capaz de ganar la carrera contra la Tortuga.</p><p>Bueno, este no es realmente el final de la historia. Después de una vergonzosa derrota ante la Tortuga, el Conejo decidió tener una carrera nuevamente. Esta vez, decidió, no tomaría una siesta.</p><p>La carrera comenzó y pronto el Conejo estaba lejos de la vista de la Tortuga y todos los espectadores. Esta vez no se detuvo y derrotó a la Tortuga por un gran margen.</p><p>La Tortuga perdió la carrera esta vez; Sin embargo, no se rindió. Desafió al Conejo de nuevo en una pista de carreras diferente. El Conejo, lleno de confianza, lo aceptó. Sabía la razón por la que perdió antes: su pereza durante la primera carrera. Pudo ganar la segunda carrera porque pudo trabajar en ella.</p><p>La Tercera Carrera comenzó. El Conejo, como siempre, pronto desapareció. Todos se reían de la tortuga, pero el conejo no quería detenerse para ver por qué y siguió corriendo tan rápido como pudo. Quería derrotar a la Tortuga por un margen mucho mayor que la raza anterior. De repente, llegó a un río. No pudo distinguir cómo cruzarlo y se vio obligado a detenerse.</p><p>Después de algún tiempo, la tortuga llegó al río y entró con mucha confianza en él. Nadó mucho más rápido de lo que podría correr. En poco tiempo cruzó el río y se dirigió hacia el punto final mientras el Conejo miraba impotente mientras la Tortuga ganaba la carrera.</p><p>La historia no termina aquí.</p><p>Después de la primera carrera, el Conejo se enteró de que lo perdió debido a su pereza.</p><p>Después de la segunda carrera, la Tortuga se enteró de que perdió la carrera porque su oponente era realmente bueno corriendo.</p><p>Después de la tercera carrera, el Conejo aprendió que ser más rápido no es suficiente; Uno también debe tener cerebro para completar la tarea.</p><p>El Conejo y la Tortuga decidieron correr de nuevo. Esta vez fue solo correr y no una carrera.</p><p>Mientras corrían, hasta que llegaron al río, el Conejo puso a la Tortuga en su espalda. Una vez que tuvieron que cruzar el río, la Tortuga puso al Conejo en su espalda. Después de cruzar el río, el Conejo volvió a poner a la Tortuga en su espalda y ambos llegaron al punto final en menos tiempo que nunca.</p><p><strong>¿Qué aprendieron?</strong></p><p>Ambos aprendieron que con el trabajo en equipo pueden terminar la misma tarea más rápido y ambos pueden disfrutar de la recompensa. Durante el tiempo que estuvieron compitiendo entre sí, solo uno de ellos pudo ganar después de perder mucho tiempo y energía.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Rabbit and The Turtle Race','','inherit','closed','closed','','460-revision-v1','','','2023-05-24 13:03:54','2023-05-24 13:03:54','',460,'https://divyayogamonteregie.org/ca/?p=742',0,'revision','',0),(743,1,'2023-05-24 13:04:17','2023-05-24 13:04:17','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>¿Recuerdas la famosa raza Conejo-Tortuga (Tortuga y Liebre)? Todos sabemos que al final de la historia el Conejo no fue capaz de ganar la carrera contra la Tortuga.</p><p>Bueno, este no es realmente el final de la historia. Después de una vergonzosa derrota ante la Tortuga, el Conejo decidió tener una carrera nuevamente. Esta vez, decidió, no tomaría una siesta.</p><p>La carrera comenzó y pronto el Conejo estaba lejos de la vista de la Tortuga y todos los espectadores. Esta vez no se detuvo y derrotó a la Tortuga por un gran margen.</p><p>La Tortuga perdió la carrera esta vez; Sin embargo, no se rindió. Desafió al Conejo de nuevo en una pista de carreras diferente. El Conejo, lleno de confianza, lo aceptó. Sabía la razón por la que perdió antes: su pereza durante la primera carrera. Pudo ganar la segunda carrera porque pudo trabajar en ella.</p><p>La Tercera Carrera comenzó. El Conejo, como siempre, pronto desapareció. Todos se reían de la tortuga, pero el conejo no quería detenerse para ver por qué y siguió corriendo tan rápido como pudo. Quería derrotar a la Tortuga por un margen mucho mayor que la raza anterior. De repente, llegó a un río. No pudo distinguir cómo cruzarlo y se vio obligado a detenerse.</p><p>Después de algún tiempo, la tortuga llegó al río y entró con mucha confianza en él. Nadó mucho más rápido de lo que podría correr. En poco tiempo cruzó el río y se dirigió hacia el punto final mientras el Conejo miraba impotente mientras la Tortuga ganaba la carrera.</p><p>La historia no termina aquí.</p><p>Después de la primera carrera, el Conejo se enteró de que lo perdió debido a su pereza.</p><p>Después de la segunda carrera, la Tortuga se enteró de que perdió la carrera porque su oponente era realmente bueno corriendo.</p><p>Después de la tercera carrera, el Conejo aprendió que ser más rápido no es suficiente; Uno también debe tener cerebro para completar la tarea.</p><p>El Conejo y la Tortuga decidieron correr de nuevo. Esta vez fue solo correr y no una carrera.</p><p>Mientras corrían, hasta que llegaron al río, el Conejo puso a la Tortuga en su espalda. Una vez que tuvieron que cruzar el río, la Tortuga puso al Conejo en su espalda. Después de cruzar el río, el Conejo volvió a poner a la Tortuga en su espalda y ambos llegaron al punto final en menos tiempo que nunca.</p><p><strong>¿Qué aprendieron?</strong></p><p>Ambos aprendieron que con el trabajo en equipo pueden terminar la misma tarea más rápido y ambos pueden disfrutar de la recompensa. Durante el tiempo que estuvieron compitiendo entre sí, solo uno de ellos pudo ganar después de perder mucho tiempo y energía.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Rabbit and The Turtle Race','','inherit','closed','closed','','460-revision-v1','','','2023-05-24 13:04:17','2023-05-24 13:04:17','',460,'https://divyayogamonteregie.org/ca/?p=743',0,'revision','',0),(744,1,'2023-05-24 13:04:17','2023-05-24 13:04:17','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>¿Recuerdas la famosa raza Conejo-Tortuga (Tortuga y Liebre)? Todos sabemos que al final de la historia el Conejo no fue capaz de ganar la carrera contra la Tortuga.</p><p>Bueno, este no es realmente el final de la historia. Después de una vergonzosa derrota ante la Tortuga, el Conejo decidió tener una carrera nuevamente. Esta vez, decidió, no tomaría una siesta.</p><p>La carrera comenzó y pronto el Conejo estaba lejos de la vista de la Tortuga y todos los espectadores. Esta vez no se detuvo y derrotó a la Tortuga por un gran margen.</p><p>La Tortuga perdió la carrera esta vez; Sin embargo, no se rindió. Desafió al Conejo de nuevo en una pista de carreras diferente. El Conejo, lleno de confianza, lo aceptó. Sabía la razón por la que perdió antes: su pereza durante la primera carrera. Pudo ganar la segunda carrera porque pudo trabajar en ella.</p><p>La Tercera Carrera comenzó. El Conejo, como siempre, pronto desapareció. Todos se reían de la tortuga, pero el conejo no quería detenerse para ver por qué y siguió corriendo tan rápido como pudo. Quería derrotar a la Tortuga por un margen mucho mayor que la raza anterior. De repente, llegó a un río. No pudo distinguir cómo cruzarlo y se vio obligado a detenerse.</p><p>Después de algún tiempo, la tortuga llegó al río y entró con mucha confianza en él. Nadó mucho más rápido de lo que podría correr. En poco tiempo cruzó el río y se dirigió hacia el punto final mientras el Conejo miraba impotente mientras la Tortuga ganaba la carrera.</p><p>La historia no termina aquí.</p><p>Después de la primera carrera, el Conejo se enteró de que lo perdió debido a su pereza.</p><p>Después de la segunda carrera, la Tortuga se enteró de que perdió la carrera porque su oponente era realmente bueno corriendo.</p><p>Después de la tercera carrera, el Conejo aprendió que ser más rápido no es suficiente; Uno también debe tener cerebro para completar la tarea.</p><p>El Conejo y la Tortuga decidieron correr de nuevo. Esta vez fue solo correr y no una carrera.</p><p>Mientras corrían, hasta que llegaron al río, el Conejo puso a la Tortuga en su espalda. Una vez que tuvieron que cruzar el río, la Tortuga puso al Conejo en su espalda. Después de cruzar el río, el Conejo volvió a poner a la Tortuga en su espalda y ambos llegaron al punto final en menos tiempo que nunca.</p><p><strong>¿Qué aprendieron?</strong></p><p>Ambos aprendieron que con el trabajo en equipo pueden terminar la misma tarea más rápido y ambos pueden disfrutar de la recompensa. Durante el tiempo que estuvieron compitiendo entre sí, solo uno de ellos pudo ganar después de perder mucho tiempo y energía.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Rabbit and The Turtle Race','','inherit','closed','closed','','460-revision-v1','','','2023-05-24 13:04:17','2023-05-24 13:04:17','',460,'https://divyayogamonteregie.org/ca/?p=744',0,'revision','',0),(745,1,'2023-05-24 13:04:17','2023-05-24 13:04:17','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Remember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.</p><p style=\"text-align: justify;\">Well, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.</p><p style=\"text-align: justify;\">The race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.</p><p style=\"text-align: justify;\">The Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.</p><p style=\"text-align: justify;\">The Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.</p><p style=\"text-align: justify;\">After some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.</p><p style=\"text-align: justify;\">The story does not end here.</p><p style=\"text-align: justify;\">After the first race, the Rabbit learned that he lost it because of his laziness.</p><p style=\"text-align: justify;\">After second race, the Turtle learned that he lost the race because his opponent was actually good at running.</p><p style=\"text-align: justify;\">After the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.</p><p style=\"text-align: justify;\">The Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.</p><p style=\"text-align: justify;\">While running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.</p><p style=\"text-align: justify;\"><b>What did they learn?</b></p><p style=\"text-align: justify;\">They both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Rabbit and The Turtle Race','','inherit','closed','closed','','460-revision-v1','','','2023-05-24 13:04:17','2023-05-24 13:04:17','',460,'https://divyayogamonteregie.org/ca/?p=745',0,'revision','',0),(746,1,'2023-05-24 13:05:05','2023-05-24 13:05:05','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un viejo granjero había arado alrededor de una gran roca en uno de sus campos durante años. Había roto varias rejas de arado y un cultivador en él y se había vuelto bastante morboso sobre la roca.</p><p>Después de romper otra reja de arado un día, y recordando todos los problemas que la roca le había causado a través de los años, finalmente decidió hacer algo al respecto.</p><p>Cuando puso la palanca debajo de la roca, se sorprendió al descubrir que solo tenía unas seis pulgadas de grosor y que podía romperla fácilmente con un mazo. Mientras se llevaba las piezas, tuvo que sonreír, recordando todos los problemas que la roca le había causado a lo largo de los años y lo fácil que habría sido deshacerse de ella antes.</p><p>.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Rock','','inherit','closed','closed','','465-revision-v1','','','2023-05-24 13:05:05','2023-05-24 13:05:05','',465,'https://divyayogamonteregie.org/ca/?p=746',0,'revision','',0),(747,1,'2023-05-24 13:05:24','2023-05-24 13:05:24','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un viejo granjero había arado alrededor de una gran roca en uno de sus campos durante años. Había roto varias rejas de arado y un cultivador en él y se había vuelto bastante morboso sobre la roca.</p><p>Después de romper otra reja de arado un día, y recordando todos los problemas que la roca le había causado a través de los años, finalmente decidió hacer algo al respecto.</p><p>Cuando puso la palanca debajo de la roca, se sorprendió al descubrir que solo tenía unas seis pulgadas de grosor y que podía romperla fácilmente con un mazo. Mientras se llevaba las piezas, tuvo que sonreír, recordando todos los problemas que la roca le había causado a lo largo de los años y lo fácil que habría sido deshacerse de ella antes.</p><p>.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Rock','','inherit','closed','closed','','465-revision-v1','','','2023-05-24 13:05:24','2023-05-24 13:05:24','',465,'https://divyayogamonteregie.org/ca/?p=747',0,'revision','',0),(748,1,'2023-05-24 13:05:24','2023-05-24 13:05:24','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un viejo granjero había arado alrededor de una gran roca en uno de sus campos durante años. Había roto varias rejas de arado y un cultivador en él y se había vuelto bastante morboso sobre la roca.</p><p>Después de romper otra reja de arado un día, y recordando todos los problemas que la roca le había causado a través de los años, finalmente decidió hacer algo al respecto.</p><p>Cuando puso la palanca debajo de la roca, se sorprendió al descubrir que solo tenía unas seis pulgadas de grosor y que podía romperla fácilmente con un mazo. Mientras se llevaba las piezas, tuvo que sonreír, recordando todos los problemas que la roca le había causado a lo largo de los años y lo fácil que habría sido deshacerse de ella antes.</p><p>.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Rock','','inherit','closed','closed','','465-revision-v1','','','2023-05-24 13:05:24','2023-05-24 13:05:24','',465,'https://divyayogamonteregie.org/ca/?p=748',0,'revision','',0),(749,1,'2023-05-24 13:05:24','2023-05-24 13:05:24','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">An old farmer had plowed around a large rock in one of his fields for years. He had broken several plowshares and a cultivator on it and had grown rather morbid about the rock.</p><p style=\"text-align: justify;\">After breaking another plowshare one day, and remembering all the trouble the rock had caused him through the years, he finally decided to do something about it.</p><p style=\"text-align: justify;\">When he put the crowbar under the rock, he was surprised to discover that it was only about six inches thick and that he could break it up easily with a sledgehammer. As he was carting the pieces away he had to smile, remembering all the trouble that the rock had caused him over the years and how easy it would have been to get rid of it sooner.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Rock','','inherit','closed','closed','','465-revision-v1','','','2023-05-24 13:05:24','2023-05-24 13:05:24','',465,'https://divyayogamonteregie.org/ca/?p=749',0,'revision','',0),(750,1,'2023-05-24 13:06:18','2023-05-24 13:06:18','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Sobre la naturaleza oculta de Atman [Alma]:</p><p>\"Somos como un rey, que siendo víctima de la amnesia, vaga por su reino hecho jirones, sin saber quién es realmente. Somos como un cachorro de león que, habiéndose perdido de su madre al nacer, crece por accidente entre ovejas y se dedica a pastar y balar como ellas, asumiendo que él es como ellos\".</p><p>Una leona era grande con crías y andaba en busca de presas cuando vio un rebaño de ovejas. Ella saltó sobre ellos y murió en ese esfuerzo. Pero su pequeño león nació, sin madre. Las ovejas lo cuidaron y las ovejas lo criaron. Creció con ellos, comía hierba y balaba como las ovejas. Con el tiempo se convirtió en un león grande y adulto, y todavía balaba como una oveja y pensaba que era una oveja.</p><p>Un día otro león vino en busca de presas, y se sorprendió al descubrir que en medio de este rebaño de ovejas había un león que huía como las ovejas al acercarse el peligro. Trató de acercarse al león-oveja, para decirle que no era una oveja sino un león, pero el pobre animal huyó al acercarse.</p><p>Sin embargo, vio su oportunidad, y un día encontró al león oveja durmiendo. Se acercó y dijo: \"Eres un león\".</p><p>\"Yo soy la oveja\" gritó y baló el otro león, y no podía creer lo contrario.</p><p>El león lo arrastró hacia un lago y dijo: \"Mira aquí, ahí está mi reflejo y el tuyo\".</p><p>Luego vino la comparación. El león balando miró al león y luego a su propio reflejo, y en un momento surgió la idea de que era un león. El león rugió, el balido se había ido. [Adaptado de un cuento de Vivekananda en la conferencia \"La verdadera naturaleza del hombre\", dada en Londres, 1899 o cerca]</p><p>❖ \"Ustedes son leones... y perfecto.\" – Swami Vivekananda</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The sheep lion','','inherit','closed','closed','','470-revision-v1','','','2023-05-24 13:06:18','2023-05-24 13:06:18','',470,'https://divyayogamonteregie.org/ca/?p=750',0,'revision','',0),(751,1,'2023-05-24 13:06:52','2023-05-24 13:06:52','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Sobre la naturaleza oculta de Atman [Alma]:</p><p>\"Somos como un rey, que siendo víctima de la amnesia, vaga por su reino hecho jirones, sin saber quién es realmente. Somos como un cachorro de león que, habiéndose perdido de su madre al nacer, crece por accidente entre ovejas y se dedica a pastar y balar como ellas, asumiendo que él es como ellos\".</p><p>Una leona era grande con crías y andaba en busca de presas cuando vio un rebaño de ovejas. Ella saltó sobre ellos y murió en ese esfuerzo. Pero su pequeño león nació, sin madre. Las ovejas lo cuidaron y las ovejas lo criaron. Creció con ellos, comía hierba y balaba como las ovejas. Con el tiempo se convirtió en un león grande y adulto, y todavía balaba como una oveja y pensaba que era una oveja.</p><p>Un día otro león vino en busca de presas, y se sorprendió al descubrir que en medio de este rebaño de ovejas había un león que huía como las ovejas al acercarse el peligro. Trató de acercarse al león-oveja, para decirle que no era una oveja sino un león, pero el pobre animal huyó al acercarse.</p><p>Sin embargo, vio su oportunidad, y un día encontró al león oveja durmiendo. Se acercó y dijo: \"Eres un león\".</p><p>\"Yo soy la oveja\" gritó y baló el otro león, y no podía creer lo contrario.</p><p>El león lo arrastró hacia un lago y dijo: \"Mira aquí, ahí está mi reflejo y el tuyo\".</p><p>Luego vino la comparación. El león balando miró al león y luego a su propio reflejo, y en un momento surgió la idea de que era un león. El león rugió, el balido se había ido. [Adaptado de un cuento de Vivekananda en la conferencia \"La verdadera naturaleza del hombre\", dada en Londres, 1899 o cerca]</p><p>❖ \"Ustedes son leones... y perfecto.\" – Swami Vivekananda</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The sheep lion','','inherit','closed','closed','','470-revision-v1','','','2023-05-24 13:06:52','2023-05-24 13:06:52','',470,'https://divyayogamonteregie.org/ca/?p=751',0,'revision','',0),(752,1,'2023-05-24 13:06:52','2023-05-24 13:06:52','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Sobre la naturaleza oculta de Atman [Alma]:</p><p>\"Somos como un rey, que siendo víctima de la amnesia, vaga por su reino hecho jirones, sin saber quién es realmente. Somos como un cachorro de león que, habiéndose perdido de su madre al nacer, crece por accidente entre ovejas y se dedica a pastar y balar como ellas, asumiendo que él es como ellos\".</p><p>Una leona era grande con crías y andaba en busca de presas cuando vio un rebaño de ovejas. Ella saltó sobre ellos y murió en ese esfuerzo. Pero su pequeño león nació, sin madre. Las ovejas lo cuidaron y las ovejas lo criaron. Creció con ellos, comía hierba y balaba como las ovejas. Con el tiempo se convirtió en un león grande y adulto, y todavía balaba como una oveja y pensaba que era una oveja.</p><p>Un día otro león vino en busca de presas, y se sorprendió al descubrir que en medio de este rebaño de ovejas había un león que huía como las ovejas al acercarse el peligro. Trató de acercarse al león-oveja, para decirle que no era una oveja sino un león, pero el pobre animal huyó al acercarse.</p><p>Sin embargo, vio su oportunidad, y un día encontró al león oveja durmiendo. Se acercó y dijo: \"Eres un león\".</p><p>\"Yo soy la oveja\" gritó y baló el otro león, y no podía creer lo contrario.</p><p>El león lo arrastró hacia un lago y dijo: \"Mira aquí, ahí está mi reflejo y el tuyo\".</p><p>Luego vino la comparación. El león balando miró al león y luego a su propio reflejo, y en un momento surgió la idea de que era un león. El león rugió, el balido se había ido. [Adaptado de un cuento de Vivekananda en la conferencia \"La verdadera naturaleza del hombre\", dada en Londres, 1899 o cerca]</p><p>❖ \"Ustedes son leones... y perfecto.\" – Swami Vivekananda</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The sheep lion','','inherit','closed','closed','','470-revision-v1','','','2023-05-24 13:06:52','2023-05-24 13:06:52','',470,'https://divyayogamonteregie.org/ca/?p=752',0,'revision','',0),(753,1,'2023-05-24 13:06:53','2023-05-24 13:06:53','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">About the hidden nature of Atman [Soul]:</p><p style=\"text-align: justify;\">\"We are like a king, who falling victim to amnesia, wanders his kingdom in tatters, not knowing who he really is. We are like a lion cub who, having become lost from his mother at birth, grows up by accident among sheep and takes to grazing and bleating like them, assuming that he is like them.\" - Themes from Hindu literature.</p><p style=\"text-align: justify;\">A LIONESS was big with young and going about in search of prey when she saw a flock of sheep. She jumped upon them and died in that effort. But her little baby lion was born, motherless. The sheep took care of it, and the sheep brought it up. It grew up with them, ate grass, and bleated like the sheep. In time it became a big, full-grown lion, and still it bleated like a sheep and thought it was a sheep.</p><p style=\"text-align: justify;\">One day another lion came in search of prey, and was astonished to find that in the middle of this flock of sheep was a lion who fled like the sheep at the approach of danger. He tried to get near the sheep-lion, to tell it that it was not a sheep but a lion, but the poor animal fled at his approach.</p><p style=\"text-align: justify;\">However, he watched his opportunity, and one day found the sheep-lion sleeping. He approached it and said, \"You are a lion.\"</p><p style=\"text-align: justify;\">\"I am the sheep\" cried and bleated the other lion, and could not believe otherwise.</p><p style=\"text-align: justify;\">The lion dragged him towards a lake and said, \"Look here, there is my reflection and yours.\"</p><p style=\"text-align: justify;\">Then came the comparison. The bleating lion looked at the lion and then at its own reflection, and in a moment came the idea that it was a lion. The lion roared, the bleating was gone. [Adapted from a tale by Vivekananda in the lecture \"The real nature of man\", given in London, 1899 or near by]</p><p style=\"text-align: justify;\">❖ \"You are lions . . . and perfect.\" - Swami Vivekananda</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The sheep lion','','inherit','closed','closed','','470-revision-v1','','','2023-05-24 13:06:53','2023-05-24 13:06:53','',470,'https://divyayogamonteregie.org/ca/?p=753',0,'revision','',0),(754,1,'2023-05-24 13:07:56','2023-05-24 13:07:56','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un hombre encontró un capullo de una mariposa.<br />Un día apareció una pequeña abertura.<br />Se sentó y observó a la mariposa durante varias horas<br />mientras luchaba por apretar su cuerpo a través del pequeño agujero.<br />Luego se detuvo, como si no pudiera ir más allá.</p><p>Entonces el hombre decidió ayudar a la mariposa.<br />Tomó un par de tijeras y<br />cortó los trozos restantes de capullo.<br />La mariposa emergió fácilmente, pero<br />tenía un cuerpo hinchado y alas arrugadas.</p><p>El hombre continuó observándolo, esperando que en cualquier momento las alas se agrandaran<br />y expandieran lo suficiente como para sostener el cuerpo,<br /><br />¡Ninguno de los dos sucedió!<br />De hecho, la mariposa pasó el resto de su vida<br />arrastrándose.<br />Nunca fue capaz de volar.</p><p>Lo que el hombre en su amabilidad y prisa no entendió:<br />El capullo restrictivo<br />y la lucha<br />requerida por la mariposa para atravesar la abertura era una forma de forzar el fluido del cuerpo<br />hacia las alas<br />para que estuviera listo<br />para volar una vez que se lograra.</p><p>A veces las luchas son exactamente<br />lo que necesitamos en nuestras vidas.<br />Ir por la vida sin obstáculos nos paralizaría.<br />No seremos tan fuertes como podríamos haber sido<br />y nunca volaríamos.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The story of the butterfly.','','inherit','closed','closed','','475-revision-v1','','','2023-05-24 13:07:56','2023-05-24 13:07:56','',475,'https://divyayogamonteregie.org/ca/?p=754',0,'revision','',0),(755,1,'2023-05-24 13:08:16','2023-05-24 13:08:16','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un hombre encontró un capullo de una mariposa.<br />Un día apareció una pequeña abertura.<br />Se sentó y observó a la mariposa durante varias horas<br />mientras luchaba por apretar su cuerpo a través del pequeño agujero.<br />Luego se detuvo, como si no pudiera ir más allá.</p><p>Entonces el hombre decidió ayudar a la mariposa.<br />Tomó un par de tijeras y<br />cortó los trozos restantes de capullo.<br />La mariposa emergió fácilmente, pero<br />tenía un cuerpo hinchado y alas arrugadas.</p><p>El hombre continuó observándolo, esperando que en cualquier momento las alas se agrandaran<br />y expandieran lo suficiente como para sostener el cuerpo,<br /><br />¡Ninguno de los dos sucedió!<br />De hecho, la mariposa pasó el resto de su vida<br />arrastrándose.<br />Nunca fue capaz de volar.</p><p>Lo que el hombre en su amabilidad y prisa no entendió:<br />El capullo restrictivo<br />y la lucha<br />requerida por la mariposa para atravesar la abertura era una forma de forzar el fluido del cuerpo<br />hacia las alas<br />para que estuviera listo<br />para volar una vez que se lograra.</p><p>A veces las luchas son exactamente<br />lo que necesitamos en nuestras vidas.<br />Ir por la vida sin obstáculos nos paralizaría.<br />No seremos tan fuertes como podríamos haber sido<br />y nunca volaríamos.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The story of the butterfly.','','inherit','closed','closed','','475-revision-v1','','','2023-05-24 13:08:16','2023-05-24 13:08:16','',475,'https://divyayogamonteregie.org/ca/?p=755',0,'revision','',0),(756,1,'2023-05-24 13:08:16','2023-05-24 13:08:16','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Un hombre encontró un capullo de una mariposa.<br />Un día apareció una pequeña abertura.<br />Se sentó y observó a la mariposa durante varias horas<br />mientras luchaba por apretar su cuerpo a través del pequeño agujero.<br />Luego se detuvo, como si no pudiera ir más allá.</p><p>Entonces el hombre decidió ayudar a la mariposa.<br />Tomó un par de tijeras y<br />cortó los trozos restantes de capullo.<br />La mariposa emergió fácilmente, pero<br />tenía un cuerpo hinchado y alas arrugadas.</p><p>El hombre continuó observándolo, esperando que en cualquier momento las alas se agrandaran<br />y expandieran lo suficiente como para sostener el cuerpo,<br /><br />¡Ninguno de los dos sucedió!<br />De hecho, la mariposa pasó el resto de su vida<br />arrastrándose.<br />Nunca fue capaz de volar.</p><p>Lo que el hombre en su amabilidad y prisa no entendió:<br />El capullo restrictivo<br />y la lucha<br />requerida por la mariposa para atravesar la abertura era una forma de forzar el fluido del cuerpo<br />hacia las alas<br />para que estuviera listo<br />para volar una vez que se lograra.</p><p>A veces las luchas son exactamente<br />lo que necesitamos en nuestras vidas.<br />Ir por la vida sin obstáculos nos paralizaría.<br />No seremos tan fuertes como podríamos haber sido<br />y nunca volaríamos.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The story of the butterfly.','','inherit','closed','closed','','475-revision-v1','','','2023-05-24 13:08:16','2023-05-24 13:08:16','',475,'https://divyayogamonteregie.org/ca/?p=756',0,'revision','',0),(758,1,'2023-05-24 13:09:15','2023-05-24 13:09:15','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>DOS RANAS, una grande y otra pequeña, saltaron a un cubo de leche. Los lados del cubo eran brillantes y lisos. Las ranas nadaban dando vueltas y vueltas sin poder volver a salir del cubo, y cada vez que levantaban la boca para coger un poco de aire para respirar, bajaban. Siguieron nadando y jadeando así hasta que la gran rana se rindió y se ahogó. Entonces la ranita se dijo a sí misma:</p><p>\"Bueno, bueno. Yo también aguantaré todo el tiempo que pueda\".</p><p>Continuó durante horas, cuando de repente encontró algo sólido bajo sus pies: ¡la leche se batió en mantequilla! ¡Salió la ranita!</p><p>❖ <em>Dijo Yogananda: \"Sé como la ranita. Por supuesto, sigue luchando\".</em></p><p>❖ <em>Agite bien su dificultad o puede ser para su pérdida.</em></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The two Frogs in Trouble','','inherit','closed','closed','','490-revision-v1','','','2023-05-24 13:09:15','2023-05-24 13:09:15','',490,'https://divyayogamonteregie.org/ca/?p=758',0,'revision','',0),(759,1,'2023-05-24 13:09:34','2023-05-24 13:09:34','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>DOS RANAS, una grande y otra pequeña, saltaron a un cubo de leche. Los lados del cubo eran brillantes y lisos. Las ranas nadaban dando vueltas y vueltas sin poder volver a salir del cubo, y cada vez que levantaban la boca para coger un poco de aire para respirar, bajaban. Siguieron nadando y jadeando así hasta que la gran rana se rindió y se ahogó. Entonces la ranita se dijo a sí misma:</p><p>\"Bueno, bueno. Yo también aguantaré todo el tiempo que pueda\".</p><p>Continuó durante horas, cuando de repente encontró algo sólido bajo sus pies: ¡la leche se batió en mantequilla! ¡Salió la ranita!</p><p>❖ <em>Dijo Yogananda: \"Sé como la ranita. Por supuesto, sigue luchando\".</em></p><p>❖ <em>Agite bien su dificultad o puede ser para su pérdida.</em></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The two Frogs in Trouble','','inherit','closed','closed','','490-revision-v1','','','2023-05-24 13:09:34','2023-05-24 13:09:34','',490,'https://divyayogamonteregie.org/ca/?p=759',0,'revision','',0),(760,1,'2023-05-24 13:09:34','2023-05-24 13:09:34','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>DOS RANAS, una grande y otra pequeña, saltaron a un cubo de leche. Los lados del cubo eran brillantes y lisos. Las ranas nadaban dando vueltas y vueltas sin poder volver a salir del cubo, y cada vez que levantaban la boca para coger un poco de aire para respirar, bajaban. Siguieron nadando y jadeando así hasta que la gran rana se rindió y se ahogó. Entonces la ranita se dijo a sí misma:</p><p>\"Bueno, bueno. Yo también aguantaré todo el tiempo que pueda\".</p><p>Continuó durante horas, cuando de repente encontró algo sólido bajo sus pies: ¡la leche se batió en mantequilla! ¡Salió la ranita!</p><p>❖ <em>Dijo Yogananda: \"Sé como la ranita. Por supuesto, sigue luchando\".</em></p><p>❖ <em>Agite bien su dificultad o puede ser para su pérdida.</em></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The two Frogs in Trouble','','inherit','closed','closed','','490-revision-v1','','','2023-05-24 13:09:34','2023-05-24 13:09:34','',490,'https://divyayogamonteregie.org/ca/?p=760',0,'revision','',0),(761,1,'2023-05-24 13:09:34','2023-05-24 13:09:34','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">TWO FROGS - a big one and a small one - hopped into a pail of milk. The sides of the pail were shiny and smooth. The frogs were swimming round and round without being able to get out of the pail again, and every time they lifted their mouths to catch a little air to breathe, down they went. They kept on swimming and gasping like this till the big frog gave up and drowned. Then the little frog said to himself,</p><p style=\"text-align: justify;\">\"Well, well. I will hang on as long as I can, too.\"</p><p style=\"text-align: justify;\">It kept on for hours, when suddenly it found something solid under its feet - milk was churned to butter! Out jumped the little frog!</p><p style=\"text-align: justify;\">❖ <i>Said Yogananda: \"Be like the little frog. By all means keep battling.\" </i></p><p style=\"text-align: justify;\">❖ <i>Churn your difficulty well or it may be to your loss.</i></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The two Frogs in Trouble','','inherit','closed','closed','','490-revision-v1','','','2023-05-24 13:09:34','2023-05-24 13:09:34','',490,'https://divyayogamonteregie.org/ca/?p=761',0,'revision','',0),(762,1,'2023-05-24 13:10:39','2023-05-24 13:10:39','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Se cuenta una vieja historia de un rey en África que tenía un amigo cercano con quien creció. El amigo tenía la costumbre de mirar cada situación que ocurría en su vida (positiva o negativa) y comentar: \"¡Esto es bueno!\"</p><p>Un día, el rey y su amigo estaban en una expedición de caza. El amigo cargaría y prepararía las armas para el rey. El amigo aparentemente había hecho algo mal al preparar una de las armas, porque después de quitarle el arma a su amigo, el rey la disparó y le volaron el pulgar. Al examinar la situación, el amigo comentó como de costumbre: \"¡Esto es bueno!\" A lo que el rey respondió: \"¡No, esto NO es bueno!\" y procedió a enviar a su amigo a la cárcel.</p><p>Aproximadamente un año después, el rey estaba cazando en un área de la que debería haber sabido mantenerse alejado. Los caníbales lo capturaron y lo llevaron a su aldea. Le ataron las manos, apilaron madera, colocaron una estaca y lo ataron a la estaca. Cuando se acercaron para prender fuego a la madera, notaron que al rey le faltaba un pulgar. Siendo supersticiosos, nunca comieron a nadie que fuera menos que completo. Así que desatando al rey, lo enviaron en su camino.</p><p>Cuando regresó a casa, recordó el evento que le había quitado el pulgar y sintió remordimiento por el trato que había dado a su amigo. Fue inmediatamente a la cárcel para hablar con su amigo. \"Tenías razón\", dijo, \"fue bueno que me volaran el pulgar\". Y procedió a contarle al amigo todo lo que acababa de suceder. \"Y por eso lamento mucho haberte enviado a la cárcel durante tanto tiempo. Fue malo para mí hacer esto\".</p><p>\"No\", respondió su amigo, \"¡Esto es bueno!\" \"¿Qué quieres decir, \'Esto es bueno\'? ¿Cómo podría ser bueno que enviara a mi amigo a la cárcel por un año?\" \"Si NO hubiera estado en la cárcel, habría estado contigo\".</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','This is good','','inherit','closed','closed','','480-revision-v1','','','2023-05-24 13:10:39','2023-05-24 13:10:39','',480,'https://divyayogamonteregie.org/ca/?p=762',0,'revision','',0),(763,1,'2023-05-24 13:11:18','2023-05-24 13:11:18','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Se cuenta una vieja historia de un rey en África que tenía un amigo cercano con quien creció. El amigo tenía la costumbre de mirar cada situación que ocurría en su vida (positiva o negativa) y comentar: \"¡Esto es bueno!\"</p><p>Un día, el rey y su amigo estaban en una expedición de caza. El amigo cargaría y prepararía las armas para el rey. El amigo aparentemente había hecho algo mal al preparar una de las armas, porque después de quitarle el arma a su amigo, el rey la disparó y le volaron el pulgar. Al examinar la situación, el amigo comentó como de costumbre: \"¡Esto es bueno!\" A lo que el rey respondió: \"¡No, esto NO es bueno!\" y procedió a enviar a su amigo a la cárcel.</p><p>Aproximadamente un año después, el rey estaba cazando en un área de la que debería haber sabido mantenerse alejado. Los caníbales lo capturaron y lo llevaron a su aldea. Le ataron las manos, apilaron madera, colocaron una estaca y lo ataron a la estaca. Cuando se acercaron para prender fuego a la madera, notaron que al rey le faltaba un pulgar. Siendo supersticiosos, nunca comieron a nadie que fuera menos que completo. Así que desatando al rey, lo enviaron en su camino.</p><p>Cuando regresó a casa, recordó el evento que le había quitado el pulgar y sintió remordimiento por el trato que había dado a su amigo. Fue inmediatamente a la cárcel para hablar con su amigo. \"Tenías razón\", dijo, \"fue bueno que me volaran el pulgar\". Y procedió a contarle al amigo todo lo que acababa de suceder. \"Y por eso lamento mucho haberte enviado a la cárcel durante tanto tiempo. Fue malo para mí hacer esto\".</p><p>\"No\", respondió su amigo, \"¡Esto es bueno!\" \"¿Qué quieres decir, \'Esto es bueno\'? ¿Cómo podría ser bueno que enviara a mi amigo a la cárcel por un año?\" \"Si NO hubiera estado en la cárcel, habría estado contigo\".</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','This is good','','inherit','closed','closed','','480-revision-v1','','','2023-05-24 13:11:18','2023-05-24 13:11:18','',480,'https://divyayogamonteregie.org/ca/?p=763',0,'revision','',0),(764,1,'2023-05-24 13:11:18','2023-05-24 13:11:18','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Se cuenta una vieja historia de un rey en África que tenía un amigo cercano con quien creció. El amigo tenía la costumbre de mirar cada situación que ocurría en su vida (positiva o negativa) y comentar: \"¡Esto es bueno!\"</p><p>Un día, el rey y su amigo estaban en una expedición de caza. El amigo cargaría y prepararía las armas para el rey. El amigo aparentemente había hecho algo mal al preparar una de las armas, porque después de quitarle el arma a su amigo, el rey la disparó y le volaron el pulgar. Al examinar la situación, el amigo comentó como de costumbre: \"¡Esto es bueno!\" A lo que el rey respondió: \"¡No, esto NO es bueno!\" y procedió a enviar a su amigo a la cárcel.</p><p>Aproximadamente un año después, el rey estaba cazando en un área de la que debería haber sabido mantenerse alejado. Los caníbales lo capturaron y lo llevaron a su aldea. Le ataron las manos, apilaron madera, colocaron una estaca y lo ataron a la estaca. Cuando se acercaron para prender fuego a la madera, notaron que al rey le faltaba un pulgar. Siendo supersticiosos, nunca comieron a nadie que fuera menos que completo. Así que desatando al rey, lo enviaron en su camino.</p><p>Cuando regresó a casa, recordó el evento que le había quitado el pulgar y sintió remordimiento por el trato que había dado a su amigo. Fue inmediatamente a la cárcel para hablar con su amigo. \"Tenías razón\", dijo, \"fue bueno que me volaran el pulgar\". Y procedió a contarle al amigo todo lo que acababa de suceder. \"Y por eso lamento mucho haberte enviado a la cárcel durante tanto tiempo. Fue malo para mí hacer esto\".</p><p>\"No\", respondió su amigo, \"¡Esto es bueno!\" \"¿Qué quieres decir, \'Esto es bueno\'? ¿Cómo podría ser bueno que enviara a mi amigo a la cárcel por un año?\" \"Si NO hubiera estado en la cárcel, habría estado contigo\".</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','This is good','','inherit','closed','closed','','480-revision-v1','','','2023-05-24 13:11:18','2023-05-24 13:11:18','',480,'https://divyayogamonteregie.org/ca/?p=764',0,'revision','',0);
INSERT INTO `wpjv_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (765,1,'2023-05-24 13:11:18','2023-05-24 13:11:18','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">An old story is told of a king in Africa who had a close friend with whom he grew up. The friend had a habit of looking at every situation that ever occurred in his life (positive or negative) and remarking, \"This is good!\"</p><p style=\"text-align: justify;\">One day the king and his friend were out on a hunting expedition. The friend would load and prepare the guns for the king. The friend had apparently done something wrong in preparing one of the guns, for after taking the gun from his friend, the king fired it and his thumb was blown off. Examining the situation the friend remarked as usual, \"This is good!\" To which the king replied, \"No, this is NOT good!\" and proceeded to send his friend to jail.</p><p style=\"text-align: justify;\">About a year later, the king was hunting in an area that he should have known to stay clear of. Cannibals captured him and took him to their village. They tied his hands, stacked some wood, set up a stake and bound him to the stake. As they came near to set fire to the wood, they noticed that the king was missing a thumb. Being superstitious, they never ate anyone that was less than whole. So untying the king, they sent him on his way.</p><p style=\"text-align: justify;\">As he returned home, he was reminded of the event that had taken his thumb and felt remorse for his treatment of his friend. He went immediately to the jail to speak with his friend. \"You were right,\" he said, \"it was good that my thumb was blown off.\" And he proceeded to tell the friend all that had just happened. \"And so I am very sorry for sending you to jail for so long. It was bad for me to do this.\"</p><p style=\"text-align: justify;\">\"No,\" his friend replied, \"This is good!\" \"What do you mean,\'This is good\'? How could it be good that I sent my friend to jail for a year?\" \"If I had NOT been in jail, I would have been with you.\"</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','This is good','','inherit','closed','closed','','480-revision-v1','','','2023-05-24 13:11:18','2023-05-24 13:11:18','',480,'https://divyayogamonteregie.org/ca/?p=765',0,'revision','',0),(766,1,'2023-05-24 13:12:01','2023-05-24 13:12:01','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>¡Por favor, no te pares demasiado cerca de los árboles! No podrás disfrutar del bosque...</p><p>Unos años antes de que el huracán Katrina azotara Nueva Orleans, un automóvil nuevo y caro se detuvo en la parte superior del puente del río Mississippi y un caballero salió del automóvil con ropa muy cara.</p><p>Se subió por encima de la barandilla y debajo del puente a una plataforma debajo de la carretera preparándose para saltar. Los autos comenzaron a detenerse y el tráfico retrocedió por millas. La policía llegó con el departamento de bomberos, ministros y profesionales de la salud mental.</p><p>Comenzaron a hablar con el hombre y le dijeron que no saltara. Le dijeron que no podía morir; Puede romperse todos los huesos y quedar paralizado de por vida. Alrededor de media milla atrás en el tráfico había un viejo camión con cortadoras de césped, rastrillos y palas. Un jardinero anciano salió de su camioneta y caminó hasta donde estaba reunida la multitud.</p><p>Se abrió paso entre la gente, miró a un lado y gritó al hombre en la cornisa: \"Oye, tengo que ir a trabajar. Salta o bájate del puente. ¡Si decides no saltar, mañana va a ser mejor!\"</p><p>Con eso el hombre subió al puente. La policía lo esposó y lo colocó en el asiento trasero del coche de policía. El jardinero regresó a su camioneta esperando que el tráfico se moviera.</p><p>El ministro le preguntó al bombero: \"¿Quién era ese?\" El bombero dijo: \"¡Dijo que tiene que ir a trabajar!\"</p><p>La policía informó a la prensa que durante todo el camino hasta el hospital el hombre seguía diciendo una y otra vez: \"Mañana va a ser mejor\".</p><p>Uno debe ver un futuro, tener un futuro</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Tomorrow is going to be better','','inherit','closed','closed','','495-revision-v1','','','2023-05-24 13:12:01','2023-05-24 13:12:01','',495,'https://divyayogamonteregie.org/ca/?p=766',0,'revision','',0),(767,1,'2023-05-24 13:12:23','2023-05-24 13:12:23','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>¡Por favor, no te pares demasiado cerca de los árboles! No podrás disfrutar del bosque...</p><p>Unos años antes de que el huracán Katrina azotara Nueva Orleans, un automóvil nuevo y caro se detuvo en la parte superior del puente del río Mississippi y un caballero salió del automóvil con ropa muy cara.</p><p>Se subió por encima de la barandilla y debajo del puente a una plataforma debajo de la carretera preparándose para saltar. Los autos comenzaron a detenerse y el tráfico retrocedió por millas. La policía llegó con el departamento de bomberos, ministros y profesionales de la salud mental.</p><p>Comenzaron a hablar con el hombre y le dijeron que no saltara. Le dijeron que no podía morir; Puede romperse todos los huesos y quedar paralizado de por vida. Alrededor de media milla atrás en el tráfico había un viejo camión con cortadoras de césped, rastrillos y palas. Un jardinero anciano salió de su camioneta y caminó hasta donde estaba reunida la multitud.</p><p>Se abrió paso entre la gente, miró a un lado y gritó al hombre en la cornisa: \"Oye, tengo que ir a trabajar. Salta o bájate del puente. ¡Si decides no saltar, mañana va a ser mejor!\"</p><p>Con eso el hombre subió al puente. La policía lo esposó y lo colocó en el asiento trasero del coche de policía. El jardinero regresó a su camioneta esperando que el tráfico se moviera.</p><p>El ministro le preguntó al bombero: \"¿Quién era ese?\" El bombero dijo: \"¡Dijo que tiene que ir a trabajar!\"</p><p>La policía informó a la prensa que durante todo el camino hasta el hospital el hombre seguía diciendo una y otra vez: \"Mañana va a ser mejor\".</p><p>Uno debe ver un futuro, tener un futuro</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Tomorrow is going to be better','','inherit','closed','closed','','495-revision-v1','','','2023-05-24 13:12:23','2023-05-24 13:12:23','',495,'https://divyayogamonteregie.org/ca/?p=767',0,'revision','',0),(768,1,'2023-05-24 13:12:23','2023-05-24 13:12:23','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>¡Por favor, no te pares demasiado cerca de los árboles! No podrás disfrutar del bosque...</p><p>Unos años antes de que el huracán Katrina azotara Nueva Orleans, un automóvil nuevo y caro se detuvo en la parte superior del puente del río Mississippi y un caballero salió del automóvil con ropa muy cara.</p><p>Se subió por encima de la barandilla y debajo del puente a una plataforma debajo de la carretera preparándose para saltar. Los autos comenzaron a detenerse y el tráfico retrocedió por millas. La policía llegó con el departamento de bomberos, ministros y profesionales de la salud mental.</p><p>Comenzaron a hablar con el hombre y le dijeron que no saltara. Le dijeron que no podía morir; Puede romperse todos los huesos y quedar paralizado de por vida. Alrededor de media milla atrás en el tráfico había un viejo camión con cortadoras de césped, rastrillos y palas. Un jardinero anciano salió de su camioneta y caminó hasta donde estaba reunida la multitud.</p><p>Se abrió paso entre la gente, miró a un lado y gritó al hombre en la cornisa: \"Oye, tengo que ir a trabajar. Salta o bájate del puente. ¡Si decides no saltar, mañana va a ser mejor!\"</p><p>Con eso el hombre subió al puente. La policía lo esposó y lo colocó en el asiento trasero del coche de policía. El jardinero regresó a su camioneta esperando que el tráfico se moviera.</p><p>El ministro le preguntó al bombero: \"¿Quién era ese?\" El bombero dijo: \"¡Dijo que tiene que ir a trabajar!\"</p><p>La policía informó a la prensa que durante todo el camino hasta el hospital el hombre seguía diciendo una y otra vez: \"Mañana va a ser mejor\".</p><p>Uno debe ver un futuro, tener un futuro</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Tomorrow is going to be better','','inherit','closed','closed','','495-revision-v1','','','2023-05-24 13:12:23','2023-05-24 13:12:23','',495,'https://divyayogamonteregie.org/ca/?p=768',0,'revision','',0),(769,1,'2023-05-24 13:12:23','2023-05-24 13:12:23','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Please do not stand too close to the trees! You will not be able to enjoy the forest...</p><p style=\"text-align: justify;\">A few years before hurricane Katrina hit New Orleans, a new expensive automobile stopped at the top of the Mississippi River Bridge and a gentleman stepped out of the car wearing very expensive clothing.</p><p style=\"text-align: justify;\">He climbed over the rail and under the bridge onto a platform below the roadway preparing to jump. Cars started stopping and the traffic backed up for miles. The police arrived with the fire department, ministers and mental health professionals.</p><p style=\"text-align: justify;\">They began talking to the man and telling him not to jump. They told him that he may not die; he may break all of his bones and be paralyzed for life. About half mile back in traffic was an old truck with lawn mowers, rakes, and shovels. An elderly gardener got out of his truck and walked up to where the crowd was gathered.</p><p style=\"text-align: justify;\">He made his way through the people, looked over the side and hollered down to the man on the ledge, \"Hey, I got to go to work. Either jump or get off the bridge. If you decide not to jump, tomorrow is going to be better!\"</p><p style=\"text-align: justify;\">With that the man climbed up onto the bridge. The police handcuffed him and placed him in the back seat of the police car. The gardener walked back to his truck waiting for the traffic to move.</p><p style=\"text-align: justify;\">The minister asked the fireman, \"Who was that?\" The fireman said, \"He said he has to go to work!\"</p><p style=\"text-align: justify;\">The police reported to the press that all the way to the hospital the man kept saying over and over, \"Tomorrow is going to be better.\"</p><p style=\"text-align: justify;\">One must see a future, to have a future</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Tomorrow is going to be better','','inherit','closed','closed','','495-revision-v1','','','2023-05-24 13:12:23','2023-05-24 13:12:23','',495,'https://divyayogamonteregie.org/ca/?p=769',0,'revision','',0),(770,1,'2023-05-24 13:13:15','2023-05-24 13:13:15','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>A veces suena tonto o frustrante pensar en positivo cuando los tiempos son realmente malos y algunas personas lo empeoran para ti, ¿no es así?</p><p>Pero solo dime, si te llamo mañana por la mañana, mientras todavía estás en la cama y te digo: \"Eres un ángel para mí y tengo la bendición de tener una persona tan buena en mi vida. Que Dios los bendiga\".</p><p><strong>¿Cómo te sentirías?</strong></p><p>¿No será una gran sensación y una gran manera de comenzar un día fantástico?</p><p>A la mañana siguiente te llamo de nuevo, pero esta vez te digo: \"¡Tú sinvergüenza! Eres la persona más tonta y tonta de la tierra que he conocido. Me jodiste y serás... etc\".</p><p><strong>¿Cómo te sentirías ahora?</strong></p><p>¡Por supuesto que sería un día frustrante, con un sentimiento triste, porque escuchaste toda la mierda en la mañana mientras aún estabas en la cama!</p><p>Ahora responde a mi pregunta: <strong>\"¿Quién está controlando \'tu\' vida?\"</strong></p><p><strong>¿Se supone que debo controlar TU vida? ¿Es eso correcto?</strong></p><p><strong>Cuando digo algo bueno sobre ti, ¿te convierte en una buena persona y viceversa?</strong></p><p><strong>¡NO, ERES EL DUEÑO DE TU PROPIA VIDA!</strong></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Who\'s In Charge Of Your Life?','','inherit','closed','closed','','500-revision-v1','','','2023-05-24 13:13:15','2023-05-24 13:13:15','',500,'https://divyayogamonteregie.org/ca/?p=770',0,'revision','',0),(771,1,'2023-05-24 13:13:40','2023-05-24 13:13:40','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>A veces suena tonto o frustrante pensar en positivo cuando los tiempos son realmente malos y algunas personas lo empeoran para ti, ¿no es así?</p><p>Pero solo dime, si te llamo mañana por la mañana, mientras todavía estás en la cama y te digo: \"Eres un ángel para mí y tengo la bendición de tener una persona tan buena en mi vida. Que Dios los bendiga\".</p><p><strong>¿Cómo te sentirías?</strong></p><p>¿No será una gran sensación y una gran manera de comenzar un día fantástico?</p><p>A la mañana siguiente te llamo de nuevo, pero esta vez te digo: \"¡Tú sinvergüenza! Eres la persona más tonta y tonta de la tierra que he conocido. Me jodiste y serás... etc\".</p><p><strong>¿Cómo te sentirías ahora?</strong></p><p>¡Por supuesto que sería un día frustrante, con un sentimiento triste, porque escuchaste toda la mierda en la mañana mientras aún estabas en la cama!</p><p>Ahora responde a mi pregunta: <strong>\"¿Quién está controlando \'tu\' vida?\"</strong></p><p><strong>¿Se supone que debo controlar TU vida? ¿Es eso correcto?</strong></p><p><strong>Cuando digo algo bueno sobre ti, ¿te convierte en una buena persona y viceversa?</strong></p><p><strong>¡NO, ERES EL DUEÑO DE TU PROPIA VIDA!</strong></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Who\'s In Charge Of Your Life?','','inherit','closed','closed','','500-revision-v1','','','2023-05-24 13:13:40','2023-05-24 13:13:40','',500,'https://divyayogamonteregie.org/ca/?p=771',0,'revision','',0),(772,1,'2023-05-24 13:13:40','2023-05-24 13:13:40','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>A veces suena tonto o frustrante pensar en positivo cuando los tiempos son realmente malos y algunas personas lo empeoran para ti, ¿no es así?</p><p>Pero solo dime, si te llamo mañana por la mañana, mientras todavía estás en la cama y te digo: \"Eres un ángel para mí y tengo la bendición de tener una persona tan buena en mi vida. Que Dios los bendiga\".</p><p><strong>¿Cómo te sentirías?</strong></p><p>¿No será una gran sensación y una gran manera de comenzar un día fantástico?</p><p>A la mañana siguiente te llamo de nuevo, pero esta vez te digo: \"¡Tú sinvergüenza! Eres la persona más tonta y tonta de la tierra que he conocido. Me jodiste y serás... etc\".</p><p><strong>¿Cómo te sentirías ahora?</strong></p><p>¡Por supuesto que sería un día frustrante, con un sentimiento triste, porque escuchaste toda la mierda en la mañana mientras aún estabas en la cama!</p><p>Ahora responde a mi pregunta: <strong>\"¿Quién está controlando \'tu\' vida?\"</strong></p><p><strong>¿Se supone que debo controlar TU vida? ¿Es eso correcto?</strong></p><p><strong>Cuando digo algo bueno sobre ti, ¿te convierte en una buena persona y viceversa?</strong></p><p><strong>¡NO, ERES EL DUEÑO DE TU PROPIA VIDA!</strong></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Who\'s In Charge Of Your Life?','','inherit','closed','closed','','500-revision-v1','','','2023-05-24 13:13:40','2023-05-24 13:13:40','',500,'https://divyayogamonteregie.org/ca/?p=772',0,'revision','',0),(774,1,'2023-05-24 13:15:50','2023-05-24 13:15:50','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>OUR THOUGHTS</h1>		\n		<p align=\"center\">Keep your thoughts positive,</p><p align=\"center\">because thoughts become your words.</p><p align=\"center\">Keep your words positive</p><p align=\"center\">because words become your action.</p><p align=\"center\">Keep your action positive</p><p align=\"center\">Because your action becomes your habit.</p><p align=\"center\">Keep your habit positive,</p><p align=\"center\">because your habit becomes your lifestyle.</p><p align=\"center\">Keep your life style positive,</p><p align=\"center\">because your life style becomes your destiny.</p><p>.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Our Thoughts','','inherit','closed','closed','','215-revision-v1','','','2023-05-24 13:15:50','2023-05-24 13:15:50','',215,'https://divyayogamonteregie.org/ca/?p=774',0,'revision','',0),(775,1,'2023-05-24 13:16:23','2023-05-24 13:16:23','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Había una vez un sabio sabio que vagaba por el campo. Un día, cuando pasaba cerca de un pueblo, se le acercó una mujer que le habló de un niño enfermo cerca. Ella le suplicó que ayudara a este niño.</p><p>Entonces el sabio llegó a la aldea, y una multitud se reunió a su alrededor, porque un hombre así era una vista rara. Una mujer le trajo al niño enfermo y él dijo una oración por ella.</p><p>\"¿De verdad crees que tu oración la ayudará, cuando la medicina ha fallado?\", Gritó un hombre de la multitud.</p><p>\"¡No sabes nada de tales cosas! ¡Eres un tonto estúpido!\", le dijo el sabio al hombre.</p><p>El hombre se enojó mucho con estas palabras y su rostro se puso caliente y rojo. Estaba a punto de decir algo, o tal vez atacar, cuando el sabio se acercó a él y le dijo: \"Si una palabra tiene tal poder como para hacerte enojar y ardiente tanto, ¿no puede otra tener el poder de sanar?\"</p><p>Y así, el sabio sanó a dos personas ese día.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Wise Saint','','inherit','closed','closed','','485-revision-v1','','','2023-05-24 13:16:23','2023-05-24 13:16:23','',485,'https://divyayogamonteregie.org/ca/?p=775',0,'revision','',0),(776,1,'2023-05-24 13:16:42','2023-05-24 13:16:42','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Había una vez un sabio sabio que vagaba por el campo. Un día, cuando pasaba cerca de un pueblo, se le acercó una mujer que le habló de un niño enfermo cerca. Ella le suplicó que ayudara a este niño.</p><p>Entonces el sabio llegó a la aldea, y una multitud se reunió a su alrededor, porque un hombre así era una vista rara. Una mujer le trajo al niño enfermo y él dijo una oración por ella.</p><p>\"¿De verdad crees que tu oración la ayudará, cuando la medicina ha fallado?\", Gritó un hombre de la multitud.</p><p>\"¡No sabes nada de tales cosas! ¡Eres un tonto estúpido!\", le dijo el sabio al hombre.</p><p>El hombre se enojó mucho con estas palabras y su rostro se puso caliente y rojo. Estaba a punto de decir algo, o tal vez atacar, cuando el sabio se acercó a él y le dijo: \"Si una palabra tiene tal poder como para hacerte enojar y ardiente tanto, ¿no puede otra tener el poder de sanar?\"</p><p>Y así, el sabio sanó a dos personas ese día.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Wise Saint','','inherit','closed','closed','','485-revision-v1','','','2023-05-24 13:16:42','2023-05-24 13:16:42','',485,'https://divyayogamonteregie.org/ca/?p=776',0,'revision','',0),(777,1,'2023-05-24 13:16:42','2023-05-24 13:16:42','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Había una vez un sabio sabio que vagaba por el campo. Un día, cuando pasaba cerca de un pueblo, se le acercó una mujer que le habló de un niño enfermo cerca. Ella le suplicó que ayudara a este niño.</p><p>Entonces el sabio llegó a la aldea, y una multitud se reunió a su alrededor, porque un hombre así era una vista rara. Una mujer le trajo al niño enfermo y él dijo una oración por ella.</p><p>\"¿De verdad crees que tu oración la ayudará, cuando la medicina ha fallado?\", Gritó un hombre de la multitud.</p><p>\"¡No sabes nada de tales cosas! ¡Eres un tonto estúpido!\", le dijo el sabio al hombre.</p><p>El hombre se enojó mucho con estas palabras y su rostro se puso caliente y rojo. Estaba a punto de decir algo, o tal vez atacar, cuando el sabio se acercó a él y le dijo: \"Si una palabra tiene tal poder como para hacerte enojar y ardiente tanto, ¿no puede otra tener el poder de sanar?\"</p><p>Y así, el sabio sanó a dos personas ese día.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Wise Saint','','inherit','closed','closed','','485-revision-v1','','','2023-05-24 13:16:42','2023-05-24 13:16:42','',485,'https://divyayogamonteregie.org/ca/?p=777',0,'revision','',0),(778,1,'2023-05-24 13:16:42','2023-05-24 13:16:42','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">There once was a wise sage who wandered the countryside. One day, as he passed near a village, he was approached by a woman who told him of a sick child nearby. She beseeched him to help this child.</p><p style=\"text-align: justify;\">So the sage came to the village, and a crowd gathered around him, for such a man was a rare sight. One woman brought the sick child to him, and he said a prayer over her.</p><p style=\"text-align: justify;\">\"Do you really think your prayer will help her, when medicine has failed?\" yelled a man from the crowd.</p><p style=\"text-align: justify;\">\"You know nothing of such things! You are a stupid fool!\" said the sage to the man.</p><p style=\"text-align: justify;\">The man became very angry with these words and his face grew hot and red. He was about to say something, or perhaps strike out, when the sage walked over to him and said: \"If one word has such power as to make you so angry and hot, may not another have the power to heal?\"</p><p style=\"text-align: justify;\">And thus, the sage healed two people that day.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Wise Saint','','inherit','closed','closed','','485-revision-v1','','','2023-05-24 13:16:42','2023-05-24 13:16:42','',485,'https://divyayogamonteregie.org/ca/?p=778',0,'revision','',0),(779,1,'2023-05-24 13:20:59','2023-05-24 13:20:59','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:20:59','2023-05-24 13:20:59','',276,'https://divyayogamonteregie.org/ca/?p=779',0,'revision','',0),(780,1,'2023-05-24 13:20:59','2023-05-24 13:20:59','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivar</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un valor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un funeral interesante</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:20:59','2023-05-24 13:20:59','',276,'https://divyayogamonteregie.org/ca/?p=780',0,'revision','',0),(781,1,'2023-05-24 13:21:00','2023-05-24 13:21:00','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:21:00','2023-05-24 13:21:00','',276,'https://divyayogamonteregie.org/ca/?p=781',0,'revision','',0),(782,1,'2023-05-24 13:22:17','2023-05-24 13:22:17','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:22:17','2023-05-24 13:22:17','',276,'https://divyayogamonteregie.org/ca/?p=782',0,'revision','',0),(783,1,'2023-05-24 13:22:17','2023-05-24 13:22:17','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Comenzando un nuevo año</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Jirafa-madre y bebé</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Nunca te rindas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:22:17','2023-05-24 13:22:17','',276,'https://divyayogamonteregie.org/ca/?p=783',0,'revision','',0),(784,1,'2023-05-24 13:22:18','2023-05-24 13:22:18','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:22:18','2023-05-24 13:22:18','',276,'https://divyayogamonteregie.org/ca/?p=784',0,'revision','',0),(785,1,'2023-05-24 13:23:12','2023-05-24 13:23:12','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:23:12','2023-05-24 13:23:12','',276,'https://divyayogamonteregie.org/ca/?p=785',0,'revision','',0),(786,1,'2023-05-24 13:23:12','2023-05-24 13:23:12','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Sacude y da un paso adelante</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>A veces nos olvidamos... Recuerda ser amable</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:23:12','2023-05-24 13:23:12','',276,'https://divyayogamonteregie.org/ca/?p=786',0,'revision','',0),(787,1,'2023-05-24 13:23:13','2023-05-24 13:23:13','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:23:13','2023-05-24 13:23:13','',276,'https://divyayogamonteregie.org/ca/?p=787',0,'revision','',0),(788,1,'2023-05-24 13:24:39','2023-05-24 13:24:39','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:24:39','2023-05-24 13:24:39','',276,'https://divyayogamonteregie.org/ca/?p=788',0,'revision','',0),(789,1,'2023-05-24 13:24:39','2023-05-24 13:24:39','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El pescador mexicano conoce al MBA de Harvard ¿Qué es lo que realmente importa en la vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La apreciación</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>El elefante y la mosca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>La valla</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La felicidad</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>La ventana del hospital</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:24:39','2023-05-24 13:24:39','',276,'https://divyayogamonteregie.org/ca/?p=789',0,'revision','',0),(791,1,'2023-05-24 13:25:28','2023-05-24 13:25:28','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:25:28','2023-05-24 13:25:28','',276,'https://divyayogamonteregie.org/ca/?p=791',0,'revision','',0),(792,1,'2023-05-24 13:25:29','2023-05-24 13:25:29','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El rey con cuatro esposas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>El poder de los pensamientos</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>El conejo y la carrera de las tortugas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>La Roca</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:25:29','2023-05-24 13:25:29','',276,'https://divyayogamonteregie.org/ca/?p=792',0,'revision','',0),(794,1,'2023-05-24 13:26:35','2023-05-24 13:26:35','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:26:35','2023-05-24 13:26:35','',276,'https://divyayogamonteregie.org/ca/?p=794',0,'revision','',0),(795,1,'2023-05-24 13:26:35','2023-05-24 13:26:35','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>El león oveja</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>La historia de la mariposa</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>Las dos ranas en problemas</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:26:35','2023-05-24 13:26:35','',276,'https://divyayogamonteregie.org/ca/?p=795',0,'revision','',0),(796,1,'2023-05-24 13:26:35','2023-05-24 13:26:35','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:26:35','2023-05-24 13:26:35','',276,'https://divyayogamonteregie.org/ca/?p=796',0,'revision','',0),(797,1,'2023-05-24 13:27:36','2023-05-24 13:27:36','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:27:36','2023-05-24 13:27:36','',276,'https://divyayogamonteregie.org/ca/?p=797',0,'revision','',0),(798,1,'2023-05-24 13:27:36','2023-05-24 13:27:36','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Está bueno</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Santo Sabio</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Mañana va a ser mejor</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>¿Quién está a cargo de tu vida?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:27:36','2023-05-24 13:27:36','',276,'https://divyayogamonteregie.org/ca/?p=798',0,'revision','',0),(799,1,'2023-05-24 13:27:36','2023-05-24 13:27:36','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:27:36','2023-05-24 13:27:36','',276,'https://divyayogamonteregie.org/ca/?p=799',0,'revision','',0),(803,1,'2023-05-24 13:34:31','2023-05-24 13:34:31','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:34:31','2023-05-24 13:34:31','',276,'https://divyayogamonteregie.org/ca/?p=803',0,'revision','',0),(801,1,'2023-05-24 13:34:30','2023-05-24 13:34:30','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:34:30','2023-05-24 13:34:30','',276,'https://divyayogamonteregie.org/ca/?p=801',0,'revision','',0),(802,1,'2023-05-24 13:34:30','2023-05-24 13:34:30','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivar/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Un problema puede ser yo, no otro</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:34:30','2023-05-24 13:34:30','',276,'https://divyayogamonteregie.org/ca/?p=802',0,'revision','',0),(804,1,'2023-05-24 13:35:11','2023-05-24 13:35:11','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:35:11','2023-05-24 13:35:11','',276,'https://divyayogamonteregie.org/ca/?p=804',0,'revision','',0),(805,1,'2023-05-24 13:35:11','2023-05-24 13:35:11','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-problema-puede-ser-yo-no-otro/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:35:11','2023-05-24 13:35:11','',276,'https://divyayogamonteregie.org/ca/?p=805',0,'revision','',0),(806,1,'2023-05-24 13:35:13','2023-05-24 13:35:13','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:35:13','2023-05-24 13:35:13','',276,'https://divyayogamonteregie.org/ca/?p=806',0,'revision','',0),(807,1,'2023-05-24 13:35:42','2023-05-24 13:35:42','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:35:42','2023-05-24 13:35:42','',276,'https://divyayogamonteregie.org/ca/?p=807',0,'revision','',0),(808,1,'2023-05-24 13:35:42','2023-05-24 13:35:42','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-valor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:35:42','2023-05-24 13:35:42','',276,'https://divyayogamonteregie.org/ca/?p=808',0,'revision','',0),(809,1,'2023-05-24 13:35:43','2023-05-24 13:35:43','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:35:43','2023-05-24 13:35:43','',276,'https://divyayogamonteregie.org/ca/?p=809',0,'revision','',0),(810,1,'2023-05-24 13:36:12','2023-05-24 13:36:12','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:36:12','2023-05-24 13:36:12','',276,'https://divyayogamonteregie.org/ca/?p=810',0,'revision','',0),(811,1,'2023-05-24 13:36:12','2023-05-24 13:36:12','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/comenzando-un-nuevo-ano/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:36:12','2023-05-24 13:36:12','',276,'https://divyayogamonteregie.org/ca/?p=811',0,'revision','',0),(812,1,'2023-05-24 13:36:12','2023-05-24 13:36:12','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:36:12','2023-05-24 13:36:12','',276,'https://divyayogamonteregie.org/ca/?p=812',0,'revision','',0),(813,1,'2023-05-24 13:36:43','2023-05-24 13:36:43','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:36:43','2023-05-24 13:36:43','',276,'https://divyayogamonteregie.org/ca/?p=813',0,'revision','',0),(814,1,'2023-05-24 13:36:44','2023-05-24 13:36:44','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/jirafa-madre-y-bebe/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:36:44','2023-05-24 13:36:44','',276,'https://divyayogamonteregie.org/ca/?p=814',0,'revision','',0),(815,1,'2023-05-24 13:36:44','2023-05-24 13:36:44','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:36:44','2023-05-24 13:36:44','',276,'https://divyayogamonteregie.org/ca/?p=815',0,'revision','',0),(816,1,'2023-05-24 13:37:17','2023-05-24 13:37:17','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:37:17','2023-05-24 13:37:17','',276,'https://divyayogamonteregie.org/ca/?p=816',0,'revision','',0),(817,1,'2023-05-24 13:37:17','2023-05-24 13:37:17','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/nunca-te-rindas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:37:17','2023-05-24 13:37:17','',276,'https://divyayogamonteregie.org/ca/?p=817',0,'revision','',0),(818,1,'2023-05-24 13:37:18','2023-05-24 13:37:18','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:37:18','2023-05-24 13:37:18','',276,'https://divyayogamonteregie.org/ca/?p=818',0,'revision','',0),(819,1,'2023-05-24 13:37:56','2023-05-24 13:37:56','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:37:56','2023-05-24 13:37:56','',276,'https://divyayogamonteregie.org/ca/?p=819',0,'revision','',0),(820,1,'2023-05-24 13:37:56','2023-05-24 13:37:56','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sacude-y-da-un-paso-adelante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:37:56','2023-05-24 13:37:56','',276,'https://divyayogamonteregie.org/ca/?p=820',0,'revision','',0),(821,1,'2023-05-24 13:37:56','2023-05-24 13:37:56','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:37:56','2023-05-24 13:37:56','',276,'https://divyayogamonteregie.org/ca/?p=821',0,'revision','',0),(822,1,'2023-05-24 13:38:25','2023-05-24 13:38:25','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:38:25','2023-05-24 13:38:25','',276,'https://divyayogamonteregie.org/ca/?p=822',0,'revision','',0),(823,1,'2023-05-24 13:38:26','2023-05-24 13:38:26','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-veces-nos-olvidamos-recuerda-ser-amable/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:38:26','2023-05-24 13:38:26','',276,'https://divyayogamonteregie.org/ca/?p=823',0,'revision','',0),(824,1,'2023-05-24 13:38:26','2023-05-24 13:38:26','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:38:26','2023-05-24 13:38:26','',276,'https://divyayogamonteregie.org/ca/?p=824',0,'revision','',0),(825,1,'2023-05-24 13:38:56','2023-05-24 13:38:56','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:38:56','2023-05-24 13:38:56','',276,'https://divyayogamonteregie.org/ca/?p=825',0,'revision','',0),(826,1,'2023-05-24 13:38:57','2023-05-24 13:38:57','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-pescador-mexicano-conoce-al-mba-de-harvard-que-es-lo-que-realmente-importa-en-la-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:38:57','2023-05-24 13:38:57','',276,'https://divyayogamonteregie.org/ca/?p=826',0,'revision','',0),(828,1,'2023-05-24 13:39:34','2023-05-24 13:39:34','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:39:34','2023-05-24 13:39:34','',276,'https://divyayogamonteregie.org/ca/?p=828',0,'revision','',0),(829,1,'2023-05-24 13:39:34','2023-05-24 13:39:34','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-apreciacion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:39:34','2023-05-24 13:39:34','',276,'https://divyayogamonteregie.org/ca/?p=829',0,'revision','',0),(830,1,'2023-05-24 13:39:34','2023-05-24 13:39:34','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:39:34','2023-05-24 13:39:34','',276,'https://divyayogamonteregie.org/ca/?p=830',0,'revision','',0),(831,1,'2023-05-24 13:40:24','2023-05-24 13:40:24','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:40:24','2023-05-24 13:40:24','',276,'https://divyayogamonteregie.org/ca/?p=831',0,'revision','',0),(832,1,'2023-05-24 13:40:24','2023-05-24 13:40:24','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-elefante-y-la-mosca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:40:24','2023-05-24 13:40:24','',276,'https://divyayogamonteregie.org/ca/?p=832',0,'revision','',0),(833,1,'2023-05-24 13:40:24','2023-05-24 13:40:24','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:40:24','2023-05-24 13:40:24','',276,'https://divyayogamonteregie.org/ca/?p=833',0,'revision','',0),(834,1,'2023-05-24 13:40:57','2023-05-24 13:40:57','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:40:57','2023-05-24 13:40:57','',276,'https://divyayogamonteregie.org/ca/?p=834',0,'revision','',0),(835,1,'2023-05-24 13:40:58','2023-05-24 13:40:58','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-valla/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:40:58','2023-05-24 13:40:58','',276,'https://divyayogamonteregie.org/ca/?p=835',0,'revision','',0),(836,1,'2023-05-24 13:40:58','2023-05-24 13:40:58','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:40:58','2023-05-24 13:40:58','',276,'https://divyayogamonteregie.org/ca/?p=836',0,'revision','',0),(837,1,'2023-05-24 13:41:34','2023-05-24 13:41:34','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:41:34','2023-05-24 13:41:34','',276,'https://divyayogamonteregie.org/ca/?p=837',0,'revision','',0),(838,1,'2023-05-24 13:41:34','2023-05-24 13:41:34','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-felicidad/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:41:34','2023-05-24 13:41:34','',276,'https://divyayogamonteregie.org/ca/?p=838',0,'revision','',0),(839,1,'2023-05-24 13:41:34','2023-05-24 13:41:34','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:41:34','2023-05-24 13:41:34','',276,'https://divyayogamonteregie.org/ca/?p=839',0,'revision','',0),(840,1,'2023-05-24 13:42:02','2023-05-24 13:42:02','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:42:02','2023-05-24 13:42:02','',276,'https://divyayogamonteregie.org/ca/?p=840',0,'revision','',0),(841,1,'2023-05-24 13:42:02','2023-05-24 13:42:02','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-ventana-del-hospital/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:42:02','2023-05-24 13:42:02','',276,'https://divyayogamonteregie.org/ca/?p=841',0,'revision','',0),(842,1,'2023-05-24 13:42:02','2023-05-24 13:42:02','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:42:02','2023-05-24 13:42:02','',276,'https://divyayogamonteregie.org/ca/?p=842',0,'revision','',0),(843,1,'2023-05-24 13:42:30','2023-05-24 13:42:30','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:42:30','2023-05-24 13:42:30','',276,'https://divyayogamonteregie.org/ca/?p=843',0,'revision','',0),(844,1,'2023-05-24 13:42:31','2023-05-24 13:42:31','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-rey-con-cuatro-esposas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:42:31','2023-05-24 13:42:31','',276,'https://divyayogamonteregie.org/ca/?p=844',0,'revision','',0),(845,1,'2023-05-24 13:42:31','2023-05-24 13:42:31','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:42:31','2023-05-24 13:42:31','',276,'https://divyayogamonteregie.org/ca/?p=845',0,'revision','',0);
INSERT INTO `wpjv_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (846,1,'2023-05-24 13:42:55','2023-05-24 13:42:55','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:42:55','2023-05-24 13:42:55','',276,'https://divyayogamonteregie.org/ca/?p=846',0,'revision','',0),(847,1,'2023-05-24 13:42:55','2023-05-24 13:42:55','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-poder-de-los-pensamientos/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:42:55','2023-05-24 13:42:55','',276,'https://divyayogamonteregie.org/ca/?p=847',0,'revision','',0),(848,1,'2023-05-24 13:42:55','2023-05-24 13:42:55','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:42:55','2023-05-24 13:42:55','',276,'https://divyayogamonteregie.org/ca/?p=848',0,'revision','',0),(849,1,'2023-05-24 13:43:30','2023-05-24 13:43:30','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:43:30','2023-05-24 13:43:30','',276,'https://divyayogamonteregie.org/ca/?p=849',0,'revision','',0),(850,1,'2023-05-24 13:43:31','2023-05-24 13:43:31','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-conejo-y-la-carrera-de-las-tortugas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:43:31','2023-05-24 13:43:31','',276,'https://divyayogamonteregie.org/ca/?p=850',0,'revision','',0),(851,1,'2023-05-24 13:43:31','2023-05-24 13:43:31','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:43:31','2023-05-24 13:43:31','',276,'https://divyayogamonteregie.org/ca/?p=851',0,'revision','',0),(852,1,'2023-05-24 13:43:55','2023-05-24 13:43:55','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:43:55','2023-05-24 13:43:55','',276,'https://divyayogamonteregie.org/ca/?p=852',0,'revision','',0),(853,1,'2023-05-24 13:43:55','2023-05-24 13:43:55','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-roca/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:43:55','2023-05-24 13:43:55','',276,'https://divyayogamonteregie.org/ca/?p=853',0,'revision','',0),(854,1,'2023-05-24 13:43:55','2023-05-24 13:43:55','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:43:55','2023-05-24 13:43:55','',276,'https://divyayogamonteregie.org/ca/?p=854',0,'revision','',0),(855,1,'2023-05-24 13:44:21','2023-05-24 13:44:21','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:44:21','2023-05-24 13:44:21','',276,'https://divyayogamonteregie.org/ca/?p=855',0,'revision','',0),(856,1,'2023-05-24 13:44:22','2023-05-24 13:44:22','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/el-leon-oveja/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:44:22','2023-05-24 13:44:22','',276,'https://divyayogamonteregie.org/ca/?p=856',0,'revision','',0),(857,1,'2023-05-24 13:44:22','2023-05-24 13:44:22','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-sheep-lion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:44:22','2023-05-24 13:44:22','',276,'https://divyayogamonteregie.org/ca/?p=857',0,'revision','',0),(858,1,'2023-05-24 13:44:44','2023-05-24 13:44:44','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-sheep-lion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:44:44','2023-05-24 13:44:44','',276,'https://divyayogamonteregie.org/ca/?p=858',0,'revision','',0),(859,1,'2023-05-24 13:44:44','2023-05-24 13:44:44','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-sheep-lion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/la-historia-de-la-mariposa/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:44:44','2023-05-24 13:44:44','',276,'https://divyayogamonteregie.org/ca/?p=859',0,'revision','',0),(860,1,'2023-05-24 13:44:44','2023-05-24 13:44:44','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-sheep-lion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-story-of-the-butterfly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:44:44','2023-05-24 13:44:44','',276,'https://divyayogamonteregie.org/ca/?p=860',0,'revision','',0),(861,1,'2023-05-24 13:45:13','2023-05-24 13:45:13','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-sheep-lion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-story-of-the-butterfly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:45:13','2023-05-24 13:45:13','',276,'https://divyayogamonteregie.org/ca/?p=861',0,'revision','',0),(862,1,'2023-05-24 13:45:13','2023-05-24 13:45:13','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-sheep-lion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-story-of-the-butterfly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/esta-bueno/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:45:13','2023-05-24 13:45:13','',276,'https://divyayogamonteregie.org/ca/?p=862',0,'revision','',0),(863,1,'2023-05-24 13:45:13','2023-05-24 13:45:13','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-sheep-lion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-story-of-the-butterfly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/this-is-good/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:45:13','2023-05-24 13:45:13','',276,'https://divyayogamonteregie.org/ca/?p=863',0,'revision','',0),(864,1,'2023-05-24 13:45:43','2023-05-24 13:45:43','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-sheep-lion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-story-of-the-butterfly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/this-is-good/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:45:43','2023-05-24 13:45:43','',276,'https://divyayogamonteregie.org/ca/?p=864',0,'revision','',0),(865,1,'2023-05-24 13:45:43','2023-05-24 13:45:43','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-sheep-lion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-story-of-the-butterfly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/this-is-good/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/santo-sabio/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:45:43','2023-05-24 13:45:43','',276,'https://divyayogamonteregie.org/ca/?p=865',0,'revision','',0),(866,1,'2023-05-24 13:45:43','2023-05-24 13:45:43','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-sheep-lion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-story-of-the-butterfly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/this-is-good/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/wise-saint/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:45:43','2023-05-24 13:45:43','',276,'https://divyayogamonteregie.org/ca/?p=866',0,'revision','',0),(867,1,'2023-05-24 13:46:14','2023-05-24 13:46:14','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-sheep-lion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-story-of-the-butterfly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/this-is-good/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/wise-saint/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:46:14','2023-05-24 13:46:14','',276,'https://divyayogamonteregie.org/ca/?p=867',0,'revision','',0),(868,1,'2023-05-24 13:46:15','2023-05-24 13:46:15','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-sheep-lion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-story-of-the-butterfly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/this-is-good/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/wise-saint/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/las-dos-ranas-en-problemas/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:46:15','2023-05-24 13:46:15','',276,'https://divyayogamonteregie.org/ca/?p=868',0,'revision','',0),(869,1,'2023-05-24 13:46:15','2023-05-24 13:46:15','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-sheep-lion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-story-of-the-butterfly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/this-is-good/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/wise-saint/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-two-frogs-in-trouble/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:46:15','2023-05-24 13:46:15','',276,'https://divyayogamonteregie.org/ca/?p=869',0,'revision','',0),(870,1,'2023-05-24 13:46:42','2023-05-24 13:46:42','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-sheep-lion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-story-of-the-butterfly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/this-is-good/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/wise-saint/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-two-frogs-in-trouble/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:46:42','2023-05-24 13:46:42','',276,'https://divyayogamonteregie.org/ca/?p=870',0,'revision','',0),(871,1,'2023-05-24 13:46:42','2023-05-24 13:46:42','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-sheep-lion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-story-of-the-butterfly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/this-is-good/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/wise-saint/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-two-frogs-in-trouble/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/manana-va-a-ser-mejor/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:46:42','2023-05-24 13:46:42','',276,'https://divyayogamonteregie.org/ca/?p=871',0,'revision','',0),(872,1,'2023-05-24 13:46:43','2023-05-24 13:46:43','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-sheep-lion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-story-of-the-butterfly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/this-is-good/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/wise-saint/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-two-frogs-in-trouble/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/tomorrow-is-going-to-be-better/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:46:43','2023-05-24 13:46:43','',276,'https://divyayogamonteregie.org/ca/?p=872',0,'revision','',0),(873,1,'2023-05-24 13:47:05','2023-05-24 13:47:05','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-sheep-lion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-story-of-the-butterfly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/this-is-good/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/wise-saint/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-two-frogs-in-trouble/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/tomorrow-is-going-to-be-better/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:47:05','2023-05-24 13:47:05','',276,'https://divyayogamonteregie.org/ca/?p=873',0,'revision','',0),(874,1,'2023-05-24 13:47:06','2023-05-24 13:47:06','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-sheep-lion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-story-of-the-butterfly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/this-is-good/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/wise-saint/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-two-frogs-in-trouble/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/tomorrow-is-going-to-be-better/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/quien-esta-a-cargo-de-tu-vida/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:47:06','2023-05-24 13:47:06','',276,'https://divyayogamonteregie.org/ca/?p=874',0,'revision','',0),(875,1,'2023-05-24 13:47:06','2023-05-24 13:47:06','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-sheep-lion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-story-of-the-butterfly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/this-is-good/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/wise-saint/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-two-frogs-in-trouble/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/tomorrow-is-going-to-be-better/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/whos-in-charge-of-your-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:47:06','2023-05-24 13:47:06','',276,'https://divyayogamonteregie.org/ca/?p=875',0,'revision','',0),(876,1,'2023-05-24 13:47:36','2023-05-24 13:47:36','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-sheep-lion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-story-of-the-butterfly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/this-is-good/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/wise-saint/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-two-frogs-in-trouble/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/tomorrow-is-going-to-be-better/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/whos-in-charge-of-your-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:47:36','2023-05-24 13:47:36','',276,'https://divyayogamonteregie.org/ca/?p=876',0,'revision','',0),(877,1,'2023-05-24 13:47:36','2023-05-24 13:47:36','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-sheep-lion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-story-of-the-butterfly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/this-is-good/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/wise-saint/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-two-frogs-in-trouble/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/tomorrow-is-going-to-be-better/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/whos-in-charge-of-your-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/un-funeral-interesante/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:47:36','2023-05-24 13:47:36','',276,'https://divyayogamonteregie.org/ca/?p=877',0,'revision','',0),(878,1,'2023-05-24 13:47:36','2023-05-24 13:47:36','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>STORIES</h1>		\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/motivate/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"273\" height=\"185\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-5.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Motivate</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-problem-may-be-me-not-other/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-6.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A problem may be me not other</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/a-value/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"281\" height=\"180\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>A value</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/beginning-a-new-year/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Beginning A New Year</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/giraffe-mother-and-baby/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-7.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Giraffe-mother and baby</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/never-give-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Never give up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/shake-it-off-and-step-up/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"367\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante.png 1015w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-300x137.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/da-un-paso-adelante-768x352.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>Shake it off and step up</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/sometimes-we-forget-remember-to-be-kind/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"225\" height=\"225\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8.jpeg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-8-150x150.jpeg 150w\" sizes=\"(max-width: 225px) 100vw, 225px\" />								</a>\n											<figcaption>Sometimes We Forget... Remember To Be Kind</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"253\" height=\"199\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-9.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-appriciation/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-10.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The appriciation</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-elephant-and-the-fly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"259\" height=\"194\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-11.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Elephant and the Fly</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-fence/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"439\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957.jpeg 874w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-300x165.jpeg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ee3caa2d0f7980ae26f7cfe2bfb13957-768x422.jpeg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The fence</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-happiness/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"263\" height=\"191\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-12.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Happiness</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-hospital-window/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"780\" height=\"414\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana.png 780w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-300x159.png 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/ventana-768x408.png 768w\" sizes=\"(max-width: 780px) 100vw, 780px\" />								</a>\n											<figcaption>The hospital window</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-king-with-four-wives/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"450\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-1024x576.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-300x169.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas-768x432.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/El-rey-con-cuatro-esposas.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The king with four wives</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-power-of-thoughts/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"699\" height=\"378\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1.jpg 699w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/pensamientos-1-300x162.jpg 300w\" sizes=\"(max-width: 699px) 100vw, 699px\" />								</a>\n											<figcaption>The power of thoughts</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rabbit-and-the-turtle-race/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"336\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13.jpeg 336w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-13-300x134.jpeg 300w\" sizes=\"(max-width: 336px) 100vw, 336px\" />								</a>\n											<figcaption>The Rabbit and The Turtle Race</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-rock/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"274\" height=\"184\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-13.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>The Rock</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-sheep-lion/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"800\" height=\"494\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero.jpg 800w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-300x185.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/el-leon-que-se-creia-cordero-768x474.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />								</a>\n											<figcaption>The sheep lion</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-story-of-the-butterfly/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"640\" height=\"480\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault.jpg 640w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/sddefault-300x225.jpg 300w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<figcaption>The story of the butterfly.</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/this-is-good/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"216\" height=\"233\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-14.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>This is good</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/wise-saint/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"300\" height=\"168\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-15.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>Wise Saint</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/the-two-frogs-in-trouble/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"310\" height=\"162\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16.jpeg 310w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-16-300x157.jpeg 300w\" sizes=\"(max-width: 310px) 100vw, 310px\" />								</a>\n											<figcaption>The two Frogs in Trouble</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/tomorrow-is-going-to-be-better/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"318\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg 318w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17-300x150.jpeg 300w\" sizes=\"(max-width: 318px) 100vw, 318px\" />								</a>\n											<figcaption>Tomorrow is going to be better</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/whos-in-charge-of-your-life/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"317\" height=\"159\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18.jpeg 317w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-18-300x150.jpeg 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" />								</a>\n											<figcaption>Who\'s In Charge Of Your Life?</figcaption>\n										</figure>\n												<figure>\n											<a href=\"https://divyayogamonteregie.org/ca/an-interesting-funeral/\" target=\"_blank\" rel=\"noopener\">\n							<img width=\"284\" height=\"177\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-19.jpeg\" alt=\"\" loading=\"lazy\" />								</a>\n											<figcaption>An Interesting Funeral</figcaption>\n										</figure>\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Stories','','inherit','closed','closed','','276-revision-v1','','','2023-05-24 13:47:36','2023-05-24 13:47:36','',276,'https://divyayogamonteregie.org/ca/?p=878',0,'revision','',0),(879,1,'2023-05-24 16:09:34','2023-05-24 16:09:34','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','inherit','closed','closed','','1-revision-v1','','','2023-05-24 16:09:34','2023-05-24 16:09:34','',1,'https://divyayogamonteregie.org/ca/?p=879',0,'revision','',0),(1179,1,'2023-08-08 23:01:24','2023-08-08 23:01:24','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge.</p>\n<p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i>&nbsp;</i></b>exercise<b>s<i>,&nbsp;</i></b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p>\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p>\n<p>After yoga super food i. e. grapes and banana are available for Yogies.</p>\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p><ol><li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li><li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li><li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li><li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li><li><b>Eyes and neck exercises</b> – we take care of every part of the body.<br />Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>    </b><br />Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li><li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li><li><b>6 mudras </b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li><li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br />We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li><li><b>Laughter yoga </b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br />We also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li><li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li><li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li><li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li></ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong><br /><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></p>','Home','','inherit','closed','closed','','652-revision-v1','','','2023-08-08 23:01:24','2023-08-08 23:01:24','',652,'https://divyayogamonteregie.org/ca/?p=1179',0,'revision','',0),(887,1,'2023-05-24 20:15:53','2023-05-24 20:15:53','','yoga - copia','','inherit','open','closed','','yoga-copia','','','2023-05-24 20:15:53','2023-05-24 20:15:53','',652,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg',0,'attachment','image/jpeg',0),(888,1,'2023-05-24 20:16:08','2023-05-24 20:16:08','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge.</p><p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p><p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p><p>After yoga super food i. e. grapes and banana are available for Yogies.</p><p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p><ol><li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li><li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li><li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li><li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li><li><b>Eyes and neck exercises</b> – we take care of every part of the body.<br />Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>    </b><br />Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li><li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li><li><b>6 mudras </b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li><li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br />We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li><li><b>Laughter yoga </b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br />We also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li><li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li><li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li><li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li></ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong><br /><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></p>','Home','','inherit','closed','closed','','652-revision-v1','','','2023-05-24 20:16:08','2023-05-24 20:16:08','',652,'https://divyayogamonteregie.org/ca/?p=888',0,'revision','',0),(885,1,'2023-05-24 19:54:44','2023-05-24 19:54:44','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge.</p><p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p><p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p><p>After yoga super food i. e. grapes and banana are available for Yogies.</p><p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p><ol><li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li><li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li><li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li><li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li><li><b>Eyes and neck exercises</b> – we take care of every part of the body.<br />Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>    </b><br />Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li><li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li><li><b>6 mudras </b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li><li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br />We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li><li><b>Laughter yoga </b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br />We also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li><li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li><li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li><li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li></ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong><br /><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></p>','Home','','inherit','closed','closed','','652-revision-v1','','','2023-05-24 19:54:44','2023-05-24 19:54:44','',652,'https://divyayogamonteregie.org/ca/?p=885',0,'revision','',0),(883,1,'2023-05-24 19:54:44','2023-05-24 19:54:44','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Making the basic practice of yoga easily accessible to everyone at no charge.<br>Divya Yoga founder Swami Ram Dev says, \"Good health is a birthright of humanity.\" By performing yoga poses,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; / asanas, exercises, mudras, pranayamas, meditation and by providing practical motivational speech they help to develop a stress free mind and disease free body. It helps to take care of the body, mind and soul and live a happy, healthy and fulfilling life. Emphasize that the key to a healthy physical body and a healthy state of mind is in one\'s control. By getting in touch with the inner being we can experience a state of \"Bliss and Anand\".<br>This Divya yoga is for people of all ages. We start with warm-up exercises (12-15), salutation to the sun and motivational speech. Then we practice 90-100 combination of asanas, postures and exercises. We also do some acupressure, 6 mudras, 7 pranayamas and micro exercises for eyes, fingers, toes, face and neck. Laughter yoga and super brain yoga are also included. We finish with \'Shav Asana\', motivational poem, mantra and prayer,<br>After yoga, super food i.e. grapes and banana are available for yogis.<br>Yoga is a wonderful means of exercising, stretching and relaxing the body/mind so that it can be healthy and lasting. Helps in the coordination of the body, mind and soul. We also create an environment where people can interact for their betterment and the good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong><br />Every Saturday morning from 9:00 a.m. to 11:00 a.m. we participate in the session, a series of physical and breathing exercises to make the body more flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poems, prayers and our mantra. Yoga is a complete lifestyle<br />Every last Saturday of the month we have a guest speaker from 11:00 to 11:45 and after that we eat together. The food is provided by the Vinesh Saxena Family foundation, Meera is preparing amazing vegetarian Indian food for us, and if you want to share a small plate with us, you are welcome.<br />If it\'s your first day, please come before 8.30am to take the time to fill out an information sheet. Mihaela is happy to meet you.<br />Afterwards please come 10-15 minutes early to give yourself time to arrange your mat etc so we can start at 9.00am.<br />See below a brief description of the exercises we practice every Saturday.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>1. Workout: A series of 12-15 exercises to warm up your body: i.e. knee bend, forward bend, back bend, right bend, left bend, shoulder stretch, jump, hand swing , bend right knee, bend left knee, jump cat, body shake, downward/upward dog, etc.</p>\n<p>2. Salutation to the Sun – Surya Namaskar, a flowing series of 12 postures that helps improve strength and flexibility of the muscles and spine. These poses also warm up the body and tone the abdominal muscles.</p>\n<p>3. Motivational Speech - Our teacher Vinesh Saxena shares with us wise stories and practical tips for a happy, healthy, motivated and fulfilling life.</p>\n<p><br>4. Acupressure (an alternative medicine technique derived from acupuncture): Rotating pressure on the pads of the fingers to relieve sinus problems, the middle of the palm of the hand for kidney problems, and under the thumb for thyroid wellness .</p>\n<p><br>5. Exercises for the eyes and neck: we take care of each part of the body.Eyes: move the pupil to the right, left, up and down; Turn clockwise, then counterclockwise. Reach your right arm in front, thumb up, focus on your thumb as you bring your hand up to your nose, and then take it away. Extend both arms inward, look at the center of the thumb. Spread arms apart until you can still see, stay in this position for 30 seconds, move arms back Neck: bend left, right, forward and back, turn clockwise, then counterclockwise clockwise, look to the right and look up the left.</p>\n<p>6. Seven Pranayamas (breathing exercises) When we do yoga, 75% of the benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya (Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</p><p>7. 6 mudras (finger positioning): Used in conjunction with pranayama, usually while seated, to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</p><p>8. 100 postures, exercises and asanas: with them we increase flexibility from head to toe. We are also doing stretching exercises to help our bodies stimulate the lymphatic system, targeting key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees, and feet. We do exercises to relieve arthritis, diabetes, heart disease, cholesterol, back pain, insomnia, etc.</p><p>9. Laughter Yoga – with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a doctor from Mumbai. Today, it has become a global phenomenon with more than 6,000 laughter social clubs in some 60 countries. We combine unconditional laughter with Pranayama. The Laughter Yoga concept is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.</p><p>We also do Super Brain yoga to stimulate brain cells and improve memory. This form of yoga was invented by a Virginia doctor and is very popular in the medical community.</p><p>10. Shavasana – After your yoga session, lie on your back on the mat – Shavasana allows the body a chance to regroup and reset. After a balanced practice, the entire body has been stretched, contracted, twisted, and inverted. The body, mind and soul get complete rest, power, motivation and happiness.</p><p>11. Motivational poem: read at the end of the session to keep us motivated, focused and to recharge our batteries.</p><p>12. Mantra – at the end we repeat and acknowledge our mantra – IF IT WILL BE DEPENDS ON ME</p>','Home','','inherit','closed','closed','','652-revision-v1','','','2023-05-24 19:54:44','2023-05-24 19:54:44','',652,'https://divyayogamonteregie.org/ca/?p=883',0,'revision','',0),(884,1,'2023-05-24 19:54:44','2023-05-24 19:54:44','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Making the basic practice of yoga easily accessible to everyone at no charge.<br>Divya Yoga founder Swami Ram Dev says, \"Good health is a birthright of humanity.\" By performing yoga poses,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; / asanas, exercises, mudras, pranayamas, meditation and by providing practical motivational speech they help to develop a stress free mind and disease free body. It helps to take care of the body, mind and soul and live a happy, healthy and fulfilling life. Emphasize that the key to a healthy physical body and a healthy state of mind is in one\'s control. By getting in touch with the inner being we can experience a state of \"Bliss and Anand\".<br>This Divya yoga is for people of all ages. We start with warm-up exercises (12-15), salutation to the sun and motivational speech. Then we practice 90-100 combination of asanas, postures and exercises. We also do some acupressure, 6 mudras, 7 pranayamas and micro exercises for eyes, fingers, toes, face and neck. Laughter yoga and super brain yoga are also included. We finish with \'Shav Asana\', motivational poem, mantra and prayer,<br>After yoga, super food i.e. grapes and banana are available for yogis.<br>Yoga is a wonderful means of exercising, stretching and relaxing the body/mind so that it can be healthy and lasting. Helps in the coordination of the body, mind and soul. We also create an environment where people can interact for their betterment and the good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong><br />Every Saturday morning from 9:00 a.m. to 11:00 a.m. we participate in the session, a series of physical and breathing exercises to make the body more flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poems, prayers and our mantra. Yoga is a complete lifestyle<br />Every last Saturday of the month we have a guest speaker from 11:00 to 11:45 and after that we eat together. The food is provided by the Vinesh Saxena Family foundation, Meera is preparing amazing vegetarian Indian food for us, and if you want to share a small plate with us, you are welcome.<br />If it\'s your first day, please come before 8.30am to take the time to fill out an information sheet. Mihaela is happy to meet you.<br />Afterwards please come 10-15 minutes early to give yourself time to arrange your mat etc so we can start at 9.00am.<br />See below a brief description of the exercises we practice every Saturday.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>1. Workout: A series of 12-15 exercises to warm up your body: i.e. knee bend, forward bend, back bend, right bend, left bend, shoulder stretch, jump, hand swing , bend right knee, bend left knee, jump cat, body shake, downward/upward dog, etc.</p>\n<p>2. Salutation to the Sun – Surya Namaskar, a flowing series of 12 postures that helps improve strength and flexibility of the muscles and spine. These poses also warm up the body and tone the abdominal muscles.</p>\n<p>3. Motivational Speech - Our teacher Vinesh Saxena shares with us wise stories and practical tips for a happy, healthy, motivated and fulfilling life.</p>\n<p><br>4. Acupressure (an alternative medicine technique derived from acupuncture): Rotating pressure on the pads of the fingers to relieve sinus problems, the middle of the palm of the hand for kidney problems, and under the thumb for thyroid wellness .</p>\n<p><br>5. Exercises for the eyes and neck: we take care of each part of the body.Eyes: move the pupil to the right, left, up and down; Turn clockwise, then counterclockwise. Reach your right arm in front, thumb up, focus on your thumb as you bring your hand up to your nose, and then take it away. Extend both arms inward, look at the center of the thumb. Spread arms apart until you can still see, stay in this position for 30 seconds, move arms back Neck: bend left, right, forward and back, turn clockwise, then counterclockwise clockwise, look to the right and look up the left.</p>\n<p>6. Seven Pranayamas (breathing exercises) When we do yoga, 75% of the benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya (Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</p><p>7. 6 mudras (finger positioning): Used in conjunction with pranayama, usually while seated, to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</p><p>8. 100 postures, exercises and asanas: with them we increase flexibility from head to toe. We are also doing stretching exercises to help our bodies stimulate the lymphatic system, targeting key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees, and feet. We do exercises to relieve arthritis, diabetes, heart disease, cholesterol, back pain, insomnia, etc.</p><p>9. Laughter Yoga – with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a doctor from Mumbai. Today, it has become a global phenomenon with more than 6,000 laughter social clubs in some 60 countries. We combine unconditional laughter with Pranayama. The Laughter Yoga concept is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.</p><p>We also do Super Brain yoga to stimulate brain cells and improve memory. This form of yoga was invented by a Virginia doctor and is very popular in the medical community.</p><p>10. Shavasana – After your yoga session, lie on your back on the mat – Shavasana allows the body a chance to regroup and reset. After a balanced practice, the entire body has been stretched, contracted, twisted, and inverted. The body, mind and soul get complete rest, power, motivation and happiness.</p><p>11. Motivational poem: read at the end of the session to keep us motivated, focused and to recharge our batteries.</p><p>12. Mantra – at the end we repeat and acknowledge our mantra – IF IT WILL BE DEPENDS ON ME</p>','Home','','inherit','closed','closed','','652-revision-v1','','','2023-05-24 19:54:44','2023-05-24 19:54:44','',652,'https://divyayogamonteregie.org/ca/?p=884',0,'revision','',0),(889,1,'2023-05-24 20:16:08','2023-05-24 20:16:08','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge.</p><p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p><p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p><p>After yoga super food i. e. grapes and banana are available for Yogies.</p><p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p><ol><li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li><li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li><li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li><li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li><li><b>Eyes and neck exercises</b> – we take care of every part of the body.<br />Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>    </b><br />Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li><li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li><li><b>6 mudras </b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li><li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br />We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li><li><b>Laughter yoga </b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br />We also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li><li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li><li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li><li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li></ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong><br /><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></p>','Home','','inherit','closed','closed','','652-revision-v1','','','2023-05-24 20:16:08','2023-05-24 20:16:08','',652,'https://divyayogamonteregie.org/ca/?p=889',0,'revision','',0),(890,1,'2023-05-24 20:16:08','2023-05-24 20:16:08','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge.</p><p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p><p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p><p>After yoga super food i. e. grapes and banana are available for Yogies.</p><p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p><ol><li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li><li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li><li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li><li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li><li><b>Eyes and neck exercises</b> – we take care of every part of the body.<br />Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>    </b><br />Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li><li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li><li><b>6 mudras </b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li><li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br />We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li><li><b>Laughter yoga </b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br />We also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li><li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li><li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li><li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li></ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong><br /><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></p>','Home','','inherit','closed','closed','','652-revision-v1','','','2023-05-24 20:16:08','2023-05-24 20:16:08','',652,'https://divyayogamonteregie.org/ca/?p=890',0,'revision','',0),(891,1,'2023-05-24 20:46:25','2023-05-24 20:46:25','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg 290w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/elementor/thumbs/images-150x150.jpeg 500w\" sizes=\"(max-width: 290px) 100vw, 290px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"183\" height=\"275\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-4.jpeg\" alt=\"\" loading=\"lazy\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-05-24 20:46:25','2023-05-24 20:46:25','',21,'https://divyayogamonteregie.org/ca/?p=891',0,'revision','',0),(892,1,'2023-05-24 20:46:25','2023-05-24 20:46:25','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg 290w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/elementor/thumbs/images-150x150.jpeg 500w\" sizes=\"(max-width: 290px) 100vw, 290px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"183\" height=\"275\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-4.jpeg\" alt=\"\" loading=\"lazy\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-05-24 20:46:25','2023-05-24 20:46:25','',21,'https://divyayogamonteregie.org/ca/?p=892',0,'revision','',0),(893,1,'2023-05-24 20:46:25','2023-05-24 20:46:25','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg 290w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/elementor/thumbs/images-150x150.jpeg 500w\" sizes=\"(max-width: 290px) 100vw, 290px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"183\" height=\"275\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-4.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img src=\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n		<p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.   </p><p> For several years, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.  </p><p>  I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people. An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community.  </p><p>With gratitude.  </p>','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-05-24 20:46:25','2023-05-24 20:46:25','',21,'https://divyayogamonteregie.org/ca/?p=893',0,'revision','',0),(901,1,'2023-05-24 20:54:32','2023-05-24 20:54:32','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.   </p><p> For several years, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.  </p><p>  I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people. An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community.  </p><p>With gratitude.  </p>','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-05-24 20:54:32','2023-05-24 20:54:32','',21,'https://divyayogamonteregie.org/ca/?p=901',0,'revision','',0),(895,1,'2023-05-24 20:52:31','2023-05-24 20:52:31','','meditate-g16efcb560_1280','','inherit','open','closed','','meditate-g16efcb560_1280','','','2023-05-24 20:52:31','2023-05-24 20:52:31','',21,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg',0,'attachment','image/jpeg',0),(896,1,'2023-05-24 20:53:18','2023-05-24 20:53:18','','sunrise-g34a24ef5c_1280','','inherit','open','closed','','sunrise-g34a24ef5c_1280','','','2023-05-24 20:53:18','2023-05-24 20:53:18','',21,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280.jpg',0,'attachment','image/jpeg',0),(897,1,'2023-05-24 20:54:00','2023-05-24 20:54:00','','yoga-g4ef99c854_1280','','inherit','open','closed','','yoga-g4ef99c854_1280','','','2023-05-24 20:54:00','2023-05-24 20:54:00','',21,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg',0,'attachment','image/jpeg',0),(898,1,'2023-05-24 20:54:21','2023-05-24 20:54:21','','peaceful-g5ada3643f_1280','','inherit','open','closed','','peaceful-g5ada3643f_1280','','','2023-05-24 20:54:21','2023-05-24 20:54:21','',21,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg',0,'attachment','image/jpeg',0),(899,1,'2023-05-24 20:54:32','2023-05-24 20:54:32','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg 290w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/elementor/thumbs/images-150x150.jpeg 500w\" sizes=\"(max-width: 290px) 100vw, 290px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"183\" height=\"275\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-4.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img src=\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n		<p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.   </p><p> For several years, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.  </p><p>  I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people. An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community.  </p><p>With gratitude.  </p>','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-05-24 20:54:32','2023-05-24 20:54:32','',21,'https://divyayogamonteregie.org/ca/?p=899',0,'revision','',0),(900,1,'2023-05-24 20:54:32','2023-05-24 20:54:32','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"290\" height=\"174\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images.jpeg 290w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/elementor/thumbs/images-150x150.jpeg 500w\" sizes=\"(max-width: 290px) 100vw, 290px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"183\" height=\"275\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-4.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img src=\"https://divyayogamonteregie.org/ca/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />															\n		<p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.   </p><p> For several years, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.  </p><p>  I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people. An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community.  </p><p>With gratitude.  </p>','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-05-24 20:54:32','2023-05-24 20:54:32','',21,'https://divyayogamonteregie.org/ca/?p=900',0,'revision','',0),(902,1,'2023-05-24 20:58:30','2023-05-24 20:58:30','','yoga-g12cf06d74_1280','','inherit','open','closed','','yoga-g12cf06d74_1280','','','2023-05-24 20:58:30','2023-05-24 20:58:30','',0,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g12cf06d74_1280.jpg',0,'attachment','image/jpeg',0),(906,1,'2023-05-24 20:59:55','2023-05-24 20:59:55','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g12cf06d74_1280.jpg\" alt=\"yoga-g12cf06d74_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg\" alt=\"peaceful-g5ada3643f_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg\" alt=\"yoga-g4ef99c854_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280.jpg\" alt=\"sunrise-g34a24ef5c_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg\" alt=\"meditate-g16efcb560_1280\" /></figure>			\n												Previous image\n												Next image\n		<p style=\"text-align: justify;\">To make basic yoga practice easily accessible to everyone without charge.</p><p style=\"text-align: justify;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p><p style=\"text-align: justify;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p><p style=\"text-align: justify;\">After yoga super food i. e. grapes and banana are available for Yogies.</p><p style=\"text-align: justify;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>','Mission','','inherit','closed','closed','','43-revision-v1','','','2023-05-24 20:59:55','2023-05-24 20:59:55','',43,'https://divyayogamonteregie.org/ca/?p=906',0,'revision','',0),(904,1,'2023-05-24 20:59:55','2023-05-24 20:59:55','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Previous image\n												Next image\n		<p style=\"text-align: justify;\">To make basic yoga practice easily accessible to everyone without charge.</p><p style=\"text-align: justify;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p><p style=\"text-align: justify;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p><p style=\"text-align: justify;\">After yoga super food i. e. grapes and banana are available for Yogies.</p><p style=\"text-align: justify;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>','Mission','','inherit','closed','closed','','43-revision-v1','','','2023-05-24 20:59:55','2023-05-24 20:59:55','',43,'https://divyayogamonteregie.org/ca/?p=904',0,'revision','',0),(905,1,'2023-05-24 20:59:55','2023-05-24 20:59:55','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Previous image\n												Next image\n		<p style=\"text-align: justify;\">To make basic yoga practice easily accessible to everyone without charge.</p><p style=\"text-align: justify;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p><p style=\"text-align: justify;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p><p style=\"text-align: justify;\">After yoga super food i. e. grapes and banana are available for Yogies.</p><p style=\"text-align: justify;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>','Mission','','inherit','closed','closed','','43-revision-v1','','','2023-05-24 20:59:55','2023-05-24 20:59:55','',43,'https://divyayogamonteregie.org/ca/?p=905',0,'revision','',0),(919,1,'2023-05-24 21:19:35','2023-05-24 21:19:35','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-17.jpeg\" alt=\"descarga (17)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg\" alt=\"yoga-g4ef99c854_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280.jpg\" alt=\"sunrise-g34a24ef5c_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg\" alt=\"peaceful-g5ada3643f_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g12cf06d74_1280.jpg\" alt=\"yoga-g12cf06d74_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg\" alt=\"meditate-g16efcb560_1280\" /></figure>			\n												Previous image\n												Next image\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/pexels-lucas-pezeta-2035018-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-7.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"533\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-ga0015b20f_1280-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-ga0015b20f_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-ga0015b20f_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-ga0015b20f_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-ga0015b20f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/religion-g51748518d_1280-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/religion-g51748518d_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/religion-g51748518d_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/religion-g51748518d_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/religion-g51748518d_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Gallery','','inherit','closed','closed','','128-revision-v1','','','2023-05-24 21:19:35','2023-05-24 21:19:35','',128,'https://divyayogamonteregie.org/ca/?p=919',0,'revision','',0),(908,1,'2023-05-24 21:12:55','2023-05-24 21:12:55','','meditate-ga0015b20f_1280','','inherit','open','closed','','meditate-ga0015b20f_1280','','','2023-05-24 21:12:55','2023-05-24 21:12:55','',0,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-ga0015b20f_1280.jpg',0,'attachment','image/jpeg',0),(909,1,'2023-05-24 21:12:56','2023-05-24 21:12:56','','peaceful-g5ada3643f_1280','','inherit','open','closed','','peaceful-g5ada3643f_1280-2','','','2023-05-24 21:12:56','2023-05-24 21:12:56','',0,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1.jpg',0,'attachment','image/jpeg',0),(910,1,'2023-05-24 21:12:58','2023-05-24 21:12:58','','religion-g51748518d_1280','','inherit','open','closed','','religion-g51748518d_1280','','','2023-05-24 21:12:58','2023-05-24 21:12:58','',0,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/religion-g51748518d_1280.jpg',0,'attachment','image/jpeg',0),(911,1,'2023-05-24 21:12:59','2023-05-24 21:12:59','','sunrise-g34a24ef5c_1280','','inherit','open','closed','','sunrise-g34a24ef5c_1280-2','','','2023-05-24 21:12:59','2023-05-24 21:12:59','',0,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-1.jpg',0,'attachment','image/jpeg',0),(912,1,'2023-05-24 21:12:59','2023-05-24 21:12:59','','yoga-g4ef99c854_1280','','inherit','open','closed','','yoga-g4ef99c854_1280-2','','','2023-05-24 21:12:59','2023-05-24 21:12:59','',0,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1.jpg',0,'attachment','image/jpeg',0),(913,1,'2023-05-24 21:13:00','2023-05-24 21:13:00','','yoga-g12cf06d74_1280','','inherit','open','closed','','yoga-g12cf06d74_1280-2','','','2023-05-24 21:13:00','2023-05-24 21:13:00','',0,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g12cf06d74_1280-1.jpg',0,'attachment','image/jpeg',0),(914,1,'2023-05-24 21:13:01','2023-05-24 21:13:01','','yoga-g49e4dc349_1280','','inherit','open','closed','','yoga-g49e4dc349_1280','','','2023-05-24 21:13:01','2023-05-24 21:13:01','',0,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g49e4dc349_1280.jpg',0,'attachment','image/jpeg',0),(915,1,'2023-05-24 21:13:02','2023-05-24 21:13:02','','zen-gbd57af398_1280','','inherit','open','closed','','zen-gbd57af398_1280','','','2023-05-24 21:13:02','2023-05-24 21:13:02','',0,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/zen-gbd57af398_1280.jpg',0,'attachment','image/jpeg',0),(916,1,'2023-05-24 21:15:54','2023-05-24 21:15:54','','pexels-lucas-pezeta-2035018','','inherit','open','closed','','pexels-lucas-pezeta-2035018','','','2023-05-24 21:15:54','2023-05-24 21:15:54','',128,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/pexels-lucas-pezeta-2035018.jpg',0,'attachment','image/jpeg',0),(917,1,'2023-05-24 21:19:35','2023-05-24 21:19:35','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-6.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-7.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-5.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"251\" height=\"201\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-1.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Gallery','','inherit','closed','closed','','128-revision-v1','','','2023-05-24 21:19:35','2023-05-24 21:19:35','',128,'https://divyayogamonteregie.org/ca/?p=917',0,'revision','',0),(918,1,'2023-05-24 21:19:35','2023-05-24 21:19:35','<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide,.elementor-image-carousel-wrapper:not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga.jpeg\" alt=\"descarga\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-3.jpeg\" alt=\"descarga (3)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-1.jpeg\" alt=\"descarga (1)\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/descarga-2.jpeg\" alt=\"descarga (2)\" /></figure>			\n												Anterior\n												Siguiente\n			<style>/*! elementor - v3.12.2 - 23-04-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-6.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-7.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"275\" height=\"183\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-5.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"251\" height=\"201\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/images-1.jpeg\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Gallery','','inherit','closed','closed','','128-revision-v1','','','2023-05-24 21:19:35','2023-05-24 21:19:35','',128,'https://divyayogamonteregie.org/ca/?p=918',0,'revision','',0),(930,1,'2023-06-08 23:50:00','2023-06-08 23:50:00','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p><b><br /></b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</p><p>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</p><p>Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</p><p>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</p><p>No response.</p><p>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</p><p>Still no response.</p><p>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</p><p>Again he gets no response.</p><p>So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</p><p>Again there is no response.</p><p>So he walks right up behind her. \"Honey, what\'s for dinner?\"</p><p>\"James, for the FIFTH time I\'ve said, Lima Beans!\"</p><p><b>The problem may not be with the other person as we always think, could be very much within us!</b></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','inherit','closed','closed','','359-revision-v1','','','2023-06-08 23:50:00','2023-06-08 23:50:00','',359,'https://divyayogamonteregie.org/ca/?p=930',0,'revision','',0),(931,1,'2023-06-08 23:50:00','2023-06-08 23:50:00','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p><b><br /></b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</p><p>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</p><p>Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</p><p>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</p><p>No response.</p><p>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</p><p>Still no response.</p><p>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</p><p>Again he gets no response.</p><p>So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</p><p>Again there is no response.</p><p>So he walks right up behind her. \"Honey, what\'s for dinner?\"</p><p>\"James, for the FIFTH time I\'ve said, Lima Beans!\"</p><p><b>The problem may not be with the other person as we always think, could be very much within us!</b></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','inherit','closed','closed','','359-revision-v1','','','2023-06-08 23:50:00','2023-06-08 23:50:00','',359,'https://divyayogamonteregie.org/ca/?p=931',0,'revision','',0),(992,1,'2023-06-09 01:23:18','2023-06-09 01:23:18','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h3>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</h3><h3>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</h3><h3>Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</h3><h3>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</h3><h3>No response.</h3><h3>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</h3><h3>Still no response.</h3><h3>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</h3><h3>Again he gets no response.</h3><h3>So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</h3><h3>Again there is no response.</h3><h3>So he walks right up behind her. \"Honey, what\'s for dinner?\"</h3><h3>\"James, for the FIFTH time I\'ve said, Lima Beans!\"</h3><h3>The problem may not be with the other person as we always think, could be very much within us!</h3>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','inherit','closed','closed','','359-revision-v1','','','2023-06-09 01:23:18','2023-06-09 01:23:18','',359,'https://divyayogamonteregie.org/ca/?p=992',0,'revision','',0),(932,1,'2023-06-08 23:50:00','2023-06-08 23:50:00','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h3><b><br /></b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</h3><h3>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</h3><h3>Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</h3><h3>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</h3><h3>No response.</h3><h3>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</h3><h3>Still no response.</h3><h3>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</h3><h3>Again he gets no response.</h3><h3>So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</h3><h3>Again there is no response.</h3><h3>So he walks right up behind her. \"Honey, what\'s for dinner?\"</h3><h3>\"James, for the FIFTH time I\'ve said, Lima Beans!\"</h3><h3><b>The problem may not be with the other person as we always think, could be very much within us!</b></h3>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','inherit','closed','closed','','359-revision-v1','','','2023-06-08 23:50:00','2023-06-08 23:50:00','',359,'https://divyayogamonteregie.org/ca/?p=932',0,'revision','',0),(933,1,'2023-06-08 23:50:39','2023-06-08 23:50:39','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h3><b><br /></b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</h3><h3>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</h3><h3>Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</h3><h3>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</h3><h3>No response.</h3><h3>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</h3><h3>Still no response.</h3><h3>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</h3><h3>Again he gets no response.</h3><h3>So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</h3><h3>Again there is no response.</h3><h3>So he walks right up behind her. \"Honey, what\'s for dinner?\"</h3><h3>\"James, for the FIFTH time I\'ve said, Lima Beans!\"</h3><h3><b>The problem may not be with the other person as we always think, could be very much within us!</b></h3>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','inherit','closed','closed','','359-revision-v1','','','2023-06-08 23:50:39','2023-06-08 23:50:39','',359,'https://divyayogamonteregie.org/ca/?p=933',0,'revision','',0),(934,1,'2023-06-08 23:50:39','2023-06-08 23:50:39','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h3><b><br /></b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</h3><h3>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</h3><h3>Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</h3><h3>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</h3><h3>No response.</h3><h3>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</h3><h3>Still no response.</h3><h3>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</h3><h3>Again he gets no response.</h3><h3>So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</h3><h3>Again there is no response.</h3><h3>So he walks right up behind her. \"Honey, what\'s for dinner?\"</h3><h3>\"James, for the FIFTH time I\'ve said, Lima Beans!\"</h3><h3><b>The problem may not be with the other person as we always think, could be very much within us!</b></h3>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','inherit','closed','closed','','359-revision-v1','','','2023-06-08 23:50:39','2023-06-08 23:50:39','',359,'https://divyayogamonteregie.org/ca/?p=934',0,'revision','',0),(935,1,'2023-06-08 23:50:39','2023-06-08 23:50:39','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h3><b><br /></b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</h3><h3>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</h3><h3>Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</h3><h3>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</h3><h3>No response.</h3><h3>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</h3><h3>Still no response.</h3><h3>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</h3><h3>Again he gets no response.</h3><h3>So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</h3><h3>Again there is no response.</h3><h3>So he walks right up behind her. \"Honey, what\'s for dinner?\"</h3><h3>\"James, for the FIFTH time I\'ve said, Lima Beans!\"</h3><h3>The problem may not be with the other person as we always think, could be very much within us!</h3>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','inherit','closed','closed','','359-revision-v1','','','2023-06-08 23:50:39','2023-06-08 23:50:39','',359,'https://divyayogamonteregie.org/ca/?p=935',0,'revision','',0),(936,1,'2023-06-08 23:54:03','2023-06-08 23:54:03','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge.</p><p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p><p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p><p>After yoga super food i. e. grapes and banana are available for Yogies.</p><p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p><ol><li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li><li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li><li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li><li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li><li><b>Eyes and neck exercises</b> – we take care of every part of the body.<br />Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>    </b><br />Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li><li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li><li><b>6 mudras </b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li><li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br />We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li><li><b>Laughter yoga </b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br />We also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li><li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li><li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li><li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li></ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong><br /><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></p>','Home','','inherit','closed','closed','','652-revision-v1','','','2023-06-08 23:54:03','2023-06-08 23:54:03','',652,'https://divyayogamonteregie.org/ca/?p=936',0,'revision','',0),(937,1,'2023-06-08 23:54:03','2023-06-08 23:54:03','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge.</p><p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p><p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p><p>After yoga super food i. e. grapes and banana are available for Yogies.</p><p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p><ol><li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li><li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li><li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li><li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li><li><b>Eyes and neck exercises</b> – we take care of every part of the body.<br />Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>    </b><br />Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li><li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li><li><b>6 mudras </b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li><li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br />We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li><li><b>Laughter yoga </b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br />We also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li><li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li><li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li><li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li></ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong><br /><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></p>','Home','','inherit','closed','closed','','652-revision-v1','','','2023-06-08 23:54:03','2023-06-08 23:54:03','',652,'https://divyayogamonteregie.org/ca/?p=937',0,'revision','',0),(938,1,'2023-06-08 23:54:04','2023-06-08 23:54:04','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge.</p><p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p><p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p><p>After yoga super food i. e. grapes and banana are available for Yogies.</p><p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p><ol><li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li><li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li><li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li><li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li><li><b>Eyes and neck exercises</b> – we take care of every part of the body.<br />Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>    </b><br />Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li><li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li><li><b>6 mudras </b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li><li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br />We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li><li><b>Laughter yoga </b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br />We also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li><li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li><li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li><li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li></ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong><br /><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></p>','Home','','inherit','closed','closed','','652-revision-v1','','','2023-06-08 23:54:04','2023-06-08 23:54:04','',652,'https://divyayogamonteregie.org/ca/?p=938',0,'revision','',0),(939,1,'2023-06-09 00:00:59','2023-06-09 00:00:59','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g12cf06d74_1280.jpg\" alt=\"yoga-g12cf06d74_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg\" alt=\"peaceful-g5ada3643f_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg\" alt=\"yoga-g4ef99c854_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280.jpg\" alt=\"sunrise-g34a24ef5c_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg\" alt=\"meditate-g16efcb560_1280\" /></figure>			\n												Previous image\n												Next image\n		<p style=\"text-align: justify;\">To make basic yoga practice easily accessible to everyone without charge.</p><p style=\"text-align: justify;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p><p style=\"text-align: justify;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p><p style=\"text-align: justify;\">After yoga super food i. e. grapes and banana are available for Yogies.</p><p style=\"text-align: justify;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>','Mission','','inherit','closed','closed','','43-revision-v1','','','2023-06-09 00:00:59','2023-06-09 00:00:59','',43,'https://divyayogamonteregie.org/ca/?p=939',0,'revision','',0),(940,1,'2023-06-09 00:00:59','2023-06-09 00:00:59','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g12cf06d74_1280.jpg\" alt=\"yoga-g12cf06d74_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg\" alt=\"peaceful-g5ada3643f_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg\" alt=\"yoga-g4ef99c854_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280.jpg\" alt=\"sunrise-g34a24ef5c_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg\" alt=\"meditate-g16efcb560_1280\" /></figure>			\n												Previous image\n												Next image\n		<p style=\"text-align: justify;\">To make basic yoga practice easily accessible to everyone without charge.</p><p style=\"text-align: justify;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p><p style=\"text-align: justify;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p><p style=\"text-align: justify;\">After yoga super food i. e. grapes and banana are available for Yogies.</p><p style=\"text-align: justify;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>','Mission','','inherit','closed','closed','','43-revision-v1','','','2023-06-09 00:00:59','2023-06-09 00:00:59','',43,'https://divyayogamonteregie.org/ca/?p=940',0,'revision','',0),(947,1,'2023-06-09 00:04:23','2023-06-09 00:04:23','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g12cf06d74_1280.jpg\" alt=\"yoga-g12cf06d74_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg\" alt=\"peaceful-g5ada3643f_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg\" alt=\"yoga-g4ef99c854_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280.jpg\" alt=\"sunrise-g34a24ef5c_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg\" alt=\"meditate-g16efcb560_1280\" /></figure>			\n												Previous image\n												Next image\n		<p style=\"text-align: justify;\">To make basic yoga practice easily accessible to everyone without charge.</p><p style=\"text-align: justify;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p><p style=\"text-align: justify;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p><p style=\"text-align: justify;\">After yoga super food i. e. grapes and banana are available for Yogies.</p><p style=\"text-align: justify;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>','Mission','','inherit','closed','closed','','43-revision-v1','','','2023-06-09 00:04:23','2023-06-09 00:04:23','',43,'https://divyayogamonteregie.org/ca/?p=947',0,'revision','',0),(941,1,'2023-06-09 00:01:00','2023-06-09 00:01:00','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g12cf06d74_1280.jpg\" alt=\"yoga-g12cf06d74_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg\" alt=\"peaceful-g5ada3643f_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg\" alt=\"yoga-g4ef99c854_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280.jpg\" alt=\"sunrise-g34a24ef5c_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg\" alt=\"meditate-g16efcb560_1280\" /></figure>			\n												Previous image\n												Next image\n		<p style=\"text-align: justify;\"> </p><h5 style=\"text-align: justify;\">To make basic yoga practice easily accessible to everyone without charge.</h5><h5 style=\"text-align: justify;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</h5><h5 style=\"text-align: justify;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</h5><h5 style=\"text-align: justify;\">After yoga super food i. e. grapes and banana are available for Yogies.</h5><h5 style=\"text-align: justify;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</h5>','Mission','','inherit','closed','closed','','43-revision-v1','','','2023-06-09 00:01:00','2023-06-09 00:01:00','',43,'https://divyayogamonteregie.org/ca/?p=941',0,'revision','',0),(942,1,'2023-06-09 00:01:18','2023-06-09 00:01:18','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g12cf06d74_1280.jpg\" alt=\"yoga-g12cf06d74_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg\" alt=\"peaceful-g5ada3643f_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg\" alt=\"yoga-g4ef99c854_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280.jpg\" alt=\"sunrise-g34a24ef5c_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg\" alt=\"meditate-g16efcb560_1280\" /></figure>			\n												Previous image\n												Next image\n		<p style=\"text-align: justify;\"> </p><h5 style=\"text-align: justify;\">To make basic yoga practice easily accessible to everyone without charge.</h5><h5 style=\"text-align: justify;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</h5><h5 style=\"text-align: justify;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</h5><h5 style=\"text-align: justify;\">After yoga super food i. e. grapes and banana are available for Yogies.</h5><h5 style=\"text-align: justify;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</h5>','Mission','','inherit','closed','closed','','43-revision-v1','','','2023-06-09 00:01:18','2023-06-09 00:01:18','',43,'https://divyayogamonteregie.org/ca/?p=942',0,'revision','',0),(943,1,'2023-06-09 00:01:19','2023-06-09 00:01:19','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g12cf06d74_1280.jpg\" alt=\"yoga-g12cf06d74_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg\" alt=\"peaceful-g5ada3643f_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg\" alt=\"yoga-g4ef99c854_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280.jpg\" alt=\"sunrise-g34a24ef5c_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg\" alt=\"meditate-g16efcb560_1280\" /></figure>			\n												Previous image\n												Next image\n		<p style=\"text-align: justify;\"> </p><h5 style=\"text-align: justify;\">To make basic yoga practice easily accessible to everyone without charge.</h5><h5 style=\"text-align: justify;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</h5><h5 style=\"text-align: justify;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</h5><h5 style=\"text-align: justify;\">After yoga super food i. e. grapes and banana are available for Yogies.</h5><h5 style=\"text-align: justify;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</h5>','Mission','','inherit','closed','closed','','43-revision-v1','','','2023-06-09 00:01:19','2023-06-09 00:01:19','',43,'https://divyayogamonteregie.org/ca/?p=943',0,'revision','',0),(944,1,'2023-06-09 00:01:19','2023-06-09 00:01:19','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g12cf06d74_1280.jpg\" alt=\"yoga-g12cf06d74_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg\" alt=\"peaceful-g5ada3643f_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg\" alt=\"yoga-g4ef99c854_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280.jpg\" alt=\"sunrise-g34a24ef5c_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg\" alt=\"meditate-g16efcb560_1280\" /></figure>			\n												Previous image\n												Next image\n		<p style=\"text-align: justify;\"> </p><h5 style=\"text-align: justify;\">To make basic yoga practice easily accessible to everyone without charge.</h5><h5 style=\"text-align: justify;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</h5><h5 style=\"text-align: justify;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</h5><h5 style=\"text-align: justify;\">After yoga super food i. e. grapes and banana are available for Yogies.</h5><h5 style=\"text-align: justify;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</h5>','Mission','','inherit','closed','closed','','43-revision-v1','','','2023-06-09 00:01:19','2023-06-09 00:01:19','',43,'https://divyayogamonteregie.org/ca/?p=944',0,'revision','',0),(945,1,'2023-06-09 00:04:23','2023-06-09 00:04:23','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g12cf06d74_1280.jpg\" alt=\"yoga-g12cf06d74_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg\" alt=\"peaceful-g5ada3643f_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg\" alt=\"yoga-g4ef99c854_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280.jpg\" alt=\"sunrise-g34a24ef5c_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg\" alt=\"meditate-g16efcb560_1280\" /></figure>			\n												Previous image\n												Next image\n		<p style=\"text-align: justify;\"> </p><h5 style=\"text-align: justify;\">To make basic yoga practice easily accessible to everyone without charge.</h5><h5 style=\"text-align: justify;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</h5><h5 style=\"text-align: justify;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</h5><h5 style=\"text-align: justify;\">After yoga super food i. e. grapes and banana are available for Yogies.</h5><h5 style=\"text-align: justify;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</h5>','Mission','','inherit','closed','closed','','43-revision-v1','','','2023-06-09 00:04:23','2023-06-09 00:04:23','',43,'https://divyayogamonteregie.org/ca/?p=945',0,'revision','',0),(946,1,'2023-06-09 00:04:23','2023-06-09 00:04:23','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g12cf06d74_1280.jpg\" alt=\"yoga-g12cf06d74_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg\" alt=\"peaceful-g5ada3643f_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg\" alt=\"yoga-g4ef99c854_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280.jpg\" alt=\"sunrise-g34a24ef5c_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg\" alt=\"meditate-g16efcb560_1280\" /></figure>			\n												Previous image\n												Next image\n		<p style=\"text-align: justify;\"> </p><h5 style=\"text-align: justify;\">To make basic yoga practice easily accessible to everyone without charge.</h5><h5 style=\"text-align: justify;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</h5><h5 style=\"text-align: justify;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</h5><h5 style=\"text-align: justify;\">After yoga super food i. e. grapes and banana are available for Yogies.</h5><h5 style=\"text-align: justify;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</h5>','Mission','','inherit','closed','closed','','43-revision-v1','','','2023-06-09 00:04:23','2023-06-09 00:04:23','',43,'https://divyayogamonteregie.org/ca/?p=946',0,'revision','',0),(948,1,'2023-06-09 00:09:05','2023-06-09 00:09:05','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.   </p><p> For several years, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.  </p><p>  I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people. An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community.  </p><p>With gratitude.  </p>','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:09:05','2023-06-09 00:09:05','',21,'https://divyayogamonteregie.org/ca/?p=948',0,'revision','',0),(949,1,'2023-06-09 00:09:06','2023-06-09 00:09:06','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.   </p><p> For several years, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.  </p><p>  I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people. An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community.  </p><p>With gratitude.  </p>','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:09:06','2023-06-09 00:09:06','',21,'https://divyayogamonteregie.org/ca/?p=949',0,'revision','',0),(950,1,'2023-06-09 00:09:06','2023-06-09 00:09:06','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.   </p><p> For several years, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.  </p><p>  I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people. An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community.  </p><p>With gratitude.  </p>		\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:09:06','2023-06-09 00:09:06','',21,'https://divyayogamonteregie.org/ca/?p=950',0,'revision','',0),(951,1,'2023-06-09 00:19:13','2023-06-09 00:19:13','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.   </p><p> For several years, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.  </p><p>  I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people. An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community.  </p><p>With gratitude.  </p>		\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:19:13','2023-06-09 00:19:13','',21,'https://divyayogamonteregie.org/ca/?p=951',0,'revision','',0),(952,1,'2023-06-09 00:19:13','2023-06-09 00:19:13','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.   </p><p> For several years, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.  </p><p>  I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people. An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community.  </p><p>With gratitude.  </p>		\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:19:13','2023-06-09 00:19:13','',21,'https://divyayogamonteregie.org/ca/?p=952',0,'revision','',0),(953,1,'2023-06-09 00:19:14','2023-06-09 00:19:14','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Mihaela Bostan Frandes</h1>		\n		  In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.  		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.   </p><p> For several years, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.  </p><p>  I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people. An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community.  </p><p>With gratitude.  </p>		\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:19:14','2023-06-09 00:19:14','',21,'https://divyayogamonteregie.org/ca/?p=953',0,'revision','',0),(957,1,'2023-06-09 00:28:19','2023-06-09 00:28:19','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Mihaela Bostan Frandes</h1>		\n		  In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.  		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.   </p><p> For several years, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.  </p><p>  I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people. An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community.  </p><p>With gratitude.  </p>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:28:19','2023-06-09 00:28:19','',21,'https://divyayogamonteregie.org/ca/?p=957',0,'revision','',0),(955,1,'2023-06-09 00:28:19','2023-06-09 00:28:19','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Mihaela Bostan Frandes</h1>		\n		  In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.  		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.   </p><p> For several years, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.  </p><p>  I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people. An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community.  </p><p>With gratitude.  </p>		\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:28:19','2023-06-09 00:28:19','',21,'https://divyayogamonteregie.org/ca/?p=955',0,'revision','',0),(956,1,'2023-06-09 00:28:19','2023-06-09 00:28:19','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Mihaela Bostan Frandes</h1>		\n		  In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.  		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.   </p><p> For several years, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.  </p><p>  I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people. An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community.  </p><p>With gratitude.  </p>		\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />															\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:28:19','2023-06-09 00:28:19','',21,'https://divyayogamonteregie.org/ca/?p=956',0,'revision','',0),(958,1,'2023-06-09 00:37:04','2023-06-09 00:37:04','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Mihaela Bostan Frandes</h1>		\n		  In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.  		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.   </p><p> For several years, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.  </p><p>  I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people. An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community.  </p><p>With gratitude.  </p>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:37:04','2023-06-09 00:37:04','',21,'https://divyayogamonteregie.org/ca/?p=958',0,'revision','',0),(959,1,'2023-06-09 00:37:04','2023-06-09 00:37:04','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Mihaela Bostan Frandes</h1>		\n		  In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.  		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.   </p><p> For several years, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.  </p><p>  I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people. An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community.  </p><p>With gratitude.  </p>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:37:04','2023-06-09 00:37:04','',21,'https://divyayogamonteregie.org/ca/?p=959',0,'revision','',0),(960,1,'2023-06-09 00:37:04','2023-06-09 00:37:04','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Mihaela Bostan Frandes</h1>		\n		  In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.  		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1>Jocelyne Boucher</h1>		\n		<p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.   </p><p> For several years, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.  </p><p>  I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people. An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community.  </p><p>With gratitude.  </p>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:37:04','2023-06-09 00:37:04','',21,'https://divyayogamonteregie.org/ca/?p=960',0,'revision','',0),(970,1,'2023-06-09 00:48:22','2023-06-09 00:48:22','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Jocelyne Boucher</h1>		\n		<p> </p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. </p><p>ears, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. </p><p> I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:48:22','2023-06-09 00:48:22','',21,'https://divyayogamonteregie.org/ca/?p=970',0,'revision','',0),(967,1,'2023-06-09 00:48:04','2023-06-09 00:48:04','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Jocelyne Boucher</h1>		\n		<p> </p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p> </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. </p><p> </p><p> For several years, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. </p><p> </p><p> I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:48:04','2023-06-09 00:48:04','',21,'https://divyayogamonteregie.org/ca/?p=967',0,'revision','',0),(964,1,'2023-06-09 00:46:57','2023-06-09 00:46:57','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Jocelyne Boucher</h1>		\n		<p style=\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\">&nbsp;<u></u>In 2011, I started practicing yoga with Meera and Mr. Saxena&nbsp;&nbsp;at the International School of St-Lambert.&nbsp;Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.&nbsp;Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.&nbsp;<u></u>&nbsp;<u></u></p><p style=\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\"><u></u>&nbsp;<u></u></p><p style=\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\">I then undertook two other trainings, totaling 500 hours in Hatha Yoga.&nbsp;In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.<u></u>&nbsp;<u></u></p><p style=\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\"><u></u>&nbsp;<u></u></p><p style=\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\">&nbsp;For several years, yoga and meditation have been an integral part of my life.&nbsp;In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.<u></u>&nbsp;<u></u></p><p style=\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\"><u></u>&nbsp;<u></u></p><p style=\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\">&nbsp;I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:46:57','2023-06-09 00:46:57','',21,'https://divyayogamonteregie.org/ca/?p=964',0,'revision','',0),(962,1,'2023-06-09 00:46:56','2023-06-09 00:46:56','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Mihaela Bostan Frandes</h1>		\n		  In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.  		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1>Jocelyne Boucher</h1>		\n		<p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.   </p><p> For several years, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.  </p><p>  I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people. An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community.  </p><p>With gratitude.  </p>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:46:56','2023-06-09 00:46:56','',21,'https://divyayogamonteregie.org/ca/?p=962',0,'revision','',0),(963,1,'2023-06-09 00:46:56','2023-06-09 00:46:56','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Mihaela Bostan Frandes</h1>		\n		  In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.  		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1>Jocelyne Boucher</h1>		\n		<p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.   </p><p> For several years, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.  </p><p>  I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people. An thank you to Meera for allowing us to practice yoga on Saturday mornings. It helps foster connections and forms a beautiful community.  </p><p>With gratitude.  </p>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:46:56','2023-06-09 00:46:56','',21,'https://divyayogamonteregie.org/ca/?p=963',0,'revision','',0),(965,1,'2023-06-09 00:48:03','2023-06-09 00:48:03','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Jocelyne Boucher</h1>		\n		<p style=\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\">&nbsp;<u></u>In 2011, I started practicing yoga with Meera and Mr. Saxena&nbsp;&nbsp;at the International School of St-Lambert.&nbsp;Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.&nbsp;Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.&nbsp;<u></u>&nbsp;<u></u></p><p style=\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\"><u></u>&nbsp;<u></u></p><p style=\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\">I then undertook two other trainings, totaling 500 hours in Hatha Yoga.&nbsp;In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.<u></u>&nbsp;<u></u></p><p style=\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\"><u></u>&nbsp;<u></u></p><p style=\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\">&nbsp;For several years, yoga and meditation have been an integral part of my life.&nbsp;In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.<u></u>&nbsp;<u></u></p><p style=\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\"><u></u>&nbsp;<u></u></p><p style=\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\">&nbsp;I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:48:03','2023-06-09 00:48:03','',21,'https://divyayogamonteregie.org/ca/?p=965',0,'revision','',0),(966,1,'2023-06-09 00:48:03','2023-06-09 00:48:03','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Jocelyne Boucher</h1>		\n		<p style=\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\">&nbsp;<u></u>In 2011, I started practicing yoga with Meera and Mr. Saxena&nbsp;&nbsp;at the International School of St-Lambert.&nbsp;Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training.&nbsp;Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.&nbsp;<u></u>&nbsp;<u></u></p><p style=\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\"><u></u>&nbsp;<u></u></p><p style=\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\">I then undertook two other trainings, totaling 500 hours in Hatha Yoga.&nbsp;In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings.<u></u>&nbsp;<u></u></p><p style=\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\"><u></u>&nbsp;<u></u></p><p style=\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\">&nbsp;For several years, yoga and meditation have been an integral part of my life.&nbsp;In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace.<u></u>&nbsp;<u></u></p><p style=\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\"><u></u>&nbsp;<u></u></p><p style=\"margin: 0cm 0cm 0.0001pt; font-size: 12pt; font-family: &quot;Times New Roman&quot;, &quot;serif&quot;;\">&nbsp;I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:48:03','2023-06-09 00:48:03','',21,'https://divyayogamonteregie.org/ca/?p=966',0,'revision','',0),(968,1,'2023-06-09 00:48:22','2023-06-09 00:48:22','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Jocelyne Boucher</h1>		\n		<p> </p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p> </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. </p><p> </p><p> For several years, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. </p><p> </p><p> I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:48:22','2023-06-09 00:48:22','',21,'https://divyayogamonteregie.org/ca/?p=968',0,'revision','',0),(969,1,'2023-06-09 00:48:22','2023-06-09 00:48:22','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Jocelyne Boucher</h1>		\n		<p> </p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p> </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. </p><p> </p><p> For several years, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. </p><p> </p><p> I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:48:22','2023-06-09 00:48:22','',21,'https://divyayogamonteregie.org/ca/?p=969',0,'revision','',0),(971,1,'2023-06-09 00:49:40','2023-06-09 00:49:40','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Jocelyne Boucher</h1>		\n		<p> </p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. </p><p>ears, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. </p><p> I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:49:40','2023-06-09 00:49:40','',21,'https://divyayogamonteregie.org/ca/?p=971',0,'revision','',0),(972,1,'2023-06-09 00:49:40','2023-06-09 00:49:40','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Jocelyne Boucher</h1>		\n		<p> </p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. </p><p>ears, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. </p><p> I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:49:40','2023-06-09 00:49:40','',21,'https://divyayogamonteregie.org/ca/?p=972',0,'revision','',0),(973,1,'2023-06-09 00:49:41','2023-06-09 00:49:41','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Jocelyne Boucher</h1>		\n		<p> </p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. </p><p>ears, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. </p><p> I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:49:41','2023-06-09 00:49:41','',21,'https://divyayogamonteregie.org/ca/?p=973',0,'revision','',0),(974,1,'2023-06-09 00:52:14','2023-06-09 00:52:14','','Imagen de WhatsApp 2023-06-08 a las 21.51.24','','inherit','open','closed','','imagen-de-whatsapp-2023-06-08-a-las-21-51-24','','','2023-06-09 00:52:14','2023-06-09 00:52:14','',21,'https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg',0,'attachment','image/jpeg',0),(975,1,'2023-06-09 00:52:55','2023-06-09 00:52:55','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Jocelyne Boucher</h1>		\n		<p> </p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. </p><p>ears, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. </p><p> I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:52:55','2023-06-09 00:52:55','',21,'https://divyayogamonteregie.org/ca/?p=975',0,'revision','',0),(976,1,'2023-06-09 00:52:55','2023-06-09 00:52:55','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Jocelyne Boucher</h1>		\n		<p> </p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. </p><p>ears, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. </p><p> I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"512\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280-1024x682.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg 1280w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:52:55','2023-06-09 00:52:55','',21,'https://divyayogamonteregie.org/ca/?p=976',0,'revision','',0),(977,1,'2023-06-09 00:52:56','2023-06-09 00:52:56','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Jocelyne Boucher</h1>		\n		<p> </p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. </p><p>ears, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. </p><p> I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"1022\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-225x300.jpg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-770x1024.jpg 770w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg 962w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:52:56','2023-06-09 00:52:56','',21,'https://divyayogamonteregie.org/ca/?p=977',0,'revision','',0),(978,1,'2023-06-09 00:53:56','2023-06-09 00:53:56','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Jocelyne Boucher</h1>		\n		<p> </p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. </p><p>ears, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. </p><p> I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"1022\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-225x300.jpg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-770x1024.jpg 770w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg 962w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:53:56','2023-06-09 00:53:56','',21,'https://divyayogamonteregie.org/ca/?p=978',0,'revision','',0),(979,1,'2023-06-09 00:53:56','2023-06-09 00:53:56','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Jocelyne Boucher</h1>		\n		<p> </p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. </p><p>ears, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. </p><p> I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"1022\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-225x300.jpg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-770x1024.jpg 770w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg 962w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:53:56','2023-06-09 00:53:56','',21,'https://divyayogamonteregie.org/ca/?p=979',0,'revision','',0),(980,1,'2023-06-09 00:53:56','2023-06-09 00:53:56','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Jocelyne Boucher</h1>		\n		<p> </p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. </p><p>ears, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. </p><p> I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"1022\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-225x300.jpg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-770x1024.jpg 770w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg 962w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:53:56','2023-06-09 00:53:56','',21,'https://divyayogamonteregie.org/ca/?p=980',0,'revision','',0),(981,1,'2023-06-09 00:57:23','2023-06-09 00:57:23','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Jocelyne Boucher</h1>		\n		<p> </p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. </p><p>ears, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. </p><p> I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"1022\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-225x300.jpg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-770x1024.jpg 770w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg 962w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:57:23','2023-06-09 00:57:23','',21,'https://divyayogamonteregie.org/ca/?p=981',0,'revision','',0),(982,1,'2023-06-09 00:57:23','2023-06-09 00:57:23','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Jocelyne Boucher</h1>		\n		<p> </p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. </p><p>ears, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. </p><p> I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"1022\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-225x300.jpg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-770x1024.jpg 770w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg 962w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:57:23','2023-06-09 00:57:23','',21,'https://divyayogamonteregie.org/ca/?p=982',0,'revision','',0),(983,1,'2023-06-09 00:57:23','2023-06-09 00:57:23','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Present instructor</h2>		\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h1>Jocelyne Boucher</h1>		\n		<p> </p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. </p><p>ears, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. </p><p> I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h2>Past instructor</h2>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"1022\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-225x300.jpg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-770x1024.jpg 770w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg 962w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:57:23','2023-06-09 00:57:23','',21,'https://divyayogamonteregie.org/ca/?p=983',0,'revision','',0),(984,1,'2023-06-09 00:57:43','2023-06-09 00:57:43','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Present instructor</h2>		\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h1>Jocelyne Boucher</h1>		\n		<p> </p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. </p><p>ears, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. </p><p> I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h2>Past instructor</h2>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"1022\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-225x300.jpg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-770x1024.jpg 770w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg 962w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:57:43','2023-06-09 00:57:43','',21,'https://divyayogamonteregie.org/ca/?p=984',0,'revision','',0),(985,1,'2023-06-09 00:57:43','2023-06-09 00:57:43','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Present instructor</h2>		\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h1>Jocelyne Boucher</h1>		\n		<p> </p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. </p><p>ears, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. </p><p> I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h2>Past instructor</h2>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"1022\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-225x300.jpg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-770x1024.jpg 770w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg 962w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:57:43','2023-06-09 00:57:43','',21,'https://divyayogamonteregie.org/ca/?p=985',0,'revision','',0),(986,1,'2023-06-09 00:57:43','2023-06-09 00:57:43','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Present instructors</h2>		\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h1>Jocelyne Boucher</h1>		\n		<p> </p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. </p><p>ears, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. </p><p> I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h2>Past instructor</h2>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"1022\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-225x300.jpg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-770x1024.jpg 770w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg 962w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-09 00:57:43','2023-06-09 00:57:43','',21,'https://divyayogamonteregie.org/ca/?p=986',0,'revision','',0),(987,1,'2023-06-09 01:12:09','2023-06-09 01:12:09','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">There is this story about a famous research scientist who had made several very important medical breakthroughs. He was being interviewed by a newspaper reporter who asked him why he thought he was able to be so much more creative than the average person. What set him so far apart from others?</p><p style=\"text-align: justify;\">He responded that, in his opinion, it all came from an experience with his mother that occurred when he was about two years old. He had been trying to remove a bottle of milk from the refrigerator when he lost his grip on the slippery bottle and it fell, spilling its contents all over the kitchen floor - a veritable sea of milk!</p><p style=\"text-align: justify;\">When his mother came into the kitchen, instead of yelling at him, giving him a lecture, or punishing him, she said, \"Robert, what a great and wonderful mess you have made! I have rarely seen such a huge puddle of milk. Well, the damage has already been done. Would you like to get down and play in the milk for a few minutes before we clean it up?\"</p><p style=\"text-align: justify;\">Indeed, he did. After a few minutes, his mother said, \"You know, Robert, whenever you make a mess like this, eventually you have to clean it up and restore everything to its proper order. So, how would you like to do that? We could use a sponge, a towel, or a mop. Which do you prefer?\"</p><p style=\"text-align: justify;\">He chose the sponge and together they cleaned up the spilled milk.</p><p style=\"text-align: justify;\">His mother then said, \"You know, what we have here is a failed experiment in how to effectively carry a big milk bottle with two tiny hands. Let\'s go out in the back yard and fill the bottle with water and see if you can discover a way to carry it without dropping it.\"</p><p style=\"text-align: justify;\">The little boy learned that if he grasped the bottle at the top near the lip with both hands, he could carry it without dropping it. This renowned scientist then remarked that it was at that moment that he knew he didn\'t need to be afraid to make mistakes. Instead, he learned that mistakes were just opportunities for learning something new, which is, after all, what scientific experiments are all about. Even if the experiment \"doesn\'t work,\" we usually learn something valuable from it.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Motivate','','inherit','closed','closed','','354-revision-v1','','','2023-06-09 01:12:09','2023-06-09 01:12:09','',354,'https://divyayogamonteregie.org/ca/?p=987',0,'revision','',0);
INSERT INTO `wpjv_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (988,1,'2023-06-09 01:12:09','2023-06-09 01:12:09','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">There is this story about a famous research scientist who had made several very important medical breakthroughs. He was being interviewed by a newspaper reporter who asked him why he thought he was able to be so much more creative than the average person. What set him so far apart from others?</p><p style=\"text-align: justify;\">He responded that, in his opinion, it all came from an experience with his mother that occurred when he was about two years old. He had been trying to remove a bottle of milk from the refrigerator when he lost his grip on the slippery bottle and it fell, spilling its contents all over the kitchen floor - a veritable sea of milk!</p><p style=\"text-align: justify;\">When his mother came into the kitchen, instead of yelling at him, giving him a lecture, or punishing him, she said, \"Robert, what a great and wonderful mess you have made! I have rarely seen such a huge puddle of milk. Well, the damage has already been done. Would you like to get down and play in the milk for a few minutes before we clean it up?\"</p><p style=\"text-align: justify;\">Indeed, he did. After a few minutes, his mother said, \"You know, Robert, whenever you make a mess like this, eventually you have to clean it up and restore everything to its proper order. So, how would you like to do that? We could use a sponge, a towel, or a mop. Which do you prefer?\"</p><p style=\"text-align: justify;\">He chose the sponge and together they cleaned up the spilled milk.</p><p style=\"text-align: justify;\">His mother then said, \"You know, what we have here is a failed experiment in how to effectively carry a big milk bottle with two tiny hands. Let\'s go out in the back yard and fill the bottle with water and see if you can discover a way to carry it without dropping it.\"</p><p style=\"text-align: justify;\">The little boy learned that if he grasped the bottle at the top near the lip with both hands, he could carry it without dropping it. This renowned scientist then remarked that it was at that moment that he knew he didn\'t need to be afraid to make mistakes. Instead, he learned that mistakes were just opportunities for learning something new, which is, after all, what scientific experiments are all about. Even if the experiment \"doesn\'t work,\" we usually learn something valuable from it.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Motivate','','inherit','closed','closed','','354-revision-v1','','','2023-06-09 01:12:09','2023-06-09 01:12:09','',354,'https://divyayogamonteregie.org/ca/?p=988',0,'revision','',0),(989,1,'2023-06-09 01:12:09','2023-06-09 01:12:09','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">There is this story about a famous research scientist who had made several very important medical breakthroughs. He was being interviewed by a newspaper reporter who asked him why he thought he was able to be so much more creative than the average person. What set him so far apart from others?</p><p style=\"text-align: justify;\">He responded that, in his opinion, it all came from an experience with his mother that occurred when he was about two years old. He had been trying to remove a bottle of milk from the refrigerator when he lost his grip on the slippery bottle and it fell, spilling its contents all over the kitchen floor - a veritable sea of milk!</p><p style=\"text-align: justify;\">When his mother came into the kitchen, instead of yelling at him, giving him a lecture, or punishing him, she said, \"Robert, what a great and wonderful mess you have made! I have rarely seen such a huge puddle of milk. Well, the damage has already been done. Would you like to get down and play in the milk for a few minutes before we clean it up?\"</p><p style=\"text-align: justify;\">Indeed, he did. After a few minutes, his mother said, \"You know, Robert, whenever you make a mess like this, eventually you have to clean it up and restore everything to its proper order. So, how would you like to do that? We could use a sponge, a towel, or a mop. Which do you prefer?\"</p><p style=\"text-align: justify;\">He chose the sponge and together they cleaned up the spilled milk.</p><p style=\"text-align: justify;\">His mother then said, \"You know, what we have here is a failed experiment in how to effectively carry a big milk bottle with two tiny hands. Let\'s go out in the back yard and fill the bottle with water and see if you can discover a way to carry it without dropping it.\"</p><p style=\"text-align: justify;\">The little boy learned that if he grasped the bottle at the top near the lip with both hands, he could carry it without dropping it. This renowned scientist then remarked that it was at that moment that he knew he didn\'t need to be afraid to make mistakes. Instead, he learned that mistakes were just opportunities for learning something new, which is, after all, what scientific experiments are all about. Even if the experiment \"doesn\'t work,\" we usually learn something valuable from it.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Motivate','','inherit','closed','closed','','354-revision-v1','','','2023-06-09 01:12:09','2023-06-09 01:12:09','',354,'https://divyayogamonteregie.org/ca/?p=989',0,'revision','',0),(990,1,'2023-06-09 01:23:18','2023-06-09 01:23:18','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h3><b><br /></b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</h3><h3>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</h3><h3>Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</h3><h3>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</h3><h3>No response.</h3><h3>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</h3><h3>Still no response.</h3><h3>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</h3><h3>Again he gets no response.</h3><h3>So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</h3><h3>Again there is no response.</h3><h3>So he walks right up behind her. \"Honey, what\'s for dinner?\"</h3><h3>\"James, for the FIFTH time I\'ve said, Lima Beans!\"</h3><h3>The problem may not be with the other person as we always think, could be very much within us!</h3>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','inherit','closed','closed','','359-revision-v1','','','2023-06-09 01:23:18','2023-06-09 01:23:18','',359,'https://divyayogamonteregie.org/ca/?p=990',0,'revision','',0),(991,1,'2023-06-09 01:23:18','2023-06-09 01:23:18','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h3><b><br /></b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</h3><h3>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</h3><h3>Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</h3><h3>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</h3><h3>No response.</h3><h3>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</h3><h3>Still no response.</h3><h3>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</h3><h3>Again he gets no response.</h3><h3>So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</h3><h3>Again there is no response.</h3><h3>So he walks right up behind her. \"Honey, what\'s for dinner?\"</h3><h3>\"James, for the FIFTH time I\'ve said, Lima Beans!\"</h3><h3>The problem may not be with the other person as we always think, could be very much within us!</h3>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','inherit','closed','closed','','359-revision-v1','','','2023-06-09 01:23:18','2023-06-09 01:23:18','',359,'https://divyayogamonteregie.org/ca/?p=991',0,'revision','',0),(993,1,'2023-06-09 01:24:24','2023-06-09 01:24:24','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \"Who would like this $20 bill?\"</p><p style=\"text-align: justify;\">Hands started going up.</p><p style=\"text-align: justify;\">He said, \"I am going to give this $20 to one of you but first, let me do this.\" He proceeded to crumple the dollar bill up.</p><p style=\"text-align: justify;\">He then asked, \"Who still wants it?\"</p><p style=\"text-align: justify;\">Still the hands were up in the air.</p><p style=\"text-align: justify;\">\"Well,\" he replied, \"What if I do this?\" And he dropped it on the ground and started to grind it into the floor with his shoe.</p><p style=\"text-align: justify;\">He picked it up, now all crumpled and dirty. \"Now who still wants it?\" Still the hands went into the air.</p><p style=\"text-align: justify;\">\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.</p><p style=\"text-align: justify;\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.</p><p style=\"text-align: justify;\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A value','','inherit','closed','closed','','364-revision-v1','','','2023-06-09 01:24:24','2023-06-09 01:24:24','',364,'https://divyayogamonteregie.org/ca/?p=993',0,'revision','',0),(994,1,'2023-06-09 01:24:24','2023-06-09 01:24:24','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \"Who would like this $20 bill?\"</p><p style=\"text-align: justify;\">Hands started going up.</p><p style=\"text-align: justify;\">He said, \"I am going to give this $20 to one of you but first, let me do this.\" He proceeded to crumple the dollar bill up.</p><p style=\"text-align: justify;\">He then asked, \"Who still wants it?\"</p><p style=\"text-align: justify;\">Still the hands were up in the air.</p><p style=\"text-align: justify;\">\"Well,\" he replied, \"What if I do this?\" And he dropped it on the ground and started to grind it into the floor with his shoe.</p><p style=\"text-align: justify;\">He picked it up, now all crumpled and dirty. \"Now who still wants it?\" Still the hands went into the air.</p><p style=\"text-align: justify;\">\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.</p><p style=\"text-align: justify;\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.</p><p style=\"text-align: justify;\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A value','','inherit','closed','closed','','364-revision-v1','','','2023-06-09 01:24:24','2023-06-09 01:24:24','',364,'https://divyayogamonteregie.org/ca/?p=994',0,'revision','',0),(995,1,'2023-06-09 01:24:24','2023-06-09 01:24:24','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \"Who would like this $20 bill?\"</p><p style=\"text-align: justify;\">Hands started going up.</p><p style=\"text-align: justify;\">He said, \"I am going to give this $20 to one of you but first, let me do this.\" He proceeded to crumple the dollar bill up.</p><p style=\"text-align: justify;\">He then asked, \"Who still wants it?\"</p><p style=\"text-align: justify;\">Still the hands were up in the air.</p><p style=\"text-align: justify;\">\"Well,\" he replied, \"What if I do this?\" And he dropped it on the ground and started to grind it into the floor with his shoe.</p><p style=\"text-align: justify;\">He picked it up, now all crumpled and dirty. \"Now who still wants it?\" Still the hands went into the air.</p><p style=\"text-align: justify;\">\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.</p><p style=\"text-align: justify;\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.</p><p style=\"text-align: justify;\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A value','','inherit','closed','closed','','364-revision-v1','','','2023-06-09 01:24:24','2023-06-09 01:24:24','',364,'https://divyayogamonteregie.org/ca/?p=995',0,'revision','',0),(999,1,'2023-06-09 01:30:29','2023-06-09 01:30:29','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \"Who would like this $20 bill?\"</p><p style=\"text-align: justify;\">Hands started going up.</p><p style=\"text-align: justify;\">He said, \"I am going to give this $20 to one of you but first, let me do this.\" He proceeded to crumple the dollar bill up.</p><p style=\"text-align: justify;\">He then asked, \"Who still wants it?\"</p><p style=\"text-align: justify;\">Still the hands were up in the air.</p><p style=\"text-align: justify;\">\"Well,\" he replied, \"What if I do this?\" And he dropped it on the ground and started to grind it into the floor with his shoe.</p><p style=\"text-align: justify;\">He picked it up, now all crumpled and dirty. \"Now who still wants it?\" Still the hands went into the air.</p><p style=\"text-align: justify;\">\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.</p><p style=\"text-align: justify;\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.</p><p style=\"text-align: justify;\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A value','','inherit','closed','closed','','364-revision-v1','','','2023-06-09 01:30:29','2023-06-09 01:30:29','',364,'https://divyayogamonteregie.org/ca/?p=999',0,'revision','',0),(997,1,'2023-06-09 01:30:28','2023-06-09 01:30:28','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \"Who would like this $20 bill?\"</p><p style=\"text-align: justify;\">Hands started going up.</p><p style=\"text-align: justify;\">He said, \"I am going to give this $20 to one of you but first, let me do this.\" He proceeded to crumple the dollar bill up.</p><p style=\"text-align: justify;\">He then asked, \"Who still wants it?\"</p><p style=\"text-align: justify;\">Still the hands were up in the air.</p><p style=\"text-align: justify;\">\"Well,\" he replied, \"What if I do this?\" And he dropped it on the ground and started to grind it into the floor with his shoe.</p><p style=\"text-align: justify;\">He picked it up, now all crumpled and dirty. \"Now who still wants it?\" Still the hands went into the air.</p><p style=\"text-align: justify;\">\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.</p><p style=\"text-align: justify;\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.</p><p style=\"text-align: justify;\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A value','','inherit','closed','closed','','364-revision-v1','','','2023-06-09 01:30:28','2023-06-09 01:30:28','',364,'https://divyayogamonteregie.org/ca/?p=997',0,'revision','',0),(998,1,'2023-06-09 01:30:29','2023-06-09 01:30:29','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \"Who would like this $20 bill?\"</p><p style=\"text-align: justify;\">Hands started going up.</p><p style=\"text-align: justify;\">He said, \"I am going to give this $20 to one of you but first, let me do this.\" He proceeded to crumple the dollar bill up.</p><p style=\"text-align: justify;\">He then asked, \"Who still wants it?\"</p><p style=\"text-align: justify;\">Still the hands were up in the air.</p><p style=\"text-align: justify;\">\"Well,\" he replied, \"What if I do this?\" And he dropped it on the ground and started to grind it into the floor with his shoe.</p><p style=\"text-align: justify;\">He picked it up, now all crumpled and dirty. \"Now who still wants it?\" Still the hands went into the air.</p><p style=\"text-align: justify;\">\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.</p><p style=\"text-align: justify;\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.</p><p style=\"text-align: justify;\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A value','','inherit','closed','closed','','364-revision-v1','','','2023-06-09 01:30:29','2023-06-09 01:30:29','',364,'https://divyayogamonteregie.org/ca/?p=998',0,'revision','',0),(1097,1,'2023-06-14 18:58:10','2023-06-14 18:58:10','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \"Who would like this $20 bill?\"</p><p style=\"text-align: justify;\">Hands started going up.</p><p style=\"text-align: justify;\">He said, \"I am going to give this $20 to one of you but first, let me do this.\" He proceeded to crumple the dollar bill up.</p><p style=\"text-align: justify;\">He then asked, \"Who still wants it?\"</p><p style=\"text-align: justify;\">Still the hands were up in the air.</p><p style=\"text-align: justify;\">\"Well,\" he replied, \"What if I do this?\" And he dropped it on the ground and started to grind it into the floor with his shoe.</p><p style=\"text-align: justify;\">He picked it up, now all crumpled and dirty. \"Now who still wants it?\" Still the hands went into the air.</p><p style=\"text-align: justify;\">\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.</p><p style=\"text-align: justify;\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.</p><p style=\"text-align: justify;\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A value','','inherit','closed','closed','','364-revision-v1','','','2023-06-14 18:58:10','2023-06-14 18:58:10','',364,'https://divyayogamonteregie.org/ca/?p=1097',0,'revision','',0),(1049,1,'2023-06-14 18:24:31','2023-06-14 18:24:31','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge.</p>\n<p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i>&nbsp;</i></b>exercise<b>s<i>,&nbsp;</i></b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p>\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p>\n<p>After yoga super food i. e. grapes and banana are available for Yogies.</p>\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p><ol><li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li><li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li><li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li><li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li><li><b>Eyes and neck exercises</b> – we take care of every part of the body.<br />Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>    </b><br />Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li><li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li><li><b>6 mudras </b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li><li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br />We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li><li><b>Laughter yoga </b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br />We also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li><li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li><li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li><li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li></ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong><br /><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></p>','Home','','inherit','closed','closed','','652-revision-v1','','','2023-06-14 18:24:31','2023-06-14 18:24:31','',652,'https://divyayogamonteregie.org/ca/?p=1049',0,'revision','',0),(1006,1,'2023-06-13 18:53:48','2023-06-13 18:53:48','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>EANYTHING IS POSSIBLE</h1>		\n		<h2><strong><em>Believe in Yourself,and Remember that Anything Is Possible</em></strong></h2><p>Believe in what makes you feel good.<br />Believe in what makes you happy.<br />Believe in the dreams you\'ve always wanted to come true,<br />and give them every chance to.</p><p>Life holds no promises to what will come your way.<br />You must search for your own ideals<br />and work towards reaching them.</p><p>Life makes no guarantees as to what you\'ll have.<br />It just gives you time to make choices<br />and to take chances<br />and to discover whatever secrets might come your way.</p><p>If you are willing to take the opportunities you are given<br />and utilize the abilities you have,<br />you will constantly fill your life<br />with special moments and unforgettable times.</p><p>No one knows the mysteries of life or its ultimate meaning,<br />but for those who are willing<br />to believe in their dreams and in themselves,<br />life is a precious gift in which anything is possible.</p><p>~ Dena DiIaconi ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Anything Is Possible','','inherit','closed','closed','','166-revision-v1','','','2023-06-13 18:53:48','2023-06-13 18:53:48','',166,'https://divyayogamonteregie.org/ca/?p=1006',0,'revision','',0),(1003,1,'2023-06-13 18:53:01','2023-06-13 18:53:01','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODO ES POSIBLE</h1>		\n		<h2 align=\"center\"><em><strong>Believe in Yourself,and Remember that Anything Is Possible</strong></em></h2><p align=\"center\">Believe in what makes you feel good.<br /> Believe in what makes you happy.<br /> Believe in the dreams you\'ve always wanted to come true,<br /> and give them every chance to.</p><p align=\"center\">Life holds no promises to what will come your way.<br /> You must search for your own ideals<br /> and work towards reaching them.</p><p align=\"center\">Life makes no guarantees as to what you\'ll have.<br /> It just gives you time to make choices<br /> and to take chances<br /> and to discover whatever secrets might come your way.</p><p align=\"center\">If you are willing to take the opportunities you are given<br /> and utilize the abilities you have,<br /> you will constantly fill your life<br /> with special moments and unforgettable times.</p><p align=\"center\">No one knows the mysteries of life or its ultimate meaning,<br /> but for those who are willing<br /> to believe in their dreams and in themselves,<br /> life is a precious gift in which anything is possible.</p><p align=\"center\">~ Dena DiIaconi ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Anything Is Possible','','inherit','closed','closed','','166-revision-v1','','','2023-06-13 18:53:01','2023-06-13 18:53:01','',166,'https://divyayogamonteregie.org/ca/?p=1003',0,'revision','',0),(1004,1,'2023-06-13 18:53:01','2023-06-13 18:53:01','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODO ES POSIBLE</h1>		\n		<h2 align=\"center\"><em><strong>Believe in Yourself,and Remember that Anything Is Possible</strong></em></h2><p align=\"center\">Believe in what makes you feel good.<br /> Believe in what makes you happy.<br /> Believe in the dreams you\'ve always wanted to come true,<br /> and give them every chance to.</p><p align=\"center\">Life holds no promises to what will come your way.<br /> You must search for your own ideals<br /> and work towards reaching them.</p><p align=\"center\">Life makes no guarantees as to what you\'ll have.<br /> It just gives you time to make choices<br /> and to take chances<br /> and to discover whatever secrets might come your way.</p><p align=\"center\">If you are willing to take the opportunities you are given<br /> and utilize the abilities you have,<br /> you will constantly fill your life<br /> with special moments and unforgettable times.</p><p align=\"center\">No one knows the mysteries of life or its ultimate meaning,<br /> but for those who are willing<br /> to believe in their dreams and in themselves,<br /> life is a precious gift in which anything is possible.</p><p align=\"center\">~ Dena DiIaconi ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Anything Is Possible','','inherit','closed','closed','','166-revision-v1','','','2023-06-13 18:53:01','2023-06-13 18:53:01','',166,'https://divyayogamonteregie.org/ca/?p=1004',0,'revision','',0),(1007,1,'2023-06-13 18:53:48','2023-06-13 18:53:48','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>EANYTHING IS POSSIBLE</h1>		\n		<h2><strong><em>Believe in Yourself,and Remember that Anything Is Possible</em></strong></h2><p>Believe in what makes you feel good.<br />Believe in what makes you happy.<br />Believe in the dreams you\'ve always wanted to come true,<br />and give them every chance to.</p><p>Life holds no promises to what will come your way.<br />You must search for your own ideals<br />and work towards reaching them.</p><p>Life makes no guarantees as to what you\'ll have.<br />It just gives you time to make choices<br />and to take chances<br />and to discover whatever secrets might come your way.</p><p>If you are willing to take the opportunities you are given<br />and utilize the abilities you have,<br />you will constantly fill your life<br />with special moments and unforgettable times.</p><p>No one knows the mysteries of life or its ultimate meaning,<br />but for those who are willing<br />to believe in their dreams and in themselves,<br />life is a precious gift in which anything is possible.</p><p>~ Dena DiIaconi ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Anything Is Possible','','inherit','closed','closed','','166-revision-v1','','','2023-06-13 18:53:48','2023-06-13 18:53:48','',166,'https://divyayogamonteregie.org/ca/?p=1007',0,'revision','',0),(1008,1,'2023-06-13 18:53:48','2023-06-13 18:53:48','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>EANYTHING IS POSSIBLE</h1>		\n		<h2><strong><em>Believe in Yourself,and Remember that Anything Is Possible</em></strong></h2><p>Believe in what makes you feel good.<br />Believe in what makes you happy.<br />Believe in the dreams you\'ve always wanted to come true,<br />and give them every chance to.</p><p>Life holds no promises to what will come your way.<br />You must search for your own ideals<br />and work towards reaching them.</p><p>Life makes no guarantees as to what you\'ll have.<br />It just gives you time to make choices<br />and to take chances<br />and to discover whatever secrets might come your way.</p><p>If you are willing to take the opportunities you are given<br />and utilize the abilities you have,<br />you will constantly fill your life<br />with special moments and unforgettable times.</p><p>No one knows the mysteries of life or its ultimate meaning,<br />but for those who are willing<br />to believe in their dreams and in themselves,<br />life is a precious gift in which anything is possible.</p><p>~ Dena DiIaconi ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Anything Is Possible','','inherit','closed','closed','','166-revision-v1','','','2023-06-13 18:53:48','2023-06-13 18:53:48','',166,'https://divyayogamonteregie.org/ca/?p=1008',0,'revision','',0),(1009,1,'2023-06-13 18:57:07','2023-06-13 18:57:07','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Be Whatever  You Want To Be !</h1>		\n		<p align=\"center\"><strong>You Can Be Whatever </strong><br /> <strong> You Want To Be!</strong></p><p align=\"center\">There is inside you<br /> all of the potential<br /> to be whatever you want to be,<br /> all of the energy<br /> to do whatever you want to do.</p><p align=\"center\">Imagine yourself as you would like to be,<br /> doing what you want to do,<br /> and each day, take one step<br /> towards your dream.</p><p align=\"center\">And though at times it may seem too<br /> difficult to continue,<br /> hold on to your dream.</p><p align=\"center\">One morning you will awake to find<br /> that you are the person you dreamed of,<br /> doing what you wanted to do,<br /> simply because you had the courage<br /> to believe in your potential<br /> and to hold on to your dream</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Be Whatever  You Want To Be !','','inherit','closed','closed','','175-revision-v1','','','2023-06-13 18:57:07','2023-06-13 18:57:07','',175,'https://divyayogamonteregie.org/ca/?p=1009',0,'revision','',0),(1010,1,'2023-06-13 18:57:07','2023-06-13 18:57:07','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Be Whatever  You Want To Be !</h1>		\n		<p align=\"center\"><strong>You Can Be Whatever </strong><br /> <strong> You Want To Be!</strong></p><p align=\"center\">There is inside you<br /> all of the potential<br /> to be whatever you want to be,<br /> all of the energy<br /> to do whatever you want to do.</p><p align=\"center\">Imagine yourself as you would like to be,<br /> doing what you want to do,<br /> and each day, take one step<br /> towards your dream.</p><p align=\"center\">And though at times it may seem too<br /> difficult to continue,<br /> hold on to your dream.</p><p align=\"center\">One morning you will awake to find<br /> that you are the person you dreamed of,<br /> doing what you wanted to do,<br /> simply because you had the courage<br /> to believe in your potential<br /> and to hold on to your dream</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Be Whatever  You Want To Be !','','inherit','closed','closed','','175-revision-v1','','','2023-06-13 18:57:07','2023-06-13 18:57:07','',175,'https://divyayogamonteregie.org/ca/?p=1010',0,'revision','',0),(1012,1,'2023-06-13 18:58:39','2023-06-13 18:58:39','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Be Whatever  You Want To Be !</h1>		\n		<p><strong>You Can Be Whatever</strong><strong><br /></strong><strong>You Want To Be!</strong></p><p>There is inside you<br />all of the potential<br />to be whatever you want to be,<br />all of the energy<br />to do whatever you want to do.</p><p>Imagine yourself as you would like to be,<br />doing what you want to do,<br />and each day, take one step<br />towards your dream.</p><p>And though at times it may seem too<br />difficult to continue,<br />hold on to your dream.</p><p>One morning you will awake to find<br />that you are the person you dreamed of,<br />doing what you wanted to do,<br />simply because you had the courage<br />to believe in your potential<br />and to hold on to your dream</p><p> </p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Be Whatever  You Want To Be !','','inherit','closed','closed','','175-revision-v1','','','2023-06-13 18:58:39','2023-06-13 18:58:39','',175,'https://divyayogamonteregie.org/ca/?p=1012',0,'revision','',0),(1013,1,'2023-06-13 18:58:39','2023-06-13 18:58:39','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Be Whatever  You Want To Be !</h1>		\n		<p><strong>You Can Be Whatever</strong><strong><br /></strong><strong>You Want To Be!</strong></p><p>There is inside you<br />all of the potential<br />to be whatever you want to be,<br />all of the energy<br />to do whatever you want to do.</p><p>Imagine yourself as you would like to be,<br />doing what you want to do,<br />and each day, take one step<br />towards your dream.</p><p>And though at times it may seem too<br />difficult to continue,<br />hold on to your dream.</p><p>One morning you will awake to find<br />that you are the person you dreamed of,<br />doing what you wanted to do,<br />simply because you had the courage<br />to believe in your potential<br />and to hold on to your dream</p><p> </p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Be Whatever  You Want To Be !','','inherit','closed','closed','','175-revision-v1','','','2023-06-13 18:58:39','2023-06-13 18:58:39','',175,'https://divyayogamonteregie.org/ca/?p=1013',0,'revision','',0),(1015,1,'2023-06-13 18:59:07','2023-06-13 18:59:07','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p><strong>You Can Be Whatever</strong><strong><br /></strong><strong>You Want To Be!</strong></p><p>There is inside you<br />all of the potential<br />to be whatever you want to be,<br />all of the energy<br />to do whatever you want to do.</p><p>Imagine yourself as you would like to be,<br />doing what you want to do,<br />and each day, take one step<br />towards your dream.</p><p>And though at times it may seem too<br />difficult to continue,<br />hold on to your dream.</p><p>One morning you will awake to find<br />that you are the person you dreamed of,<br />doing what you wanted to do,<br />simply because you had the courage<br />to believe in your potential<br />and to hold on to your dream</p><p> </p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Be Whatever  You Want To Be !','','inherit','closed','closed','','175-revision-v1','','','2023-06-13 18:59:07','2023-06-13 18:59:07','',175,'https://divyayogamonteregie.org/ca/?p=1015',0,'revision','',0),(1016,1,'2023-06-13 18:59:07','2023-06-13 18:59:07','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p><strong>You Can Be Whatever</strong><strong><br /></strong><strong>You Want To Be!</strong></p><p>There is inside you<br />all of the potential<br />to be whatever you want to be,<br />all of the energy<br />to do whatever you want to do.</p><p>Imagine yourself as you would like to be,<br />doing what you want to do,<br />and each day, take one step<br />towards your dream.</p><p>And though at times it may seem too<br />difficult to continue,<br />hold on to your dream.</p><p>One morning you will awake to find<br />that you are the person you dreamed of,<br />doing what you wanted to do,<br />simply because you had the courage<br />to believe in your potential<br />and to hold on to your dream</p><p> </p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Be Whatever  You Want To Be !','','inherit','closed','closed','','175-revision-v1','','','2023-06-13 18:59:07','2023-06-13 18:59:07','',175,'https://divyayogamonteregie.org/ca/?p=1016',0,'revision','',0),(1018,1,'2023-06-13 19:00:08','2023-06-13 19:00:08','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h1><strong>You Can Be Whatever<br></strong><strong>You Want To Be!<br></strong>There is inside you<br>all of the potential<br>to be whatever you want to be,<br>all of the energy<br>to do whatever you want to do.<br>Imagine yourself as you would like to be,<br>doing what you want to do,<br>and each day, take one step<br>towards your dream.<br>And though at times it may seem too<br>difficult to continue,<br>hold on to your dream.<br>One morning you will awake to find<br>that you are the person you dreamed of,<br>doing what you wanted to do,<br>simply because you had the courage<br>to believe in your potential<br>and to hold on to your dream</h1>\n<p></p>\n<p></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Be Whatever  You Want To Be !','','inherit','closed','closed','','175-revision-v1','','','2023-06-13 19:00:08','2023-06-13 19:00:08','',175,'https://divyayogamonteregie.org/ca/?p=1018',0,'revision','',0),(1019,1,'2023-06-13 19:00:08','2023-06-13 19:00:08','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h1><strong>You Can Be Whatever<br></strong><strong>You Want To Be!<br></strong>There is inside you<br>all of the potential<br>to be whatever you want to be,<br>all of the energy<br>to do whatever you want to do.<br>Imagine yourself as you would like to be,<br>doing what you want to do,<br>and each day, take one step<br>towards your dream.<br>And though at times it may seem too<br>difficult to continue,<br>hold on to your dream.<br>One morning you will awake to find<br>that you are the person you dreamed of,<br>doing what you wanted to do,<br>simply because you had the courage<br>to believe in your potential<br>and to hold on to your dream</h1>\n<p></p>\n<p></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Be Whatever  You Want To Be !','','inherit','closed','closed','','175-revision-v1','','','2023-06-13 19:00:08','2023-06-13 19:00:08','',175,'https://divyayogamonteregie.org/ca/?p=1019',0,'revision','',0),(1020,1,'2023-06-13 19:00:08','2023-06-13 19:00:08','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h1><h3><strong>You Can Be Whatever<br></strong><h3><strong>You Want To Be!<br></strong>There is inside you<br>all of the potential<br>to be whatever you want to be,<br>all of the energy<br>to do whatever you want to do.<br>Imagine yourself as you would like to be,<br>doing what you want to do,<br>and each day, take one step<br>towards your dream.<br>And though at times it may seem too<br>difficult to continue,<br>hold on to your dream.<br>One morning you will awake to find<br>that you are the person you dreamed of,<br>doing what you wanted to do,<br>simply because you had the courage<br>to believe in your potential<br>and to hold on to your dream</h3></h3></h1>\n<p></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Be Whatever  You Want To Be !','','inherit','closed','closed','','175-revision-v1','','','2023-06-13 19:00:08','2023-06-13 19:00:08','',175,'https://divyayogamonteregie.org/ca/?p=1020',0,'revision','',0),(1021,1,'2023-06-13 19:00:51','2023-06-13 19:00:51','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h1><h3><strong>You Can Be Whatever<br></strong><h3><strong>You Want To Be!<br></strong>There is inside you<br>all of the potential<br>to be whatever you want to be,<br>all of the energy<br>to do whatever you want to do.<br>Imagine yourself as you would like to be,<br>doing what you want to do,<br>and each day, take one step<br>towards your dream.<br>And though at times it may seem too<br>difficult to continue,<br>hold on to your dream.<br>One morning you will awake to find<br>that you are the person you dreamed of,<br>doing what you wanted to do,<br>simply because you had the courage<br>to believe in your potential<br>and to hold on to your dream</h3></h3></h1>\n<p></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Be Whatever  You Want To Be !','','inherit','closed','closed','','175-revision-v1','','','2023-06-13 19:00:51','2023-06-13 19:00:51','',175,'https://divyayogamonteregie.org/ca/?p=1021',0,'revision','',0),(1022,1,'2023-06-13 19:00:51','2023-06-13 19:00:51','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h1><h3><strong>You Can Be Whatever<br></strong><h3><strong>You Want To Be!<br></strong>There is inside you<br>all of the potential<br>to be whatever you want to be,<br>all of the energy<br>to do whatever you want to do.<br>Imagine yourself as you would like to be,<br>doing what you want to do,<br>and each day, take one step<br>towards your dream.<br>And though at times it may seem too<br>difficult to continue,<br>hold on to your dream.<br>One morning you will awake to find<br>that you are the person you dreamed of,<br>doing what you wanted to do,<br>simply because you had the courage<br>to believe in your potential<br>and to hold on to your dream</h3></h3></h1>\n<p></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Be Whatever  You Want To Be !','','inherit','closed','closed','','175-revision-v1','','','2023-06-13 19:00:51','2023-06-13 19:00:51','',175,'https://divyayogamonteregie.org/ca/?p=1022',0,'revision','',0),(1026,1,'2023-06-13 19:01:26','2023-06-13 19:01:26','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h4><strong>You Can Be Whatever<br></strong><strong>You Want To Be!<br></strong>There is inside you<br>all of the potential<br>to be whatever you want to be,<br>all of the energy<br>to do whatever you want to do.<br>Imagine yourself as you would like to be,<br>doing what you want to do,<br>and each day, take one step<br>towards your dream.<br>And though at times it may seem too<br>difficult to continue,<br>hold on to your dream.<br>One morning you will awake to find<br>that you are the person you dreamed of,<br>doing what you wanted to do,<br>simply because you had the courage<br>to believe in your potential<br>and to hold on to your dream</h4>\n<p></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Be Whatever  You Want To Be !','','inherit','closed','closed','','175-revision-v1','','','2023-06-13 19:01:26','2023-06-13 19:01:26','',175,'https://divyayogamonteregie.org/ca/?p=1026',0,'revision','',0),(1023,1,'2023-06-13 19:00:51','2023-06-13 19:00:51','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h3><strong>You Can Be Whatever<br /></strong></h3><h3><strong>You Want To Be!<br /></strong>There is inside you<br />all of the potential<br />to be whatever you want to be,<br />all of the energy<br />to do whatever you want to do.<br />Imagine yourself as you would like to be,<br />doing what you want to do,<br />and each day, take one step<br />towards your dream.<br />And though at times it may seem too<br />difficult to continue,<br />hold on to your dream.<br />One morning you will awake to find<br />that you are the person you dreamed of,<br />doing what you wanted to do,<br />simply because you had the courage<br />to believe in your potential<br />and to hold on to your dream</h3><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Be Whatever  You Want To Be !','','inherit','closed','closed','','175-revision-v1','','','2023-06-13 19:00:51','2023-06-13 19:00:51','',175,'https://divyayogamonteregie.org/ca/?p=1023',0,'revision','',0),(1024,1,'2023-06-13 19:01:26','2023-06-13 19:01:26','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h3><strong>You Can Be Whatever<br /></strong></h3><h3><strong>You Want To Be!<br /></strong>There is inside you<br />all of the potential<br />to be whatever you want to be,<br />all of the energy<br />to do whatever you want to do.<br />Imagine yourself as you would like to be,<br />doing what you want to do,<br />and each day, take one step<br />towards your dream.<br />And though at times it may seem too<br />difficult to continue,<br />hold on to your dream.<br />One morning you will awake to find<br />that you are the person you dreamed of,<br />doing what you wanted to do,<br />simply because you had the courage<br />to believe in your potential<br />and to hold on to your dream</h3><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Be Whatever  You Want To Be !','','inherit','closed','closed','','175-revision-v1','','','2023-06-13 19:01:26','2023-06-13 19:01:26','',175,'https://divyayogamonteregie.org/ca/?p=1024',0,'revision','',0),(1025,1,'2023-06-13 19:01:26','2023-06-13 19:01:26','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h3><strong>You Can Be Whatever<br /></strong></h3><h3><strong>You Want To Be!<br /></strong>There is inside you<br />all of the potential<br />to be whatever you want to be,<br />all of the energy<br />to do whatever you want to do.<br />Imagine yourself as you would like to be,<br />doing what you want to do,<br />and each day, take one step<br />towards your dream.<br />And though at times it may seem too<br />difficult to continue,<br />hold on to your dream.<br />One morning you will awake to find<br />that you are the person you dreamed of,<br />doing what you wanted to do,<br />simply because you had the courage<br />to believe in your potential<br />and to hold on to your dream</h3><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Be Whatever  You Want To Be !','','inherit','closed','closed','','175-revision-v1','','','2023-06-13 19:01:26','2023-06-13 19:01:26','',175,'https://divyayogamonteregie.org/ca/?p=1025',0,'revision','',0),(1027,1,'2023-06-13 19:03:32','2023-06-13 19:03:32','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>EANYTHING IS POSSIBLE</h1>		\n		<h2><strong><em>Believe in Yourself,and Remember that Anything Is Possible</em></strong></h2><p>Believe in what makes you feel good.<br />Believe in what makes you happy.<br />Believe in the dreams you\'ve always wanted to come true,<br />and give them every chance to.</p><p>Life holds no promises to what will come your way.<br />You must search for your own ideals<br />and work towards reaching them.</p><p>Life makes no guarantees as to what you\'ll have.<br />It just gives you time to make choices<br />and to take chances<br />and to discover whatever secrets might come your way.</p><p>If you are willing to take the opportunities you are given<br />and utilize the abilities you have,<br />you will constantly fill your life<br />with special moments and unforgettable times.</p><p>No one knows the mysteries of life or its ultimate meaning,<br />but for those who are willing<br />to believe in their dreams and in themselves,<br />life is a precious gift in which anything is possible.</p><p>~ Dena DiIaconi ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Anything Is Possible','','inherit','closed','closed','','166-revision-v1','','','2023-06-13 19:03:32','2023-06-13 19:03:32','',166,'https://divyayogamonteregie.org/ca/?p=1027',0,'revision','',0),(1028,1,'2023-06-13 19:03:32','2023-06-13 19:03:32','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>EANYTHING IS POSSIBLE</h1>		\n		<h2><strong><em>Believe in Yourself,and Remember that Anything Is Possible</em></strong></h2><p>Believe in what makes you feel good.<br />Believe in what makes you happy.<br />Believe in the dreams you\'ve always wanted to come true,<br />and give them every chance to.</p><p>Life holds no promises to what will come your way.<br />You must search for your own ideals<br />and work towards reaching them.</p><p>Life makes no guarantees as to what you\'ll have.<br />It just gives you time to make choices<br />and to take chances<br />and to discover whatever secrets might come your way.</p><p>If you are willing to take the opportunities you are given<br />and utilize the abilities you have,<br />you will constantly fill your life<br />with special moments and unforgettable times.</p><p>No one knows the mysteries of life or its ultimate meaning,<br />but for those who are willing<br />to believe in their dreams and in themselves,<br />life is a precious gift in which anything is possible.</p><p>~ Dena DiIaconi ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Anything Is Possible','','inherit','closed','closed','','166-revision-v1','','','2023-06-13 19:03:32','2023-06-13 19:03:32','',166,'https://divyayogamonteregie.org/ca/?p=1028',0,'revision','',0),(1030,1,'2023-06-13 19:04:29','2023-06-13 19:04:29','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h4><strong><em>Believe in Yourself,and Remember that Anything Is Possible</em></strong></h4><h4><strong><em><br></em></strong>Believe in what makes you feel good.<br>Believe in what makes you happy.<br>Believe in the dreams you\'ve always wanted to come true,<br>and give them every chance to.<br>Life holds no promises to what will come your way.<br>You must search for your own ideals<br>and work towards reaching them.<br>Life makes no guarantees as to what you\'ll have.<br>It just gives you time to make choices<br>and to take chances<br>and to discover whatever secrets might come your way.<br>If you are willing to take the opportunities you are given<br>and utilize the abilities you have,<br>you will constantly fill your life<br>with special moments and unforgettable times.<br>No one knows the mysteries of life or its ultimate meaning,<br>but for those who are willing<br>to believe in their dreams and in themselves,<br>life is a precious gift in which anything is possible.<br>~ Dena DiIaconi ~</h4>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Anything Is Possible','','inherit','closed','closed','','166-revision-v1','','','2023-06-13 19:04:29','2023-06-13 19:04:29','',166,'https://divyayogamonteregie.org/ca/?p=1030',0,'revision','',0),(1031,1,'2023-06-13 19:04:29','2023-06-13 19:04:29','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h4><strong><em>Believe in Yourself,and Remember that Anything Is Possible</em></strong></h4><h4><strong><em><br></em></strong>Believe in what makes you feel good.<br>Believe in what makes you happy.<br>Believe in the dreams you\'ve always wanted to come true,<br>and give them every chance to.<br>Life holds no promises to what will come your way.<br>You must search for your own ideals<br>and work towards reaching them.<br>Life makes no guarantees as to what you\'ll have.<br>It just gives you time to make choices<br>and to take chances<br>and to discover whatever secrets might come your way.<br>If you are willing to take the opportunities you are given<br>and utilize the abilities you have,<br>you will constantly fill your life<br>with special moments and unforgettable times.<br>No one knows the mysteries of life or its ultimate meaning,<br>but for those who are willing<br>to believe in their dreams and in themselves,<br>life is a precious gift in which anything is possible.<br>~ Dena DiIaconi ~</h4>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Anything Is Possible','','inherit','closed','closed','','166-revision-v1','','','2023-06-13 19:04:29','2023-06-13 19:04:29','',166,'https://divyayogamonteregie.org/ca/?p=1031',0,'revision','',0),(1032,1,'2023-06-13 19:04:29','2023-06-13 19:04:29','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h4><strong><em>Believe in Yourself,and Remember that Anything Is Possible</em></strong></h4><h4><strong><em><br /></em></strong>Believe in what makes you feel good.<br />Believe in what makes you happy.<br />Believe in the dreams you\'ve always wanted to come true,<br />and give them every chance to.<br />Life holds no promises to what will come your way.<br />You must search for your own ideals<br />and work towards reaching them.<br />Life makes no guarantees as to what you\'ll have.<br />It just gives you time to make choices<br />and to take chances<br />and to discover whatever secrets might come your way.<br />If you are willing to take the opportunities you are given<br />and utilize the abilities you have,<br />you will constantly fill your life<br />with special moments and unforgettable times.<br />No one knows the mysteries of life or its ultimate meaning,<br />but for those who are willing<br />to believe in their dreams and in themselves,<br />life is a precious gift in which anything is possible.<br />~ Dena DiIaconi ~</h4>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Anything Is Possible','','inherit','closed','closed','','166-revision-v1','','','2023-06-13 19:04:29','2023-06-13 19:04:29','',166,'https://divyayogamonteregie.org/ca/?p=1032',0,'revision','',0),(1033,1,'2023-06-13 19:07:22','2023-06-13 19:07:22','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>IF YOU HAVE A DREAM</h1>		\n		<p align=\"center\"><b>If You Have A Dream</b></p><p align=\"center\">Don’t wait for some distant day to come,<br />it may be too late before you’ve even begun.<br />Not everyone will agree with all you decide.</p><p align=\"center\">Be true to yourself first and foremost.<br />The only important thing in life is what you do<br />with the time you spend here on earth.</p><p align=\"center\">Don’t be afraid to follow your desires,<br />they are not silly nor selfish.<br />Take the time and do what makes you feel alive.</p><p align=\"center\">Leave your fears and regrets in the past,<br />for this is where they belong.<br />Don’t cloud today with things that can’t be undone.</p><p align=\"center\">You have no more control over yesterday or tomorrow,<br />than you do the raging of your passions.<br />Do not quiet these dreams nor quench your desires.</p><p align=\"center\">For if you do, your journey is ended.<br />You have only today to begin anew and follow your dreams.<br />For in the end all we have are our memories.</p><p align=\"center\">When the twilight comes to us, let there be,<br />No excuses, no explanations, no regrets!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','If You Have A Dream','','inherit','closed','closed','','183-revision-v1','','','2023-06-13 19:07:22','2023-06-13 19:07:22','',183,'https://divyayogamonteregie.org/ca/?p=1033',0,'revision','',0),(1034,1,'2023-06-13 19:07:22','2023-06-13 19:07:22','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>IF YOU HAVE A DREAM</h1>		\n		<p align=\"center\"><b>If You Have A Dream</b></p><p align=\"center\">Don’t wait for some distant day to come,<br />it may be too late before you’ve even begun.<br />Not everyone will agree with all you decide.</p><p align=\"center\">Be true to yourself first and foremost.<br />The only important thing in life is what you do<br />with the time you spend here on earth.</p><p align=\"center\">Don’t be afraid to follow your desires,<br />they are not silly nor selfish.<br />Take the time and do what makes you feel alive.</p><p align=\"center\">Leave your fears and regrets in the past,<br />for this is where they belong.<br />Don’t cloud today with things that can’t be undone.</p><p align=\"center\">You have no more control over yesterday or tomorrow,<br />than you do the raging of your passions.<br />Do not quiet these dreams nor quench your desires.</p><p align=\"center\">For if you do, your journey is ended.<br />You have only today to begin anew and follow your dreams.<br />For in the end all we have are our memories.</p><p align=\"center\">When the twilight comes to us, let there be,<br />No excuses, no explanations, no regrets!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','If You Have A Dream','','inherit','closed','closed','','183-revision-v1','','','2023-06-13 19:07:22','2023-06-13 19:07:22','',183,'https://divyayogamonteregie.org/ca/?p=1034',0,'revision','',0),(1036,1,'2023-06-13 19:08:21','2023-06-13 19:08:21','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h4><b>If You Have A Dream<br></b>Don’t wait for some distant day to come,<br>it may be too late before you’ve even begun.<br>Not everyone will agree with all you decide.<br>Be true to yourself first and foremost.<br>The only important thing in life is what you do<br>with the time you spend here on earth.<br>Don’t be afraid to follow your desires,<br>they are not silly nor selfish.<br>Take the time and do what makes you feel alive.<br>Leave your fears and regrets in the past,<br>for this is where they belong.<br>Don’t cloud today with things that can’t be undone.<br>You have no more control over yesterday or tomorrow,<br>than you do the raging of your passions.<br>Do not quiet these dreams nor quench your desires.<br>For if you do, your journey is ended.<br>You have only today to begin anew and follow your dreams.<br>For in the end all we have are our memories.<br>When the twilight comes to us, let there be,<br>No excuses, no explanations, no regrets!</h4>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','If You Have A Dream','','inherit','closed','closed','','183-revision-v1','','','2023-06-13 19:08:21','2023-06-13 19:08:21','',183,'https://divyayogamonteregie.org/ca/?p=1036',0,'revision','',0),(1037,1,'2023-06-13 19:08:21','2023-06-13 19:08:21','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h4><b>If You Have A Dream<br></b>Don’t wait for some distant day to come,<br>it may be too late before you’ve even begun.<br>Not everyone will agree with all you decide.<br>Be true to yourself first and foremost.<br>The only important thing in life is what you do<br>with the time you spend here on earth.<br>Don’t be afraid to follow your desires,<br>they are not silly nor selfish.<br>Take the time and do what makes you feel alive.<br>Leave your fears and regrets in the past,<br>for this is where they belong.<br>Don’t cloud today with things that can’t be undone.<br>You have no more control over yesterday or tomorrow,<br>than you do the raging of your passions.<br>Do not quiet these dreams nor quench your desires.<br>For if you do, your journey is ended.<br>You have only today to begin anew and follow your dreams.<br>For in the end all we have are our memories.<br>When the twilight comes to us, let there be,<br>No excuses, no explanations, no regrets!</h4>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','If You Have A Dream','','inherit','closed','closed','','183-revision-v1','','','2023-06-13 19:08:21','2023-06-13 19:08:21','',183,'https://divyayogamonteregie.org/ca/?p=1037',0,'revision','',0),(1038,1,'2023-06-13 19:08:21','2023-06-13 19:08:21','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h4><b>If You Have A Dream<br /></b>Don’t wait for some distant day to come,<br />it may be too late before you’ve even begun.<br />Not everyone will agree with all you decide.<br />Be true to yourself first and foremost.<br />The only important thing in life is what you do<br />with the time you spend here on earth.<br />Don’t be afraid to follow your desires,<br />they are not silly nor selfish.<br />Take the time and do what makes you feel alive.<br />Leave your fears and regrets in the past,<br />for this is where they belong.<br />Don’t cloud today with things that can’t be undone.<br />You have no more control over yesterday or tomorrow,<br />than you do the raging of your passions.<br />Do not quiet these dreams nor quench your desires.<br />For if you do, your journey is ended.<br />You have only today to begin anew and follow your dreams.<br />For in the end all we have are our memories.<br />When the twilight comes to us, let there be,<br />No excuses, no explanations, no regrets!</h4>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','If You Have A Dream','','inherit','closed','closed','','183-revision-v1','','','2023-06-13 19:08:21','2023-06-13 19:08:21','',183,'https://divyayogamonteregie.org/ca/?p=1038',0,'revision','',0),(1043,1,'2023-06-13 19:18:16','2023-06-13 19:18:16','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>JUST ONE</h1>		\n		<p align=\"center\">One song can spark a moment,<br />One tree can start a forest,<br />One bird can herald spring.</p><p align=\"center\">One smile begins a friendship,<br />One handclasp lifts a soul.<br />One star can guide a ship at sea,<br />One vote can change a nation,<br />One sunbeam lights a room<br />One candle wipes out darkness,<br />One laugh will conquer gloom.</p><p align=\"center\">One step must start each journey.<br />One word must start each prayer.<br />One hope will raise our spirits,<br />One touch can show you care.</p><p align=\"center\">One voice can speak with wisdom,<br />One heart can know what\'s true,</p><p align=\"center\">One life can make a difference,<br />You see, it\'s up to you!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Just One','','inherit','closed','closed','','202-revision-v1','','','2023-06-13 19:18:16','2023-06-13 19:18:16','',202,'https://divyayogamonteregie.org/ca/?p=1043',0,'revision','',0),(1040,1,'2023-06-13 19:12:43','2023-06-13 19:12:43','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>IN OUR LIFE</h1>		\n		<p style=\"text-align: center;\" align=\"center\">In life there are people that will hurt us and cause us pain,</p><p style=\"text-align: center;\" align=\"center\">but we must learn to forgive and forget and not hold grudges.</p><p style=\"text-align: center;\">In life there are mistakes we will make,<br />but we must learn from our wrongs and grow from them.</p><p style=\"text-align: center;\">In life there are regrets we will have to live with,<br />but we must learn to leave the past behind and realize it is something we can\'t change.</p><p style=\"text-align: center;\">In life there are people we will loose forever and can\'t have back,<br />but we must learn to let go &amp; move on.</p><p style=\"text-align: center;\">In life there are going to be obstacles that will cause interference,<br />but we must learn to overcome these challenges and grow stronger.</p><p style=\"text-align: center;\">In life there are fears that will hold us back from what we want,<br />but we must learn to fight them with the courage from within.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','In our life','','inherit','closed','closed','','193-revision-v1','','','2023-06-13 19:12:43','2023-06-13 19:12:43','',193,'https://divyayogamonteregie.org/ca/?p=1040',0,'revision','',0),(1041,1,'2023-06-13 19:12:43','2023-06-13 19:12:43','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>IN OUR LIFE</h1>		\n		<p style=\"text-align: center;\" align=\"center\">In life there are people that will hurt us and cause us pain,</p><p style=\"text-align: center;\" align=\"center\">but we must learn to forgive and forget and not hold grudges.</p><p style=\"text-align: center;\">In life there are mistakes we will make,<br />but we must learn from our wrongs and grow from them.</p><p style=\"text-align: center;\">In life there are regrets we will have to live with,<br />but we must learn to leave the past behind and realize it is something we can\'t change.</p><p style=\"text-align: center;\">In life there are people we will loose forever and can\'t have back,<br />but we must learn to let go &amp; move on.</p><p style=\"text-align: center;\">In life there are going to be obstacles that will cause interference,<br />but we must learn to overcome these challenges and grow stronger.</p><p style=\"text-align: center;\">In life there are fears that will hold us back from what we want,<br />but we must learn to fight them with the courage from within.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','In our life','','inherit','closed','closed','','193-revision-v1','','','2023-06-13 19:12:43','2023-06-13 19:12:43','',193,'https://divyayogamonteregie.org/ca/?p=1041',0,'revision','',0),(1044,1,'2023-06-13 19:18:16','2023-06-13 19:18:16','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>JUST ONE</h1>		\n		<p align=\"center\">One song can spark a moment,<br />One tree can start a forest,<br />One bird can herald spring.</p><p align=\"center\">One smile begins a friendship,<br />One handclasp lifts a soul.<br />One star can guide a ship at sea,<br />One vote can change a nation,<br />One sunbeam lights a room<br />One candle wipes out darkness,<br />One laugh will conquer gloom.</p><p align=\"center\">One step must start each journey.<br />One word must start each prayer.<br />One hope will raise our spirits,<br />One touch can show you care.</p><p align=\"center\">One voice can speak with wisdom,<br />One heart can know what\'s true,</p><p align=\"center\">One life can make a difference,<br />You see, it\'s up to you!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Just One','','inherit','closed','closed','','202-revision-v1','','','2023-06-13 19:18:16','2023-06-13 19:18:16','',202,'https://divyayogamonteregie.org/ca/?p=1044',0,'revision','',0),(1056,1,'2023-06-14 18:31:15','2023-06-14 18:31:15','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p align=\"center\">I used to have a comfort zone where I knew I wouldn\'t fail.<br />The same four walls and busywork were really more like jail.</p><p align=\"center\">I longed so much to do the things I\'d never done before,<br />But stayed inside my comfort zone and paced the same old floor.</p><p align=\"center\">I claimed to be so busy with the things inside the zone,<br />But deep inside I longed for something special of my own.</p><p align=\"center\">I couldn\'t let my life go by just watching others win.<br />I held my breath; I stepped outside and let the change begin.<br />I took a step and with new strength I\'d never felt before,<br />I kissed my comfort zone goodbye and closed and locked the door.</p><p align=\"center\">If you\'re in a comfort zone, afraid to venture out,<br />Remember that all winners were at one time filled with doubt.<br />A step or two and will power can make your dreams come true.</p><p align=\"center\">Reach for your future with a smile; success is there for you!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','My Comfort Zone','','inherit','closed','closed','','208-revision-v1','','','2023-06-14 18:31:15','2023-06-14 18:31:15','',208,'https://divyayogamonteregie.org/ca/?p=1056',0,'revision','',0),(1047,1,'2023-06-14 18:24:31','2023-06-14 18:24:31','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge.</p><p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p><p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p><p>After yoga super food i. e. grapes and banana are available for Yogies.</p><p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p><ol><li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li><li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li><li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li><li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li><li><b>Eyes and neck exercises</b> – we take care of every part of the body.<br />Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>    </b><br />Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li><li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li><li><b>6 mudras </b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li><li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br />We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li><li><b>Laughter yoga </b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br />We also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li><li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li><li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li><li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li></ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong><br /><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></p>','Home','','inherit','closed','closed','','652-revision-v1','','','2023-06-14 18:24:31','2023-06-14 18:24:31','',652,'https://divyayogamonteregie.org/ca/?p=1047',0,'revision','',0),(1048,1,'2023-06-14 18:24:31','2023-06-14 18:24:31','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge.</p><p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p><p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p><p>After yoga super food i. e. grapes and banana are available for Yogies.</p><p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p><ol><li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li><li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li><li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li><li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li><li><b>Eyes and neck exercises</b> – we take care of every part of the body.<br />Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>    </b><br />Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li><li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li><li><b>6 mudras </b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li><li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br />We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li><li><b>Laughter yoga </b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br />We also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li><li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li><li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li><li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li></ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong><br /><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></p>','Home','','inherit','closed','closed','','652-revision-v1','','','2023-06-14 18:24:31','2023-06-14 18:24:31','',652,'https://divyayogamonteregie.org/ca/?p=1048',0,'revision','',0),(1050,1,'2023-06-14 18:27:40','2023-06-14 18:27:40','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h4><strong><em>Believe in Yourself,and Remember that Anything Is Possible</em></strong></h4><h4><strong><em><br /></em></strong>Believe in what makes you feel good.<br />Believe in what makes you happy.<br />Believe in the dreams you\'ve always wanted to come true,<br />and give them every chance to.<br />Life holds no promises to what will come your way.<br />You must search for your own ideals<br />and work towards reaching them.<br />Life makes no guarantees as to what you\'ll have.<br />It just gives you time to make choices<br />and to take chances<br />and to discover whatever secrets might come your way.<br />If you are willing to take the opportunities you are given<br />and utilize the abilities you have,<br />you will constantly fill your life<br />with special moments and unforgettable times.<br />No one knows the mysteries of life or its ultimate meaning,<br />but for those who are willing<br />to believe in their dreams and in themselves,<br />life is a precious gift in which anything is possible.<br />~ Dena DiIaconi ~</h4>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Anything Is Possible','','inherit','closed','closed','','166-revision-v1','','','2023-06-14 18:27:40','2023-06-14 18:27:40','',166,'https://divyayogamonteregie.org/ca/?p=1050',0,'revision','',0),(1051,1,'2023-06-14 18:27:40','2023-06-14 18:27:40','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h4><strong><em>Believe in Yourself,and Remember that Anything Is Possible</em></strong></h4><h4><strong><em><br /></em></strong>Believe in what makes you feel good.<br />Believe in what makes you happy.<br />Believe in the dreams you\'ve always wanted to come true,<br />and give them every chance to.<br />Life holds no promises to what will come your way.<br />You must search for your own ideals<br />and work towards reaching them.<br />Life makes no guarantees as to what you\'ll have.<br />It just gives you time to make choices<br />and to take chances<br />and to discover whatever secrets might come your way.<br />If you are willing to take the opportunities you are given<br />and utilize the abilities you have,<br />you will constantly fill your life<br />with special moments and unforgettable times.<br />No one knows the mysteries of life or its ultimate meaning,<br />but for those who are willing<br />to believe in their dreams and in themselves,<br />life is a precious gift in which anything is possible.<br />~ Dena DiIaconi ~</h4>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Anything Is Possible','','inherit','closed','closed','','166-revision-v1','','','2023-06-14 18:27:40','2023-06-14 18:27:40','',166,'https://divyayogamonteregie.org/ca/?p=1051',0,'revision','',0),(1052,1,'2023-06-14 18:27:40','2023-06-14 18:27:40','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h4><strong><em>Believe in Yourself,and Remember that Anything Is Possible</em></strong></h4><h4><strong><em><br /></em></strong>Believe in what makes you feel good.<br />Believe in what makes you happy.<br />Believe in the dreams you\'ve always wanted to come true,<br />and give them every chance to.<br />Life holds no promises to what will come your way.<br />You must search for your own ideals<br />and work towards reaching them.<br />Life makes no guarantees as to what you\'ll have.<br />It just gives you time to make choices<br />and to take chances<br />and to discover whatever secrets might come your way.<br />If you are willing to take the opportunities you are given<br />and utilize the abilities you have,<br />you will constantly fill your life<br />with special moments and unforgettable times.<br />No one knows the mysteries of life or its ultimate meaning,<br />but for those who are willing<br />to believe in their dreams and in themselves,<br />life is a precious gift in which anything is possible.<br />~ Dena DiIaconi ~</h4>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Anything Is Possible','','inherit','closed','closed','','166-revision-v1','','','2023-06-14 18:27:40','2023-06-14 18:27:40','',166,'https://divyayogamonteregie.org/ca/?p=1052',0,'revision','',0),(1053,1,'2023-06-14 18:30:40','2023-06-14 18:30:40','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>My Comfort Zone</h1>		\n		<p align=\"center\">I used to have a comfort zone where I knew I wouldn\'t fail.<br />The same four walls and busywork were really more like jail.</p><p align=\"center\">I longed so much to do the things I\'d never done before,<br />But stayed inside my comfort zone and paced the same old floor.</p><p align=\"center\">I claimed to be so busy with the things inside the zone,<br />But deep inside I longed for something special of my own.</p><p align=\"center\">I couldn\'t let my life go by just watching others win.<br />I held my breath; I stepped outside and let the change begin.<br />I took a step and with new strength I\'d never felt before,<br />I kissed my comfort zone goodbye and closed and locked the door.</p><p align=\"center\">If you\'re in a comfort zone, afraid to venture out,<br />Remember that all winners were at one time filled with doubt.<br />A step or two and will power can make your dreams come true.</p><p align=\"center\">Reach for your future with a smile; success is there for you!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','My Comfort Zone','','inherit','closed','closed','','208-revision-v1','','','2023-06-14 18:30:40','2023-06-14 18:30:40','',208,'https://divyayogamonteregie.org/ca/?p=1053',0,'revision','',0),(1054,1,'2023-06-14 18:30:41','2023-06-14 18:30:41','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>My Comfort Zone</h1>		\n		<p align=\"center\">I used to have a comfort zone where I knew I wouldn\'t fail.<br />The same four walls and busywork were really more like jail.</p><p align=\"center\">I longed so much to do the things I\'d never done before,<br />But stayed inside my comfort zone and paced the same old floor.</p><p align=\"center\">I claimed to be so busy with the things inside the zone,<br />But deep inside I longed for something special of my own.</p><p align=\"center\">I couldn\'t let my life go by just watching others win.<br />I held my breath; I stepped outside and let the change begin.<br />I took a step and with new strength I\'d never felt before,<br />I kissed my comfort zone goodbye and closed and locked the door.</p><p align=\"center\">If you\'re in a comfort zone, afraid to venture out,<br />Remember that all winners were at one time filled with doubt.<br />A step or two and will power can make your dreams come true.</p><p align=\"center\">Reach for your future with a smile; success is there for you!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','My Comfort Zone','','inherit','closed','closed','','208-revision-v1','','','2023-06-14 18:30:41','2023-06-14 18:30:41','',208,'https://divyayogamonteregie.org/ca/?p=1054',0,'revision','',0),(1057,1,'2023-06-14 18:31:15','2023-06-14 18:31:15','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p align=\"center\">I used to have a comfort zone where I knew I wouldn\'t fail.<br />The same four walls and busywork were really more like jail.</p><p align=\"center\">I longed so much to do the things I\'d never done before,<br />But stayed inside my comfort zone and paced the same old floor.</p><p align=\"center\">I claimed to be so busy with the things inside the zone,<br />But deep inside I longed for something special of my own.</p><p align=\"center\">I couldn\'t let my life go by just watching others win.<br />I held my breath; I stepped outside and let the change begin.<br />I took a step and with new strength I\'d never felt before,<br />I kissed my comfort zone goodbye and closed and locked the door.</p><p align=\"center\">If you\'re in a comfort zone, afraid to venture out,<br />Remember that all winners were at one time filled with doubt.<br />A step or two and will power can make your dreams come true.</p><p align=\"center\">Reach for your future with a smile; success is there for you!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','My Comfort Zone','','inherit','closed','closed','','208-revision-v1','','','2023-06-14 18:31:15','2023-06-14 18:31:15','',208,'https://divyayogamonteregie.org/ca/?p=1057',0,'revision','',0),(1058,1,'2023-06-14 18:31:15','2023-06-14 18:31:15','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p align=\"center\">I used to have a comfort zone where I knew I wouldn\'t fail.<br />The same four walls and busywork were really more like jail.</p><p align=\"center\">I longed so much to do the things I\'d never done before,<br />But stayed inside my comfort zone and paced the same old floor.</p><p align=\"center\">I claimed to be so busy with the things inside the zone,<br />But deep inside I longed for something special of my own.</p><p align=\"center\">I couldn\'t let my life go by just watching others win.<br />I held my breath; I stepped outside and let the change begin.<br />I took a step and with new strength I\'d never felt before,<br />I kissed my comfort zone goodbye and closed and locked the door.</p><p align=\"center\">If you\'re in a comfort zone, afraid to venture out,<br />Remember that all winners were at one time filled with doubt.<br />A step or two and will power can make your dreams come true.</p><p align=\"center\">Reach for your future with a smile; success is there for you!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','My Comfort Zone','','inherit','closed','closed','','208-revision-v1','','','2023-06-14 18:31:15','2023-06-14 18:31:15','',208,'https://divyayogamonteregie.org/ca/?p=1058',0,'revision','',0),(1059,1,'2023-06-14 18:32:53','2023-06-14 18:32:53','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>OUR THOUGHTS</h1>		\n		<p align=\"center\">Keep your thoughts positive,</p><p align=\"center\">because thoughts become your words.</p><p align=\"center\">Keep your words positive</p><p align=\"center\">because words become your action.</p><p align=\"center\">Keep your action positive</p><p align=\"center\">Because your action becomes your habit.</p><p align=\"center\">Keep your habit positive,</p><p align=\"center\">because your habit becomes your lifestyle.</p><p align=\"center\">Keep your life style positive,</p><p align=\"center\">because your life style becomes your destiny.</p><p>.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Our Thoughts','','inherit','closed','closed','','215-revision-v1','','','2023-06-14 18:32:53','2023-06-14 18:32:53','',215,'https://divyayogamonteregie.org/ca/?p=1059',0,'revision','',0),(1060,1,'2023-06-14 18:32:54','2023-06-14 18:32:54','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>OUR THOUGHTS</h1>		\n		<p align=\"center\">Keep your thoughts positive,</p><p align=\"center\">because thoughts become your words.</p><p align=\"center\">Keep your words positive</p><p align=\"center\">because words become your action.</p><p align=\"center\">Keep your action positive</p><p align=\"center\">Because your action becomes your habit.</p><p align=\"center\">Keep your habit positive,</p><p align=\"center\">because your habit becomes your lifestyle.</p><p align=\"center\">Keep your life style positive,</p><p align=\"center\">because your life style becomes your destiny.</p><p>.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Our Thoughts','','inherit','closed','closed','','215-revision-v1','','','2023-06-14 18:32:54','2023-06-14 18:32:54','',215,'https://divyayogamonteregie.org/ca/?p=1060',0,'revision','',0),(1061,1,'2023-06-14 18:32:54','2023-06-14 18:32:54','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>OUR THOUGHTS</h1>		\n		<p align=\"center\">Keep your thoughts positive,</p><p align=\"center\">because thoughts become your words.</p><p align=\"center\">Keep your words positive</p><p align=\"center\">because words become your action.</p><p align=\"center\">Keep your action positive</p><p align=\"center\">Because your action becomes your habit.</p><p align=\"center\">Keep your habit positive,</p><p align=\"center\">because your habit becomes your lifestyle.</p><p align=\"center\">Keep your life style positive,</p><p align=\"center\">because your life style becomes your destiny.</p><p>.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Our Thoughts','','inherit','closed','closed','','215-revision-v1','','','2023-06-14 18:32:54','2023-06-14 18:32:54','',215,'https://divyayogamonteregie.org/ca/?p=1061',0,'revision','',0),(1062,1,'2023-06-14 18:34:39','2023-06-14 18:34:39','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMISE YOURSELF</h1>		\n		<p align=\"center\">(one the most classic motivational poems)</p><p align=\"center\">Promise yourself to be so strong that nothing can<br />disturb your peace of mind.</p><p align=\"center\">To talk health, happiness, and prosperity to<br />every person you meet.</p><p align=\"center\">To make all your friends feel like there is<br />something in them.</p><p align=\"center\">To look at the sunny side of everything and make your<br />optimism come true.</p><p align=\"center\">To think only of the best, to work only for the best,<br />and expect only the best.</p><p align=\"center\">To be just as enthusiastic about the success of others<br />as you are about your own.</p><p align=\"center\">To forget the mistakes of the past and press on the<br />greater achievements of the future.</p><p align=\"center\">To wear a cheerful countenance at all times and give<br />every living person you meet a smile.</p><p align=\"center\">To give so much time to the improvement of yourself<br />that you have no time to criticize others.</p><p align=\"center\">To be too large for worry, too noble for anger, and too<br />strong for fear, and too happy to permit the<br />presence of trouble.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Promise Yourself','','inherit','closed','closed','','223-revision-v1','','','2023-06-14 18:34:39','2023-06-14 18:34:39','',223,'https://divyayogamonteregie.org/ca/?p=1062',0,'revision','',0),(1063,1,'2023-06-14 18:34:39','2023-06-14 18:34:39','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMISE YOURSELF</h1>		\n		<p align=\"center\">(one the most classic motivational poems)</p><p align=\"center\">Promise yourself to be so strong that nothing can<br />disturb your peace of mind.</p><p align=\"center\">To talk health, happiness, and prosperity to<br />every person you meet.</p><p align=\"center\">To make all your friends feel like there is<br />something in them.</p><p align=\"center\">To look at the sunny side of everything and make your<br />optimism come true.</p><p align=\"center\">To think only of the best, to work only for the best,<br />and expect only the best.</p><p align=\"center\">To be just as enthusiastic about the success of others<br />as you are about your own.</p><p align=\"center\">To forget the mistakes of the past and press on the<br />greater achievements of the future.</p><p align=\"center\">To wear a cheerful countenance at all times and give<br />every living person you meet a smile.</p><p align=\"center\">To give so much time to the improvement of yourself<br />that you have no time to criticize others.</p><p align=\"center\">To be too large for worry, too noble for anger, and too<br />strong for fear, and too happy to permit the<br />presence of trouble.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Promise Yourself','','inherit','closed','closed','','223-revision-v1','','','2023-06-14 18:34:39','2023-06-14 18:34:39','',223,'https://divyayogamonteregie.org/ca/?p=1063',0,'revision','',0),(1064,1,'2023-06-14 18:34:39','2023-06-14 18:34:39','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMISE YOURSELF</h1>		\n		<p align=\"center\">(one the most classic motivational poems)</p><p align=\"center\">Promise yourself to be so strong that nothing can<br />disturb your peace of mind.</p><p align=\"center\">To talk health, happiness, and prosperity to<br />every person you meet.</p><p align=\"center\">To make all your friends feel like there is<br />something in them.</p><p align=\"center\">To look at the sunny side of everything and make your<br />optimism come true.</p><p align=\"center\">To think only of the best, to work only for the best,<br />and expect only the best.</p><p align=\"center\">To be just as enthusiastic about the success of others<br />as you are about your own.</p><p align=\"center\">To forget the mistakes of the past and press on the<br />greater achievements of the future.</p><p align=\"center\">To wear a cheerful countenance at all times and give<br />every living person you meet a smile.</p><p align=\"center\">To give so much time to the improvement of yourself<br />that you have no time to criticize others.</p><p align=\"center\">To be too large for worry, too noble for anger, and too<br />strong for fear, and too happy to permit the<br />presence of trouble.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Promise Yourself','','inherit','closed','closed','','223-revision-v1','','','2023-06-14 18:34:39','2023-06-14 18:34:39','',223,'https://divyayogamonteregie.org/ca/?p=1064',0,'revision','',0),(1065,1,'2023-06-14 18:36:47','2023-06-14 18:36:47','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMISE YOURSELF -NOW</h1>		\n		<p align=\"center\">Of all the things you can do,</p><p align=\"center\">promise yourself you will try.</p><p align=\"center\">It doesn\'t even matter if you win,</p><p align=\"center\">as long as you apply.</p><p align=\"center\"> </p><p align=\"center\">No one can ask anything of you except yourself.</p><p align=\"center\">If you don\'t want to make a move,</p><p align=\"center\">it\'s you who\'ll be left out.</p><p align=\"center\"> </p><p align=\"center\">So don\'t allow yourself to miss out on important things.</p><p align=\"center\">You may not feel that they are worthy,</p><p align=\"center\">yet they can turn out to be your wings.</p><p align=\"center\"> </p><p align=\"center\">Experiences make us whole,</p><p align=\"center\">and make life feel fulfilled.</p><p align=\"center\">And when it\'s time to look back,</p><p align=\"center\">don\'t let yourself feel unskilled.</p><p align=\"center\"> </p><p align=\"center\">So don\'t allow yourself to stop,</p><p align=\"center\">for no apparent reason.</p><p align=\"center\">Promise yourself you will try,</p><p align=\"center\">and take on any season.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Promise Yourself-now.','','inherit','closed','closed','','228-revision-v1','','','2023-06-14 18:36:47','2023-06-14 18:36:47','',228,'https://divyayogamonteregie.org/ca/?p=1065',0,'revision','',0),(1066,1,'2023-06-14 18:36:47','2023-06-14 18:36:47','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMISE YOURSELF -NOW</h1>		\n		<p align=\"center\">Of all the things you can do,</p><p align=\"center\">promise yourself you will try.</p><p align=\"center\">It doesn\'t even matter if you win,</p><p align=\"center\">as long as you apply.</p><p align=\"center\"> </p><p align=\"center\">No one can ask anything of you except yourself.</p><p align=\"center\">If you don\'t want to make a move,</p><p align=\"center\">it\'s you who\'ll be left out.</p><p align=\"center\"> </p><p align=\"center\">So don\'t allow yourself to miss out on important things.</p><p align=\"center\">You may not feel that they are worthy,</p><p align=\"center\">yet they can turn out to be your wings.</p><p align=\"center\"> </p><p align=\"center\">Experiences make us whole,</p><p align=\"center\">and make life feel fulfilled.</p><p align=\"center\">And when it\'s time to look back,</p><p align=\"center\">don\'t let yourself feel unskilled.</p><p align=\"center\"> </p><p align=\"center\">So don\'t allow yourself to stop,</p><p align=\"center\">for no apparent reason.</p><p align=\"center\">Promise yourself you will try,</p><p align=\"center\">and take on any season.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Promise Yourself-now.','','inherit','closed','closed','','228-revision-v1','','','2023-06-14 18:36:47','2023-06-14 18:36:47','',228,'https://divyayogamonteregie.org/ca/?p=1066',0,'revision','',0),(1067,1,'2023-06-14 18:36:47','2023-06-14 18:36:47','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PROMISE YOURSELF -NOW</h1>		\n		<p align=\"center\">Of all the things you can do,</p><p align=\"center\">promise yourself you will try.</p><p align=\"center\">It doesn\'t even matter if you win,</p><p align=\"center\">as long as you apply.</p><p align=\"center\"> </p><p align=\"center\">No one can ask anything of you except yourself.</p><p align=\"center\">If you don\'t want to make a move,</p><p align=\"center\">it\'s you who\'ll be left out.</p><p align=\"center\"> </p><p align=\"center\">So don\'t allow yourself to miss out on important things.</p><p align=\"center\">You may not feel that they are worthy,</p><p align=\"center\">yet they can turn out to be your wings.</p><p align=\"center\"> </p><p align=\"center\">Experiences make us whole,</p><p align=\"center\">and make life feel fulfilled.</p><p align=\"center\">And when it\'s time to look back,</p><p align=\"center\">don\'t let yourself feel unskilled.</p><p align=\"center\"> </p><p align=\"center\">So don\'t allow yourself to stop,</p><p align=\"center\">for no apparent reason.</p><p align=\"center\">Promise yourself you will try,</p><p align=\"center\">and take on any season.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Promise Yourself-now.','','inherit','closed','closed','','228-revision-v1','','','2023-06-14 18:36:47','2023-06-14 18:36:47','',228,'https://divyayogamonteregie.org/ca/?p=1067',0,'revision','',0),(1068,1,'2023-06-14 18:38:15','2023-06-14 18:38:15','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>START WHERE YOU STAND</h1>		\n		<p align=\"center\">By Berton Braley</p><p align=\"center\">Start where you stand and never mind the past,<br />The past won\'t help you in beginning new,<br />If you have left it all behind at last<br />Why, that\'s enough, you\'re done with it, you\'re through;<br />This is another chapter in the book,<br />This is another race that you have planned,<br />Don\'t give the vanished days a backward look,<br />Start where you stand.</p><p align=\"center\">The world won\'t care about your old defeats<br />If you can start anew and win success;<br />The future is your time, and time is fleet<br />And there is much of work and strain and stress;<br />Forget the buried woes and dead despairs,<br />Here is a brand-new trial right at hand,<br />The future is for him who does and dares,<br />Start where you stand.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Start Where You Stand','','inherit','closed','closed','','235-revision-v1','','','2023-06-14 18:38:15','2023-06-14 18:38:15','',235,'https://divyayogamonteregie.org/ca/?p=1068',0,'revision','',0),(1069,1,'2023-06-14 18:38:16','2023-06-14 18:38:16','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>START WHERE YOU STAND</h1>		\n		<p align=\"center\">By Berton Braley</p><p align=\"center\">Start where you stand and never mind the past,<br />The past won\'t help you in beginning new,<br />If you have left it all behind at last<br />Why, that\'s enough, you\'re done with it, you\'re through;<br />This is another chapter in the book,<br />This is another race that you have planned,<br />Don\'t give the vanished days a backward look,<br />Start where you stand.</p><p align=\"center\">The world won\'t care about your old defeats<br />If you can start anew and win success;<br />The future is your time, and time is fleet<br />And there is much of work and strain and stress;<br />Forget the buried woes and dead despairs,<br />Here is a brand-new trial right at hand,<br />The future is for him who does and dares,<br />Start where you stand.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Start Where You Stand','','inherit','closed','closed','','235-revision-v1','','','2023-06-14 18:38:16','2023-06-14 18:38:16','',235,'https://divyayogamonteregie.org/ca/?p=1069',0,'revision','',0),(1070,1,'2023-06-14 18:38:16','2023-06-14 18:38:16','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>START WHERE YOU STAND</h1>		\n		<p align=\"center\">By Berton Braley</p><p align=\"center\">Start where you stand and never mind the past,<br />The past won\'t help you in beginning new,<br />If you have left it all behind at last<br />Why, that\'s enough, you\'re done with it, you\'re through;<br />This is another chapter in the book,<br />This is another race that you have planned,<br />Don\'t give the vanished days a backward look,<br />Start where you stand.</p><p align=\"center\">The world won\'t care about your old defeats<br />If you can start anew and win success;<br />The future is your time, and time is fleet<br />And there is much of work and strain and stress;<br />Forget the buried woes and dead despairs,<br />Here is a brand-new trial right at hand,<br />The future is for him who does and dares,<br />Start where you stand.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Start Where You Stand','','inherit','closed','closed','','235-revision-v1','','','2023-06-14 18:38:16','2023-06-14 18:38:16','',235,'https://divyayogamonteregie.org/ca/?p=1070',0,'revision','',0),(1071,1,'2023-06-14 18:40:22','2023-06-14 18:40:22','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODAY I</h1>		\n		<p align=\"center\">Today I have decided,</p><p align=\"center\">that it\'s time to take control.</p><p align=\"center\">There won\'t be anymore sitting,</p><p align=\"center\">and waiting, this is my goal.</p><p align=\"center\"> </p><p align=\"center\">Today I see it so clearly,</p><p align=\"center\">I am all that I have.</p><p align=\"center\">If I want to get something done,</p><p align=\"center\">it\'s up to me to pave my own path.</p><p align=\"center\"> </p><p align=\"center\">Today I will set my goal,</p><p align=\"center\">and work to see it through.</p><p align=\"center\">I\'m tired of being afraid,</p><p align=\"center\">it\'s time for my dreams to come true.</p><p align=\"center\"> </p><p align=\"center\">Today I am quite happy,</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Today I','','inherit','closed','closed','','241-revision-v1','','','2023-06-14 18:40:22','2023-06-14 18:40:22','',241,'https://divyayogamonteregie.org/ca/?p=1071',0,'revision','',0),(1072,1,'2023-06-14 18:40:22','2023-06-14 18:40:22','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODAY I</h1>		\n		<p align=\"center\">Today I have decided,</p><p align=\"center\">that it\'s time to take control.</p><p align=\"center\">There won\'t be anymore sitting,</p><p align=\"center\">and waiting, this is my goal.</p><p align=\"center\"> </p><p align=\"center\">Today I see it so clearly,</p><p align=\"center\">I am all that I have.</p><p align=\"center\">If I want to get something done,</p><p align=\"center\">it\'s up to me to pave my own path.</p><p align=\"center\"> </p><p align=\"center\">Today I will set my goal,</p><p align=\"center\">and work to see it through.</p><p align=\"center\">I\'m tired of being afraid,</p><p align=\"center\">it\'s time for my dreams to come true.</p><p align=\"center\"> </p><p align=\"center\">Today I am quite happy,</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Today I','','inherit','closed','closed','','241-revision-v1','','','2023-06-14 18:40:22','2023-06-14 18:40:22','',241,'https://divyayogamonteregie.org/ca/?p=1072',0,'revision','',0),(1073,1,'2023-06-14 18:40:23','2023-06-14 18:40:23','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODAY I</h1>		\n		<p align=\"center\">Today I have decided,</p><p align=\"center\">that it\'s time to take control.</p><p align=\"center\">There won\'t be anymore sitting,</p><p align=\"center\">and waiting, this is my goal.</p><p align=\"center\"> </p><p align=\"center\">Today I see it so clearly,</p><p align=\"center\">I am all that I have.</p><p align=\"center\">If I want to get something done,</p><p align=\"center\">it\'s up to me to pave my own path.</p><p align=\"center\"> </p><p align=\"center\">Today I will set my goal,</p><p align=\"center\">and work to see it through.</p><p align=\"center\">I\'m tired of being afraid,</p><p align=\"center\">it\'s time for my dreams to come true.</p><p align=\"center\"> </p><p align=\"center\">Today I am quite happy,</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Today I','','inherit','closed','closed','','241-revision-v1','','','2023-06-14 18:40:23','2023-06-14 18:40:23','',241,'https://divyayogamonteregie.org/ca/?p=1073',0,'revision','',0),(1074,1,'2023-06-14 18:42:59','2023-06-14 18:42:59','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>YOU POSSESS TEHE ENERGY</h1>		\n		<p style=\"text-align: center;\" align=\"center\">Like attracts like.</p><p style=\"text-align: center;\" align=\"center\">If you feel defeated, you will be.</p><p style=\"text-align: center;\" align=\"center\">If you are weary, you will lose momentum.</p><p style=\"text-align: center;\" align=\"center\">If you are of joyful focus, the negative will have no choice but to recede.</p><p style=\"text-align: center;\" align=\"center\">Decide to laugh in the face of adversity.</p><p style=\"text-align: center;\" align=\"center\">Know you are powerful enough to supersede all difficulty.</p><p style=\"text-align: center;\" align=\"center\">Do not let your thoughts wander.</p><p style=\"text-align: center;\" align=\"center\">Be powerful.</p><p style=\"text-align: center;\" align=\"center\">Know yourself.</p><p style=\"text-align: center;\" align=\"center\"> Decide to be in control of your reality.</p><p style=\"text-align: center;\" align=\"center\">There are no victims except those who have given up their power.</p><p style=\"text-align: center;\" align=\"center\">You possess the energy, create and take control of your destiny</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','You Possess The Energy','','inherit','closed','closed','','246-revision-v1','','','2023-06-14 18:42:59','2023-06-14 18:42:59','',246,'https://divyayogamonteregie.org/ca/?p=1074',0,'revision','',0),(1075,1,'2023-06-14 18:42:59','2023-06-14 18:42:59','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>YOU POSSESS TEHE ENERGY</h1>		\n		<p style=\"text-align: center;\" align=\"center\">Like attracts like.</p><p style=\"text-align: center;\" align=\"center\">If you feel defeated, you will be.</p><p style=\"text-align: center;\" align=\"center\">If you are weary, you will lose momentum.</p><p style=\"text-align: center;\" align=\"center\">If you are of joyful focus, the negative will have no choice but to recede.</p><p style=\"text-align: center;\" align=\"center\">Decide to laugh in the face of adversity.</p><p style=\"text-align: center;\" align=\"center\">Know you are powerful enough to supersede all difficulty.</p><p style=\"text-align: center;\" align=\"center\">Do not let your thoughts wander.</p><p style=\"text-align: center;\" align=\"center\">Be powerful.</p><p style=\"text-align: center;\" align=\"center\">Know yourself.</p><p style=\"text-align: center;\" align=\"center\"> Decide to be in control of your reality.</p><p style=\"text-align: center;\" align=\"center\">There are no victims except those who have given up their power.</p><p style=\"text-align: center;\" align=\"center\">You possess the energy, create and take control of your destiny</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','You Possess The Energy','','inherit','closed','closed','','246-revision-v1','','','2023-06-14 18:42:59','2023-06-14 18:42:59','',246,'https://divyayogamonteregie.org/ca/?p=1075',0,'revision','',0),(1076,1,'2023-06-14 18:42:59','2023-06-14 18:42:59','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>YOU POSSESS TEHE ENERGY</h1>		\n		<p style=\"text-align: center;\" align=\"center\">Like attracts like.</p><p style=\"text-align: center;\" align=\"center\">If you feel defeated, you will be.</p><p style=\"text-align: center;\" align=\"center\">If you are weary, you will lose momentum.</p><p style=\"text-align: center;\" align=\"center\">If you are of joyful focus, the negative will have no choice but to recede.</p><p style=\"text-align: center;\" align=\"center\">Decide to laugh in the face of adversity.</p><p style=\"text-align: center;\" align=\"center\">Know you are powerful enough to supersede all difficulty.</p><p style=\"text-align: center;\" align=\"center\">Do not let your thoughts wander.</p><p style=\"text-align: center;\" align=\"center\">Be powerful.</p><p style=\"text-align: center;\" align=\"center\">Know yourself.</p><p style=\"text-align: center;\" align=\"center\"> Decide to be in control of your reality.</p><p style=\"text-align: center;\" align=\"center\">There are no victims except those who have given up their power.</p><p style=\"text-align: center;\" align=\"center\">You possess the energy, create and take control of your destiny</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','You Possess The Energy','','inherit','closed','closed','','246-revision-v1','','','2023-06-14 18:42:59','2023-06-14 18:42:59','',246,'https://divyayogamonteregie.org/ca/?p=1076',0,'revision','',0),(1077,1,'2023-06-14 18:45:07','2023-06-14 18:45:07','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODAY\'S DREAMS ARE TOMORROW\'S SUCCESSES</h1>		\n		<p align=\"center\">Don\'t be afraid of high hopes<br />or plans that seem to be out of reach.<br />Life is meant to be experienced,<br />and every situation allows for<br />learning and growth.</p><p align=\"center\">Motivation is a positive starting point,<br />and action places you on a forward path.<br />A dream is a blueprint<br />of a goal not yet achieved;<br />the only difference between the two<br />is the effort involved in attaining<br />what you hope to accomplish.</p><p align=\"center\">Let your mind and heart urge you on;<br />allow the power of your will<br />to lead you to your destination.</p><p align=\"center\">Don\'t count the steps ahead;<br />just add up the total<br />of steps already covered,<br />and multiply it by<br />faith, confidence, and endurance.</p><p align=\"center\">Always remember that<br />for those who persist,<br />today\'s dreams are transformed<br />into tomorrow\'s successes.</p><p align=\"center\">~ Kelly D. Caron ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Today\'s Dreams Are Tomorrow\'s Successes','','inherit','closed','closed','','257-revision-v1','','','2023-06-14 18:45:07','2023-06-14 18:45:07','',257,'https://divyayogamonteregie.org/ca/?p=1077',0,'revision','',0),(1078,1,'2023-06-14 18:45:07','2023-06-14 18:45:07','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODAY\'S DREAMS ARE TOMORROW\'S SUCCESSES</h1>		\n		<p align=\"center\">Don\'t be afraid of high hopes<br />or plans that seem to be out of reach.<br />Life is meant to be experienced,<br />and every situation allows for<br />learning and growth.</p><p align=\"center\">Motivation is a positive starting point,<br />and action places you on a forward path.<br />A dream is a blueprint<br />of a goal not yet achieved;<br />the only difference between the two<br />is the effort involved in attaining<br />what you hope to accomplish.</p><p align=\"center\">Let your mind and heart urge you on;<br />allow the power of your will<br />to lead you to your destination.</p><p align=\"center\">Don\'t count the steps ahead;<br />just add up the total<br />of steps already covered,<br />and multiply it by<br />faith, confidence, and endurance.</p><p align=\"center\">Always remember that<br />for those who persist,<br />today\'s dreams are transformed<br />into tomorrow\'s successes.</p><p align=\"center\">~ Kelly D. Caron ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Today\'s Dreams Are Tomorrow\'s Successes','','inherit','closed','closed','','257-revision-v1','','','2023-06-14 18:45:07','2023-06-14 18:45:07','',257,'https://divyayogamonteregie.org/ca/?p=1078',0,'revision','',0),(1079,1,'2023-06-14 18:45:07','2023-06-14 18:45:07','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>TODAY\'S DREAMS ARE TOMORROW\'S SUCCESSES</h1>		\n		<p align=\"center\">Don\'t be afraid of high hopes<br />or plans that seem to be out of reach.<br />Life is meant to be experienced,<br />and every situation allows for<br />learning and growth.</p><p align=\"center\">Motivation is a positive starting point,<br />and action places you on a forward path.<br />A dream is a blueprint<br />of a goal not yet achieved;<br />the only difference between the two<br />is the effort involved in attaining<br />what you hope to accomplish.</p><p align=\"center\">Let your mind and heart urge you on;<br />allow the power of your will<br />to lead you to your destination.</p><p align=\"center\">Don\'t count the steps ahead;<br />just add up the total<br />of steps already covered,<br />and multiply it by<br />faith, confidence, and endurance.</p><p align=\"center\">Always remember that<br />for those who persist,<br />today\'s dreams are transformed<br />into tomorrow\'s successes.</p><p align=\"center\">~ Kelly D. Caron ~</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Today\'s Dreams Are Tomorrow\'s Successes','','inherit','closed','closed','','257-revision-v1','','','2023-06-14 18:45:07','2023-06-14 18:45:07','',257,'https://divyayogamonteregie.org/ca/?p=1079',0,'revision','',0),(1080,1,'2023-06-14 18:47:02','2023-06-14 18:47:02','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WITHIN YOU IS THE STENGHT TO MEET TO MEET LIFE\'S CHALLENGES !</h1>		\n		<p align=\"center\">You are stronger than you think,<br />remember to stand tall.</p><p align=\"center\">Every challenge in your life<br />helps you to grow.</p><p align=\"center\">Every problem you encounter<br />strengthens your mind and your soul.</p><p align=\"center\">Every trouble you overcome<br />increases your understanding of life.</p><p align=\"center\">When all your troubles weigh<br />heavily on your shoulders,<br />remember that beneath the burden<br />you can stand tall,<br />because you are never given<br />more than you can handle...<br />and you are stronger than you think</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Within You Is The Strength To Meet Life\'s Challenges !','','inherit','closed','closed','','262-revision-v1','','','2023-06-14 18:47:02','2023-06-14 18:47:02','',262,'https://divyayogamonteregie.org/ca/?p=1080',0,'revision','',0),(1081,1,'2023-06-14 18:47:02','2023-06-14 18:47:02','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WITHIN YOU IS THE STENGHT TO MEET TO MEET LIFE\'S CHALLENGES !</h1>		\n		<p align=\"center\">You are stronger than you think,<br />remember to stand tall.</p><p align=\"center\">Every challenge in your life<br />helps you to grow.</p><p align=\"center\">Every problem you encounter<br />strengthens your mind and your soul.</p><p align=\"center\">Every trouble you overcome<br />increases your understanding of life.</p><p align=\"center\">When all your troubles weigh<br />heavily on your shoulders,<br />remember that beneath the burden<br />you can stand tall,<br />because you are never given<br />more than you can handle...<br />and you are stronger than you think</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Within You Is The Strength To Meet Life\'s Challenges !','','inherit','closed','closed','','262-revision-v1','','','2023-06-14 18:47:02','2023-06-14 18:47:02','',262,'https://divyayogamonteregie.org/ca/?p=1081',0,'revision','',0),(1082,1,'2023-06-14 18:47:03','2023-06-14 18:47:03','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>WITHIN YOU IS THE STENGHT TO MEET TO MEET LIFE\'S CHALLENGES !</h1>		\n		<p align=\"center\">You are stronger than you think,<br />remember to stand tall.</p><p align=\"center\">Every challenge in your life<br />helps you to grow.</p><p align=\"center\">Every problem you encounter<br />strengthens your mind and your soul.</p><p align=\"center\">Every trouble you overcome<br />increases your understanding of life.</p><p align=\"center\">When all your troubles weigh<br />heavily on your shoulders,<br />remember that beneath the burden<br />you can stand tall,<br />because you are never given<br />more than you can handle...<br />and you are stronger than you think</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Within You Is The Strength To Meet Life\'s Challenges !','','inherit','closed','closed','','262-revision-v1','','','2023-06-14 18:47:03','2023-06-14 18:47:03','',262,'https://divyayogamonteregie.org/ca/?p=1082',0,'revision','',0),(1083,1,'2023-06-14 18:48:35','2023-06-14 18:48:35','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g12cf06d74_1280.jpg\" alt=\"yoga-g12cf06d74_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg\" alt=\"peaceful-g5ada3643f_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg\" alt=\"yoga-g4ef99c854_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280.jpg\" alt=\"sunrise-g34a24ef5c_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg\" alt=\"meditate-g16efcb560_1280\" /></figure>			\n												Previous image\n												Next image\n		<p style=\"text-align: justify;\">To make basic yoga practice easily accessible to everyone without charge.</p><p style=\"text-align: justify;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p><p style=\"text-align: justify;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p><p style=\"text-align: justify;\">After yoga super food i. e. grapes and banana are available for Yogies.</p><p style=\"text-align: justify;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>','Mission','','inherit','closed','closed','','43-revision-v1','','','2023-06-14 18:48:35','2023-06-14 18:48:35','',43,'https://divyayogamonteregie.org/ca/?p=1083',0,'revision','',0),(1084,1,'2023-06-14 18:48:35','2023-06-14 18:48:35','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g12cf06d74_1280.jpg\" alt=\"yoga-g12cf06d74_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg\" alt=\"peaceful-g5ada3643f_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg\" alt=\"yoga-g4ef99c854_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280.jpg\" alt=\"sunrise-g34a24ef5c_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg\" alt=\"meditate-g16efcb560_1280\" /></figure>			\n												Previous image\n												Next image\n		<p style=\"text-align: justify;\">To make basic yoga practice easily accessible to everyone without charge.</p><p style=\"text-align: justify;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p><p style=\"text-align: justify;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p><p style=\"text-align: justify;\">After yoga super food i. e. grapes and banana are available for Yogies.</p><p style=\"text-align: justify;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>','Mission','','inherit','closed','closed','','43-revision-v1','','','2023-06-14 18:48:35','2023-06-14 18:48:35','',43,'https://divyayogamonteregie.org/ca/?p=1084',0,'revision','',0),(1085,1,'2023-06-14 18:48:35','2023-06-14 18:48:35','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g12cf06d74_1280.jpg\" alt=\"yoga-g12cf06d74_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg\" alt=\"peaceful-g5ada3643f_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg\" alt=\"yoga-g4ef99c854_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280.jpg\" alt=\"sunrise-g34a24ef5c_1280\" /></figure><figure><img src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/meditate-g16efcb560_1280.jpg\" alt=\"meditate-g16efcb560_1280\" /></figure>			\n												Previous image\n												Next image\n		<p style=\"text-align: justify;\">To make basic yoga practice easily accessible to everyone without charge.</p><p style=\"text-align: justify;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p><p style=\"text-align: justify;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p><p style=\"text-align: justify;\">After yoga super food i. e. grapes and banana are available for Yogies.</p><p style=\"text-align: justify;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>','Mission','','inherit','closed','closed','','43-revision-v1','','','2023-06-14 18:48:35','2023-06-14 18:48:35','',43,'https://divyayogamonteregie.org/ca/?p=1085',0,'revision','',0),(1086,1,'2023-06-14 18:52:17','2023-06-14 18:52:17','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Present instructors</h2>		\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h1>Jocelyne Boucher</h1>		\n		<p> </p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. </p><p>ears, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. </p><p> I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h2>Past instructor</h2>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"1022\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-225x300.jpg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-770x1024.jpg 770w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg 962w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-14 18:52:17','2023-06-14 18:52:17','',21,'https://divyayogamonteregie.org/ca/?p=1086',0,'revision','',0),(1087,1,'2023-06-14 18:52:17','2023-06-14 18:52:17','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Present instructors</h2>		\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h1>Jocelyne Boucher</h1>		\n		<p> </p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. </p><p>ears, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. </p><p> I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h2>Past instructor</h2>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"1022\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-225x300.jpg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-770x1024.jpg 770w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg 962w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-14 18:52:17','2023-06-14 18:52:17','',21,'https://divyayogamonteregie.org/ca/?p=1087',0,'revision','',0),(1088,1,'2023-06-14 18:52:17','2023-06-14 18:52:17','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-1-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Present instructors</h2>		\n															<img width=\"150\" height=\"150\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/sunrise-g34a24ef5c_1280-150x150.jpg\" alt=\"\" loading=\"lazy\" />															\n			<h1>Jocelyne Boucher</h1>		\n		<p> </p><p>In 2011, I started practicing yoga with Meera and Mr. Saxena  at the International School of St-Lambert. Having noticed my interest in yoga, Mr. Saxena strongly encouraged me to take formal training. Thus, I started a Dyvia Yoga training which laid the foundation for my journey on the path of yoga.  </p><p>I then undertook two other trainings, totaling 500 hours in Hatha Yoga. In addition, I took specialized training in chair yoga, which since 2015 has allowed me to have the opportunity to offer classes in different settings. </p><p>ears, yoga and meditation have been an integral part of my life. In my opinion, practicing yoga and meditation regularly promotes physical well-being and inner peace. </p><p> I am deeply grateful to Mr. Saxena for guiding me towards this passion that I now share with people.</p>		\n			<h1>Meera Trivedi </h1>		\n		<p style=\"text-align: justify;\">is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p><p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>		\n															<img width=\"300\" height=\"200\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-300x200.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-1024x683.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280-768x512.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-g4ef99c854_1280.jpg 1280w\" sizes=\"(max-width: 300px) 100vw, 300px\" />															\n															<img width=\"800\" height=\"600\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-1024x768.jpg 1024w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-300x225.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280-768x576.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/peaceful-g5ada3643f_1280.jpg 1280w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h1><h1 data-elementor-setting-key=\"title\" data-pen-placeholder=\"Type Here...\" style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Helvetica Neue&quot;, Arial, &quot;Noto Sans&quot;, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;, &quot;Segoe UI Symbol&quot;, &quot;Noto Color Emoji&quot;; color: rgb(51, 51, 51);\">Mihaela Bostan Frandes</h1></h1>		\n		<p>In 2010, Mr. Saxena and MeeraJee introduced me to yoga, and in 2013, I completed a 380-hour training course to become a teacher of Hatha and Vinyasa yoga. Since then, I have been practicing and teaching yoga whenever possible. Yoga is more than just an activity for me, it\'s a way of life that helps me stay focused, engage in physical activities, and handle daily tasks with ease. To me, the Saturday Yoga classes at Saint Lambert International High School are about building a community, fostering friendship, and demonstrating dedication.</p>		\n			<h2>Past instructor</h2>		\n			<h1>Vinesh Saxena</h1>		\n		<p style=\"text-align: justify;\">is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p><p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p><p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p><p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>		\n															<img width=\"768\" height=\"1022\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-768x1022.jpg 768w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-225x300.jpg 225w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24-770x1024.jpg 770w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/06/Imagen-de-WhatsApp-2023-06-08-a-las-21.51.24.jpg 962w\" sizes=\"(max-width: 768px) 100vw, 768px\" />','Instructors','','inherit','closed','closed','','21-revision-v1','','','2023-06-14 18:52:17','2023-06-14 18:52:17','',21,'https://divyayogamonteregie.org/ca/?p=1088',0,'revision','',0),(1089,1,'2023-06-14 18:55:44','2023-06-14 18:55:44','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">There is this story about a famous research scientist who had made several very important medical breakthroughs. He was being interviewed by a newspaper reporter who asked him why he thought he was able to be so much more creative than the average person. What set him so far apart from others?</p><p style=\"text-align: justify;\">He responded that, in his opinion, it all came from an experience with his mother that occurred when he was about two years old. He had been trying to remove a bottle of milk from the refrigerator when he lost his grip on the slippery bottle and it fell, spilling its contents all over the kitchen floor - a veritable sea of milk!</p><p style=\"text-align: justify;\">When his mother came into the kitchen, instead of yelling at him, giving him a lecture, or punishing him, she said, \"Robert, what a great and wonderful mess you have made! I have rarely seen such a huge puddle of milk. Well, the damage has already been done. Would you like to get down and play in the milk for a few minutes before we clean it up?\"</p><p style=\"text-align: justify;\">Indeed, he did. After a few minutes, his mother said, \"You know, Robert, whenever you make a mess like this, eventually you have to clean it up and restore everything to its proper order. So, how would you like to do that? We could use a sponge, a towel, or a mop. Which do you prefer?\"</p><p style=\"text-align: justify;\">He chose the sponge and together they cleaned up the spilled milk.</p><p style=\"text-align: justify;\">His mother then said, \"You know, what we have here is a failed experiment in how to effectively carry a big milk bottle with two tiny hands. Let\'s go out in the back yard and fill the bottle with water and see if you can discover a way to carry it without dropping it.\"</p><p style=\"text-align: justify;\">The little boy learned that if he grasped the bottle at the top near the lip with both hands, he could carry it without dropping it. This renowned scientist then remarked that it was at that moment that he knew he didn\'t need to be afraid to make mistakes. Instead, he learned that mistakes were just opportunities for learning something new, which is, after all, what scientific experiments are all about. Even if the experiment \"doesn\'t work,\" we usually learn something valuable from it.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Motivate','','inherit','closed','closed','','354-revision-v1','','','2023-06-14 18:55:44','2023-06-14 18:55:44','',354,'https://divyayogamonteregie.org/ca/?p=1089',0,'revision','',0),(1090,1,'2023-06-14 18:55:44','2023-06-14 18:55:44','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">There is this story about a famous research scientist who had made several very important medical breakthroughs. He was being interviewed by a newspaper reporter who asked him why he thought he was able to be so much more creative than the average person. What set him so far apart from others?</p><p style=\"text-align: justify;\">He responded that, in his opinion, it all came from an experience with his mother that occurred when he was about two years old. He had been trying to remove a bottle of milk from the refrigerator when he lost his grip on the slippery bottle and it fell, spilling its contents all over the kitchen floor - a veritable sea of milk!</p><p style=\"text-align: justify;\">When his mother came into the kitchen, instead of yelling at him, giving him a lecture, or punishing him, she said, \"Robert, what a great and wonderful mess you have made! I have rarely seen such a huge puddle of milk. Well, the damage has already been done. Would you like to get down and play in the milk for a few minutes before we clean it up?\"</p><p style=\"text-align: justify;\">Indeed, he did. After a few minutes, his mother said, \"You know, Robert, whenever you make a mess like this, eventually you have to clean it up and restore everything to its proper order. So, how would you like to do that? We could use a sponge, a towel, or a mop. Which do you prefer?\"</p><p style=\"text-align: justify;\">He chose the sponge and together they cleaned up the spilled milk.</p><p style=\"text-align: justify;\">His mother then said, \"You know, what we have here is a failed experiment in how to effectively carry a big milk bottle with two tiny hands. Let\'s go out in the back yard and fill the bottle with water and see if you can discover a way to carry it without dropping it.\"</p><p style=\"text-align: justify;\">The little boy learned that if he grasped the bottle at the top near the lip with both hands, he could carry it without dropping it. This renowned scientist then remarked that it was at that moment that he knew he didn\'t need to be afraid to make mistakes. Instead, he learned that mistakes were just opportunities for learning something new, which is, after all, what scientific experiments are all about. Even if the experiment \"doesn\'t work,\" we usually learn something valuable from it.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Motivate','','inherit','closed','closed','','354-revision-v1','','','2023-06-14 18:55:44','2023-06-14 18:55:44','',354,'https://divyayogamonteregie.org/ca/?p=1090',0,'revision','',0),(1091,1,'2023-06-14 18:55:44','2023-06-14 18:55:44','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">There is this story about a famous research scientist who had made several very important medical breakthroughs. He was being interviewed by a newspaper reporter who asked him why he thought he was able to be so much more creative than the average person. What set him so far apart from others?</p><p style=\"text-align: justify;\">He responded that, in his opinion, it all came from an experience with his mother that occurred when he was about two years old. He had been trying to remove a bottle of milk from the refrigerator when he lost his grip on the slippery bottle and it fell, spilling its contents all over the kitchen floor - a veritable sea of milk!</p><p style=\"text-align: justify;\">When his mother came into the kitchen, instead of yelling at him, giving him a lecture, or punishing him, she said, \"Robert, what a great and wonderful mess you have made! I have rarely seen such a huge puddle of milk. Well, the damage has already been done. Would you like to get down and play in the milk for a few minutes before we clean it up?\"</p><p style=\"text-align: justify;\">Indeed, he did. After a few minutes, his mother said, \"You know, Robert, whenever you make a mess like this, eventually you have to clean it up and restore everything to its proper order. So, how would you like to do that? We could use a sponge, a towel, or a mop. Which do you prefer?\"</p><p style=\"text-align: justify;\">He chose the sponge and together they cleaned up the spilled milk.</p><p style=\"text-align: justify;\">His mother then said, \"You know, what we have here is a failed experiment in how to effectively carry a big milk bottle with two tiny hands. Let\'s go out in the back yard and fill the bottle with water and see if you can discover a way to carry it without dropping it.\"</p><p style=\"text-align: justify;\">The little boy learned that if he grasped the bottle at the top near the lip with both hands, he could carry it without dropping it. This renowned scientist then remarked that it was at that moment that he knew he didn\'t need to be afraid to make mistakes. Instead, he learned that mistakes were just opportunities for learning something new, which is, after all, what scientific experiments are all about. Even if the experiment \"doesn\'t work,\" we usually learn something valuable from it.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Motivate','','inherit','closed','closed','','354-revision-v1','','','2023-06-14 18:55:44','2023-06-14 18:55:44','',354,'https://divyayogamonteregie.org/ca/?p=1091',0,'revision','',0),(1092,1,'2023-06-14 18:57:07','2023-06-14 18:57:07','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h3>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</h3><h3>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</h3><h3>Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</h3><h3>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</h3><h3>No response.</h3><h3>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</h3><h3>Still no response.</h3><h3>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</h3><h3>Again he gets no response.</h3><h3>So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</h3><h3>Again there is no response.</h3><h3>So he walks right up behind her. \"Honey, what\'s for dinner?\"</h3><h3>\"James, for the FIFTH time I\'ve said, Lima Beans!\"</h3><h3>The problem may not be with the other person as we always think, could be very much within us!</h3>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','inherit','closed','closed','','359-revision-v1','','','2023-06-14 18:57:07','2023-06-14 18:57:07','',359,'https://divyayogamonteregie.org/ca/?p=1092',0,'revision','',0),(1093,1,'2023-06-14 18:57:07','2023-06-14 18:57:07','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h3>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</h3><h3>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</h3><h3>Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</h3><h3>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</h3><h3>No response.</h3><h3>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</h3><h3>Still no response.</h3><h3>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</h3><h3>Again he gets no response.</h3><h3>So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</h3><h3>Again there is no response.</h3><h3>So he walks right up behind her. \"Honey, what\'s for dinner?\"</h3><h3>\"James, for the FIFTH time I\'ve said, Lima Beans!\"</h3><h3>The problem may not be with the other person as we always think, could be very much within us!</h3>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','inherit','closed','closed','','359-revision-v1','','','2023-06-14 18:57:07','2023-06-14 18:57:07','',359,'https://divyayogamonteregie.org/ca/?p=1093',0,'revision','',0),(1094,1,'2023-06-14 18:57:07','2023-06-14 18:57:07','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<h3>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</h3><h3>The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</h3><h3>Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</h3><h3>That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</h3><h3>No response.</h3><h3>So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</h3><h3>Still no response.</h3><h3>Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</h3><h3>Again he gets no response.</h3><h3>So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</h3><h3>Again there is no response.</h3><h3>So he walks right up behind her. \"Honey, what\'s for dinner?\"</h3><h3>\"James, for the FIFTH time I\'ve said, Lima Beans!\"</h3><h3>The problem may not be with the other person as we always think, could be very much within us!</h3>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A problem may be me not other','','inherit','closed','closed','','359-revision-v1','','','2023-06-14 18:57:07','2023-06-14 18:57:07','',359,'https://divyayogamonteregie.org/ca/?p=1094',0,'revision','',0),(1095,1,'2023-06-14 18:58:09','2023-06-14 18:58:09','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \"Who would like this $20 bill?\"</p><p style=\"text-align: justify;\">Hands started going up.</p><p style=\"text-align: justify;\">He said, \"I am going to give this $20 to one of you but first, let me do this.\" He proceeded to crumple the dollar bill up.</p><p style=\"text-align: justify;\">He then asked, \"Who still wants it?\"</p><p style=\"text-align: justify;\">Still the hands were up in the air.</p><p style=\"text-align: justify;\">\"Well,\" he replied, \"What if I do this?\" And he dropped it on the ground and started to grind it into the floor with his shoe.</p><p style=\"text-align: justify;\">He picked it up, now all crumpled and dirty. \"Now who still wants it?\" Still the hands went into the air.</p><p style=\"text-align: justify;\">\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.</p><p style=\"text-align: justify;\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.</p><p style=\"text-align: justify;\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A value','','inherit','closed','closed','','364-revision-v1','','','2023-06-14 18:58:09','2023-06-14 18:58:09','',364,'https://divyayogamonteregie.org/ca/?p=1095',0,'revision','',0),(1096,1,'2023-06-14 18:58:09','2023-06-14 18:58:09','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \"Who would like this $20 bill?\"</p><p style=\"text-align: justify;\">Hands started going up.</p><p style=\"text-align: justify;\">He said, \"I am going to give this $20 to one of you but first, let me do this.\" He proceeded to crumple the dollar bill up.</p><p style=\"text-align: justify;\">He then asked, \"Who still wants it?\"</p><p style=\"text-align: justify;\">Still the hands were up in the air.</p><p style=\"text-align: justify;\">\"Well,\" he replied, \"What if I do this?\" And he dropped it on the ground and started to grind it into the floor with his shoe.</p><p style=\"text-align: justify;\">He picked it up, now all crumpled and dirty. \"Now who still wants it?\" Still the hands went into the air.</p><p style=\"text-align: justify;\">\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.</p><p style=\"text-align: justify;\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.</p><p style=\"text-align: justify;\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','A value','','inherit','closed','closed','','364-revision-v1','','','2023-06-14 18:58:09','2023-06-14 18:58:09','',364,'https://divyayogamonteregie.org/ca/?p=1096',0,'revision','',0),(1098,1,'2023-06-14 19:03:19','2023-06-14 19:03:19','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Three farmers gathered to evaluate and share their experiences from the year passed. Each had a hundred square meter of land on which they farmed. At the end of the meeting, the first farmer said, \"The situation was very hard and it will be much worse for next year.\"</p><p style=\"text-align: justify;\">The second replied, \"You are certainly right. As a matter of fact, after working very hard the whole year, from sunrise to sunset, I only gained 1% profit after all expenses.\"</p><p style=\"text-align: justify;\">Calculating his own numbers, the first farmer replied, \"I believe that my total profit is exactly the same as yours, which is 1%.\"</p><p style=\"text-align: justify;\">The two of them looked at the third farmer and asked, \"How much profit did you make during this year?\"</p><p style=\"text-align: justify;\">The third farmer kindly replied, \"Gentleman, with all due respect, I obtained a 5% profit during this year.\"</p><p style=\"text-align: justify;\">That was followed by a long silence...</p><p style=\"text-align: justify;\">\"How come? 5% profit?? That is impossible!!!! How did you do that???\"</p><p style=\"text-align: justify;\">\"Very easy and simple math,\" said the third farmer. \"I made the very same 1% profit as you did. ... plus 4% that represents the immense pleasure to be able to enjoy this view, milk my cows and enjoy the most of my farm. That gives me 5% total profit.\"</p><p style=\"text-align: justify;\"><b>Moral Of the Story:</b> All of us have to take care of our farm (that is our hundred square meter land) and get the maximum profit while enjoying every instant of our lives and work!!!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Beginning A New Year','','inherit','closed','closed','','378-revision-v1','','','2023-06-14 19:03:19','2023-06-14 19:03:19','',378,'https://divyayogamonteregie.org/ca/?p=1098',0,'revision','',0),(1099,1,'2023-06-14 19:03:19','2023-06-14 19:03:19','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Three farmers gathered to evaluate and share their experiences from the year passed. Each had a hundred square meter of land on which they farmed. At the end of the meeting, the first farmer said, \"The situation was very hard and it will be much worse for next year.\"</p><p style=\"text-align: justify;\">The second replied, \"You are certainly right. As a matter of fact, after working very hard the whole year, from sunrise to sunset, I only gained 1% profit after all expenses.\"</p><p style=\"text-align: justify;\">Calculating his own numbers, the first farmer replied, \"I believe that my total profit is exactly the same as yours, which is 1%.\"</p><p style=\"text-align: justify;\">The two of them looked at the third farmer and asked, \"How much profit did you make during this year?\"</p><p style=\"text-align: justify;\">The third farmer kindly replied, \"Gentleman, with all due respect, I obtained a 5% profit during this year.\"</p><p style=\"text-align: justify;\">That was followed by a long silence...</p><p style=\"text-align: justify;\">\"How come? 5% profit?? That is impossible!!!! How did you do that???\"</p><p style=\"text-align: justify;\">\"Very easy and simple math,\" said the third farmer. \"I made the very same 1% profit as you did. ... plus 4% that represents the immense pleasure to be able to enjoy this view, milk my cows and enjoy the most of my farm. That gives me 5% total profit.\"</p><p style=\"text-align: justify;\"><b>Moral Of the Story:</b> All of us have to take care of our farm (that is our hundred square meter land) and get the maximum profit while enjoying every instant of our lives and work!!!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Beginning A New Year','','inherit','closed','closed','','378-revision-v1','','','2023-06-14 19:03:19','2023-06-14 19:03:19','',378,'https://divyayogamonteregie.org/ca/?p=1099',0,'revision','',0),(1100,1,'2023-06-14 19:03:19','2023-06-14 19:03:19','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Three farmers gathered to evaluate and share their experiences from the year passed. Each had a hundred square meter of land on which they farmed. At the end of the meeting, the first farmer said, \"The situation was very hard and it will be much worse for next year.\"</p><p style=\"text-align: justify;\">The second replied, \"You are certainly right. As a matter of fact, after working very hard the whole year, from sunrise to sunset, I only gained 1% profit after all expenses.\"</p><p style=\"text-align: justify;\">Calculating his own numbers, the first farmer replied, \"I believe that my total profit is exactly the same as yours, which is 1%.\"</p><p style=\"text-align: justify;\">The two of them looked at the third farmer and asked, \"How much profit did you make during this year?\"</p><p style=\"text-align: justify;\">The third farmer kindly replied, \"Gentleman, with all due respect, I obtained a 5% profit during this year.\"</p><p style=\"text-align: justify;\">That was followed by a long silence...</p><p style=\"text-align: justify;\">\"How come? 5% profit?? That is impossible!!!! How did you do that???\"</p><p style=\"text-align: justify;\">\"Very easy and simple math,\" said the third farmer. \"I made the very same 1% profit as you did. ... plus 4% that represents the immense pleasure to be able to enjoy this view, milk my cows and enjoy the most of my farm. That gives me 5% total profit.\"</p><p style=\"text-align: justify;\"><b>Moral Of the Story:</b> All of us have to take care of our farm (that is our hundred square meter land) and get the maximum profit while enjoying every instant of our lives and work!!!</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Beginning A New Year','','inherit','closed','closed','','378-revision-v1','','','2023-06-14 19:03:19','2023-06-14 19:03:19','',378,'https://divyayogamonteregie.org/ca/?p=1100',0,'revision','',0),(1101,1,'2023-06-14 19:04:43','2023-06-14 19:04:43','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Bringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \"A View from the Zoo\", Gary Richmond describes</p><p style=\"text-align: justify;\">how a newborn giraffe learns its first lesson.<br />The mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing. She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.</p><p style=\"text-align: justify;\">When it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.</p><p style=\"text-align: justify;\">Then the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.</p><p style=\"text-align: justify;\">The late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.</p><p style=\"text-align: justify;\">Stone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.</p><p style=\"text-align: justify;\">\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\"</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Giraffe-mother and baby','','inherit','closed','closed','','384-revision-v1','','','2023-06-14 19:04:43','2023-06-14 19:04:43','',384,'https://divyayogamonteregie.org/ca/?p=1101',0,'revision','',0),(1102,1,'2023-06-14 19:04:43','2023-06-14 19:04:43','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Bringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \"A View from the Zoo\", Gary Richmond describes</p><p style=\"text-align: justify;\">how a newborn giraffe learns its first lesson.<br />The mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing. She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.</p><p style=\"text-align: justify;\">When it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.</p><p style=\"text-align: justify;\">Then the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.</p><p style=\"text-align: justify;\">The late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.</p><p style=\"text-align: justify;\">Stone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.</p><p style=\"text-align: justify;\">\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\"</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Giraffe-mother and baby','','inherit','closed','closed','','384-revision-v1','','','2023-06-14 19:04:43','2023-06-14 19:04:43','',384,'https://divyayogamonteregie.org/ca/?p=1102',0,'revision','',0),(1103,1,'2023-06-14 19:04:43','2023-06-14 19:04:43','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Bringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \"A View from the Zoo\", Gary Richmond describes</p><p style=\"text-align: justify;\">how a newborn giraffe learns its first lesson.<br />The mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing. She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.</p><p style=\"text-align: justify;\">When it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.</p><p style=\"text-align: justify;\">Then the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.</p><p style=\"text-align: justify;\">The late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.</p><p style=\"text-align: justify;\">Stone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.</p><p style=\"text-align: justify;\">\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\"</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Giraffe-mother and baby','','inherit','closed','closed','','384-revision-v1','','','2023-06-14 19:04:43','2023-06-14 19:04:43','',384,'https://divyayogamonteregie.org/ca/?p=1103',0,'revision','',0),(1104,1,'2023-06-14 19:06:41','2023-06-14 19:06:41','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Sir Winston Churchill took three years getting through eighth grade because he had trouble learning English. It seems ironic that years later Oxford University asked him to address its commencement exercises.</p><p style=\"text-align: justify;\">He arrived with his usual props. A cigar, a cane and a top hat accompanied Churchill wherever he went. As Churchill approached the podium, the crowd rose in appreciative applause. With unmatched dignity, he settled the crowd and stood confident before his admirers. Removing the cigar and carefully placing the top hat on the podium, Churchill gazed at his waiting audience. Authority rang in Churchill\'s voice as he shouted, \"Never give up!\"</p><p style=\"text-align: justify;\">Several seconds passed before he rose to his toes and repeated: \"Never give up!\" His words thundered in their ears. There was a deafening silence as Churchill reached for his hat and cigar, steadied himself with his cane and left the platform. His commencement address was finished</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Never give up','','inherit','closed','closed','','389-revision-v1','','','2023-06-14 19:06:41','2023-06-14 19:06:41','',389,'https://divyayogamonteregie.org/ca/?p=1104',0,'revision','',0),(1105,1,'2023-06-14 19:06:41','2023-06-14 19:06:41','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Sir Winston Churchill took three years getting through eighth grade because he had trouble learning English. It seems ironic that years later Oxford University asked him to address its commencement exercises.</p><p style=\"text-align: justify;\">He arrived with his usual props. A cigar, a cane and a top hat accompanied Churchill wherever he went. As Churchill approached the podium, the crowd rose in appreciative applause. With unmatched dignity, he settled the crowd and stood confident before his admirers. Removing the cigar and carefully placing the top hat on the podium, Churchill gazed at his waiting audience. Authority rang in Churchill\'s voice as he shouted, \"Never give up!\"</p><p style=\"text-align: justify;\">Several seconds passed before he rose to his toes and repeated: \"Never give up!\" His words thundered in their ears. There was a deafening silence as Churchill reached for his hat and cigar, steadied himself with his cane and left the platform. His commencement address was finished</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Never give up','','inherit','closed','closed','','389-revision-v1','','','2023-06-14 19:06:41','2023-06-14 19:06:41','',389,'https://divyayogamonteregie.org/ca/?p=1105',0,'revision','',0),(1106,1,'2023-06-14 19:06:41','2023-06-14 19:06:41','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Sir Winston Churchill took three years getting through eighth grade because he had trouble learning English. It seems ironic that years later Oxford University asked him to address its commencement exercises.</p><p style=\"text-align: justify;\">He arrived with his usual props. A cigar, a cane and a top hat accompanied Churchill wherever he went. As Churchill approached the podium, the crowd rose in appreciative applause. With unmatched dignity, he settled the crowd and stood confident before his admirers. Removing the cigar and carefully placing the top hat on the podium, Churchill gazed at his waiting audience. Authority rang in Churchill\'s voice as he shouted, \"Never give up!\"</p><p style=\"text-align: justify;\">Several seconds passed before he rose to his toes and repeated: \"Never give up!\" His words thundered in their ears. There was a deafening silence as Churchill reached for his hat and cigar, steadied himself with his cane and left the platform. His commencement address was finished</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Never give up','','inherit','closed','closed','','389-revision-v1','','','2023-06-14 19:06:41','2023-06-14 19:06:41','',389,'https://divyayogamonteregie.org/ca/?p=1106',0,'revision','',0),(1107,1,'2023-06-15 18:41:18','2023-06-15 18:41:18','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">This is a  parable of a farmer who owned an old mule. The mule fell into the farmer\'s well. The farmer heard the mule \'braying\' -- or whatever mules do when they fall into wells. After carefully assessing the situation, the farmer felt sorry for the mule, but decided that neither the mule nor the well was worth saving. Instead, he called his neighbors together and told them what had happened and asked them to help haul dirt to bury the old mule in the well and put him out of his misery.</p><p style=\"text-align: justify;\">Initially, the old mule was hysterical! But as the farmer and his neighbors continued shoveling and the dirt hit his back, a thought struck him. It suddenly dawned on him that every time a shovel load of dirt landed on his back: he should shake it off and step up! This is what the old mule did, blow after blow. \"Shake it off and step up... shake it off and step up... shake it off and step up!\" he repeated to encourage himself.</p><p style=\"text-align: justify;\">No matter how painful the blows, or distressing the situation seemed, the old mule fought \"panic\" and just kept right on shaking it off and stepping up! You guessed it! It wasn\'t long before the old mule, battered and exhausted, stepped triumphantly over the wall of that well! What seemed like it would bury him, actually end up blessing him. All because of the manner in which he handled his adversity.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Shake it off and step up','','inherit','closed','closed','','394-revision-v1','','','2023-06-15 18:41:18','2023-06-15 18:41:18','',394,'https://divyayogamonteregie.org/ca/?p=1107',0,'revision','',0),(1108,1,'2023-06-15 18:41:18','2023-06-15 18:41:18','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">This is a  parable of a farmer who owned an old mule. The mule fell into the farmer\'s well. The farmer heard the mule \'braying\' -- or whatever mules do when they fall into wells. After carefully assessing the situation, the farmer felt sorry for the mule, but decided that neither the mule nor the well was worth saving. Instead, he called his neighbors together and told them what had happened and asked them to help haul dirt to bury the old mule in the well and put him out of his misery.</p><p style=\"text-align: justify;\">Initially, the old mule was hysterical! But as the farmer and his neighbors continued shoveling and the dirt hit his back, a thought struck him. It suddenly dawned on him that every time a shovel load of dirt landed on his back: he should shake it off and step up! This is what the old mule did, blow after blow. \"Shake it off and step up... shake it off and step up... shake it off and step up!\" he repeated to encourage himself.</p><p style=\"text-align: justify;\">No matter how painful the blows, or distressing the situation seemed, the old mule fought \"panic\" and just kept right on shaking it off and stepping up! You guessed it! It wasn\'t long before the old mule, battered and exhausted, stepped triumphantly over the wall of that well! What seemed like it would bury him, actually end up blessing him. All because of the manner in which he handled his adversity.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Shake it off and step up','','inherit','closed','closed','','394-revision-v1','','','2023-06-15 18:41:18','2023-06-15 18:41:18','',394,'https://divyayogamonteregie.org/ca/?p=1108',0,'revision','',0),(1109,1,'2023-06-15 18:41:18','2023-06-15 18:41:18','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">This is a  parable of a farmer who owned an old mule. The mule fell into the farmer\'s well. The farmer heard the mule \'braying\' -- or whatever mules do when they fall into wells. After carefully assessing the situation, the farmer felt sorry for the mule, but decided that neither the mule nor the well was worth saving. Instead, he called his neighbors together and told them what had happened and asked them to help haul dirt to bury the old mule in the well and put him out of his misery.</p><p style=\"text-align: justify;\">Initially, the old mule was hysterical! But as the farmer and his neighbors continued shoveling and the dirt hit his back, a thought struck him. It suddenly dawned on him that every time a shovel load of dirt landed on his back: he should shake it off and step up! This is what the old mule did, blow after blow. \"Shake it off and step up... shake it off and step up... shake it off and step up!\" he repeated to encourage himself.</p><p style=\"text-align: justify;\">No matter how painful the blows, or distressing the situation seemed, the old mule fought \"panic\" and just kept right on shaking it off and stepping up! You guessed it! It wasn\'t long before the old mule, battered and exhausted, stepped triumphantly over the wall of that well! What seemed like it would bury him, actually end up blessing him. All because of the manner in which he handled his adversity.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Shake it off and step up','','inherit','closed','closed','','394-revision-v1','','','2023-06-15 18:41:18','2023-06-15 18:41:18','',394,'https://divyayogamonteregie.org/ca/?p=1109',0,'revision','',0),(1110,1,'2023-06-15 18:42:34','2023-06-15 18:42:34','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">On a beautiful morning, an older gentleman, aged 75, was sitting with his son when he asked his son what was sitting in the window. He himself was not able to recognize what it was, due to his weak eyesight.</p><p style=\"text-align: justify;\">His son replied, \"That is the crow.\"</p><p style=\"text-align: justify;\">Due to his age, the older man forgot and asked again.</p><p style=\"text-align: justify;\">His son again replied the same thing, \"That is the crow.\"</p><p style=\"text-align: justify;\">This exchange continued for seven to eight times when, and at last, his son got annoyed and replied with anger, \"Why are you asking the same thing again and again?\"</p><p style=\"text-align: justify;\">The old man replied with tears in his eyes. \"Son, don\'t get angry. When you were at the age of 4 years you asked me the same question 40 times and I never got angry</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Sometimes We Forget... Remember To Be Kind','','inherit','closed','closed','','399-revision-v1','','','2023-06-15 18:42:34','2023-06-15 18:42:34','',399,'https://divyayogamonteregie.org/ca/?p=1110',0,'revision','',0),(1111,1,'2023-06-15 18:42:34','2023-06-15 18:42:34','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">On a beautiful morning, an older gentleman, aged 75, was sitting with his son when he asked his son what was sitting in the window. He himself was not able to recognize what it was, due to his weak eyesight.</p><p style=\"text-align: justify;\">His son replied, \"That is the crow.\"</p><p style=\"text-align: justify;\">Due to his age, the older man forgot and asked again.</p><p style=\"text-align: justify;\">His son again replied the same thing, \"That is the crow.\"</p><p style=\"text-align: justify;\">This exchange continued for seven to eight times when, and at last, his son got annoyed and replied with anger, \"Why are you asking the same thing again and again?\"</p><p style=\"text-align: justify;\">The old man replied with tears in his eyes. \"Son, don\'t get angry. When you were at the age of 4 years you asked me the same question 40 times and I never got angry</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Sometimes We Forget... Remember To Be Kind','','inherit','closed','closed','','399-revision-v1','','','2023-06-15 18:42:34','2023-06-15 18:42:34','',399,'https://divyayogamonteregie.org/ca/?p=1111',0,'revision','',0),(1112,1,'2023-06-15 18:42:34','2023-06-15 18:42:34','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">On a beautiful morning, an older gentleman, aged 75, was sitting with his son when he asked his son what was sitting in the window. He himself was not able to recognize what it was, due to his weak eyesight.</p><p style=\"text-align: justify;\">His son replied, \"That is the crow.\"</p><p style=\"text-align: justify;\">Due to his age, the older man forgot and asked again.</p><p style=\"text-align: justify;\">His son again replied the same thing, \"That is the crow.\"</p><p style=\"text-align: justify;\">This exchange continued for seven to eight times when, and at last, his son got annoyed and replied with anger, \"Why are you asking the same thing again and again?\"</p><p style=\"text-align: justify;\">The old man replied with tears in his eyes. \"Son, don\'t get angry. When you were at the age of 4 years you asked me the same question 40 times and I never got angry</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Sometimes We Forget... Remember To Be Kind','','inherit','closed','closed','','399-revision-v1','','','2023-06-15 18:42:34','2023-06-15 18:42:34','',399,'https://divyayogamonteregie.org/ca/?p=1112',0,'revision','',0),(1113,1,'2023-06-15 18:43:44','2023-06-15 18:43:44','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">A vacationing American businessman standing on the pier of a quaint coastal fishing village in southern Mexico watched as a small boat with just one young Mexican fisherman pulled into the dock. Inside the small boat were several large yellowfin tuna. Enjoying the warmth of the early afternoon sun, the American complimented the Mexican on the quality of his fish.</p><p style=\"text-align: justify;\">\"How long did it take you to catch them?\" the American casually asked.</p><p style=\"text-align: justify;\">\"Oh, a few hours,\" the Mexican fisherman replied.</p><p style=\"text-align: justify;\">\"Why don\'t you stay out longer and catch more fish?\" the American businessman then asked.</p><p style=\"text-align: justify;\">The Mexican warmly replied, \"With this I have more than enough to support my family\'s needs.\"</p><p style=\"text-align: justify;\">The businessman then became serious, \"But what do you do with the rest of your time?\"</p><p style=\"text-align: justify;\">Responding with a smile, the Mexican fisherman answered, \"I sleep late, play with my children, watch ballgames, and take siesta with my wife. Sometimes in the evenings I take a stroll into the village to see my friends, play the guitar, sing a few songs...\"</p><p style=\"text-align: justify;\">The American businessman impatiently interrupted, \"Look, I have an MBA from Harvard, and I can help you to be more profitable. You can start by fishing several hours longer every day. You can then sell the extra fish you catch. With the extra money, you can buy a bigger boat. With the additional income that larger boat will bring, before long you can buy a second boat, then a third one, and so on, until you have an entire fleet of fishing boats.\"</p><p style=\"text-align: justify;\">Proud of his own sharp thinking, he excitedly elaborated a grand scheme which could bring even bigger profits, \"Then, instead of selling your catch to a middleman you\'ll be able to sell your fish directly to the processor, or even open your own cannery. Eventually, you could control the product, processing and distribution. You could leave this tiny coastal village and move to Mexico City, or possibly even Los Angeles or New York City, where you could even further expand your enterprise.\"</p><p style=\"text-align: justify;\">Having never thought of such things, the Mexican fisherman asked, \"But how long will all this take?\"</p><p style=\"text-align: justify;\">After a rapid mental calculation, the Harvard MBA pronounced, \"Probably about 15-20 years, maybe less if you work really hard.\"</p><p style=\"text-align: justify;\">\"And then what, señor?\" asked the fisherman.</p><p style=\"text-align: justify;\">\"Why, that\'s the best part!\" answered the businessman with a laugh. \"When the time is right, you would sell your company stock to the public and become very rich. You would make millions.\"</p><p style=\"text-align: justify;\">\"Millions? Really? What would I do with it all?\" asked the young fisherman in disbelief.</p><p style=\"text-align: justify;\">The businessman boasted, \"Then you could happily retire with all the money you\'ve made. You could move to a quaint coastal fishing village where you could sleep late, play with your grandchildren, watch ballgames, and take siesta with your wife. You could stroll to the village in the evenings where you could play the guitar and sing with your friends all you want.\"<br />The moral of the story is: <strong>Know what really matters in life, and you may find that it is already much closer than you think</strong></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The  Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?','','inherit','closed','closed','','420-revision-v1','','','2023-06-15 18:43:44','2023-06-15 18:43:44','',420,'https://divyayogamonteregie.org/ca/?p=1113',0,'revision','',0),(1114,1,'2023-06-15 18:43:44','2023-06-15 18:43:44','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">A vacationing American businessman standing on the pier of a quaint coastal fishing village in southern Mexico watched as a small boat with just one young Mexican fisherman pulled into the dock. Inside the small boat were several large yellowfin tuna. Enjoying the warmth of the early afternoon sun, the American complimented the Mexican on the quality of his fish.</p><p style=\"text-align: justify;\">\"How long did it take you to catch them?\" the American casually asked.</p><p style=\"text-align: justify;\">\"Oh, a few hours,\" the Mexican fisherman replied.</p><p style=\"text-align: justify;\">\"Why don\'t you stay out longer and catch more fish?\" the American businessman then asked.</p><p style=\"text-align: justify;\">The Mexican warmly replied, \"With this I have more than enough to support my family\'s needs.\"</p><p style=\"text-align: justify;\">The businessman then became serious, \"But what do you do with the rest of your time?\"</p><p style=\"text-align: justify;\">Responding with a smile, the Mexican fisherman answered, \"I sleep late, play with my children, watch ballgames, and take siesta with my wife. Sometimes in the evenings I take a stroll into the village to see my friends, play the guitar, sing a few songs...\"</p><p style=\"text-align: justify;\">The American businessman impatiently interrupted, \"Look, I have an MBA from Harvard, and I can help you to be more profitable. You can start by fishing several hours longer every day. You can then sell the extra fish you catch. With the extra money, you can buy a bigger boat. With the additional income that larger boat will bring, before long you can buy a second boat, then a third one, and so on, until you have an entire fleet of fishing boats.\"</p><p style=\"text-align: justify;\">Proud of his own sharp thinking, he excitedly elaborated a grand scheme which could bring even bigger profits, \"Then, instead of selling your catch to a middleman you\'ll be able to sell your fish directly to the processor, or even open your own cannery. Eventually, you could control the product, processing and distribution. You could leave this tiny coastal village and move to Mexico City, or possibly even Los Angeles or New York City, where you could even further expand your enterprise.\"</p><p style=\"text-align: justify;\">Having never thought of such things, the Mexican fisherman asked, \"But how long will all this take?\"</p><p style=\"text-align: justify;\">After a rapid mental calculation, the Harvard MBA pronounced, \"Probably about 15-20 years, maybe less if you work really hard.\"</p><p style=\"text-align: justify;\">\"And then what, señor?\" asked the fisherman.</p><p style=\"text-align: justify;\">\"Why, that\'s the best part!\" answered the businessman with a laugh. \"When the time is right, you would sell your company stock to the public and become very rich. You would make millions.\"</p><p style=\"text-align: justify;\">\"Millions? Really? What would I do with it all?\" asked the young fisherman in disbelief.</p><p style=\"text-align: justify;\">The businessman boasted, \"Then you could happily retire with all the money you\'ve made. You could move to a quaint coastal fishing village where you could sleep late, play with your grandchildren, watch ballgames, and take siesta with your wife. You could stroll to the village in the evenings where you could play the guitar and sing with your friends all you want.\"<br />The moral of the story is: <strong>Know what really matters in life, and you may find that it is already much closer than you think</strong></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The  Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?','','inherit','closed','closed','','420-revision-v1','','','2023-06-15 18:43:44','2023-06-15 18:43:44','',420,'https://divyayogamonteregie.org/ca/?p=1114',0,'revision','',0),(1115,1,'2023-06-15 18:43:44','2023-06-15 18:43:44','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">A vacationing American businessman standing on the pier of a quaint coastal fishing village in southern Mexico watched as a small boat with just one young Mexican fisherman pulled into the dock. Inside the small boat were several large yellowfin tuna. Enjoying the warmth of the early afternoon sun, the American complimented the Mexican on the quality of his fish.</p><p style=\"text-align: justify;\">\"How long did it take you to catch them?\" the American casually asked.</p><p style=\"text-align: justify;\">\"Oh, a few hours,\" the Mexican fisherman replied.</p><p style=\"text-align: justify;\">\"Why don\'t you stay out longer and catch more fish?\" the American businessman then asked.</p><p style=\"text-align: justify;\">The Mexican warmly replied, \"With this I have more than enough to support my family\'s needs.\"</p><p style=\"text-align: justify;\">The businessman then became serious, \"But what do you do with the rest of your time?\"</p><p style=\"text-align: justify;\">Responding with a smile, the Mexican fisherman answered, \"I sleep late, play with my children, watch ballgames, and take siesta with my wife. Sometimes in the evenings I take a stroll into the village to see my friends, play the guitar, sing a few songs...\"</p><p style=\"text-align: justify;\">The American businessman impatiently interrupted, \"Look, I have an MBA from Harvard, and I can help you to be more profitable. You can start by fishing several hours longer every day. You can then sell the extra fish you catch. With the extra money, you can buy a bigger boat. With the additional income that larger boat will bring, before long you can buy a second boat, then a third one, and so on, until you have an entire fleet of fishing boats.\"</p><p style=\"text-align: justify;\">Proud of his own sharp thinking, he excitedly elaborated a grand scheme which could bring even bigger profits, \"Then, instead of selling your catch to a middleman you\'ll be able to sell your fish directly to the processor, or even open your own cannery. Eventually, you could control the product, processing and distribution. You could leave this tiny coastal village and move to Mexico City, or possibly even Los Angeles or New York City, where you could even further expand your enterprise.\"</p><p style=\"text-align: justify;\">Having never thought of such things, the Mexican fisherman asked, \"But how long will all this take?\"</p><p style=\"text-align: justify;\">After a rapid mental calculation, the Harvard MBA pronounced, \"Probably about 15-20 years, maybe less if you work really hard.\"</p><p style=\"text-align: justify;\">\"And then what, señor?\" asked the fisherman.</p><p style=\"text-align: justify;\">\"Why, that\'s the best part!\" answered the businessman with a laugh. \"When the time is right, you would sell your company stock to the public and become very rich. You would make millions.\"</p><p style=\"text-align: justify;\">\"Millions? Really? What would I do with it all?\" asked the young fisherman in disbelief.</p><p style=\"text-align: justify;\">The businessman boasted, \"Then you could happily retire with all the money you\'ve made. You could move to a quaint coastal fishing village where you could sleep late, play with your grandchildren, watch ballgames, and take siesta with your wife. You could stroll to the village in the evenings where you could play the guitar and sing with your friends all you want.\"<br />The moral of the story is: <strong>Know what really matters in life, and you may find that it is already much closer than you think</strong></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The  Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?','','inherit','closed','closed','','420-revision-v1','','','2023-06-15 18:43:44','2023-06-15 18:43:44','',420,'https://divyayogamonteregie.org/ca/?p=1115',0,'revision','',0),(1116,1,'2023-06-15 18:45:02','2023-06-15 18:45:02','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">This is a powerful message for our modern society. We seem to have lost our bearing and our sense of direction.</p><p style=\"text-align: justify;\">One young academically excellent person went to apply for a managerial position in a big company. He passed the first interview; the director did the last interview. The director discovered from the CV that the youth\'s academic achievements were excellent all the way, from the secondary school until the postgraduate research, never had a year when he did not score.</p><p style=\"text-align: justify;\">The director asked, \"Did you obtain any scholarships in school?\"</p><p style=\"text-align: justify;\">The youth answered, \"None.\"</p><p style=\"text-align: justify;\">The director asked, \"Was it your father who paid for your school fees?\"</p><p style=\"text-align: justify;\">The youth answered, \"My father passed away when I was one year old, it was my mother who paid for my school fees.\"</p><p style=\"text-align: justify;\">The director asked, \"Where did your mother work?\"</p><p style=\"text-align: justify;\">The youth answered, \"My mother worked as laundry woman.\"</p><p style=\"text-align: justify;\">The director requested the youth to show his hands. The youth showed a pair of hands that were smooth and perfect.</p><p style=\"text-align: justify;\">The director asked, \"Have you ever helped your mother wash the clothes before?\"</p><p style=\"text-align: justify;\">The youth answered, \"Never, my mother always wanted me to study and read more books. Furthermore, my mother can wash clothes faster than me.\"</p><p style=\"text-align: justify;\">The director said, \"I have a request. When you go back today, go and clean your mother\'s hands, and then see me tomorrow morning.\"</p><p style=\"text-align: justify;\">The youth felt that his chance of landing the job was high. When he went back, he happily requested his mother to let him clean her hands. His mother felt strange. Happy but with mixed feelings, she showed her hands to the young man.</p><p style=\"text-align: justify;\">The youth cleaned his mother\'s hands slowly. His tear fell as he did that. It was the first time he noticed that his mother\'s hands were so wrinkled, and there were so many bruises in her hands. Some bruises were so painful that his mother shivered when they were cleaned with water.</p><p style=\"text-align: justify;\">This was the first time the youth realized that it was this pair of hands that washed the clothes everyday to enable him to pay the school fee. The bruises in the mother\'s hands were the price that the mother had to pay for his graduation, academic excellence and his future.</p><p style=\"text-align: justify;\">After finishing the cleaning of his mother\'s hands, the youth quietly washed all the remaining clothes for his mother.</p><p style=\"text-align: justify;\">That night, mother and son talked for a very long time.</p><p style=\"text-align: justify;\">Next morning, the youth went to the director\'s office.</p><p style=\"text-align: justify;\">The Director noticed the tears in the youth\'s eyes, asked: \"Can you tell me what have you done and learned yesterday in your house?\"</p><p style=\"text-align: justify;\">The youth answered, \"I cleaned my mother\'s hands and also finished cleaning all the remaining clothes.\"</p><p style=\"text-align: justify;\">The Director asked, \"Please tell me your feelings.\"</p><p style=\"text-align: justify;\">The youth said:</p><ol style=\"text-align: justify;\" start=\"1\"><li>I know now what appreciation is. Without my mother, there would not have been the successful me today.</li><li>By working together and helping my mother, only now I realize how difficult and tough it is to get something done.</li><li>I have come to appreciate the importance and value of family relationships.</li></ol><p style=\"text-align: justify;\">The director said, \"This is what I am looking for to be my manager. I want to recruit a person who can appreciate the help of others, a person who knows the sufferings of others to get things done, and a person who would not put money as his only goal in life. You are hired.\"</p><p style=\"text-align: justify;\">Later on, this young person worked very hard and received the respect of his subordinates. Every employee worked diligently and as a team. The company\'s performance improved tremendously</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The appriciation','','inherit','closed','closed','','425-revision-v1','','','2023-06-15 18:45:02','2023-06-15 18:45:02','',425,'https://divyayogamonteregie.org/ca/?p=1116',0,'revision','',0),(1117,1,'2023-06-15 18:45:02','2023-06-15 18:45:02','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">This is a powerful message for our modern society. We seem to have lost our bearing and our sense of direction.</p><p style=\"text-align: justify;\">One young academically excellent person went to apply for a managerial position in a big company. He passed the first interview; the director did the last interview. The director discovered from the CV that the youth\'s academic achievements were excellent all the way, from the secondary school until the postgraduate research, never had a year when he did not score.</p><p style=\"text-align: justify;\">The director asked, \"Did you obtain any scholarships in school?\"</p><p style=\"text-align: justify;\">The youth answered, \"None.\"</p><p style=\"text-align: justify;\">The director asked, \"Was it your father who paid for your school fees?\"</p><p style=\"text-align: justify;\">The youth answered, \"My father passed away when I was one year old, it was my mother who paid for my school fees.\"</p><p style=\"text-align: justify;\">The director asked, \"Where did your mother work?\"</p><p style=\"text-align: justify;\">The youth answered, \"My mother worked as laundry woman.\"</p><p style=\"text-align: justify;\">The director requested the youth to show his hands. The youth showed a pair of hands that were smooth and perfect.</p><p style=\"text-align: justify;\">The director asked, \"Have you ever helped your mother wash the clothes before?\"</p><p style=\"text-align: justify;\">The youth answered, \"Never, my mother always wanted me to study and read more books. Furthermore, my mother can wash clothes faster than me.\"</p><p style=\"text-align: justify;\">The director said, \"I have a request. When you go back today, go and clean your mother\'s hands, and then see me tomorrow morning.\"</p><p style=\"text-align: justify;\">The youth felt that his chance of landing the job was high. When he went back, he happily requested his mother to let him clean her hands. His mother felt strange. Happy but with mixed feelings, she showed her hands to the young man.</p><p style=\"text-align: justify;\">The youth cleaned his mother\'s hands slowly. His tear fell as he did that. It was the first time he noticed that his mother\'s hands were so wrinkled, and there were so many bruises in her hands. Some bruises were so painful that his mother shivered when they were cleaned with water.</p><p style=\"text-align: justify;\">This was the first time the youth realized that it was this pair of hands that washed the clothes everyday to enable him to pay the school fee. The bruises in the mother\'s hands were the price that the mother had to pay for his graduation, academic excellence and his future.</p><p style=\"text-align: justify;\">After finishing the cleaning of his mother\'s hands, the youth quietly washed all the remaining clothes for his mother.</p><p style=\"text-align: justify;\">That night, mother and son talked for a very long time.</p><p style=\"text-align: justify;\">Next morning, the youth went to the director\'s office.</p><p style=\"text-align: justify;\">The Director noticed the tears in the youth\'s eyes, asked: \"Can you tell me what have you done and learned yesterday in your house?\"</p><p style=\"text-align: justify;\">The youth answered, \"I cleaned my mother\'s hands and also finished cleaning all the remaining clothes.\"</p><p style=\"text-align: justify;\">The Director asked, \"Please tell me your feelings.\"</p><p style=\"text-align: justify;\">The youth said:</p><ol style=\"text-align: justify;\" start=\"1\"><li>I know now what appreciation is. Without my mother, there would not have been the successful me today.</li><li>By working together and helping my mother, only now I realize how difficult and tough it is to get something done.</li><li>I have come to appreciate the importance and value of family relationships.</li></ol><p style=\"text-align: justify;\">The director said, \"This is what I am looking for to be my manager. I want to recruit a person who can appreciate the help of others, a person who knows the sufferings of others to get things done, and a person who would not put money as his only goal in life. You are hired.\"</p><p style=\"text-align: justify;\">Later on, this young person worked very hard and received the respect of his subordinates. Every employee worked diligently and as a team. The company\'s performance improved tremendously</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The appriciation','','inherit','closed','closed','','425-revision-v1','','','2023-06-15 18:45:02','2023-06-15 18:45:02','',425,'https://divyayogamonteregie.org/ca/?p=1117',0,'revision','',0),(1118,1,'2023-06-15 18:45:03','2023-06-15 18:45:03','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">This is a powerful message for our modern society. We seem to have lost our bearing and our sense of direction.</p><p style=\"text-align: justify;\">One young academically excellent person went to apply for a managerial position in a big company. He passed the first interview; the director did the last interview. The director discovered from the CV that the youth\'s academic achievements were excellent all the way, from the secondary school until the postgraduate research, never had a year when he did not score.</p><p style=\"text-align: justify;\">The director asked, \"Did you obtain any scholarships in school?\"</p><p style=\"text-align: justify;\">The youth answered, \"None.\"</p><p style=\"text-align: justify;\">The director asked, \"Was it your father who paid for your school fees?\"</p><p style=\"text-align: justify;\">The youth answered, \"My father passed away when I was one year old, it was my mother who paid for my school fees.\"</p><p style=\"text-align: justify;\">The director asked, \"Where did your mother work?\"</p><p style=\"text-align: justify;\">The youth answered, \"My mother worked as laundry woman.\"</p><p style=\"text-align: justify;\">The director requested the youth to show his hands. The youth showed a pair of hands that were smooth and perfect.</p><p style=\"text-align: justify;\">The director asked, \"Have you ever helped your mother wash the clothes before?\"</p><p style=\"text-align: justify;\">The youth answered, \"Never, my mother always wanted me to study and read more books. Furthermore, my mother can wash clothes faster than me.\"</p><p style=\"text-align: justify;\">The director said, \"I have a request. When you go back today, go and clean your mother\'s hands, and then see me tomorrow morning.\"</p><p style=\"text-align: justify;\">The youth felt that his chance of landing the job was high. When he went back, he happily requested his mother to let him clean her hands. His mother felt strange. Happy but with mixed feelings, she showed her hands to the young man.</p><p style=\"text-align: justify;\">The youth cleaned his mother\'s hands slowly. His tear fell as he did that. It was the first time he noticed that his mother\'s hands were so wrinkled, and there were so many bruises in her hands. Some bruises were so painful that his mother shivered when they were cleaned with water.</p><p style=\"text-align: justify;\">This was the first time the youth realized that it was this pair of hands that washed the clothes everyday to enable him to pay the school fee. The bruises in the mother\'s hands were the price that the mother had to pay for his graduation, academic excellence and his future.</p><p style=\"text-align: justify;\">After finishing the cleaning of his mother\'s hands, the youth quietly washed all the remaining clothes for his mother.</p><p style=\"text-align: justify;\">That night, mother and son talked for a very long time.</p><p style=\"text-align: justify;\">Next morning, the youth went to the director\'s office.</p><p style=\"text-align: justify;\">The Director noticed the tears in the youth\'s eyes, asked: \"Can you tell me what have you done and learned yesterday in your house?\"</p><p style=\"text-align: justify;\">The youth answered, \"I cleaned my mother\'s hands and also finished cleaning all the remaining clothes.\"</p><p style=\"text-align: justify;\">The Director asked, \"Please tell me your feelings.\"</p><p style=\"text-align: justify;\">The youth said:</p><ol style=\"text-align: justify;\" start=\"1\"><li>I know now what appreciation is. Without my mother, there would not have been the successful me today.</li><li>By working together and helping my mother, only now I realize how difficult and tough it is to get something done.</li><li>I have come to appreciate the importance and value of family relationships.</li></ol><p style=\"text-align: justify;\">The director said, \"This is what I am looking for to be my manager. I want to recruit a person who can appreciate the help of others, a person who knows the sufferings of others to get things done, and a person who would not put money as his only goal in life. You are hired.\"</p><p style=\"text-align: justify;\">Later on, this young person worked very hard and received the respect of his subordinates. Every employee worked diligently and as a team. The company\'s performance improved tremendously</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The appriciation','','inherit','closed','closed','','425-revision-v1','','','2023-06-15 18:45:03','2023-06-15 18:45:03','',425,'https://divyayogamonteregie.org/ca/?p=1118',0,'revision','',0),(1119,1,'2023-06-15 18:46:56','2023-06-15 18:46:56','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>A disciple and his teacher were walking through the forest. The disciple was disturbed by the fact that his mind was in constant unrest.</p><p>He asked his teacher: \"Why most people\'s minds are restless, and only a few possess a calm mind? What can one do to still the mind?\"</p><p>The teacher looked at the disciple, smiled and said:<br />\"I will tell you a story. An elephant was standing and picking leaves from a tree. A small fly came, flying and buzzing near his ear. The elephant waved it away with his long ears. Then the fly came again, and the elephant waved it away once more.\"</p><p>This was repeated several times. Then the elephant asked the fly:<br />\"Why are you so restless and noisy? Why can\'t you stay for a while in one place?\"</p><p>The fly answered: \"I am attracted to whatever I see, hear or smell. My five senses, and everything that happens around me, pull me constantly in all directions, and I cannot resist them. What is your secret? How can you stay so calm and still?\"</p><p>The elephant stopped eating and said:<br />\"My five senses do not rule my attention. I am in control of my attention, and I can direct it wherever I want. This helps me to get immersed in whatever I do, and therefore, keep my mind focused and calm. Now that I am eating, I am completely immersed in eating. In this way, I can enjoy my food and chew it better. I control my attention, and not the other way around, and this helps me stay peaceful.\"</p><p>Upon hearing these words, the disciple\'s eyes opened wide, and a smile appeared on his face. He looked at his teacher and said:<br />\"I understand! My mind will be in constant unrest, if my five senses, and whatever is happening in the world around me are in control of it. On the other hand, if I am in command of my five senses, able to disregard sense impressions, my mind would become calm, and I will be able to disregard its restlessness.\"</p><p>\"Yes, that\'s right,\" answered the teacher,\" The mind is restless and goes wherever the attention is. Control your attention, and you control your mind.\"</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Elephant and the Fly','','inherit','closed','closed','','430-revision-v1','','','2023-06-15 18:46:56','2023-06-15 18:46:56','',430,'https://divyayogamonteregie.org/ca/?p=1119',0,'revision','',0),(1120,1,'2023-06-15 18:46:56','2023-06-15 18:46:56','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>A disciple and his teacher were walking through the forest. The disciple was disturbed by the fact that his mind was in constant unrest.</p><p>He asked his teacher: \"Why most people\'s minds are restless, and only a few possess a calm mind? What can one do to still the mind?\"</p><p>The teacher looked at the disciple, smiled and said:<br />\"I will tell you a story. An elephant was standing and picking leaves from a tree. A small fly came, flying and buzzing near his ear. The elephant waved it away with his long ears. Then the fly came again, and the elephant waved it away once more.\"</p><p>This was repeated several times. Then the elephant asked the fly:<br />\"Why are you so restless and noisy? Why can\'t you stay for a while in one place?\"</p><p>The fly answered: \"I am attracted to whatever I see, hear or smell. My five senses, and everything that happens around me, pull me constantly in all directions, and I cannot resist them. What is your secret? How can you stay so calm and still?\"</p><p>The elephant stopped eating and said:<br />\"My five senses do not rule my attention. I am in control of my attention, and I can direct it wherever I want. This helps me to get immersed in whatever I do, and therefore, keep my mind focused and calm. Now that I am eating, I am completely immersed in eating. In this way, I can enjoy my food and chew it better. I control my attention, and not the other way around, and this helps me stay peaceful.\"</p><p>Upon hearing these words, the disciple\'s eyes opened wide, and a smile appeared on his face. He looked at his teacher and said:<br />\"I understand! My mind will be in constant unrest, if my five senses, and whatever is happening in the world around me are in control of it. On the other hand, if I am in command of my five senses, able to disregard sense impressions, my mind would become calm, and I will be able to disregard its restlessness.\"</p><p>\"Yes, that\'s right,\" answered the teacher,\" The mind is restless and goes wherever the attention is. Control your attention, and you control your mind.\"</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Elephant and the Fly','','inherit','closed','closed','','430-revision-v1','','','2023-06-15 18:46:56','2023-06-15 18:46:56','',430,'https://divyayogamonteregie.org/ca/?p=1120',0,'revision','',0),(1121,1,'2023-06-15 18:46:57','2023-06-15 18:46:57','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>A disciple and his teacher were walking through the forest. The disciple was disturbed by the fact that his mind was in constant unrest.</p><p>He asked his teacher: \"Why most people\'s minds are restless, and only a few possess a calm mind? What can one do to still the mind?\"</p><p>The teacher looked at the disciple, smiled and said:<br />\"I will tell you a story. An elephant was standing and picking leaves from a tree. A small fly came, flying and buzzing near his ear. The elephant waved it away with his long ears. Then the fly came again, and the elephant waved it away once more.\"</p><p>This was repeated several times. Then the elephant asked the fly:<br />\"Why are you so restless and noisy? Why can\'t you stay for a while in one place?\"</p><p>The fly answered: \"I am attracted to whatever I see, hear or smell. My five senses, and everything that happens around me, pull me constantly in all directions, and I cannot resist them. What is your secret? How can you stay so calm and still?\"</p><p>The elephant stopped eating and said:<br />\"My five senses do not rule my attention. I am in control of my attention, and I can direct it wherever I want. This helps me to get immersed in whatever I do, and therefore, keep my mind focused and calm. Now that I am eating, I am completely immersed in eating. In this way, I can enjoy my food and chew it better. I control my attention, and not the other way around, and this helps me stay peaceful.\"</p><p>Upon hearing these words, the disciple\'s eyes opened wide, and a smile appeared on his face. He looked at his teacher and said:<br />\"I understand! My mind will be in constant unrest, if my five senses, and whatever is happening in the world around me are in control of it. On the other hand, if I am in command of my five senses, able to disregard sense impressions, my mind would become calm, and I will be able to disregard its restlessness.\"</p><p>\"Yes, that\'s right,\" answered the teacher,\" The mind is restless and goes wherever the attention is. Control your attention, and you control your mind.\"</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Elephant and the Fly','','inherit','closed','closed','','430-revision-v1','','','2023-06-15 18:46:57','2023-06-15 18:46:57','',430,'https://divyayogamonteregie.org/ca/?p=1121',0,'revision','',0),(1122,1,'2023-06-15 18:48:22','2023-06-15 18:48:22','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">There once was a little boy who had a bad temper. His father gave him a bag of nails and told him that every time he lost his temper, he must hammer a nail into the fence. The first day the boy had driven 37 nails into the fence. Over the next few weeks as he learned to control his anger, the number of nails hammered daily, gradually dwindled down. He discovered it was easier to hold his temper than to drive those nails into the fence.</p><p style=\"text-align: justify;\">Finally the day came when the boy didn\'t lose his temper at all. He told his father about it and the father suggested that the boy now pull out one nail for each day that he was able to hold his temper. The days passed and the young boy was finally able to tell his father that all the nails were gone.</p><p style=\"text-align: justify;\">The father took his son by the hand and led him to the fence. He said \"you have done well, my son, but look at the holes in the fence. The fence will never be the same. When you say things in anger, they leave a scar just like this one.\" You can put a knife in a man and draw it out. It won\'t matter how many times you say I\'m sorry, the wound is still there. Make sure you control your temper the next time you are tempted to say something you will regret later.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The fence','','inherit','closed','closed','','435-revision-v1','','','2023-06-15 18:48:22','2023-06-15 18:48:22','',435,'https://divyayogamonteregie.org/ca/?p=1122',0,'revision','',0),(1123,1,'2023-06-15 18:48:22','2023-06-15 18:48:22','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">There once was a little boy who had a bad temper. His father gave him a bag of nails and told him that every time he lost his temper, he must hammer a nail into the fence. The first day the boy had driven 37 nails into the fence. Over the next few weeks as he learned to control his anger, the number of nails hammered daily, gradually dwindled down. He discovered it was easier to hold his temper than to drive those nails into the fence.</p><p style=\"text-align: justify;\">Finally the day came when the boy didn\'t lose his temper at all. He told his father about it and the father suggested that the boy now pull out one nail for each day that he was able to hold his temper. The days passed and the young boy was finally able to tell his father that all the nails were gone.</p><p style=\"text-align: justify;\">The father took his son by the hand and led him to the fence. He said \"you have done well, my son, but look at the holes in the fence. The fence will never be the same. When you say things in anger, they leave a scar just like this one.\" You can put a knife in a man and draw it out. It won\'t matter how many times you say I\'m sorry, the wound is still there. Make sure you control your temper the next time you are tempted to say something you will regret later.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The fence','','inherit','closed','closed','','435-revision-v1','','','2023-06-15 18:48:22','2023-06-15 18:48:22','',435,'https://divyayogamonteregie.org/ca/?p=1123',0,'revision','',0),(1124,1,'2023-06-15 18:48:22','2023-06-15 18:48:22','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">There once was a little boy who had a bad temper. His father gave him a bag of nails and told him that every time he lost his temper, he must hammer a nail into the fence. The first day the boy had driven 37 nails into the fence. Over the next few weeks as he learned to control his anger, the number of nails hammered daily, gradually dwindled down. He discovered it was easier to hold his temper than to drive those nails into the fence.</p><p style=\"text-align: justify;\">Finally the day came when the boy didn\'t lose his temper at all. He told his father about it and the father suggested that the boy now pull out one nail for each day that he was able to hold his temper. The days passed and the young boy was finally able to tell his father that all the nails were gone.</p><p style=\"text-align: justify;\">The father took his son by the hand and led him to the fence. He said \"you have done well, my son, but look at the holes in the fence. The fence will never be the same. When you say things in anger, they leave a scar just like this one.\" You can put a knife in a man and draw it out. It won\'t matter how many times you say I\'m sorry, the wound is still there. Make sure you control your temper the next time you are tempted to say something you will regret later.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The fence','','inherit','closed','closed','','435-revision-v1','','','2023-06-15 18:48:22','2023-06-15 18:48:22','',435,'https://divyayogamonteregie.org/ca/?p=1124',0,'revision','',0),(1125,1,'2023-06-15 18:49:15','2023-06-15 18:49:15','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">When I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up.</p><p style=\"text-align: justify;\">I wrote down</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Happiness','','inherit','closed','closed','','440-revision-v1','','','2023-06-15 18:49:15','2023-06-15 18:49:15','',440,'https://divyayogamonteregie.org/ca/?p=1125',0,'revision','',0),(1126,1,'2023-06-15 18:49:15','2023-06-15 18:49:15','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">When I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up.</p><p style=\"text-align: justify;\">I wrote down</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Happiness','','inherit','closed','closed','','440-revision-v1','','','2023-06-15 18:49:15','2023-06-15 18:49:15','',440,'https://divyayogamonteregie.org/ca/?p=1126',0,'revision','',0),(1127,1,'2023-06-15 18:49:16','2023-06-15 18:49:16','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">When I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up.</p><p style=\"text-align: justify;\">I wrote down</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Happiness','','inherit','closed','closed','','440-revision-v1','','','2023-06-15 18:49:16','2023-06-15 18:49:16','',440,'https://divyayogamonteregie.org/ca/?p=1127',0,'revision','',0),(1128,1,'2023-06-15 18:50:10','2023-06-15 18:50:10','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Two men, both seriously ill, occupied the same hospital room. One man was allowed to sit up in his bed for an hour each afternoon to help drain the fluid from his lungs. His bed was next to the room\'s only window. The other man had to spend all his time flat on his back.</p><p style=\"text-align: justify;\">The men talked for hours on end. They spoke of their wives and families, their homes, their jobs, their involvement in the military service, where they had been on vacation.</p><p style=\"text-align: justify;\">And every afternoon when the man in the bed by the window could sit up, he would pass the time by describing to his roommate all the things he could see outside the window. The man in the other bed began to live for those one-hour periods where his world would be broadened and enlivened by all the activity and color of the world outside.</p><p style=\"text-align: justify;\">The window overlooked a park with a lovely lake. Ducks and swans played on the water while children sailed their model boats. Young lovers walked arm in arm amidst flowers of every color of the rainbow. Grand old trees graced the landscape, and a fine view of the city skyline could be seen in the distance.</p><p style=\"text-align: justify;\">As the man by the window described all this in exquisite detail, the man on the other side of the room would close his eyes and imagine the picturesque scene.</p><p style=\"text-align: justify;\">One warm afternoon the man by the window described a parade passing by. Although the other man couldn\'t hear the band - he could see it in his mind\'s eye as the gentleman by the window portrayed it with descriptive words.</p><p style=\"text-align: justify;\">Days and weeks passed. One morning, the day nurse arrived to bring water for their baths only to find the lifeless body of the man by the window, who had died peacefully in his sleep. She was saddened and called the hospital attendants to take the body away.</p><p style=\"text-align: justify;\">As soon as it seemed appropriate, the other man asked if he could be moved next to the window. The nurse was happy to make the switch, and after making sure he was comfortable, she left him alone. Slowly, painfully, he propped himself up on one elbow to take his first look at the world outside. Finally, he would have the joy of seeing it for himself.</p><p style=\"text-align: justify;\">He strained to slowly turn to look out the window beside the bed. It faced a blank wall. The man asked the nurse what could have compelled his deceased roommate who had described such wonderful things outside this window. The nurse responded that the man was blind and could not even see the wall. She said, \"Perhaps he just wanted to encourage you.\"</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The hospital window','','inherit','closed','closed','','445-revision-v1','','','2023-06-15 18:50:10','2023-06-15 18:50:10','',445,'https://divyayogamonteregie.org/ca/?p=1128',0,'revision','',0),(1129,1,'2023-06-15 18:50:10','2023-06-15 18:50:10','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Two men, both seriously ill, occupied the same hospital room. One man was allowed to sit up in his bed for an hour each afternoon to help drain the fluid from his lungs. His bed was next to the room\'s only window. The other man had to spend all his time flat on his back.</p><p style=\"text-align: justify;\">The men talked for hours on end. They spoke of their wives and families, their homes, their jobs, their involvement in the military service, where they had been on vacation.</p><p style=\"text-align: justify;\">And every afternoon when the man in the bed by the window could sit up, he would pass the time by describing to his roommate all the things he could see outside the window. The man in the other bed began to live for those one-hour periods where his world would be broadened and enlivened by all the activity and color of the world outside.</p><p style=\"text-align: justify;\">The window overlooked a park with a lovely lake. Ducks and swans played on the water while children sailed their model boats. Young lovers walked arm in arm amidst flowers of every color of the rainbow. Grand old trees graced the landscape, and a fine view of the city skyline could be seen in the distance.</p><p style=\"text-align: justify;\">As the man by the window described all this in exquisite detail, the man on the other side of the room would close his eyes and imagine the picturesque scene.</p><p style=\"text-align: justify;\">One warm afternoon the man by the window described a parade passing by. Although the other man couldn\'t hear the band - he could see it in his mind\'s eye as the gentleman by the window portrayed it with descriptive words.</p><p style=\"text-align: justify;\">Days and weeks passed. One morning, the day nurse arrived to bring water for their baths only to find the lifeless body of the man by the window, who had died peacefully in his sleep. She was saddened and called the hospital attendants to take the body away.</p><p style=\"text-align: justify;\">As soon as it seemed appropriate, the other man asked if he could be moved next to the window. The nurse was happy to make the switch, and after making sure he was comfortable, she left him alone. Slowly, painfully, he propped himself up on one elbow to take his first look at the world outside. Finally, he would have the joy of seeing it for himself.</p><p style=\"text-align: justify;\">He strained to slowly turn to look out the window beside the bed. It faced a blank wall. The man asked the nurse what could have compelled his deceased roommate who had described such wonderful things outside this window. The nurse responded that the man was blind and could not even see the wall. She said, \"Perhaps he just wanted to encourage you.\"</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The hospital window','','inherit','closed','closed','','445-revision-v1','','','2023-06-15 18:50:10','2023-06-15 18:50:10','',445,'https://divyayogamonteregie.org/ca/?p=1129',0,'revision','',0),(1130,1,'2023-06-15 18:50:10','2023-06-15 18:50:10','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Two men, both seriously ill, occupied the same hospital room. One man was allowed to sit up in his bed for an hour each afternoon to help drain the fluid from his lungs. His bed was next to the room\'s only window. The other man had to spend all his time flat on his back.</p><p style=\"text-align: justify;\">The men talked for hours on end. They spoke of their wives and families, their homes, their jobs, their involvement in the military service, where they had been on vacation.</p><p style=\"text-align: justify;\">And every afternoon when the man in the bed by the window could sit up, he would pass the time by describing to his roommate all the things he could see outside the window. The man in the other bed began to live for those one-hour periods where his world would be broadened and enlivened by all the activity and color of the world outside.</p><p style=\"text-align: justify;\">The window overlooked a park with a lovely lake. Ducks and swans played on the water while children sailed their model boats. Young lovers walked arm in arm amidst flowers of every color of the rainbow. Grand old trees graced the landscape, and a fine view of the city skyline could be seen in the distance.</p><p style=\"text-align: justify;\">As the man by the window described all this in exquisite detail, the man on the other side of the room would close his eyes and imagine the picturesque scene.</p><p style=\"text-align: justify;\">One warm afternoon the man by the window described a parade passing by. Although the other man couldn\'t hear the band - he could see it in his mind\'s eye as the gentleman by the window portrayed it with descriptive words.</p><p style=\"text-align: justify;\">Days and weeks passed. One morning, the day nurse arrived to bring water for their baths only to find the lifeless body of the man by the window, who had died peacefully in his sleep. She was saddened and called the hospital attendants to take the body away.</p><p style=\"text-align: justify;\">As soon as it seemed appropriate, the other man asked if he could be moved next to the window. The nurse was happy to make the switch, and after making sure he was comfortable, she left him alone. Slowly, painfully, he propped himself up on one elbow to take his first look at the world outside. Finally, he would have the joy of seeing it for himself.</p><p style=\"text-align: justify;\">He strained to slowly turn to look out the window beside the bed. It faced a blank wall. The man asked the nurse what could have compelled his deceased roommate who had described such wonderful things outside this window. The nurse responded that the man was blind and could not even see the wall. She said, \"Perhaps he just wanted to encourage you.\"</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The hospital window','','inherit','closed','closed','','445-revision-v1','','','2023-06-15 18:50:10','2023-06-15 18:50:10','',445,'https://divyayogamonteregie.org/ca/?p=1130',0,'revision','',0),(1131,1,'2023-06-15 18:51:06','2023-06-15 18:51:06','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Once upon a time there was a rich king who had four wives. He loved the fourth wife the most and adorned her with rich robes and treated her to the finest delicacies. He gave her nothing but the best.</p><p>He also loved the third wife very much and showed her off to neighboring kingdoms. However, he feared that one day she would leave him for another.</p><p>He also loved his second wife. She was his confidante and she was always kind, considerate and patient with him. Whenever the king faced a problem, he could confide in her to help him get through the difficult times.</p><p>The king\'s first wife was a very loyal partner and had made great contributions in maintaining his wealth and kingdom. However, he did not love the first wife but although she loved him deeply, he hardly took notice of her.</p><p>One day, the King fell ill and he knew that his time was short. Thus, he asked the 4th wife, \"I have loved you the most endowed you with the finest clothing and showered great care over you. Now that I\'m dying, will you follow me and keep me company?\"</p><p>\"No way!\" replied the 4th wife and she walked away without another word.</p><p>Her answer cut like a sharp knife right into his heart.</p><p> </p><p>The sad king asked the third wife, \"I have loved you all my life. Now that I\'m dying, will you follow me and keep me company?\"</p><p>\"No!\" replied the 3rd wife. \"Life is too good! When you die, I am going to remarry!\"</p><p>His heart sank and turned cold.</p><p>He then asked the 2nd wife, \"I have always turned to you for help and you\'ve always been there for me. When I die, will you follow me and keep me company?\"</p><p>\"I\'m sorry, I can\'t help you out of this time!\" replied the 2nd wife. \"The very most, I can only send you to your grave.\"</p><p>Her answer came like a bolt of thunder and the King was devastated.</p><p>Then a voice called out: \"I\'ll leave with you and follow you no matter where you go.\"</p><p>The king looked up and there was his first wife. She was so skinny, because she suffered from malnutrition. Greatly grieved the King said, \"I should have taken better care of you when I had a chance!\"</p><p>Our 4th wife is our BODY. No matter how much time and effort we lavish in making it look great, it\'ll leave us when we die.</p><p>Our 3rd wife is our POSSESSIONS, STATUS and WEALTH. When we die, it will all go to others.</p><p>Our 2nd wife is our FAMILY and friends. No matter how much they have been there for us, the furthest they can stay by us is up to the grave.</p><p>Our 1st wife is our SOUL, often neglected in pursuit of wealth, power and pleasures of the ego. However, our Soul is the only thing that will follow us wherever we go. So cultivate, strengthen and cherish it now! It is your greatest gift to offer the world.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The king with four wives','','inherit','closed','closed','','450-revision-v1','','','2023-06-15 18:51:06','2023-06-15 18:51:06','',450,'https://divyayogamonteregie.org/ca/?p=1131',0,'revision','',0),(1132,1,'2023-06-15 18:51:06','2023-06-15 18:51:06','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Once upon a time there was a rich king who had four wives. He loved the fourth wife the most and adorned her with rich robes and treated her to the finest delicacies. He gave her nothing but the best.</p><p>He also loved the third wife very much and showed her off to neighboring kingdoms. However, he feared that one day she would leave him for another.</p><p>He also loved his second wife. She was his confidante and she was always kind, considerate and patient with him. Whenever the king faced a problem, he could confide in her to help him get through the difficult times.</p><p>The king\'s first wife was a very loyal partner and had made great contributions in maintaining his wealth and kingdom. However, he did not love the first wife but although she loved him deeply, he hardly took notice of her.</p><p>One day, the King fell ill and he knew that his time was short. Thus, he asked the 4th wife, \"I have loved you the most endowed you with the finest clothing and showered great care over you. Now that I\'m dying, will you follow me and keep me company?\"</p><p>\"No way!\" replied the 4th wife and she walked away without another word.</p><p>Her answer cut like a sharp knife right into his heart.</p><p> </p><p>The sad king asked the third wife, \"I have loved you all my life. Now that I\'m dying, will you follow me and keep me company?\"</p><p>\"No!\" replied the 3rd wife. \"Life is too good! When you die, I am going to remarry!\"</p><p>His heart sank and turned cold.</p><p>He then asked the 2nd wife, \"I have always turned to you for help and you\'ve always been there for me. When I die, will you follow me and keep me company?\"</p><p>\"I\'m sorry, I can\'t help you out of this time!\" replied the 2nd wife. \"The very most, I can only send you to your grave.\"</p><p>Her answer came like a bolt of thunder and the King was devastated.</p><p>Then a voice called out: \"I\'ll leave with you and follow you no matter where you go.\"</p><p>The king looked up and there was his first wife. She was so skinny, because she suffered from malnutrition. Greatly grieved the King said, \"I should have taken better care of you when I had a chance!\"</p><p>Our 4th wife is our BODY. No matter how much time and effort we lavish in making it look great, it\'ll leave us when we die.</p><p>Our 3rd wife is our POSSESSIONS, STATUS and WEALTH. When we die, it will all go to others.</p><p>Our 2nd wife is our FAMILY and friends. No matter how much they have been there for us, the furthest they can stay by us is up to the grave.</p><p>Our 1st wife is our SOUL, often neglected in pursuit of wealth, power and pleasures of the ego. However, our Soul is the only thing that will follow us wherever we go. So cultivate, strengthen and cherish it now! It is your greatest gift to offer the world.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The king with four wives','','inherit','closed','closed','','450-revision-v1','','','2023-06-15 18:51:06','2023-06-15 18:51:06','',450,'https://divyayogamonteregie.org/ca/?p=1132',0,'revision','',0),(1133,1,'2023-06-15 18:51:06','2023-06-15 18:51:06','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Once upon a time there was a rich king who had four wives. He loved the fourth wife the most and adorned her with rich robes and treated her to the finest delicacies. He gave her nothing but the best.</p><p>He also loved the third wife very much and showed her off to neighboring kingdoms. However, he feared that one day she would leave him for another.</p><p>He also loved his second wife. She was his confidante and she was always kind, considerate and patient with him. Whenever the king faced a problem, he could confide in her to help him get through the difficult times.</p><p>The king\'s first wife was a very loyal partner and had made great contributions in maintaining his wealth and kingdom. However, he did not love the first wife but although she loved him deeply, he hardly took notice of her.</p><p>One day, the King fell ill and he knew that his time was short. Thus, he asked the 4th wife, \"I have loved you the most endowed you with the finest clothing and showered great care over you. Now that I\'m dying, will you follow me and keep me company?\"</p><p>\"No way!\" replied the 4th wife and she walked away without another word.</p><p>Her answer cut like a sharp knife right into his heart.</p><p> </p><p>The sad king asked the third wife, \"I have loved you all my life. Now that I\'m dying, will you follow me and keep me company?\"</p><p>\"No!\" replied the 3rd wife. \"Life is too good! When you die, I am going to remarry!\"</p><p>His heart sank and turned cold.</p><p>He then asked the 2nd wife, \"I have always turned to you for help and you\'ve always been there for me. When I die, will you follow me and keep me company?\"</p><p>\"I\'m sorry, I can\'t help you out of this time!\" replied the 2nd wife. \"The very most, I can only send you to your grave.\"</p><p>Her answer came like a bolt of thunder and the King was devastated.</p><p>Then a voice called out: \"I\'ll leave with you and follow you no matter where you go.\"</p><p>The king looked up and there was his first wife. She was so skinny, because she suffered from malnutrition. Greatly grieved the King said, \"I should have taken better care of you when I had a chance!\"</p><p>Our 4th wife is our BODY. No matter how much time and effort we lavish in making it look great, it\'ll leave us when we die.</p><p>Our 3rd wife is our POSSESSIONS, STATUS and WEALTH. When we die, it will all go to others.</p><p>Our 2nd wife is our FAMILY and friends. No matter how much they have been there for us, the furthest they can stay by us is up to the grave.</p><p>Our 1st wife is our SOUL, often neglected in pursuit of wealth, power and pleasures of the ego. However, our Soul is the only thing that will follow us wherever we go. So cultivate, strengthen and cherish it now! It is your greatest gift to offer the world.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The king with four wives','','inherit','closed','closed','','450-revision-v1','','','2023-06-15 18:51:06','2023-06-15 18:51:06','',450,'https://divyayogamonteregie.org/ca/?p=1133',0,'revision','',0),(1134,1,'2023-06-15 18:51:57','2023-06-15 18:51:57','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>By Remez Sasson</p><p>One day, a yogi and his disciple arrived in the big city. They had no money with them, but they needed food and a place to stay. The disciple was sure that they were going to beg for their food, and sleep in the park at night.</p><p>\"There is a big park not far from here. We can sleep there at night\", said the disciple.<br />\"In the open air?\" Asked the yogi.<br />\"Yes\", responded the student.</p><p>The yogi smiled and said: \"No, tonight we are going to sleep in a hotel and eat there too\".</p><p>The student was amazed and exclaimed, \"We cannot afford that!\"<br />\"Come and sit down\", said the yogi.</p><p>They both sat down on the ground, and the yogi said:<br />\"When you focus your mind intently on any subject, it comes to pass.\"</p><p>The yogi closed his eyes and started to meditate with full concentration. After about ten minutes he got up and started to walk, with his disciple following him. They walked through several streets and alleys, until they arrived at a hotel.</p><p>\"Come, let\'s enter inside\", the yogi said to his disciple.</p><p>They just set foot in the entrance, when a well-dressed man approached them.</p><p>\"I am the manager of this hotel. You look like traveling swamis, and I believe you have no money. Would you like to work in the kitchen, and in return I\'ll give you food and a place to stay?\"</p><p>\"Fine\", the yogi responded.</p><p>The disciple was perplexed and asked the yogi: \"Did you use any magic? How did you do that?\"</p><p>The yogi smiled and said, \"I wanted to show you how the power of thoughts works. When you think with full and strong concentration about something that you want to happen, and your mind does not resist the subject of your thought, your thought materializes.\"</p><p>\"The secret is concentrating, visualizing, seeing details, having faith and projecting mental and emotional energy into the mental scene. These are the general prerequisites. When your mind is empty from thoughts, and only one single thought is allowed to enter, it gains a very great power. One should be very careful with what he thinks. A concentrated thought is powerful, and exerts a very strong influence.\"</p><p>The disciple looked at his teacher and said: \"I see that I have to sharpen my concentration in order to be able to use this power.\"</p><p>\"Yes, this is the first step\", the yogi replied.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The power of thoughts','','inherit','closed','closed','','455-revision-v1','','','2023-06-15 18:51:57','2023-06-15 18:51:57','',455,'https://divyayogamonteregie.org/ca/?p=1134',0,'revision','',0),(1135,1,'2023-06-15 18:51:57','2023-06-15 18:51:57','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>By Remez Sasson</p><p>One day, a yogi and his disciple arrived in the big city. They had no money with them, but they needed food and a place to stay. The disciple was sure that they were going to beg for their food, and sleep in the park at night.</p><p>\"There is a big park not far from here. We can sleep there at night\", said the disciple.<br />\"In the open air?\" Asked the yogi.<br />\"Yes\", responded the student.</p><p>The yogi smiled and said: \"No, tonight we are going to sleep in a hotel and eat there too\".</p><p>The student was amazed and exclaimed, \"We cannot afford that!\"<br />\"Come and sit down\", said the yogi.</p><p>They both sat down on the ground, and the yogi said:<br />\"When you focus your mind intently on any subject, it comes to pass.\"</p><p>The yogi closed his eyes and started to meditate with full concentration. After about ten minutes he got up and started to walk, with his disciple following him. They walked through several streets and alleys, until they arrived at a hotel.</p><p>\"Come, let\'s enter inside\", the yogi said to his disciple.</p><p>They just set foot in the entrance, when a well-dressed man approached them.</p><p>\"I am the manager of this hotel. You look like traveling swamis, and I believe you have no money. Would you like to work in the kitchen, and in return I\'ll give you food and a place to stay?\"</p><p>\"Fine\", the yogi responded.</p><p>The disciple was perplexed and asked the yogi: \"Did you use any magic? How did you do that?\"</p><p>The yogi smiled and said, \"I wanted to show you how the power of thoughts works. When you think with full and strong concentration about something that you want to happen, and your mind does not resist the subject of your thought, your thought materializes.\"</p><p>\"The secret is concentrating, visualizing, seeing details, having faith and projecting mental and emotional energy into the mental scene. These are the general prerequisites. When your mind is empty from thoughts, and only one single thought is allowed to enter, it gains a very great power. One should be very careful with what he thinks. A concentrated thought is powerful, and exerts a very strong influence.\"</p><p>The disciple looked at his teacher and said: \"I see that I have to sharpen my concentration in order to be able to use this power.\"</p><p>\"Yes, this is the first step\", the yogi replied.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The power of thoughts','','inherit','closed','closed','','455-revision-v1','','','2023-06-15 18:51:57','2023-06-15 18:51:57','',455,'https://divyayogamonteregie.org/ca/?p=1135',0,'revision','',0),(1136,1,'2023-06-15 18:51:57','2023-06-15 18:51:57','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>By Remez Sasson</p><p>One day, a yogi and his disciple arrived in the big city. They had no money with them, but they needed food and a place to stay. The disciple was sure that they were going to beg for their food, and sleep in the park at night.</p><p>\"There is a big park not far from here. We can sleep there at night\", said the disciple.<br />\"In the open air?\" Asked the yogi.<br />\"Yes\", responded the student.</p><p>The yogi smiled and said: \"No, tonight we are going to sleep in a hotel and eat there too\".</p><p>The student was amazed and exclaimed, \"We cannot afford that!\"<br />\"Come and sit down\", said the yogi.</p><p>They both sat down on the ground, and the yogi said:<br />\"When you focus your mind intently on any subject, it comes to pass.\"</p><p>The yogi closed his eyes and started to meditate with full concentration. After about ten minutes he got up and started to walk, with his disciple following him. They walked through several streets and alleys, until they arrived at a hotel.</p><p>\"Come, let\'s enter inside\", the yogi said to his disciple.</p><p>They just set foot in the entrance, when a well-dressed man approached them.</p><p>\"I am the manager of this hotel. You look like traveling swamis, and I believe you have no money. Would you like to work in the kitchen, and in return I\'ll give you food and a place to stay?\"</p><p>\"Fine\", the yogi responded.</p><p>The disciple was perplexed and asked the yogi: \"Did you use any magic? How did you do that?\"</p><p>The yogi smiled and said, \"I wanted to show you how the power of thoughts works. When you think with full and strong concentration about something that you want to happen, and your mind does not resist the subject of your thought, your thought materializes.\"</p><p>\"The secret is concentrating, visualizing, seeing details, having faith and projecting mental and emotional energy into the mental scene. These are the general prerequisites. When your mind is empty from thoughts, and only one single thought is allowed to enter, it gains a very great power. One should be very careful with what he thinks. A concentrated thought is powerful, and exerts a very strong influence.\"</p><p>The disciple looked at his teacher and said: \"I see that I have to sharpen my concentration in order to be able to use this power.\"</p><p>\"Yes, this is the first step\", the yogi replied.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The power of thoughts','','inherit','closed','closed','','455-revision-v1','','','2023-06-15 18:51:57','2023-06-15 18:51:57','',455,'https://divyayogamonteregie.org/ca/?p=1136',0,'revision','',0),(1137,1,'2023-06-15 18:52:36','2023-06-15 18:52:36','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Remember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.</p><p style=\"text-align: justify;\">Well, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.</p><p style=\"text-align: justify;\">The race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.</p><p style=\"text-align: justify;\">The Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.</p><p style=\"text-align: justify;\">The Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.</p><p style=\"text-align: justify;\">After some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.</p><p style=\"text-align: justify;\">The story does not end here.</p><p style=\"text-align: justify;\">After the first race, the Rabbit learned that he lost it because of his laziness.</p><p style=\"text-align: justify;\">After second race, the Turtle learned that he lost the race because his opponent was actually good at running.</p><p style=\"text-align: justify;\">After the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.</p><p style=\"text-align: justify;\">The Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.</p><p style=\"text-align: justify;\">While running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.</p><p style=\"text-align: justify;\"><b>What did they learn?</b></p><p style=\"text-align: justify;\">They both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Rabbit and The Turtle Race','','inherit','closed','closed','','460-revision-v1','','','2023-06-15 18:52:36','2023-06-15 18:52:36','',460,'https://divyayogamonteregie.org/ca/?p=1137',0,'revision','',0),(1138,1,'2023-06-15 18:52:36','2023-06-15 18:52:36','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Remember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.</p><p style=\"text-align: justify;\">Well, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.</p><p style=\"text-align: justify;\">The race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.</p><p style=\"text-align: justify;\">The Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.</p><p style=\"text-align: justify;\">The Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.</p><p style=\"text-align: justify;\">After some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.</p><p style=\"text-align: justify;\">The story does not end here.</p><p style=\"text-align: justify;\">After the first race, the Rabbit learned that he lost it because of his laziness.</p><p style=\"text-align: justify;\">After second race, the Turtle learned that he lost the race because his opponent was actually good at running.</p><p style=\"text-align: justify;\">After the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.</p><p style=\"text-align: justify;\">The Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.</p><p style=\"text-align: justify;\">While running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.</p><p style=\"text-align: justify;\"><b>What did they learn?</b></p><p style=\"text-align: justify;\">They both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Rabbit and The Turtle Race','','inherit','closed','closed','','460-revision-v1','','','2023-06-15 18:52:36','2023-06-15 18:52:36','',460,'https://divyayogamonteregie.org/ca/?p=1138',0,'revision','',0),(1139,1,'2023-06-15 18:52:37','2023-06-15 18:52:37','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Remember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.</p><p style=\"text-align: justify;\">Well, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.</p><p style=\"text-align: justify;\">The race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.</p><p style=\"text-align: justify;\">The Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.</p><p style=\"text-align: justify;\">The Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.</p><p style=\"text-align: justify;\">After some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.</p><p style=\"text-align: justify;\">The story does not end here.</p><p style=\"text-align: justify;\">After the first race, the Rabbit learned that he lost it because of his laziness.</p><p style=\"text-align: justify;\">After second race, the Turtle learned that he lost the race because his opponent was actually good at running.</p><p style=\"text-align: justify;\">After the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.</p><p style=\"text-align: justify;\">The Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.</p><p style=\"text-align: justify;\">While running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.</p><p style=\"text-align: justify;\"><b>What did they learn?</b></p><p style=\"text-align: justify;\">They both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Rabbit and The Turtle Race','','inherit','closed','closed','','460-revision-v1','','','2023-06-15 18:52:37','2023-06-15 18:52:37','',460,'https://divyayogamonteregie.org/ca/?p=1139',0,'revision','',0),(1140,1,'2023-06-15 18:52:50','2023-06-15 18:52:50','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Remember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.</p><p style=\"text-align: justify;\">Well, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.</p><p style=\"text-align: justify;\">The race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.</p><p style=\"text-align: justify;\">The Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.</p><p style=\"text-align: justify;\">The Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.</p><p style=\"text-align: justify;\">After some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.</p><p style=\"text-align: justify;\">The story does not end here.</p><p style=\"text-align: justify;\">After the first race, the Rabbit learned that he lost it because of his laziness.</p><p style=\"text-align: justify;\">After second race, the Turtle learned that he lost the race because his opponent was actually good at running.</p><p style=\"text-align: justify;\">After the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.</p><p style=\"text-align: justify;\">The Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.</p><p style=\"text-align: justify;\">While running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.</p><p style=\"text-align: justify;\"><b>What did they learn?</b></p><p style=\"text-align: justify;\">They both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Rabbit and The Turtle Race','','inherit','closed','closed','','460-revision-v1','','','2023-06-15 18:52:50','2023-06-15 18:52:50','',460,'https://divyayogamonteregie.org/ca/?p=1140',0,'revision','',0),(1141,1,'2023-06-15 18:52:50','2023-06-15 18:52:50','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Remember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.</p><p style=\"text-align: justify;\">Well, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.</p><p style=\"text-align: justify;\">The race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.</p><p style=\"text-align: justify;\">The Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.</p><p style=\"text-align: justify;\">The Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.</p><p style=\"text-align: justify;\">After some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.</p><p style=\"text-align: justify;\">The story does not end here.</p><p style=\"text-align: justify;\">After the first race, the Rabbit learned that he lost it because of his laziness.</p><p style=\"text-align: justify;\">After second race, the Turtle learned that he lost the race because his opponent was actually good at running.</p><p style=\"text-align: justify;\">After the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.</p><p style=\"text-align: justify;\">The Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.</p><p style=\"text-align: justify;\">While running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.</p><p style=\"text-align: justify;\"><b>What did they learn?</b></p><p style=\"text-align: justify;\">They both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Rabbit and The Turtle Race','','inherit','closed','closed','','460-revision-v1','','','2023-06-15 18:52:50','2023-06-15 18:52:50','',460,'https://divyayogamonteregie.org/ca/?p=1141',0,'revision','',0),(1142,1,'2023-06-15 18:52:50','2023-06-15 18:52:50','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Remember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.</p><p style=\"text-align: justify;\">Well, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.</p><p style=\"text-align: justify;\">The race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.</p><p style=\"text-align: justify;\">The Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.</p><p style=\"text-align: justify;\">The Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.</p><p style=\"text-align: justify;\">After some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.</p><p style=\"text-align: justify;\">The story does not end here.</p><p style=\"text-align: justify;\">After the first race, the Rabbit learned that he lost it because of his laziness.</p><p style=\"text-align: justify;\">After second race, the Turtle learned that he lost the race because his opponent was actually good at running.</p><p style=\"text-align: justify;\">After the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.</p><p style=\"text-align: justify;\">The Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.</p><p style=\"text-align: justify;\">While running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.</p><p style=\"text-align: justify;\"><b>What did they learn?</b></p><p style=\"text-align: justify;\">They both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Rabbit and The Turtle Race','','inherit','closed','closed','','460-revision-v1','','','2023-06-15 18:52:50','2023-06-15 18:52:50','',460,'https://divyayogamonteregie.org/ca/?p=1142',0,'revision','',0),(1143,1,'2023-06-15 18:55:17','2023-06-15 18:55:17','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">An old farmer had plowed around a large rock in one of his fields for years. He had broken several plowshares and a cultivator on it and had grown rather morbid about the rock.</p><p style=\"text-align: justify;\">After breaking another plowshare one day, and remembering all the trouble the rock had caused him through the years, he finally decided to do something about it.</p><p style=\"text-align: justify;\">When he put the crowbar under the rock, he was surprised to discover that it was only about six inches thick and that he could break it up easily with a sledgehammer. As he was carting the pieces away he had to smile, remembering all the trouble that the rock had caused him over the years and how easy it would have been to get rid of it sooner.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Rock','','inherit','closed','closed','','465-revision-v1','','','2023-06-15 18:55:17','2023-06-15 18:55:17','',465,'https://divyayogamonteregie.org/ca/?p=1143',0,'revision','',0),(1144,1,'2023-06-15 18:55:17','2023-06-15 18:55:17','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">An old farmer had plowed around a large rock in one of his fields for years. He had broken several plowshares and a cultivator on it and had grown rather morbid about the rock.</p><p style=\"text-align: justify;\">After breaking another plowshare one day, and remembering all the trouble the rock had caused him through the years, he finally decided to do something about it.</p><p style=\"text-align: justify;\">When he put the crowbar under the rock, he was surprised to discover that it was only about six inches thick and that he could break it up easily with a sledgehammer. As he was carting the pieces away he had to smile, remembering all the trouble that the rock had caused him over the years and how easy it would have been to get rid of it sooner.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Rock','','inherit','closed','closed','','465-revision-v1','','','2023-06-15 18:55:17','2023-06-15 18:55:17','',465,'https://divyayogamonteregie.org/ca/?p=1144',0,'revision','',0),(1145,1,'2023-06-15 18:55:18','2023-06-15 18:55:18','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">An old farmer had plowed around a large rock in one of his fields for years. He had broken several plowshares and a cultivator on it and had grown rather morbid about the rock.</p><p style=\"text-align: justify;\">After breaking another plowshare one day, and remembering all the trouble the rock had caused him through the years, he finally decided to do something about it.</p><p style=\"text-align: justify;\">When he put the crowbar under the rock, he was surprised to discover that it was only about six inches thick and that he could break it up easily with a sledgehammer. As he was carting the pieces away he had to smile, remembering all the trouble that the rock had caused him over the years and how easy it would have been to get rid of it sooner.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The Rock','','inherit','closed','closed','','465-revision-v1','','','2023-06-15 18:55:18','2023-06-15 18:55:18','',465,'https://divyayogamonteregie.org/ca/?p=1145',0,'revision','',0),(1146,1,'2023-06-15 18:56:21','2023-06-15 18:56:21','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">About the hidden nature of Atman [Soul]:</p><p style=\"text-align: justify;\">\"We are like a king, who falling victim to amnesia, wanders his kingdom in tatters, not knowing who he really is. We are like a lion cub who, having become lost from his mother at birth, grows up by accident among sheep and takes to grazing and bleating like them, assuming that he is like them.\" - Themes from Hindu literature.</p><p style=\"text-align: justify;\">A LIONESS was big with young and going about in search of prey when she saw a flock of sheep. She jumped upon them and died in that effort. But her little baby lion was born, motherless. The sheep took care of it, and the sheep brought it up. It grew up with them, ate grass, and bleated like the sheep. In time it became a big, full-grown lion, and still it bleated like a sheep and thought it was a sheep.</p><p style=\"text-align: justify;\">One day another lion came in search of prey, and was astonished to find that in the middle of this flock of sheep was a lion who fled like the sheep at the approach of danger. He tried to get near the sheep-lion, to tell it that it was not a sheep but a lion, but the poor animal fled at his approach.</p><p style=\"text-align: justify;\">However, he watched his opportunity, and one day found the sheep-lion sleeping. He approached it and said, \"You are a lion.\"</p><p style=\"text-align: justify;\">\"I am the sheep\" cried and bleated the other lion, and could not believe otherwise.</p><p style=\"text-align: justify;\">The lion dragged him towards a lake and said, \"Look here, there is my reflection and yours.\"</p><p style=\"text-align: justify;\">Then came the comparison. The bleating lion looked at the lion and then at its own reflection, and in a moment came the idea that it was a lion. The lion roared, the bleating was gone. [Adapted from a tale by Vivekananda in the lecture \"The real nature of man\", given in London, 1899 or near by]</p><p style=\"text-align: justify;\">❖ \"You are lions . . . and perfect.\" - Swami Vivekananda</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The sheep lion','','inherit','closed','closed','','470-revision-v1','','','2023-06-15 18:56:21','2023-06-15 18:56:21','',470,'https://divyayogamonteregie.org/ca/?p=1146',0,'revision','',0),(1147,1,'2023-06-15 18:56:21','2023-06-15 18:56:21','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">About the hidden nature of Atman [Soul]:</p><p style=\"text-align: justify;\">\"We are like a king, who falling victim to amnesia, wanders his kingdom in tatters, not knowing who he really is. We are like a lion cub who, having become lost from his mother at birth, grows up by accident among sheep and takes to grazing and bleating like them, assuming that he is like them.\" - Themes from Hindu literature.</p><p style=\"text-align: justify;\">A LIONESS was big with young and going about in search of prey when she saw a flock of sheep. She jumped upon them and died in that effort. But her little baby lion was born, motherless. The sheep took care of it, and the sheep brought it up. It grew up with them, ate grass, and bleated like the sheep. In time it became a big, full-grown lion, and still it bleated like a sheep and thought it was a sheep.</p><p style=\"text-align: justify;\">One day another lion came in search of prey, and was astonished to find that in the middle of this flock of sheep was a lion who fled like the sheep at the approach of danger. He tried to get near the sheep-lion, to tell it that it was not a sheep but a lion, but the poor animal fled at his approach.</p><p style=\"text-align: justify;\">However, he watched his opportunity, and one day found the sheep-lion sleeping. He approached it and said, \"You are a lion.\"</p><p style=\"text-align: justify;\">\"I am the sheep\" cried and bleated the other lion, and could not believe otherwise.</p><p style=\"text-align: justify;\">The lion dragged him towards a lake and said, \"Look here, there is my reflection and yours.\"</p><p style=\"text-align: justify;\">Then came the comparison. The bleating lion looked at the lion and then at its own reflection, and in a moment came the idea that it was a lion. The lion roared, the bleating was gone. [Adapted from a tale by Vivekananda in the lecture \"The real nature of man\", given in London, 1899 or near by]</p><p style=\"text-align: justify;\">❖ \"You are lions . . . and perfect.\" - Swami Vivekananda</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The sheep lion','','inherit','closed','closed','','470-revision-v1','','','2023-06-15 18:56:21','2023-06-15 18:56:21','',470,'https://divyayogamonteregie.org/ca/?p=1147',0,'revision','',0),(1148,1,'2023-06-15 18:56:22','2023-06-15 18:56:22','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">About the hidden nature of Atman [Soul]:</p><p style=\"text-align: justify;\">\"We are like a king, who falling victim to amnesia, wanders his kingdom in tatters, not knowing who he really is. We are like a lion cub who, having become lost from his mother at birth, grows up by accident among sheep and takes to grazing and bleating like them, assuming that he is like them.\" - Themes from Hindu literature.</p><p style=\"text-align: justify;\">A LIONESS was big with young and going about in search of prey when she saw a flock of sheep. She jumped upon them and died in that effort. But her little baby lion was born, motherless. The sheep took care of it, and the sheep brought it up. It grew up with them, ate grass, and bleated like the sheep. In time it became a big, full-grown lion, and still it bleated like a sheep and thought it was a sheep.</p><p style=\"text-align: justify;\">One day another lion came in search of prey, and was astonished to find that in the middle of this flock of sheep was a lion who fled like the sheep at the approach of danger. He tried to get near the sheep-lion, to tell it that it was not a sheep but a lion, but the poor animal fled at his approach.</p><p style=\"text-align: justify;\">However, he watched his opportunity, and one day found the sheep-lion sleeping. He approached it and said, \"You are a lion.\"</p><p style=\"text-align: justify;\">\"I am the sheep\" cried and bleated the other lion, and could not believe otherwise.</p><p style=\"text-align: justify;\">The lion dragged him towards a lake and said, \"Look here, there is my reflection and yours.\"</p><p style=\"text-align: justify;\">Then came the comparison. The bleating lion looked at the lion and then at its own reflection, and in a moment came the idea that it was a lion. The lion roared, the bleating was gone. [Adapted from a tale by Vivekananda in the lecture \"The real nature of man\", given in London, 1899 or near by]</p><p style=\"text-align: justify;\">❖ \"You are lions . . . and perfect.\" - Swami Vivekananda</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The sheep lion','','inherit','closed','closed','','470-revision-v1','','','2023-06-15 18:56:22','2023-06-15 18:56:22','',470,'https://divyayogamonteregie.org/ca/?p=1148',0,'revision','',0),(1149,1,'2023-06-15 18:57:08','2023-06-15 18:57:08','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>A man found a cocoon of a butterfly.<br />One day a small opening appeared.<br />He sat and watched the butterfly for several hours<br />as it struggled to squeeze its body through the tiny hole.<br />Then it stopped, as if it couldn\'t go further.</p><p>So the man decided to help the butterfly.<br />He took a pair of scissors and<br />snipped off the remaining bits of cocoon.<br />The butterfly emerged easily but<br />it had a swollen body and shriveled wings.</p><p>The man continued to watch it,<br />expecting that any minute the wings would enlarge<br />and expand enough to support the body,<br />Neither happened!<br />In fact the butterfly spent the rest of its life<br />crawling around.<br />It was never able to fly.</p><p>What the man in his kindness<br />and haste did not understand:<br />The restricting cocoon and the struggle<br />required by the butterfly to get through the opening<br />was a way of forcing the fluid from the body<br />into the wings so that it would be ready<br />for flight once that was achieved.</p><p>Sometimes struggles are exactly<br />what we need in our lives.<br />Going through life with no obstacles would cripple us.<br />We will not be as strong as we could have been<br />and we would never fly.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The story of the butterfly.','','inherit','closed','closed','','475-revision-v1','','','2023-06-15 18:57:08','2023-06-15 18:57:08','',475,'https://divyayogamonteregie.org/ca/?p=1149',0,'revision','',0),(1150,1,'2023-06-15 18:57:08','2023-06-15 18:57:08','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>A man found a cocoon of a butterfly.<br />One day a small opening appeared.<br />He sat and watched the butterfly for several hours<br />as it struggled to squeeze its body through the tiny hole.<br />Then it stopped, as if it couldn\'t go further.</p><p>So the man decided to help the butterfly.<br />He took a pair of scissors and<br />snipped off the remaining bits of cocoon.<br />The butterfly emerged easily but<br />it had a swollen body and shriveled wings.</p><p>The man continued to watch it,<br />expecting that any minute the wings would enlarge<br />and expand enough to support the body,<br />Neither happened!<br />In fact the butterfly spent the rest of its life<br />crawling around.<br />It was never able to fly.</p><p>What the man in his kindness<br />and haste did not understand:<br />The restricting cocoon and the struggle<br />required by the butterfly to get through the opening<br />was a way of forcing the fluid from the body<br />into the wings so that it would be ready<br />for flight once that was achieved.</p><p>Sometimes struggles are exactly<br />what we need in our lives.<br />Going through life with no obstacles would cripple us.<br />We will not be as strong as we could have been<br />and we would never fly.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The story of the butterfly.','','inherit','closed','closed','','475-revision-v1','','','2023-06-15 18:57:08','2023-06-15 18:57:08','',475,'https://divyayogamonteregie.org/ca/?p=1150',0,'revision','',0),(1151,1,'2023-06-15 18:57:08','2023-06-15 18:57:08','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>A man found a cocoon of a butterfly.<br />One day a small opening appeared.<br />He sat and watched the butterfly for several hours<br />as it struggled to squeeze its body through the tiny hole.<br />Then it stopped, as if it couldn\'t go further.</p><p>So the man decided to help the butterfly.<br />He took a pair of scissors and<br />snipped off the remaining bits of cocoon.<br />The butterfly emerged easily but<br />it had a swollen body and shriveled wings.</p><p>The man continued to watch it,<br />expecting that any minute the wings would enlarge<br />and expand enough to support the body,<br />Neither happened!<br />In fact the butterfly spent the rest of its life<br />crawling around.<br />It was never able to fly.</p><p>What the man in his kindness<br />and haste did not understand:<br />The restricting cocoon and the struggle<br />required by the butterfly to get through the opening<br />was a way of forcing the fluid from the body<br />into the wings so that it would be ready<br />for flight once that was achieved.</p><p>Sometimes struggles are exactly<br />what we need in our lives.<br />Going through life with no obstacles would cripple us.<br />We will not be as strong as we could have been<br />and we would never fly.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The story of the butterfly.','','inherit','closed','closed','','475-revision-v1','','','2023-06-15 18:57:08','2023-06-15 18:57:08','',475,'https://divyayogamonteregie.org/ca/?p=1151',0,'revision','',0),(1152,1,'2023-06-15 18:57:51','2023-06-15 18:57:51','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">An old story is told of a king in Africa who had a close friend with whom he grew up. The friend had a habit of looking at every situation that ever occurred in his life (positive or negative) and remarking, \"This is good!\"</p><p style=\"text-align: justify;\">One day the king and his friend were out on a hunting expedition. The friend would load and prepare the guns for the king. The friend had apparently done something wrong in preparing one of the guns, for after taking the gun from his friend, the king fired it and his thumb was blown off. Examining the situation the friend remarked as usual, \"This is good!\" To which the king replied, \"No, this is NOT good!\" and proceeded to send his friend to jail.</p><p style=\"text-align: justify;\">About a year later, the king was hunting in an area that he should have known to stay clear of. Cannibals captured him and took him to their village. They tied his hands, stacked some wood, set up a stake and bound him to the stake. As they came near to set fire to the wood, they noticed that the king was missing a thumb. Being superstitious, they never ate anyone that was less than whole. So untying the king, they sent him on his way.</p><p style=\"text-align: justify;\">As he returned home, he was reminded of the event that had taken his thumb and felt remorse for his treatment of his friend. He went immediately to the jail to speak with his friend. \"You were right,\" he said, \"it was good that my thumb was blown off.\" And he proceeded to tell the friend all that had just happened. \"And so I am very sorry for sending you to jail for so long. It was bad for me to do this.\"</p><p style=\"text-align: justify;\">\"No,\" his friend replied, \"This is good!\" \"What do you mean,\'This is good\'? How could it be good that I sent my friend to jail for a year?\" \"If I had NOT been in jail, I would have been with you.\"</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','This is good','','inherit','closed','closed','','480-revision-v1','','','2023-06-15 18:57:51','2023-06-15 18:57:51','',480,'https://divyayogamonteregie.org/ca/?p=1152',0,'revision','',0),(1153,1,'2023-06-15 18:57:51','2023-06-15 18:57:51','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">An old story is told of a king in Africa who had a close friend with whom he grew up. The friend had a habit of looking at every situation that ever occurred in his life (positive or negative) and remarking, \"This is good!\"</p><p style=\"text-align: justify;\">One day the king and his friend were out on a hunting expedition. The friend would load and prepare the guns for the king. The friend had apparently done something wrong in preparing one of the guns, for after taking the gun from his friend, the king fired it and his thumb was blown off. Examining the situation the friend remarked as usual, \"This is good!\" To which the king replied, \"No, this is NOT good!\" and proceeded to send his friend to jail.</p><p style=\"text-align: justify;\">About a year later, the king was hunting in an area that he should have known to stay clear of. Cannibals captured him and took him to their village. They tied his hands, stacked some wood, set up a stake and bound him to the stake. As they came near to set fire to the wood, they noticed that the king was missing a thumb. Being superstitious, they never ate anyone that was less than whole. So untying the king, they sent him on his way.</p><p style=\"text-align: justify;\">As he returned home, he was reminded of the event that had taken his thumb and felt remorse for his treatment of his friend. He went immediately to the jail to speak with his friend. \"You were right,\" he said, \"it was good that my thumb was blown off.\" And he proceeded to tell the friend all that had just happened. \"And so I am very sorry for sending you to jail for so long. It was bad for me to do this.\"</p><p style=\"text-align: justify;\">\"No,\" his friend replied, \"This is good!\" \"What do you mean,\'This is good\'? How could it be good that I sent my friend to jail for a year?\" \"If I had NOT been in jail, I would have been with you.\"</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','This is good','','inherit','closed','closed','','480-revision-v1','','','2023-06-15 18:57:51','2023-06-15 18:57:51','',480,'https://divyayogamonteregie.org/ca/?p=1153',0,'revision','',0),(1154,1,'2023-06-15 18:57:51','2023-06-15 18:57:51','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">An old story is told of a king in Africa who had a close friend with whom he grew up. The friend had a habit of looking at every situation that ever occurred in his life (positive or negative) and remarking, \"This is good!\"</p><p style=\"text-align: justify;\">One day the king and his friend were out on a hunting expedition. The friend would load and prepare the guns for the king. The friend had apparently done something wrong in preparing one of the guns, for after taking the gun from his friend, the king fired it and his thumb was blown off. Examining the situation the friend remarked as usual, \"This is good!\" To which the king replied, \"No, this is NOT good!\" and proceeded to send his friend to jail.</p><p style=\"text-align: justify;\">About a year later, the king was hunting in an area that he should have known to stay clear of. Cannibals captured him and took him to their village. They tied his hands, stacked some wood, set up a stake and bound him to the stake. As they came near to set fire to the wood, they noticed that the king was missing a thumb. Being superstitious, they never ate anyone that was less than whole. So untying the king, they sent him on his way.</p><p style=\"text-align: justify;\">As he returned home, he was reminded of the event that had taken his thumb and felt remorse for his treatment of his friend. He went immediately to the jail to speak with his friend. \"You were right,\" he said, \"it was good that my thumb was blown off.\" And he proceeded to tell the friend all that had just happened. \"And so I am very sorry for sending you to jail for so long. It was bad for me to do this.\"</p><p style=\"text-align: justify;\">\"No,\" his friend replied, \"This is good!\" \"What do you mean,\'This is good\'? How could it be good that I sent my friend to jail for a year?\" \"If I had NOT been in jail, I would have been with you.\"</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','This is good','','inherit','closed','closed','','480-revision-v1','','','2023-06-15 18:57:51','2023-06-15 18:57:51','',480,'https://divyayogamonteregie.org/ca/?p=1154',0,'revision','',0),(1155,1,'2023-06-15 18:57:59','2023-06-15 18:57:59','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">An old story is told of a king in Africa who had a close friend with whom he grew up. The friend had a habit of looking at every situation that ever occurred in his life (positive or negative) and remarking, \"This is good!\"</p><p style=\"text-align: justify;\">One day the king and his friend were out on a hunting expedition. The friend would load and prepare the guns for the king. The friend had apparently done something wrong in preparing one of the guns, for after taking the gun from his friend, the king fired it and his thumb was blown off. Examining the situation the friend remarked as usual, \"This is good!\" To which the king replied, \"No, this is NOT good!\" and proceeded to send his friend to jail.</p><p style=\"text-align: justify;\">About a year later, the king was hunting in an area that he should have known to stay clear of. Cannibals captured him and took him to their village. They tied his hands, stacked some wood, set up a stake and bound him to the stake. As they came near to set fire to the wood, they noticed that the king was missing a thumb. Being superstitious, they never ate anyone that was less than whole. So untying the king, they sent him on his way.</p><p style=\"text-align: justify;\">As he returned home, he was reminded of the event that had taken his thumb and felt remorse for his treatment of his friend. He went immediately to the jail to speak with his friend. \"You were right,\" he said, \"it was good that my thumb was blown off.\" And he proceeded to tell the friend all that had just happened. \"And so I am very sorry for sending you to jail for so long. It was bad for me to do this.\"</p><p style=\"text-align: justify;\">\"No,\" his friend replied, \"This is good!\" \"What do you mean,\'This is good\'? How could it be good that I sent my friend to jail for a year?\" \"If I had NOT been in jail, I would have been with you.\"</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','This is good','','inherit','closed','closed','','480-revision-v1','','','2023-06-15 18:57:59','2023-06-15 18:57:59','',480,'https://divyayogamonteregie.org/ca/?p=1155',0,'revision','',0),(1156,1,'2023-06-15 18:57:59','2023-06-15 18:57:59','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">An old story is told of a king in Africa who had a close friend with whom he grew up. The friend had a habit of looking at every situation that ever occurred in his life (positive or negative) and remarking, \"This is good!\"</p><p style=\"text-align: justify;\">One day the king and his friend were out on a hunting expedition. The friend would load and prepare the guns for the king. The friend had apparently done something wrong in preparing one of the guns, for after taking the gun from his friend, the king fired it and his thumb was blown off. Examining the situation the friend remarked as usual, \"This is good!\" To which the king replied, \"No, this is NOT good!\" and proceeded to send his friend to jail.</p><p style=\"text-align: justify;\">About a year later, the king was hunting in an area that he should have known to stay clear of. Cannibals captured him and took him to their village. They tied his hands, stacked some wood, set up a stake and bound him to the stake. As they came near to set fire to the wood, they noticed that the king was missing a thumb. Being superstitious, they never ate anyone that was less than whole. So untying the king, they sent him on his way.</p><p style=\"text-align: justify;\">As he returned home, he was reminded of the event that had taken his thumb and felt remorse for his treatment of his friend. He went immediately to the jail to speak with his friend. \"You were right,\" he said, \"it was good that my thumb was blown off.\" And he proceeded to tell the friend all that had just happened. \"And so I am very sorry for sending you to jail for so long. It was bad for me to do this.\"</p><p style=\"text-align: justify;\">\"No,\" his friend replied, \"This is good!\" \"What do you mean,\'This is good\'? How could it be good that I sent my friend to jail for a year?\" \"If I had NOT been in jail, I would have been with you.\"</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','This is good','','inherit','closed','closed','','480-revision-v1','','','2023-06-15 18:57:59','2023-06-15 18:57:59','',480,'https://divyayogamonteregie.org/ca/?p=1156',0,'revision','',0),(1157,1,'2023-06-15 18:57:59','2023-06-15 18:57:59','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">An old story is told of a king in Africa who had a close friend with whom he grew up. The friend had a habit of looking at every situation that ever occurred in his life (positive or negative) and remarking, \"This is good!\"</p><p style=\"text-align: justify;\">One day the king and his friend were out on a hunting expedition. The friend would load and prepare the guns for the king. The friend had apparently done something wrong in preparing one of the guns, for after taking the gun from his friend, the king fired it and his thumb was blown off. Examining the situation the friend remarked as usual, \"This is good!\" To which the king replied, \"No, this is NOT good!\" and proceeded to send his friend to jail.</p><p style=\"text-align: justify;\">About a year later, the king was hunting in an area that he should have known to stay clear of. Cannibals captured him and took him to their village. They tied his hands, stacked some wood, set up a stake and bound him to the stake. As they came near to set fire to the wood, they noticed that the king was missing a thumb. Being superstitious, they never ate anyone that was less than whole. So untying the king, they sent him on his way.</p><p style=\"text-align: justify;\">As he returned home, he was reminded of the event that had taken his thumb and felt remorse for his treatment of his friend. He went immediately to the jail to speak with his friend. \"You were right,\" he said, \"it was good that my thumb was blown off.\" And he proceeded to tell the friend all that had just happened. \"And so I am very sorry for sending you to jail for so long. It was bad for me to do this.\"</p><p style=\"text-align: justify;\">\"No,\" his friend replied, \"This is good!\" \"What do you mean,\'This is good\'? How could it be good that I sent my friend to jail for a year?\" \"If I had NOT been in jail, I would have been with you.\"</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','This is good','','inherit','closed','closed','','480-revision-v1','','','2023-06-15 18:57:59','2023-06-15 18:57:59','',480,'https://divyayogamonteregie.org/ca/?p=1157',0,'revision','',0),(1158,1,'2023-06-15 18:58:43','2023-06-15 18:58:43','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">There once was a wise sage who wandered the countryside. One day, as he passed near a village, he was approached by a woman who told him of a sick child nearby. She beseeched him to help this child.</p><p style=\"text-align: justify;\">So the sage came to the village, and a crowd gathered around him, for such a man was a rare sight. One woman brought the sick child to him, and he said a prayer over her.</p><p style=\"text-align: justify;\">\"Do you really think your prayer will help her, when medicine has failed?\" yelled a man from the crowd.</p><p style=\"text-align: justify;\">\"You know nothing of such things! You are a stupid fool!\" said the sage to the man.</p><p style=\"text-align: justify;\">The man became very angry with these words and his face grew hot and red. He was about to say something, or perhaps strike out, when the sage walked over to him and said: \"If one word has such power as to make you so angry and hot, may not another have the power to heal?\"</p><p style=\"text-align: justify;\">And thus, the sage healed two people that day.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Wise Saint','','inherit','closed','closed','','485-revision-v1','','','2023-06-15 18:58:43','2023-06-15 18:58:43','',485,'https://divyayogamonteregie.org/ca/?p=1158',0,'revision','',0),(1159,1,'2023-06-15 18:58:43','2023-06-15 18:58:43','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">There once was a wise sage who wandered the countryside. One day, as he passed near a village, he was approached by a woman who told him of a sick child nearby. She beseeched him to help this child.</p><p style=\"text-align: justify;\">So the sage came to the village, and a crowd gathered around him, for such a man was a rare sight. One woman brought the sick child to him, and he said a prayer over her.</p><p style=\"text-align: justify;\">\"Do you really think your prayer will help her, when medicine has failed?\" yelled a man from the crowd.</p><p style=\"text-align: justify;\">\"You know nothing of such things! You are a stupid fool!\" said the sage to the man.</p><p style=\"text-align: justify;\">The man became very angry with these words and his face grew hot and red. He was about to say something, or perhaps strike out, when the sage walked over to him and said: \"If one word has such power as to make you so angry and hot, may not another have the power to heal?\"</p><p style=\"text-align: justify;\">And thus, the sage healed two people that day.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Wise Saint','','inherit','closed','closed','','485-revision-v1','','','2023-06-15 18:58:43','2023-06-15 18:58:43','',485,'https://divyayogamonteregie.org/ca/?p=1159',0,'revision','',0),(1160,1,'2023-06-15 18:58:43','2023-06-15 18:58:43','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">There once was a wise sage who wandered the countryside. One day, as he passed near a village, he was approached by a woman who told him of a sick child nearby. She beseeched him to help this child.</p><p style=\"text-align: justify;\">So the sage came to the village, and a crowd gathered around him, for such a man was a rare sight. One woman brought the sick child to him, and he said a prayer over her.</p><p style=\"text-align: justify;\">\"Do you really think your prayer will help her, when medicine has failed?\" yelled a man from the crowd.</p><p style=\"text-align: justify;\">\"You know nothing of such things! You are a stupid fool!\" said the sage to the man.</p><p style=\"text-align: justify;\">The man became very angry with these words and his face grew hot and red. He was about to say something, or perhaps strike out, when the sage walked over to him and said: \"If one word has such power as to make you so angry and hot, may not another have the power to heal?\"</p><p style=\"text-align: justify;\">And thus, the sage healed two people that day.</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Wise Saint','','inherit','closed','closed','','485-revision-v1','','','2023-06-15 18:58:43','2023-06-15 18:58:43','',485,'https://divyayogamonteregie.org/ca/?p=1160',0,'revision','',0),(1161,1,'2023-06-15 18:59:18','2023-06-15 18:59:18','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">TWO FROGS - a big one and a small one - hopped into a pail of milk. The sides of the pail were shiny and smooth. The frogs were swimming round and round without being able to get out of the pail again, and every time they lifted their mouths to catch a little air to breathe, down they went. They kept on swimming and gasping like this till the big frog gave up and drowned. Then the little frog said to himself,</p><p style=\"text-align: justify;\">\"Well, well. I will hang on as long as I can, too.\"</p><p style=\"text-align: justify;\">It kept on for hours, when suddenly it found something solid under its feet - milk was churned to butter! Out jumped the little frog!</p><p style=\"text-align: justify;\">❖ <i>Said Yogananda: \"Be like the little frog. By all means keep battling.\" </i></p><p style=\"text-align: justify;\">❖ <i>Churn your difficulty well or it may be to your loss.</i></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The two Frogs in Trouble','','inherit','closed','closed','','490-revision-v1','','','2023-06-15 18:59:18','2023-06-15 18:59:18','',490,'https://divyayogamonteregie.org/ca/?p=1161',0,'revision','',0),(1162,1,'2023-06-15 18:59:18','2023-06-15 18:59:18','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">TWO FROGS - a big one and a small one - hopped into a pail of milk. The sides of the pail were shiny and smooth. The frogs were swimming round and round without being able to get out of the pail again, and every time they lifted their mouths to catch a little air to breathe, down they went. They kept on swimming and gasping like this till the big frog gave up and drowned. Then the little frog said to himself,</p><p style=\"text-align: justify;\">\"Well, well. I will hang on as long as I can, too.\"</p><p style=\"text-align: justify;\">It kept on for hours, when suddenly it found something solid under its feet - milk was churned to butter! Out jumped the little frog!</p><p style=\"text-align: justify;\">❖ <i>Said Yogananda: \"Be like the little frog. By all means keep battling.\" </i></p><p style=\"text-align: justify;\">❖ <i>Churn your difficulty well or it may be to your loss.</i></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The two Frogs in Trouble','','inherit','closed','closed','','490-revision-v1','','','2023-06-15 18:59:18','2023-06-15 18:59:18','',490,'https://divyayogamonteregie.org/ca/?p=1162',0,'revision','',0),(1163,1,'2023-06-15 18:59:18','2023-06-15 18:59:18','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">TWO FROGS - a big one and a small one - hopped into a pail of milk. The sides of the pail were shiny and smooth. The frogs were swimming round and round without being able to get out of the pail again, and every time they lifted their mouths to catch a little air to breathe, down they went. They kept on swimming and gasping like this till the big frog gave up and drowned. Then the little frog said to himself,</p><p style=\"text-align: justify;\">\"Well, well. I will hang on as long as I can, too.\"</p><p style=\"text-align: justify;\">It kept on for hours, when suddenly it found something solid under its feet - milk was churned to butter! Out jumped the little frog!</p><p style=\"text-align: justify;\">❖ <i>Said Yogananda: \"Be like the little frog. By all means keep battling.\" </i></p><p style=\"text-align: justify;\">❖ <i>Churn your difficulty well or it may be to your loss.</i></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The two Frogs in Trouble','','inherit','closed','closed','','490-revision-v1','','','2023-06-15 18:59:18','2023-06-15 18:59:18','',490,'https://divyayogamonteregie.org/ca/?p=1163',0,'revision','',0),(1164,1,'2023-06-15 18:59:30','2023-06-15 18:59:30','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">TWO FROGS - a big one and a small one - hopped into a pail of milk. The sides of the pail were shiny and smooth. The frogs were swimming round and round without being able to get out of the pail again, and every time they lifted their mouths to catch a little air to breathe, down they went. They kept on swimming and gasping like this till the big frog gave up and drowned. Then the little frog said to himself,</p><p style=\"text-align: justify;\">\"Well, well. I will hang on as long as I can, too.\"</p><p style=\"text-align: justify;\">It kept on for hours, when suddenly it found something solid under its feet - milk was churned to butter! Out jumped the little frog!</p><p style=\"text-align: justify;\">❖ <i>Said Yogananda: \"Be like the little frog. By all means keep battling.\" </i></p><p style=\"text-align: justify;\">❖ <i>Churn your difficulty well or it may be to your loss.</i></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The two Frogs in Trouble','','inherit','closed','closed','','490-revision-v1','','','2023-06-15 18:59:30','2023-06-15 18:59:30','',490,'https://divyayogamonteregie.org/ca/?p=1164',0,'revision','',0),(1165,1,'2023-06-15 18:59:30','2023-06-15 18:59:30','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">TWO FROGS - a big one and a small one - hopped into a pail of milk. The sides of the pail were shiny and smooth. The frogs were swimming round and round without being able to get out of the pail again, and every time they lifted their mouths to catch a little air to breathe, down they went. They kept on swimming and gasping like this till the big frog gave up and drowned. Then the little frog said to himself,</p><p style=\"text-align: justify;\">\"Well, well. I will hang on as long as I can, too.\"</p><p style=\"text-align: justify;\">It kept on for hours, when suddenly it found something solid under its feet - milk was churned to butter! Out jumped the little frog!</p><p style=\"text-align: justify;\">❖ <i>Said Yogananda: \"Be like the little frog. By all means keep battling.\" </i></p><p style=\"text-align: justify;\">❖ <i>Churn your difficulty well or it may be to your loss.</i></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The two Frogs in Trouble','','inherit','closed','closed','','490-revision-v1','','','2023-06-15 18:59:30','2023-06-15 18:59:30','',490,'https://divyayogamonteregie.org/ca/?p=1165',0,'revision','',0),(1166,1,'2023-06-15 18:59:30','2023-06-15 18:59:30','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">TWO FROGS - a big one and a small one - hopped into a pail of milk. The sides of the pail were shiny and smooth. The frogs were swimming round and round without being able to get out of the pail again, and every time they lifted their mouths to catch a little air to breathe, down they went. They kept on swimming and gasping like this till the big frog gave up and drowned. Then the little frog said to himself,</p><p style=\"text-align: justify;\">\"Well, well. I will hang on as long as I can, too.\"</p><p style=\"text-align: justify;\">It kept on for hours, when suddenly it found something solid under its feet - milk was churned to butter! Out jumped the little frog!</p><p style=\"text-align: justify;\">❖ <i>Said Yogananda: \"Be like the little frog. By all means keep battling.\" </i></p><p style=\"text-align: justify;\">❖ <i>Churn your difficulty well or it may be to your loss.</i></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','The two Frogs in Trouble','','inherit','closed','closed','','490-revision-v1','','','2023-06-15 18:59:30','2023-06-15 18:59:30','',490,'https://divyayogamonteregie.org/ca/?p=1166',0,'revision','',0),(1167,1,'2023-06-15 19:00:27','2023-06-15 19:00:27','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Please do not stand too close to the trees! You will not be able to enjoy the forest...</p><p style=\"text-align: justify;\">A few years before hurricane Katrina hit New Orleans, a new expensive automobile stopped at the top of the Mississippi River Bridge and a gentleman stepped out of the car wearing very expensive clothing.</p><p style=\"text-align: justify;\">He climbed over the rail and under the bridge onto a platform below the roadway preparing to jump. Cars started stopping and the traffic backed up for miles. The police arrived with the fire department, ministers and mental health professionals.</p><p style=\"text-align: justify;\">They began talking to the man and telling him not to jump. They told him that he may not die; he may break all of his bones and be paralyzed for life. About half mile back in traffic was an old truck with lawn mowers, rakes, and shovels. An elderly gardener got out of his truck and walked up to where the crowd was gathered.</p><p style=\"text-align: justify;\">He made his way through the people, looked over the side and hollered down to the man on the ledge, \"Hey, I got to go to work. Either jump or get off the bridge. If you decide not to jump, tomorrow is going to be better!\"</p><p style=\"text-align: justify;\">With that the man climbed up onto the bridge. The police handcuffed him and placed him in the back seat of the police car. The gardener walked back to his truck waiting for the traffic to move.</p><p style=\"text-align: justify;\">The minister asked the fireman, \"Who was that?\" The fireman said, \"He said he has to go to work!\"</p><p style=\"text-align: justify;\">The police reported to the press that all the way to the hospital the man kept saying over and over, \"Tomorrow is going to be better.\"</p><p style=\"text-align: justify;\">One must see a future, to have a future</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Tomorrow is going to be better','','inherit','closed','closed','','495-revision-v1','','','2023-06-15 19:00:27','2023-06-15 19:00:27','',495,'https://divyayogamonteregie.org/ca/?p=1167',0,'revision','',0),(1168,1,'2023-06-15 19:00:28','2023-06-15 19:00:28','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Please do not stand too close to the trees! You will not be able to enjoy the forest...</p><p style=\"text-align: justify;\">A few years before hurricane Katrina hit New Orleans, a new expensive automobile stopped at the top of the Mississippi River Bridge and a gentleman stepped out of the car wearing very expensive clothing.</p><p style=\"text-align: justify;\">He climbed over the rail and under the bridge onto a platform below the roadway preparing to jump. Cars started stopping and the traffic backed up for miles. The police arrived with the fire department, ministers and mental health professionals.</p><p style=\"text-align: justify;\">They began talking to the man and telling him not to jump. They told him that he may not die; he may break all of his bones and be paralyzed for life. About half mile back in traffic was an old truck with lawn mowers, rakes, and shovels. An elderly gardener got out of his truck and walked up to where the crowd was gathered.</p><p style=\"text-align: justify;\">He made his way through the people, looked over the side and hollered down to the man on the ledge, \"Hey, I got to go to work. Either jump or get off the bridge. If you decide not to jump, tomorrow is going to be better!\"</p><p style=\"text-align: justify;\">With that the man climbed up onto the bridge. The police handcuffed him and placed him in the back seat of the police car. The gardener walked back to his truck waiting for the traffic to move.</p><p style=\"text-align: justify;\">The minister asked the fireman, \"Who was that?\" The fireman said, \"He said he has to go to work!\"</p><p style=\"text-align: justify;\">The police reported to the press that all the way to the hospital the man kept saying over and over, \"Tomorrow is going to be better.\"</p><p style=\"text-align: justify;\">One must see a future, to have a future</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Tomorrow is going to be better','','inherit','closed','closed','','495-revision-v1','','','2023-06-15 19:00:28','2023-06-15 19:00:28','',495,'https://divyayogamonteregie.org/ca/?p=1168',0,'revision','',0),(1169,1,'2023-06-15 19:00:28','2023-06-15 19:00:28','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p style=\"text-align: justify;\">Please do not stand too close to the trees! You will not be able to enjoy the forest...</p><p style=\"text-align: justify;\">A few years before hurricane Katrina hit New Orleans, a new expensive automobile stopped at the top of the Mississippi River Bridge and a gentleman stepped out of the car wearing very expensive clothing.</p><p style=\"text-align: justify;\">He climbed over the rail and under the bridge onto a platform below the roadway preparing to jump. Cars started stopping and the traffic backed up for miles. The police arrived with the fire department, ministers and mental health professionals.</p><p style=\"text-align: justify;\">They began talking to the man and telling him not to jump. They told him that he may not die; he may break all of his bones and be paralyzed for life. About half mile back in traffic was an old truck with lawn mowers, rakes, and shovels. An elderly gardener got out of his truck and walked up to where the crowd was gathered.</p><p style=\"text-align: justify;\">He made his way through the people, looked over the side and hollered down to the man on the ledge, \"Hey, I got to go to work. Either jump or get off the bridge. If you decide not to jump, tomorrow is going to be better!\"</p><p style=\"text-align: justify;\">With that the man climbed up onto the bridge. The police handcuffed him and placed him in the back seat of the police car. The gardener walked back to his truck waiting for the traffic to move.</p><p style=\"text-align: justify;\">The minister asked the fireman, \"Who was that?\" The fireman said, \"He said he has to go to work!\"</p><p style=\"text-align: justify;\">The police reported to the press that all the way to the hospital the man kept saying over and over, \"Tomorrow is going to be better.\"</p><p style=\"text-align: justify;\">One must see a future, to have a future</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Tomorrow is going to be better','','inherit','closed','closed','','495-revision-v1','','','2023-06-15 19:00:28','2023-06-15 19:00:28','',495,'https://divyayogamonteregie.org/ca/?p=1169',0,'revision','',0),(1170,1,'2023-06-15 19:01:24','2023-06-15 19:01:24','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Sometimes it sounds foolish or frustrating to think positive when times are really bad and a few people make it worse for you, doesn\'t it?</p><p>But just tell me, if I call you tomorrow morning, while you are still in bed and say, \"You are an Angel for me and I\'m blessed to have such a good person in my life. May God bless you\".</p><p><b>How would you feel?</b></p><p>Won\'t it be a great feeling and a great way to start a fantastic day?</p><p>Next morning I again call you but this time I say, \"You Rascal! You are the dumbest and most foolish person on the earth I\'ve ever met. You screwed me and you will be screwed...etc\".</p><p><b>How would you feel now?</b></p><p>Of course it would be a frustrating day, with a sad feeling, because you heard all the crap in the morning while you were still in bed!</p><p>Now answer my question - <b>\"Who is controlling \'your\' life?\" </b></p><p><b>Am I supposed to control YOUR life? Is that right?</b></p><p><b>When I say something good about you, does it makes you a good person and vice versa?</b></p><p><b>NO, YOU ARE THE MASTER OF YOUR OWN LIFE!</b></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Who\'s In Charge Of Your Life?','','inherit','closed','closed','','500-revision-v1','','','2023-06-15 19:01:24','2023-06-15 19:01:24','',500,'https://divyayogamonteregie.org/ca/?p=1170',0,'revision','',0),(1171,1,'2023-06-15 19:01:24','2023-06-15 19:01:24','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Sometimes it sounds foolish or frustrating to think positive when times are really bad and a few people make it worse for you, doesn\'t it?</p><p>But just tell me, if I call you tomorrow morning, while you are still in bed and say, \"You are an Angel for me and I\'m blessed to have such a good person in my life. May God bless you\".</p><p><b>How would you feel?</b></p><p>Won\'t it be a great feeling and a great way to start a fantastic day?</p><p>Next morning I again call you but this time I say, \"You Rascal! You are the dumbest and most foolish person on the earth I\'ve ever met. You screwed me and you will be screwed...etc\".</p><p><b>How would you feel now?</b></p><p>Of course it would be a frustrating day, with a sad feeling, because you heard all the crap in the morning while you were still in bed!</p><p>Now answer my question - <b>\"Who is controlling \'your\' life?\" </b></p><p><b>Am I supposed to control YOUR life? Is that right?</b></p><p><b>When I say something good about you, does it makes you a good person and vice versa?</b></p><p><b>NO, YOU ARE THE MASTER OF YOUR OWN LIFE!</b></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Who\'s In Charge Of Your Life?','','inherit','closed','closed','','500-revision-v1','','','2023-06-15 19:01:24','2023-06-15 19:01:24','',500,'https://divyayogamonteregie.org/ca/?p=1171',0,'revision','',0),(1172,1,'2023-06-15 19:01:24','2023-06-15 19:01:24','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Sometimes it sounds foolish or frustrating to think positive when times are really bad and a few people make it worse for you, doesn\'t it?</p><p>But just tell me, if I call you tomorrow morning, while you are still in bed and say, \"You are an Angel for me and I\'m blessed to have such a good person in my life. May God bless you\".</p><p><b>How would you feel?</b></p><p>Won\'t it be a great feeling and a great way to start a fantastic day?</p><p>Next morning I again call you but this time I say, \"You Rascal! You are the dumbest and most foolish person on the earth I\'ve ever met. You screwed me and you will be screwed...etc\".</p><p><b>How would you feel now?</b></p><p>Of course it would be a frustrating day, with a sad feeling, because you heard all the crap in the morning while you were still in bed!</p><p>Now answer my question - <b>\"Who is controlling \'your\' life?\" </b></p><p><b>Am I supposed to control YOUR life? Is that right?</b></p><p><b>When I say something good about you, does it makes you a good person and vice versa?</b></p><p><b>NO, YOU ARE THE MASTER OF YOUR OWN LIFE!</b></p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Who\'s In Charge Of Your Life?','','inherit','closed','closed','','500-revision-v1','','','2023-06-15 19:01:24','2023-06-15 19:01:24','',500,'https://divyayogamonteregie.org/ca/?p=1172',0,'revision','',0),(1173,1,'2023-06-15 19:03:05','2023-06-15 19:03:05','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>One day all the employees of a very unusual company reached their office and all saw a big sign on the main door which said this:</p><p>\"Yesterday, the person who has been hindering your growth in this company passed away. We invite you to join the funeral in the room that has been prepared in the gym.\"</p><p>In the beginning, they all got sad for the death of one of their colleagues, but after a while they started getting curious to know who was that person who hindered the growth of their colleagues and the company itself?</p><p>The excitement in the gym was such that security agents were ordered to control the crowd within the room. The more people reached the coffin, the more the excitement heated up.</p><p><b>Everyone thought - \"Who is this person who was hindering my progress?\"</b></p><p>One by one the intrigued employees got closer to the coffin, and when they looked inside it, they suddenly became speechless.</p><p>They all got to stand near the coffin, and all ended up shocked and in silence, as if someone had touched the deepest part of their soul.</p><p><b>There was a mirror inside the coffin: everyone who looked inside it could see themselves!</b></p><p><b>There was also a sign next to the mirror that said:</b></p><p><b>There is only one person who is capable of setting limits to your growth and IT IS YOU!</b></p><p>Your life does not change when your boss changes, when your friends change, when your parents change, when your husband or wife changes, when your company changes, when your church changes, when your location changes, when your money changes, when your status changes.</p><p><b>No, your life changes when YOU change</b>, when you go beyond your limiting beliefs.</p><p>Examine yourself, watch yourself. Don\'t be afraid of difficulties, impossibilities and losses. Be a winner, build yourself and your reality. It\'s the way you face life itself that makes the difference.</p><p>A few years ago a college student, who was struggling to build his career, appeared for his professional examination. He attempted his first paper excellently but he imagined that he performed badly.</p><p>Keeping this in mind, he lost concentration for the rest of the subjects and in turn, didn\'t write the other subjects well. Later on, the results came out that the paper he thought was poorly written had secured top marks in the college but in the other subjects, he failed. Why did this happen? The reason is simple: lack of belief in himself</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','An Interesting Funeral','','inherit','closed','closed','','419-revision-v1','','','2023-06-15 19:03:05','2023-06-15 19:03:05','',419,'https://divyayogamonteregie.org/ca/?p=1173',0,'revision','',0),(1174,1,'2023-06-15 19:03:05','2023-06-15 19:03:05','<style>/*! elementor - v3.13.3 - 22-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>One day all the employees of a very unusual company reached their office and all saw a big sign on the main door which said this:</p><p>\"Yesterday, the person who has been hindering your growth in this company passed away. We invite you to join the funeral in the room that has been prepared in the gym.\"</p><p>In the beginning, they all got sad for the death of one of their colleagues, but after a while they started getting curious to know who was that person who hindered the growth of their colleagues and the company itself?</p><p>The excitement in the gym was such that security agents were ordered to control the crowd within the room. The more people reached the coffin, the more the excitement heated up.</p><p><b>Everyone thought - \"Who is this person who was hindering my progress?\"</b></p><p>One by one the intrigued employees got closer to the coffin, and when they looked inside it, they suddenly became speechless.</p><p>They all got to stand near the coffin, and all ended up shocked and in silence, as if someone had touched the deepest part of their soul.</p><p><b>There was a mirror inside the coffin: everyone who looked inside it could see themselves!</b></p><p><b>There was also a sign next to the mirror that said:</b></p><p><b>There is only one person who is capable of setting limits to your growth and IT IS YOU!</b></p><p>Your life does not change when your boss changes, when your friends change, when your parents change, when your husband or wife changes, when your company changes, when your church changes, when your location changes, when your money changes, when your status changes.</p><p><b>No, your life changes when YOU change</b>, when you go beyond your limiting beliefs.</p><p>Examine yourself, watch yourself. Don\'t be afraid of difficulties, impossibilities and losses. Be a winner, build yourself and your reality. It\'s the way you face life itself that makes the difference.</p><p>A few years ago a college student, who was struggling to build his career, appeared for his professional examination. He attempted his first paper excellently but he imagined that he performed badly.</p><p>Keeping this in mind, he lost concentration for the rest of the subjects and in turn, didn\'t write the other subjects well. Later on, the results came out that the paper he thought was poorly written had secured top marks in the college but in the other subjects, he failed. Why did this happen? The reason is simple: lack of belief in himself</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','An Interesting Funeral','','inherit','closed','closed','','419-revision-v1','','','2023-06-15 19:03:05','2023-06-15 19:03:05','',419,'https://divyayogamonteregie.org/ca/?p=1174',0,'revision','',0),(1175,1,'2023-06-15 19:03:05','2023-06-15 19:03:05','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner111-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>One day all the employees of a very unusual company reached their office and all saw a big sign on the main door which said this:</p><p>\"Yesterday, the person who has been hindering your growth in this company passed away. We invite you to join the funeral in the room that has been prepared in the gym.\"</p><p>In the beginning, they all got sad for the death of one of their colleagues, but after a while they started getting curious to know who was that person who hindered the growth of their colleagues and the company itself?</p><p>The excitement in the gym was such that security agents were ordered to control the crowd within the room. The more people reached the coffin, the more the excitement heated up.</p><p><b>Everyone thought - \"Who is this person who was hindering my progress?\"</b></p><p>One by one the intrigued employees got closer to the coffin, and when they looked inside it, they suddenly became speechless.</p><p>They all got to stand near the coffin, and all ended up shocked and in silence, as if someone had touched the deepest part of their soul.</p><p><b>There was a mirror inside the coffin: everyone who looked inside it could see themselves!</b></p><p><b>There was also a sign next to the mirror that said:</b></p><p><b>There is only one person who is capable of setting limits to your growth and IT IS YOU!</b></p><p>Your life does not change when your boss changes, when your friends change, when your parents change, when your husband or wife changes, when your company changes, when your church changes, when your location changes, when your money changes, when your status changes.</p><p><b>No, your life changes when YOU change</b>, when you go beyond your limiting beliefs.</p><p>Examine yourself, watch yourself. Don\'t be afraid of difficulties, impossibilities and losses. Be a winner, build yourself and your reality. It\'s the way you face life itself that makes the difference.</p><p>A few years ago a college student, who was struggling to build his career, appeared for his professional examination. He attempted his first paper excellently but he imagined that he performed badly.</p><p>Keeping this in mind, he lost concentration for the rest of the subjects and in turn, didn\'t write the other subjects well. Later on, the results came out that the paper he thought was poorly written had secured top marks in the college but in the other subjects, he failed. Why did this happen? The reason is simple: lack of belief in himself</p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner2-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','An Interesting Funeral','','inherit','closed','closed','','419-revision-v1','','','2023-06-15 19:03:05','2023-06-15 19:03:05','',419,'https://divyayogamonteregie.org/ca/?p=1175',0,'revision','',0),(1191,1,'2024-10-05 03:09:13','2024-10-05 03:09:13','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge</p>\n<p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i>&nbsp;</i></b>exercise<b>s<i>,&nbsp;</i></b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p>\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p>\n<p>After yoga super food i. e. grapes and banana are available for Yogies.</p>\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p><ol><li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li><li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li><li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li><li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li><li><b>Eyes and neck exercises</b> – we take care of every part of the body.<br />Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>    </b><br />Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li><li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li><li><b>6 mudras </b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li><li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br />We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li><li><b>Laughter yoga </b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br />We also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li><li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li><li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li><li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li></ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong><br /><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></p>		\n			<h2>Divya Yoga Monteregie - annual calendar 2024-2025 </h2>		\n                    <h2></h2>\n                    <p></p>\n                    <a> Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant </a>','Home','','inherit','closed','closed','','652-revision-v1','','','2024-10-05 03:09:13','2024-10-05 03:09:13','',652,'https://divyayogamonteregie.org/ca/?p=1191',0,'revision','',0),(1186,1,'2024-09-18 03:45:01','2024-09-18 03:45:01','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge</p>\n<p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i>&nbsp;</i></b>exercise<b>s<i>,&nbsp;</i></b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p>\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p>\n<p>After yoga super food i. e. grapes and banana are available for Yogies.</p>\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p><ol><li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li><li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li><li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li><li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li><li><b>Eyes and neck exercises</b> – we take care of every part of the body.<br />Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>    </b><br />Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li><li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li><li><b>6 mudras </b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li><li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br />We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li><li><b>Laughter yoga </b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br />We also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li><li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li><li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li><li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li></ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong><br /><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></p>		\n                    <h2></h2>\n                    <p></p>\n                    <a> Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant </a>','Home','','inherit','closed','closed','','652-revision-v1','','','2024-09-18 03:45:01','2024-09-18 03:45:01','',652,'https://divyayogamonteregie.org/ca/?p=1186',0,'revision','',0),(1184,1,'2024-09-18 03:45:01','2024-09-18 03:45:01','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge</p>\n<p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i>&nbsp;</i></b>exercise<b>s<i>,&nbsp;</i></b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p>\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p>\n<p>After yoga super food i. e. grapes and banana are available for Yogies.</p>\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p><ol><li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li><li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li><li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li><li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li><li><b>Eyes and neck exercises</b> – we take care of every part of the body.<br />Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>    </b><br />Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li><li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li><li><b>6 mudras </b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li><li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br />We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li><li><b>Laughter yoga </b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br />We also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li><li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li><li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li><li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li></ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong><br /><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></p>','Home','','inherit','closed','closed','','652-revision-v1','','','2024-09-18 03:45:01','2024-09-18 03:45:01','',652,'https://divyayogamonteregie.org/ca/?p=1184',0,'revision','',0),(1185,1,'2024-09-18 03:45:01','2024-09-18 03:45:01','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge</p>\n<p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i>&nbsp;</i></b>exercise<b>s<i>,&nbsp;</i></b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p>\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p>\n<p>After yoga super food i. e. grapes and banana are available for Yogies.</p>\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p><ol><li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li><li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li><li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li><li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li><li><b>Eyes and neck exercises</b> – we take care of every part of the body.<br />Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>    </b><br />Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li><li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li><li><b>6 mudras </b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li><li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br />We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li><li><b>Laughter yoga </b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br />We also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li><li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li><li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li><li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li></ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong><br /><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></p>','Home','','inherit','closed','closed','','652-revision-v1','','','2024-09-18 03:45:01','2024-09-18 03:45:01','',652,'https://divyayogamonteregie.org/ca/?p=1185',0,'revision','',0),(1190,1,'2024-09-18 03:48:38','2024-09-18 03:48:38','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge</p>\n<p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i>&nbsp;</i></b>exercise<b>s<i>,&nbsp;</i></b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p>\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p>\n<p>After yoga super food i. e. grapes and banana are available for Yogies.</p>\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p><ol><li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li><li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li><li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li><li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li><li><b>Eyes and neck exercises</b> – we take care of every part of the body.<br />Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>    </b><br />Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li><li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li><li><b>6 mudras </b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li><li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br />We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li><li><b>Laughter yoga </b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br />We also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li><li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li><li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li><li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li></ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong><br /><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></p>		\n			<h2>Divya Yoga Monteregie - annual calendar 2024-2025 </h2>		\n                    <h2></h2>\n                    <p></p>\n                    <a> Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant </a>','Home','','inherit','closed','closed','','652-revision-v1','','','2024-09-18 03:48:38','2024-09-18 03:48:38','',652,'https://divyayogamonteregie.org/ca/?p=1190',0,'revision','',0),(1188,1,'2024-09-18 03:48:38','2024-09-18 03:48:38','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge</p>\n<p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i>&nbsp;</i></b>exercise<b>s<i>,&nbsp;</i></b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p>\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p>\n<p>After yoga super food i. e. grapes and banana are available for Yogies.</p>\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p><ol><li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li><li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li><li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li><li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li><li><b>Eyes and neck exercises</b> – we take care of every part of the body.<br />Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>    </b><br />Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li><li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li><li><b>6 mudras </b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li><li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br />We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li><li><b>Laughter yoga </b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br />We also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li><li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li><li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li><li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li></ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong><br /><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></p>		\n                    <h2></h2>\n                    <p></p>\n                    <a> Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant </a>','Home','','inherit','closed','closed','','652-revision-v1','','','2024-09-18 03:48:38','2024-09-18 03:48:38','',652,'https://divyayogamonteregie.org/ca/?p=1188',0,'revision','',0),(1189,1,'2024-09-18 03:48:38','2024-09-18 03:48:38','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge</p>\n<p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i>&nbsp;</i></b>exercise<b>s<i>,&nbsp;</i></b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p>\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p>\n<p>After yoga super food i. e. grapes and banana are available for Yogies.</p>\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p><ol><li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li><li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li><li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li><li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li><li><b>Eyes and neck exercises</b> – we take care of every part of the body.<br />Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>    </b><br />Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li><li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li><li><b>6 mudras </b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li><li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br />We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li><li><b>Laughter yoga </b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br />We also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li><li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li><li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li><li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li></ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong><br /><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></p>		\n                    <h2></h2>\n                    <p></p>\n                    <a> Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant </a>','Home','','inherit','closed','closed','','652-revision-v1','','','2024-09-18 03:48:38','2024-09-18 03:48:38','',652,'https://divyayogamonteregie.org/ca/?p=1189',0,'revision','',0),(1192,1,'2024-10-05 03:09:13','2024-10-05 03:09:13','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge</p>\n<p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i>&nbsp;</i></b>exercise<b>s<i>,&nbsp;</i></b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p>\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p>\n<p>After yoga super food i. e. grapes and banana are available for Yogies.</p>\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"675 Rue Green, Saint-Lambert, \"\n					aria-label=\"675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p><ol><li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li><li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li><li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li><li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li><li><b>Eyes and neck exercises</b> – we take care of every part of the body.<br />Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>    </b><br />Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li><li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li><li><b>6 mudras </b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li><li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br />We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li><li><b>Laughter yoga </b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br />We also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li><li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li><li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li><li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li></ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong><br /><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></p>		\n			<h2>Divya Yoga Monteregie - annual calendar 2024-2025 </h2>		\n                    <h2></h2>\n                    <p></p>\n                    <a> Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant </a>','Home','','inherit','closed','closed','','652-revision-v1','','','2024-10-05 03:09:13','2024-10-05 03:09:13','',652,'https://divyayogamonteregie.org/ca/?p=1192',0,'revision','',0),(1193,1,'2024-10-05 03:09:13','2024-10-05 03:09:13','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge</p>\n<p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i>&nbsp;</i></b>exercise<b>s<i>,&nbsp;</i></b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p>\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p>\n<p>After yoga super food i. e. grapes and banana are available for Yogies.</p>\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=St.%20Lambert%20International%20Hight%20School%20675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"St. Lambert International Hight School 675 Rue Green, Saint-Lambert, \"\n					aria-label=\"St. Lambert International Hight School 675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p><ol><li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li><li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li><li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li><li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li><li><b>Eyes and neck exercises</b> – we take care of every part of the body.<br />Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>    </b><br />Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li><li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li><li><b>6 mudras </b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li><li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br />We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li><li><b>Laughter yoga </b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br />We also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li><li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li><li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li><li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li></ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong><br /><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></p>		\n			<h2>Divya Yoga Monteregie - annual calendar 2024-2025 </h2>		\n                    <h2></h2>\n                    <p></p>\n                    <a> Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant </a>','Home','','inherit','closed','closed','','652-revision-v1','','','2024-10-05 03:09:13','2024-10-05 03:09:13','',652,'https://divyayogamonteregie.org/ca/?p=1193',0,'revision','',0),(1194,1,'2024-10-05 03:12:05','2024-10-05 03:12:05','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge</p>\n<p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i>&nbsp;</i></b>exercise<b>s<i>,&nbsp;</i></b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p>\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p>\n<p>After yoga super food i. e. grapes and banana are available for Yogies.</p>\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=St.%20Lambert%20International%20Hight%20School%20675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"St. Lambert International Hight School 675 Rue Green, Saint-Lambert, \"\n					aria-label=\"St. Lambert International Hight School 675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p><ol><li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li><li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li><li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li><li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li><li><b>Eyes and neck exercises</b> – we take care of every part of the body.<br />Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>    </b><br />Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li><li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li><li><b>6 mudras </b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li><li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br />We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li><li><b>Laughter yoga </b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br />We also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li><li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li><li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li><li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li></ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong><br /><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></p>		\n			<h2>Divya Yoga Monteregie - annual calendar 2024-2025 </h2>		\n                    <h2></h2>\n                    <p></p>\n                    <a> Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant </a>','Home','','inherit','closed','closed','','652-revision-v1','','','2024-10-05 03:12:05','2024-10-05 03:12:05','',652,'https://divyayogamonteregie.org/ca/?p=1194',0,'revision','',0),(1195,1,'2024-10-05 03:12:05','2024-10-05 03:12:05','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge</p>\n<p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i>&nbsp;</i></b>exercise<b>s<i>,&nbsp;</i></b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p>\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p>\n<p>After yoga super food i. e. grapes and banana are available for Yogies.</p>\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=St.%20Lambert%20International%20Hight%20School%20675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"St. Lambert International Hight School 675 Rue Green, Saint-Lambert, \"\n					aria-label=\"St. Lambert International Hight School 675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p><ol><li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li><li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li><li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li><li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li><li><b>Eyes and neck exercises</b> – we take care of every part of the body.<br />Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>    </b><br />Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li><li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li><li><b>6 mudras </b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li><li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br />We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li><li><b>Laughter yoga </b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br />We also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li><li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li><li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li><li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li></ol><p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong><br /><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></p>		\n			<h2>Divya Yoga Monteregie - annual calendar 2024-2025 </h2>		\n                    <h2></h2>\n                    <p></p>\n                    <a> Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant </a>','Home','','inherit','closed','closed','','652-revision-v1','','','2024-10-05 03:12:05','2024-10-05 03:12:05','',652,'https://divyayogamonteregie.org/ca/?p=1195',0,'revision','',0),(1196,1,'2024-10-05 03:12:05','2024-10-05 03:12:05','<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/05/yoga-copia-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>To make basic yoga practice easily accessible to everyone without charge</p>\n<p>Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i>&nbsp;</i></b>exercise<b>s<i>,&nbsp;</i></b>&nbsp;mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p>\n<p>This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p>\n<p>After yoga super food i. e. grapes and banana are available for Yogies.</p>\n<p>Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body, mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Schedule & Location</h2>		\n			<style>/*! elementor - v3.13.3 - 28-05-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=St.%20Lambert%20International%20Hight%20School%20675%20Rue%20Green%2C%20Saint-Lambert%2C%20&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"St. Lambert International Hight School 675 Rue Green, Saint-Lambert, \"\n					aria-label=\"St. Lambert International Hight School 675 Rue Green, Saint-Lambert, \"\n			></iframe>\n		<p><strong>What do we do!</strong></p><p>Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p><p>Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p><p>If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p><p>Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p><p> </p><p> </p>		\n															<img width=\"800\" height=\"230\" src=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5.jpg 1000w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-300x86.jpg 300w, https://divyayogamonteregie.org/ca/wp-content/uploads/2023/04/cropped-banner5-768x221.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n		<p>Please see below a short description of exercises that we practice every Saturday.</p>\n<ol>\n<li><b>Workout</b>&nbsp;– a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li>\n<li><b>Sun Salutation</b>&nbsp;– Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li>\n<li><b>Motivational discourse</b>&nbsp;– our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li>\n<li><b>Acupressure</b>&nbsp;(an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,&nbsp; middle of your palm for kidney problems and&nbsp; under the thumb for the well being of thyroid.</li>\n<li><b>Eyes and neck exercises</b>&nbsp;– we take care of every part of the body.<br>Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>&nbsp;&nbsp;&nbsp;&nbsp;</b><br>Neck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li>\n<li><b>Seven Pranayamas (</b>&nbsp;breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li>\n<li><b>6 mudras&nbsp;</b>(positioning of fingers) – are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li>\n<li><b>100 postures, exercises and asanas</b>&nbsp;– with these we increase flexibility from head to toe. We are also doing&nbsp;<b>stretching</b>&nbsp;exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.<br>We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li>\n<li><b>Laughter yoga&nbsp;</b>– with Meera – a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.<br>We also do&nbsp;<b>Super Brain yoga</b>&nbsp;to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li>\n<li><b>Shavasana&nbsp;</b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li>\n<li><b>Motivational poem</b>&nbsp;– is read at the end of the session to keep us motivated, focused and recharge our batteries.</li>\n<li><b>Mantra</b>&nbsp;– at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li>\n</ol>\n<p><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00&nbsp;</strong><br><strong>at St.Lambert International Hight School, 675 Green, St. Lambert, QC, J4P 1V9</strong></p>		\n			<h2>Divya Yoga Monteregie - annual calendar 2024-2025 </h2>		\n                    <h2></h2>\n                    <p></p>\n                    <a> Conference on every Last Saturday of the month from 10:30 to 12 noon  followed by a  free vegetarian brunch provided by www.vsffoundation.ca or  sponsored by any local restaurant </a>','Home','','inherit','closed','closed','','652-revision-v1','','','2024-10-05 03:12:05','2024-10-05 03:12:05','',652,'https://divyayogamonteregie.org/ca/?p=1196',0,'revision','',0);
/*!40000 ALTER TABLE `wpjv_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjv_term_relationships`
--

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

--
-- Dumping data for table `wpjv_term_relationships`
--

LOCK TABLES `wpjv_term_relationships` WRITE;
/*!40000 ALTER TABLE `wpjv_term_relationships` DISABLE KEYS */;
INSERT INTO `wpjv_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0),(6,2,0),(174,3,0),(657,3,0),(191,3,0),(152,3,0),(92,3,0),(93,3,0),(165,3,0),(192,3,0),(201,3,0),(207,3,0),(221,3,0),(222,3,0),(234,3,0),(233,3,0),(240,3,0),(256,3,0),(255,3,0),(275,3,0),(274,3,0),(283,3,0);
/*!40000 ALTER TABLE `wpjv_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjv_term_taxonomy`
--

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

--
-- Dumping data for table `wpjv_term_taxonomy`
--

LOCK TABLES `wpjv_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wpjv_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wpjv_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,0),(2,2,'wp_theme','',0,1),(3,3,'nav_menu','',0,20),(4,4,'category','',0,0);
/*!40000 ALTER TABLE `wpjv_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjv_termmeta`
--

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

--
-- Dumping data for table `wpjv_termmeta`
--

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

--
-- Table structure for table `wpjv_terms`
--

DROP TABLE IF EXISTS `wpjv_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjv_terms` (
  `term_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `slug` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `term_group` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjv_terms`
--

LOCK TABLES `wpjv_terms` WRITE;
/*!40000 ALTER TABLE `wpjv_terms` DISABLE KEYS */;
INSERT INTO `wpjv_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0),(2,'twentytwentythree','twentytwentythree',0),(3,'Primary Menu','primary-menu',0),(4,'Poems','poems',0);
/*!40000 ALTER TABLE `wpjv_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjv_usermeta`
--

DROP TABLE IF EXISTS `wpjv_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjv_usermeta` (
  `umeta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=74 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjv_usermeta`
--

LOCK TABLES `wpjv_usermeta` WRITE;
/*!40000 ALTER TABLE `wpjv_usermeta` DISABLE KEYS */;
INSERT INTO `wpjv_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (1,1,'nickname','admin'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wpjv_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wpjv_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(17,1,'wpjv_dashboard_quick_press_last_post_id','1182'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"179.53.104.0\";}'),(19,2,'nickname','andres'),(20,2,'first_name',''),(21,2,'last_name',''),(22,2,'description',''),(23,2,'rich_editing','true'),(24,2,'syntax_highlighting','true'),(25,2,'comment_shortcuts','false'),(26,2,'admin_color','fresh'),(27,2,'use_ssl','0'),(28,2,'show_admin_bar_front','true'),(29,2,'locale',''),(30,2,'wpjv_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(31,2,'wpjv_user_level','10'),(32,2,'dismissed_wp_pointers',''),(68,3,'session_tokens','a:1:{s:64:\"414f58618ebdee9829a5f75c705dee7b9289ba5c883c475a09d2e8d75ddc995b\";a:4:{s:10:\"expiration\";i:1692744331;s:2:\"ip\";s:11:\"148.0.12.33\";s:2:\"ua\";s:80:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/116.0\";s:5:\"login\";i:1691534731;}}'),(33,1,'wpjv_persisted_preferences','a:4:{s:14:\"core/edit-post\";a:3:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;s:10:\"openPanels\";a:3:{i:0;s:11:\"post-status\";i:1;s:15:\"page-attributes\";i:2;s:16:\"discussion-panel\";}}s:9:\"_modified\";s:24:\"2023-05-24T20:00:03.951Z\";s:17:\"core/edit-widgets\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}s:22:\"core/customize-widgets\";a:1:{s:12:\"welcomeGuide\";b:0;}}'),(34,1,'announcements_user_counter','1'),(35,1,'elementor_introduction','a:3:{s:7:\"exit_to\";b:1;s:27:\"ai-get-started-announcement\";b:1;s:20:\"globals_introduction\";b:1;}'),(36,1,'wpjv_user-settings','libraryContent=browse&editor=tinymce&hidetb=1&editor_plain_text_paste_warning=1'),(37,1,'wpjv_user-settings-time','1686274604'),(38,1,'nav_menu_recently_edited','3'),(39,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:15:\"title-attribute\";i:2;s:11:\"css-classes\";i:3;s:3:\"xfn\";i:4;s:11:\"description\";}'),(40,1,'metaboxhidden_nav-menus','a:2:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:12:\"add-post_tag\";}'),(41,1,'astra-sites-subscribed','yes'),(46,2,'session_tokens','a:1:{s:64:\"476d0e1b175927f4b6fb291da2d53c1e4a59501c09c0c78e285f98f34bf69e8f\";a:4:{s:10:\"expiration\";i:1685123617;s:2:\"ip\";s:11:\"10.10.10.10\";s:2:\"ua\";s:101:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36\";s:5:\"login\";i:1684950817;}}'),(47,2,'wpjv_dashboard_quick_press_last_post_id','880'),(48,2,'community-events-location','a:1:{s:2:\"ip\";s:10:\"10.10.10.0\";}'),(49,2,'nav_menu_recently_edited','3'),(50,2,'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\";}'),(51,2,'metaboxhidden_nav-menus','a:2:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:12:\"add-post_tag\";}'),(52,2,'wpjv_persisted_preferences','a:2:{s:14:\"core/edit-post\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2023-05-24T18:00:04.064Z\";}'),(53,1,'wpjv_elementor_connect_common_data','a:3:{s:9:\"client_id\";s:32:\"37Z5OqXOzHZn9toxGFl5b2PgY8fAB8uB\";s:11:\"auth_secret\";s:32:\"ADD84vTrysbLzMY0pj4Twl1hs89dfw9A\";s:5:\"state\";s:12:\"clRCOB7ZQZfW\";}'),(54,3,'nickname','hayti'),(55,3,'first_name',''),(56,3,'last_name',''),(57,3,'description',''),(58,3,'rich_editing','true'),(59,3,'syntax_highlighting','true'),(60,3,'comment_shortcuts','false'),(61,3,'admin_color','fresh'),(62,3,'use_ssl','0'),(63,3,'show_admin_bar_front','true'),(64,3,'locale',''),(65,3,'wpjv_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(66,3,'wpjv_user_level','10'),(67,3,'dismissed_wp_pointers',''),(69,3,'wpjv_dashboard_quick_press_last_post_id','1178'),(70,3,'community-events-location','a:1:{s:2:\"ip\";s:10:\"148.0.12.0\";}'),(73,1,'session_tokens','a:1:{s:64:\"5b18ac926c13d028c229d1e5a61705ede48a6a55afa9a8a2f3476a5e9138d09d\";a:4:{s:10:\"expiration\";i:1728270159;s:2:\"ip\";s:14:\"179.53.104.169\";s:2:\"ua\";s:80:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:131.0) Gecko/20100101 Firefox/131.0\";s:5:\"login\";i:1728097359;}}');
/*!40000 ALTER TABLE `wpjv_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpjv_users`
--

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

--
-- Dumping data for table `wpjv_users`
--

LOCK TABLES `wpjv_users` WRITE;
/*!40000 ALTER TABLE `wpjv_users` DISABLE KEYS */;
INSERT INTO `wpjv_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES (1,'admin','$P$BDC2Bp706dlY8o07p3hLOpt915E7S4.','admin','admin@divyayogamonteregie.org','https://divyayogamonteregie.org/ca','2023-04-29 04:53:32','',0,'admin'),(2,'andres','$P$BWbFk4U1AOAHQCgWbEzoulGQGBmKNT/','andres','andres.salazar@solagroup.cl','','2023-04-29 04:55:35','1682744136:$P$BB2NSY9mFrLmwzmUjEhtKsvRz6JE6l0',0,'andres'),(3,'hayti','$P$BtOiwulIH4XHjoLGWvy5h527dNPgaE.','hayti','email.haitianzone@gmail.com','','2023-08-08 22:45:14','1691534714:$P$BDPOfEJNHCcG62nEOfdTuMUyOL9wk/0',0,'hayti');
/*!40000 ALTER TABLE `wpjv_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping events for database 'divya_wp690'
--

--
-- Dumping routines for database 'divya_wp690'
--
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2024-11-22 17:34:06
